:root {
  --ink: #1c2a22;
  --ink-soft: #4a5c52;
  --title: #0f3d24;
  --paper: #f5f8f4;
  --paper-2: #e7efe8;
  --green: #1f8f42;
  --green-deep: #0f6b32;
  --green-bright: #2bbf5a;
  --red: #e11d2e;
  --red-deep: #b41220;
  --gold: #c4a35a;
  --line: rgba(15, 61, 36, 0.12);
  --shadow: 0 24px 60px rgba(15, 61, 36, 0.14);
  --font-display: "Syne", sans-serif;
  --font-body: "Figtree", sans-serif;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ig: #e1306c;
  --fb: #1877f2;
  --wa: #25d366;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 0.75rem);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink-soft);
  background:
    radial-gradient(1200px 600px at 8% -8%, rgba(31, 143, 66, 0.16), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(225, 29, 46, 0.1), transparent 50%),
    radial-gradient(700px 400px at 70% 40%, rgba(196, 163, 90, 0.08), transparent 60%),
    linear-gradient(180deg, #fafcf9 0%, var(--paper) 42%, #eef5ef 100%);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.55;
}

main {
  overflow-x: clip;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-h);
  padding: 0 clamp(1rem, 3vw, 2.5rem);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(18, 20, 18, 0.06);
  transition: box-shadow 0.35s var(--ease);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(18, 20, 18, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--title);
}

.brand span {
  background: linear-gradient(120deg, var(--green-deep), var(--green) 55%, var(--red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}

.nav-links {
  display: flex;
  gap: 0.85rem;
  font-weight: 600;
  font-size: 0.88rem;
  margin-left: auto;
}

@media (max-width: 520px) {
  .brand span {
    display: none;
  }

  .nav-links {
    font-size: 0.84rem;
    gap: 0.7rem;
  }
}

.nav-links a {
  position: relative;
  color: var(--ink-soft);
}

.nav-links a.is-active {
  color: var(--title);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

/* Contact is only a jump link ? never looks selected */
.nav-links a.nav-contact,
.nav-links a.nav-contact:hover,
.nav-links a.nav-contact:focus,
.nav-links a.nav-contact:focus-visible,
.nav-links a.nav-contact:active,
.nav-links a.nav-contact.is-active {
  color: var(--ink-soft);
  outline: none;
}

.nav-links a.nav-contact::after,
.nav-links a.nav-contact:hover::after,
.nav-links a.nav-contact:focus::after,
.nav-links a.nav-contact:focus-visible::after,
.nav-links a.nav-contact:active::after,
.nav-links a.nav-contact.is-active::after {
  content: none;
  transform: none;
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-switch {
  display: inline-flex;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.lang-switch a {
  opacity: 0.45;
}

.lang-switch a.is-active,
.lang-switch a:hover {
  opacity: 1;
  color: var(--red);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.35rem;
  border: 1.5px solid transparent;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-bright), var(--green-deep));
  color: #fff;
  box-shadow: 0 10px 24px rgba(31, 143, 66, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--green), var(--green-deep));
}

.btn-outline {
  border-color: var(--green);
  color: var(--green-deep);
  background: transparent;
}

.btn-outline:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(18, 20, 18, 0.18);
}

.btn-ghost:hover {
  background: rgba(18, 20, 18, 0.35);
}

.visit-section .btn-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.visit-section .btn-outline:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.btn-small {
  min-height: 40px;
  padding: 0.55rem 0.95rem;
  font-size: 0.82rem;
}

.btn-menu {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(225, 29, 46, 0.28);
}

.btn-menu:hover {
  background: linear-gradient(135deg, #f02839 0%, var(--red) 100%);
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  color: var(--ink);
  overflow: hidden;
  background: #ffffff;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 112%;
  top: -6%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.58;
  transform: scale(1.08);
  transform-origin: center center;
  will-change: transform;
  transition: transform 1.4s var(--ease), opacity 1.2s var(--ease);
}

body.is-ready .hero-media img {
  transform: scale(1.02);
}

@media (max-width: 900px) {
  .hero-media img {
    object-position: 18% 35%;
    opacity: 0.62;
  }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 50% 45%, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.55) 45%, rgba(255, 255, 255, 0.2) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.35) 40%, rgba(255, 255, 255, 0.8) 100%),
    linear-gradient(115deg, rgba(31, 143, 66, 0.08) 0%, transparent 40%),
    linear-gradient(295deg, rgba(225, 29, 46, 0.06) 0%, transparent 38%);
}

.hero-main {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  place-items: center;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  margin: 0 auto;
  padding: calc(var(--header-h) + 2.5rem) clamp(1.25rem, 5vw, 2.5rem) 3.25rem;
  text-align: center;
}

.hero-brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 11vw, 5.4rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  background: linear-gradient(
    115deg,
    var(--green-deep) 0%,
    var(--green-bright) 28%,
    var(--title) 48%,
    var(--red) 72%,
    var(--red-deep) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: brandShine 6s ease-in-out infinite;
}

@keyframes brandShine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-line {
  margin: 1.15rem auto 0;
  max-width: 30ch;
  font-size: clamp(1.05rem, 2.6vw, 1.22rem);
  color: var(--ink-soft);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.75rem;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 0.75rem;
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  color: rgba(15, 61, 36, 0.45);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--red), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

/* Brand band: hero / Must try seam */
.brand-band {
  position: relative;
  z-index: 30;
  height: 0;
  margin: 0;
  pointer-events: none;
  overflow: visible;
  background: transparent;
}

.brand-band__bar {
  --band-green: #3f9e67;
  --band-cream: #f2f1d7;
  --band-edge: #111111;
  position: absolute;
  top: 0;
  left: -10%;
  width: 120%;
  height: clamp(100px, 12vw, 132px);
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Mobile keeps stronger hero overlap; desktop tuned below */
  transform: translateY(-75%) rotate(-5.5deg);
  background:
    linear-gradient(var(--band-cream), var(--band-cream)) top / 100% 3px no-repeat,
    linear-gradient(var(--band-cream), var(--band-cream)) bottom / 100% 3px no-repeat,
    repeating-linear-gradient(
      90deg,
      var(--band-cream) 0 3px,
      transparent 3px 12px
    ) top 8px left 0 / 100% 3px no-repeat,
    repeating-linear-gradient(
      90deg,
      var(--band-cream) 0 3px,
      transparent 3px 12px
    ) bottom 8px left 0 / 100% 3px no-repeat,
    var(--band-green);
  border-block: 3px solid var(--band-edge);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.brand-band__track {
  display: flex;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.brand-band__set {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: clamp(1.1rem, 2.2vw, 2rem);
  padding-inline: clamp(0.8rem, 1.5vw, 1.4rem);
}

.bb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--band-cream);
  line-height: 1;
  white-space: nowrap;
  user-select: none;
}

.bb--box {
  padding: 0.42em 0.55em;
  border: 2.5px solid var(--band-cream);
  box-shadow: inset 0 0 0 1.5px var(--band-cream);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 2.05rem);
  font-weight: 800;
  letter-spacing: 0.06em;
}

.bb--dash {
  padding: 0.38em 0.7em;
  border: 2px dashed var(--band-cream);
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.2rem, 2.1vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.14em;
}

.bb--ruled {
  padding: 0.28em 0.15em;
  border-block: 2.5px solid var(--band-cream);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.bb--stack {
  flex-direction: column;
  gap: 0.15em;
  padding-inline: 0.85em;
  border-inline: 2px solid var(--band-cream);
  font-family: "Oswald", sans-serif;
  font-size: clamp(0.62rem, 1.05vw, 0.82rem);
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.16em;
}

.bb--stack i {
  font-style: normal;
}

.bb--best {
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  font-weight: 900;
  letter-spacing: 0.02em;
}

@media (max-width: 767px) {
  .brand-band__bar {
    height: 84px;
  }

  .brand-band__set {
    gap: 0.85rem;
  }
}

@media (min-width: 768px) {
  .brand-band__bar {
    /* Sit lower so hero title/CTAs stay clear; still overlaps Must try */
    transform: translateY(-38%) rotate(-5.5deg);
  }
}

.feature-section {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.feature-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

.feature-stripe {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--paper) 5%,
    var(--paper) 95%,
    transparent 100%
  );
  padding: 0.5rem 0;
}

.feature-stripe::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, var(--green), var(--gold));
}

.feature-stripe-inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.4rem, 3vw, 2rem) clamp(1.25rem, 3.5vw, 2.25rem);
}

.feature-spotlight {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.1rem;
  align-items: center;
}

.feature-spotlight-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 14px 36px rgba(15, 61, 36, 0.16);
  transition: transform 0.6s var(--ease);
}

.feature-spotlight:hover .feature-spotlight-img {
  transform: scale(1.04);
}

.feature-kicker {
  margin: 0;
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.feature-spotlight-copy h2 {
  margin: 0.45rem 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.8vw, 2.15rem);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--title);
  -webkit-text-fill-color: var(--title);
  background: none;
}

.feature-spotlight-copy p {
  margin: 0;
  max-width: 36ch;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.feature-price {
  display: inline-block;
  margin-top: 0.9rem;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.92rem;
}

.feature-rail {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 0.35rem;
}

.feature-rail-box {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.feature-rail-box:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.feature-rail-box h3 {
  margin: 0.35rem 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--title);
}

.feature-rail-box p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  margin-top: 0.75rem;
  color: var(--green-deep);
  font-weight: 700;
  font-size: 0.88rem;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s ease;
}

.feature-link:hover {
  color: var(--green);
}

.feature-link-primary {
  margin-top: 0.85rem;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  background: var(--green);
  color: #fff;
}

.feature-link-primary:hover {
  background: var(--green-deep);
  color: #fff;
}

@media (min-width: 900px) {
  .feature-stripe-inner {
    grid-template-columns: 1.3fr 0.85fr;
    gap: 2rem;
  }

  .feature-spotlight {
    grid-template-columns: 180px 1fr;
    gap: 1.35rem;
  }

  .feature-spotlight-img {
    width: 180px;
    height: 180px;
  }

  .feature-rail {
    border-top: 0;
    border-left: 1px solid var(--line);
    padding-top: 0;
    padding-left: 1.6rem;
  }

  .feature-rail-box:first-child {
    padding-top: 0;
  }
}

.menu-section,
.about-section,
.visit-section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 4vw, 3.5rem);
}

/* Full-bleed menu invite (design B) */
.menu-invite {
  padding: 0;
  margin: clamp(1.5rem, 4vw, 3rem) 0;
}

.menu-invite-banner {
  position: relative;
  display: block;
  isolation: isolate;
  min-height: clamp(300px, 42vw, 440px);
  overflow: hidden;
  color: #f7faf6;
  background: #13261c;
}

.menu-invite-banner:focus-visible {
  outline: 3px solid var(--green-bright);
  outline-offset: 3px;
}

.menu-invite-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.menu-invite-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.14);
  filter: blur(10px) saturate(1.15) brightness(0.92);
  transition: transform 1.1s var(--ease), filter 0.8s var(--ease);
}

.menu-invite-banner:hover .menu-invite-media img {
  transform: scale(1.2);
  filter: blur(8px) saturate(1.2) brightness(0.95);
}

.menu-invite-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      115deg,
      rgba(8, 36, 22, 0.82) 0%,
      rgba(15, 61, 36, 0.58) 38%,
      rgba(18, 40, 28, 0.28) 68%,
      rgba(12, 28, 20, 0.18) 100%
    ),
    linear-gradient(
      180deg,
      rgba(8, 24, 16, 0.25) 0%,
      transparent 40%,
      rgba(8, 24, 16, 0.55) 100%
    );
}

.menu-invite-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: 1120px;
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(1.75rem, 5vw, 3.25rem) clamp(1.25rem, 4vw, 3.5rem);
}

.menu-invite-kicker {
  margin: 0;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.menu-invite-copy h2 {
  margin: 0;
  max-width: 12ch;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-wrap: balance;
  text-shadow: 0 2px 20px rgba(15, 61, 36, 0.35);
}

.menu-invite-text {
  margin: 0;
  max-width: 34ch;
  color: var(--paper-2);
  font-size: clamp(0.98rem, 1.5vw, 1.08rem);
  line-height: 1.5;
}

.menu-invite-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 0.55rem;
  padding: 0.75rem 1.35rem;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  box-shadow: 0 12px 28px rgba(180, 18, 32, 0.35);
  transition:
    transform 0.35s var(--ease),
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.menu-invite-banner:hover .menu-invite-cta {
  background: linear-gradient(135deg, #f02839 0%, var(--red) 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(225, 29, 46, 0.4);
}

@media (max-width: 767px) {
  .menu-invite {
    margin-block: 1.25rem;
  }

  .menu-invite-banner {
    min-height: 360px;
  }

  .menu-invite-veil {
    background:
      linear-gradient(
        180deg,
        rgba(8, 36, 22, 0.2) 0%,
        rgba(8, 36, 22, 0.45) 42%,
        rgba(8, 28, 18, 0.82) 100%
      );
  }

  .menu-invite-media img {
    object-position: center center;
    filter: blur(12px) saturate(1.15) brightness(0.9);
  }

  .menu-invite-copy h2 {
    max-width: 11ch;
  }
}

.visit-section {
  padding-block: clamp(3rem, 6vw, 5.25rem);
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
}

.page-menu .menu-section {
  padding-top: calc(var(--header-h) + clamp(1.5rem, 4vw, 2.75rem));
  min-height: calc(100vh - var(--header-h));
}

.section-head {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.kicker {
  margin: 0 0 0.65rem;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-head h2,
.visit-panel h2,
.reserve-modal-dialog h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 750;
  line-height: 1.02;
  letter-spacing: -0.035em;
  background: linear-gradient(120deg, var(--title) 0%, var(--green) 55%, var(--green-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.visit-panel h2 {
  font-size: clamp(1.85rem, 4.2vw, 3.15rem);
}

.reserve-modal-dialog h2 {
  margin: 0 1.5rem 1.15rem 0;
  font-size: clamp(1.45rem, 5vw, 1.9rem);
}

.section-sub {
  margin: 1rem 0 0;
  max-width: 46ch;
  color: var(--ink-soft);
}

.category-bar {
  position: sticky;
  top: var(--header-h);
  z-index: 20;
  margin: 0 -0.25rem 2rem;
  padding: 0.85rem 0.25rem;
  background: rgba(244, 246, 243, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.category-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 0.15rem;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.category-track::-webkit-scrollbar {
  display: none;
}

.category-link {
  flex: 0 0 auto;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid transparent;
  color: rgba(15, 61, 36, 0.45);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.category-link.is-active {
  color: var(--green-deep);
  border-color: var(--red);
}

@media (hover: hover) and (pointer: fine) {
  .category-link:hover {
    color: var(--green-deep);
  }

  .category-link:hover:not(.is-active) {
    border-color: rgba(225, 29, 46, 0.35);
  }
}

.menu-board {
  display: grid;
  gap: 3.5rem;
}

.menu-category {
  scroll-margin-top: calc(var(--header-h) + 4.5rem);
}

.category-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.category-title h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
  color: var(--title);
}

.category-title span {
  color: var(--red);
  font-family: var(--font-display);
  font-weight: 700;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 0.95rem;
  align-items: center;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}

.menu-item.no-image {
  grid-template-columns: 1fr;
}

.menu-item.has-image {
  cursor: default;
}

.item-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.item-top h4 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--title);
}

.price {
  flex: 0 0 auto;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 750;
  white-space: nowrap;
}

.item-desc {
  margin: 0.55rem 0 0;
  max-width: 62ch;
  color: var(--ink-soft);
  white-space: pre-line;
}

.item-includes,
.item-extras {
  margin: 0.4rem 0 0;
  max-width: 62ch;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

.item-extras {
  color: var(--title);
}

.item-label {
  display: inline;
  margin-right: 0.35rem;
  color: var(--green-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.item-meta {
  margin: 0.45rem 0 0;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.item-media {
  margin: 0;
  width: 96px;
  height: 96px;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  box-shadow:
    0 0 0 1px rgba(18, 20, 18, 0.06),
    0 10px 24px rgba(18, 20, 18, 0.08);
}

.item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.menu-item:hover .item-media img {
  transform: scale(1.05);
}

.about-panel {
  position: relative;
  isolation: isolate;
  display: block;
  max-width: 1120px;
  margin: 0 auto;
  min-height: clamp(280px, 36vw, 380px);
  overflow: hidden;
  background: linear-gradient(135deg, #3f9e67 0%, var(--green-deep) 100%);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.about-draw {
  position: absolute;
  inset: -8%;
  z-index: 0;
  pointer-events: none;
  background-image: url("../img/about-food-draw.svg");
  background-repeat: no-repeat;
  background-position: 70% 45%;
  background-size: min(920px, 120%) auto;
  opacity: 0.42;
  filter: blur(3.5px);
  transform: rotate(-4deg) scale(1.08);
}

.about-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 36rem;
  padding: clamp(1.9rem, 4.5vw, 3.25rem);
}

.about-copy .kicker {
  color: #ffb4b8;
}

.about-copy h2 {
  margin: 0;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3.3rem);
  font-weight: 750;
  line-height: 1.05;
  letter-spacing: -0.03em;
  -webkit-text-fill-color: var(--paper);
  background: none;
}

.about-text {
  margin: 1rem 0 0;
  max-width: 44ch;
  color: var(--paper-2);
  font-size: 1.06rem;
}

@media (max-width: 767px) {
  .about-draw {
    background-position: 85% 30%;
    background-size: 140% auto;
    opacity: 0.32;
    filter: blur(4px);
  }
}

.visit-panel {
  padding: clamp(1.35rem, 3.2vw, 2.35rem);
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(31, 122, 58, 0.08), transparent 45%),
    linear-gradient(180deg, #fff, #f3f6f1);
}

.visit-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.35rem;
}

.visit-grid h3,
.visit-social h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}

.visit-grid h3 {
  margin: 0 0 0.4rem;
}

.visit-grid p {
  margin: 0;
  white-space: pre-line;
  color: var(--ink-soft);
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.visit-social {
  margin-top: 1.5rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  border: 1px solid transparent;
  background: #fff;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease), filter 0.25s var(--ease);
}

.social-btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.social-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.social-instagram {
  color: #fff;
  background: linear-gradient(135deg, #f58529, #dd2a7b 45%, #8134af 75%, #515bd4);
  box-shadow: 0 8px 20px rgba(221, 42, 123, 0.28);
}

.social-facebook {
  color: #fff;
  background: var(--fb);
  box-shadow: 0 8px 20px rgba(24, 119, 242, 0.28);
}

.social-whatsapp {
  color: #fff;
  background: var(--wa);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.28);
}

.social-instagram:hover,
.social-facebook:hover,
.social-whatsapp:hover {
  border-color: transparent;
  color: #fff;
}

.reserve-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: end center;
  padding: 0;
}

.reserve-modal[hidden] {
  display: none;
}

.reserve-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 20, 18, 0.48);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.reserve-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  max-height: min(92svh, 760px);
  overflow: auto;
  margin: 0;
  padding: 1.35rem 1.25rem 1.5rem;
  border-radius: 18px 18px 0 0;
  background: #fff;
  box-shadow: 0 -12px 48px rgba(18, 20, 18, 0.18);
  animation: modalRise 0.35s var(--ease) both;
}

.reserve-modal-dialog h2 {
  margin: 0 1.5rem 1.15rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 5vw, 1.9rem);
  letter-spacing: -0.03em;
  background: linear-gradient(120deg, var(--title) 0%, var(--green) 55%, var(--green-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.reserve-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.reserve-modal-close:hover {
  background: rgba(18, 20, 18, 0.06);
}

.reserve-form {
  display: grid;
  gap: 0.9rem;
}

.reserve-form label {
  display: grid;
  gap: 0.35rem;
}

.reserve-form span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.reserve-form input,
.reserve-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfbfb;
  color: var(--ink);
  font: inherit;
}

.reserve-form textarea {
  min-height: 88px;
  resize: vertical;
}

.reserve-form input:focus,
.reserve-form textarea:focus {
  outline: 2px solid rgba(195, 34, 42, 0.25);
  border-color: var(--red);
  background: #fff;
}

.reserve-row {
  display: grid;
  gap: 0.9rem;
}

.reserve-form .btn {
  justify-self: stretch;
  width: 100%;
  border: none;
  cursor: pointer;
}

.reserve-msg {
  margin: 0;
  font-weight: 600;
  text-align: center;
}

.reserve-msg.is-ok { color: var(--green-deep); }
.reserve-msg.is-err { color: var(--red); }

@keyframes modalRise {
  from { transform: translateY(24px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

body.is-modal-open {
  overflow: hidden;
}

@media (min-width: 640px) {
  .reserve-modal {
    place-items: center;
    padding: 1.5rem;
  }

  .reserve-modal-dialog {
    border-radius: 14px;
    padding: 1.75rem 1.6rem 1.7rem;
    box-shadow: var(--shadow);
    animation-name: modalPop;
  }

  .reserve-row {
    grid-template-columns: 1.2fr 1fr 0.7fr;
  }

  .reserve-form .btn {
    justify-self: start;
    width: auto;
    min-width: 180px;
  }
}

@keyframes modalPop {
  from { transform: translateY(12px) scale(0.98); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1.25rem, 4vw, 3.5rem) 2.25rem;
  border-top: 1px solid var(--line);
  color: rgba(18, 20, 18, 0.55);
}

.back-to-top {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1.15rem, env(safe-area-inset-bottom));
  z-index: 40;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(15, 61, 36, 0.12);
  background: linear-gradient(145deg, var(--green-bright), var(--green-deep));
  color: #fff;
  box-shadow: 0 12px 28px rgba(15, 61, 36, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.92);
  pointer-events: none;
  transition:
    opacity 0.3s var(--ease),
    visibility 0.3s var(--ease),
    transform 0.3s var(--ease),
    filter 0.25s var(--ease);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.back-to-top:hover {
  filter: brightness(1.06);
  transform: translateY(-2px) scale(1);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--title);
  font-family: var(--font-display);
  font-weight: 700;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  filter: blur(8px);
  transition:
    opacity 1.05s var(--ease),
    transform 1.05s var(--ease),
    filter 1.05s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform, filter;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

.feature-spotlight.reveal {
  transform: translate3d(-36px, 18px, 0);
  filter: blur(10px);
}

.feature-rail.reveal {
  transform: translate3d(36px, 18px, 0);
  filter: blur(10px);
}

.feature-spotlight.reveal.is-in,
.feature-rail.reveal.is-in {
  transform: none;
  filter: blur(0);
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.9; }
  50% { transform: scaleY(0.55); opacity: 0.35; }
}

@media (min-width: 768px) {
  .nav-links {
    gap: 1.5rem;
  }

  .hero-content {
    padding-top: calc(var(--header-h) + 3.5rem);
    padding-bottom: 4rem;
  }

  .menu-item.has-image {
    grid-template-columns: 140px 1fr;
    gap: 1.35rem;
  }

  .item-media {
    width: 140px;
    height: 140px;
    border-radius: 18px;
  }

  .visit-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1100px) {
  .menu-item.has-image {
    grid-template-columns: 168px 1fr;
    gap: 1.6rem;
    padding: 1.35rem 0.35rem;
    border-radius: 16px;
    transition: background 0.25s var(--ease);
  }

  .menu-item.has-image:hover {
    background: rgba(31, 122, 58, 0.05);
  }

  .item-media {
    width: 168px;
    height: 168px;
  }
}

@media (max-width: 767px) {
  .scroll-cue {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-brand,
  .reserve-modal-dialog,
  .scroll-cue i { animation: none; }
  .reveal,
  .feature-spotlight.reveal,
  .feature-rail.reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  .back-to-top {
    transition: none;
  }
  .hero-media img,
  body.is-ready .hero-media img {
    height: 100%;
    top: 0;
    transform: none;
    transition: none;
    will-change: auto;
  }
  .menu-invite-media img,
  .menu-invite-banner:hover .menu-invite-media img {
    transform: scale(1.12) !important;
    filter: blur(10px) saturate(1.1) !important;
    transition: none;
  }
  .menu-invite-banner:hover .menu-invite-cta {
    transform: none !important;
    transition: none;
  }
  .btn,
  .social-btn,
  .menu-item.has-image,
  .feature-spotlight-img,
  .item-media img {
    transition: none !important;
  }
  .scroll-cue {
    opacity: 1;
    animation: none;
    transition: none;
  }
  .brand-band__track {
    transform: none !important;
  }
}

/* Motion layer */
.btn,
.social-btn,
.feature-link {
  transition:
    transform 0.45s var(--ease),
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    border-color 0.3s var(--ease),
    box-shadow 0.45s var(--ease),
    filter 0.3s var(--ease);
}

.btn:hover,
.social-btn:hover,
.feature-link:hover {
  transform: translateY(-3px);
}

.btn:active,
.social-btn:active,
.feature-link:active {
  transform: translateY(-1px);
}

.feature-spotlight-img,
.item-media img {
  transition: transform 1.2s var(--ease), filter 1.2s var(--ease);
}

.reveal:not(.is-in) .feature-spotlight-img,
.menu-item.reveal:not(.is-in) .item-media img {
  transform: scale(1.08);
  filter: saturate(0.85);
}

.reveal.is-in .feature-spotlight-img,
.menu-item.reveal.is-in .item-media img {
  transform: scale(1);
  filter: none;
}

.menu-item.has-image {
  transition: transform 0.45s var(--ease), background 0.25s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .menu-item.has-image:hover {
    transform: translateY(-4px);
  }

  .menu-item.has-image:hover .item-media img {
    transform: scale(1.05);
  }
}

.hero-content .reveal:nth-child(1) { --reveal-delay: 0.08s; }
.hero-content .reveal:nth-child(2) { --reveal-delay: 0.22s; }
.hero-content .reveal:nth-child(3) { --reveal-delay: 0.36s; }

.scroll-cue {
  transition: opacity 0.7s var(--ease);
}

body.is-ready .scroll-cue {
  animation: scrollCueIn 0.9s var(--ease) 0.55s both;
}

@keyframes scrollCueIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
