:root {
  --blue: #1717f5;
  --orange: #ff6a00;
  --green: #62f20d;
  --red: #ef2222;
  --ink: #1a1a1a;
  --paper: #fffdf7;
  --soft: #f2f2f2;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 247, 0.97);
  border-bottom: 3px solid var(--blue);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  width: min(1180px, 94vw);
  margin: 0 auto;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  text-decoration: none;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 900;
  letter-spacing: .02em;
  white-space: nowrap;
}
.brand .rico, .brand .sano { color: var(--orange); }
.brand .ens { color: #2fb300; }
.brand .amp { color: var(--ink); }

.nav {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a {
  text-decoration: none;
  font-weight: 800;
  font-size: .92rem;
  padding: 10px 12px;
  border-radius: 999px;
}
.nav a:hover, .nav a.active { background: var(--blue); color: white; }

main { width: 100%; }

.page-intro {
  width: min(1180px, 94vw);
  margin: 0 auto;
  padding: 34px 0 22px;
  text-align: center;
}
.page-intro h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: .95;
}
.page-intro p { margin: 12px auto 0; max-width: 720px; font-size: 1.05rem; }

.hero {
  width: min(1500px, 100%);
  margin: 0 auto;
  line-height: 0;
}
.hero img {
  display: block;
  width: 100%;
  height: auto;
}

.content {
  width: min(1180px, 94vw);
  margin: 0 auto;
}

.cta {
  text-align: center;
  padding: 38px 0 58px;
}
.cta h2 {
  margin: 0 0 20px;
  font-size: clamp(1.45rem, 3.5vw, 2.5rem);
}
.button {
  display: inline-block;
  text-decoration: none;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 6px 0 #0c0c91;
  transition: transform .15s ease, box-shadow .15s ease;
}
.button:hover { transform: translateY(2px); box-shadow: 0 4px 0 #0c0c91; }

.gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 18px 0 60px;
}
.gallery figure {
  margin: 0;
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,.10);
}
.gallery img { display: block; width: 100%; height: auto; }
.gallery figcaption { padding: 12px 16px 15px; font-weight: 800; }

.salad-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding: 18px 0 60px;
}
.salad-card {
  margin: 0;
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,.10);
}
.salad-card img { display: block; width: 100%; height: auto; }

.location-card {
  padding: 28px;
  margin: 0 auto 54px;
  max-width: 900px;
  background: white;
  border-radius: 22px;
  box-shadow: 0 12px 35px rgba(0,0,0,.10);
  text-align: center;
}
.location-card h2 { margin: 0 0 18px; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.hours { font-size: 1.25rem; font-weight: 900; margin: 18px 0 28px; }
.address { font-size: 1.08rem; line-height: 1.55; }
.location-photo { width: 100%; border-radius: 16px; display: block; margin-top: 26px; }

.footer {
  margin-top: 10px;
  padding: 28px 20px;
  text-align: center;
  background: var(--blue);
  color: white;
  font-weight: 800;
}

@media (max-width: 760px) {
  .nav-wrap { min-height: auto; padding: 12px 0; align-items: flex-start; flex-direction: column; gap: 10px; }
  .nav { justify-content: flex-start; width: 100%; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 2px; }
  .nav a { white-space: nowrap; font-size: .84rem; padding: 8px 10px; }
  .gallery, .salad-list { grid-template-columns: 1fr; }
  .page-intro { padding-top: 24px; }
  .location-card { padding: 20px; }
}
