/* ============================================================
   AGNIFOOD — Design System
   Dark Luxury · Playfair Display SC + Karla · Gold Accents
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Playfair+Display+SC:wght@400;700&family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,700&display=swap');

/* --- Design Tokens --- */
:root {
  --bg:           #0A0806;
  --surface:      #181410;
  --surface-2:    #211C15;
  --surface-3:    #2C2620;

  --gold:         #C4963A;
  --gold-light:   #DDB86A;
  --gold-dim:     rgba(196,150,58,0.45);
  --gold-glow:    rgba(196,150,58,0.07);
  --gold-border:  rgba(196,150,58,0.13);
  --gold-border-h:rgba(196,150,58,0.38);

  --cream:        #F0EAE0;
  --cream-dim:    #C4B89E;
  --muted:        #9E907E;
  --faint:        #3A3028;

  --ff-display:   'Playfair Display SC', Georgia, serif;
  --ff-serif:     'Playfair Display', Georgia, serif;
  --ff-sans:      'Karla', system-ui, sans-serif;

  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io:      cubic-bezier(0.65, 0, 0.35, 1);

  --nav-h:        72px;
  --pad:          clamp(72px, 10vw, 140px);
  --gut:          clamp(20px, 5vw, 80px);
  --max:          1280px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
@media (prefers-reduced-motion: no-preference) {
  body { animation: aFadeIn 0.35s var(--ease-out) both; }
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; cursor: pointer; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }
ul, ol { list-style: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Language toggle logic --- */
body:not(.lang-lt) .lt { display: none !important; }
body.lang-lt       .en { display: none !important; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.t-display {
  font-family: var(--ff-display);
  font-size: clamp(3.6rem, 9.5vw, 8.5rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
}
.t-h1 {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.18;
}
.t-h2 {
  font-family: var(--ff-serif);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.22;
}
.t-h3 {
  font-family: var(--ff-serif);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 400;
}
.t-label {
  font-family: var(--ff-sans);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.t-italic { font-style: italic; }
.t-muted  { color: var(--muted); }
.t-gold   { color: var(--gold); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gut);
}
.section { padding: var(--pad) 0; }

/* Gold ruled line */
.rule {
  display: block;
  background: var(--gold);
  height: 1px;
}
.rule--short { width: 44px; }
.rule--med   { width: 80px; }
.rule--auto  { width: auto; flex: 1; opacity: 0.25; }

/* Gold dot divider */
.divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 auto;
}
.divider__text {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 15px 36px;
  cursor: pointer;
  transition: background 0.28s, color 0.28s, border-color 0.28s, letter-spacing 0.3s;
  position: relative;
}
.btn--gold {
  background: var(--gold);
  color: var(--bg);
  border: 1px solid var(--gold);
}
.btn--gold:hover { background: var(--gold-light); border-color: var(--gold-light); letter-spacing: 0.22em; }

.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(240,234,224,0.3);
}
.btn--outline:hover { border-color: var(--cream); background: rgba(240,234,224,0.06); }

.btn--ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 11px 26px;
  font-size: 0.7rem;
}
.btn--ghost:hover { border-color: var(--gold); background: var(--gold-glow); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.45s var(--ease-out),
              border-color 0.45s var(--ease-out),
              backdrop-filter 0.45s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,8,6,0.93);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-color: var(--gold-border);
}

.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gut);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.nav__logo img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  border-radius: 50%;
}
.nav__logo-name {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  color: var(--cream);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-dim);
  position: relative;
  transition: color 0.22s;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav__link:hover,
.nav__link.active { color: var(--cream); }
.nav__link:hover::after,
.nav__link.active::after { transform: scaleX(1); }

.nav__right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

/* Language toggle */
.lang-toggle {
  display: flex;
  border: 1px solid var(--faint);
  border-radius: 2px;
  overflow: hidden;
}
.lang-toggle__btn {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  color: var(--muted);
  background: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border: none;
}
.lang-toggle__btn.active {
  background: var(--gold);
  color: var(--bg);
}

.nav__reserve {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 9px 20px;
  border: 1px solid var(--gold-border-h);
  color: var(--gold);
  transition: background 0.25s, color 0.25s;
}
.nav__reserve:hover { background: var(--gold); color: var(--bg); }

/* Hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 2px 0;
}
.nav__burger span {
  display: block;
  height: 1px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: left center;
}
.nav__burger.is-open span:nth-child(1) { transform: rotate(38deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: rotate(-38deg); }

/* Mobile drawer */
.nav__drawer {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: rgba(10,8,6,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.nav__drawer.is-open { opacity: 1; pointer-events: all; }

.nav__drawer .nav__link {
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  text-transform: none;
  color: var(--cream);
}

.nav__drawer-bottom {
  position: absolute;
  bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/Main page photo.png");
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.06);
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,8,6,0.38) 0%,
    rgba(10,8,6,0.18) 35%,
    rgba(10,8,6,0.52) 70%,
    rgba(10,8,6,0.88) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 var(--gut);
  max-width: 900px;
}

.hero__pre {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
  opacity: 0;
  animation: aFadeUp 1s var(--ease-out) 0.35s forwards;
}
.hero__pre-text {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-shadow: 0 1px 18px rgba(0,0,0,0.85), 0 0 40px rgba(0,0,0,0.5);
}

.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(4rem, 11vw, 9rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  color: var(--cream);
  margin-bottom: 32px;
  opacity: 0;
  animation: aFadeUp 1.3s var(--ease-out) 0.55s forwards;
}

.hero__hr {
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 28px;
  opacity: 0;
  animation: aFadeIn 1s var(--ease-out) 0.95s forwards;
}

.hero__tagline {
  font-size: clamp(0.78rem, 1.4vw, 0.95rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 52px;
  opacity: 0;
  animation: aFadeUp 1s var(--ease-out) 1.1s forwards;
}

.hero__cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: aFadeUp 1s var(--ease-out) 1.3s forwards;
}

.hero__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
  opacity: 0;
  animation: aFadeIn 1s var(--ease-out) 1.6s forwards;
}
.hero__social-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,234,224,0.55);
  transition: color 0.25s;
}
.hero__social-link:hover { color: var(--gold-light); }
.hero__social-link svg {
  width: 14px; height: 14px;
  fill: currentColor;
  flex-shrink: 0;
}
.hero__social-sep {
  width: 1px; height: 14px;
  background: rgba(240,234,224,0.2);
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: aFadeIn 1s var(--ease-out) 2s forwards;
}
.hero__scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, transparent, var(--gold-dim));
  animation: aPulseY 2.2s ease-in-out infinite;
}
.hero__scroll-label {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   INTRO MANIFESTO
   ============================================================ */
.intro {
  padding: var(--pad) var(--gut);
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.intro__quote {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  line-height: 1.65;
  color: var(--cream);
  margin: 28px 0 20px;
}
.intro__body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.88;
}

/* ============================================================
   FEATURED DISHES (homepage)
   ============================================================ */
.featured { background: var(--surface); }

.featured__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  background: var(--gold-border);
  height: clamp(480px, 52vw, 620px);
}

.feat-item {
  position: relative;
  overflow: hidden;
  background: var(--surface);
}
.feat-item:first-child { grid-row: 1 / 3; }

.feat-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s var(--ease-out);
}
.feat-item:hover img { transform: scale(1.07); }

.feat-item__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px 22px;
  background: linear-gradient(to top, rgba(10,8,6,0.92) 0%, transparent 100%);
}
.feat-item__name {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 4px;
}
.feat-item__tag {
  font-size: 0.63rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   PHILOSOPHY SPLIT
   ============================================================ */
.philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: clamp(520px, 58vw, 620px);
}
.philosophy__img {
  position: relative;
  overflow: hidden;
}
.philosophy__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.philosophy:hover .philosophy__img img { transform: scale(1.04); }

.philosophy__body {
  background: var(--surface-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 8vw, 96px);
  overflow: hidden;
}
.philosophy__body .t-label { margin-bottom: 18px; }
.philosophy__body h2 { margin-bottom: 24px; }
.philosophy__body p { color: var(--muted); line-height: 1.88; margin-bottom: 14px; }
.philosophy__body .btn { margin-top: 32px; align-self: flex-start; }

/* ============================================================
   GALLERY STRIP
   ============================================================ */
.gallery { background: var(--bg); overflow: hidden; }

.gallery__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 56px var(--gut) 32px;
  max-width: var(--max);
  margin: 0 auto;
}

.gallery__track {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  padding: 0 var(--gut) 56px;
}
.gallery__track::-webkit-scrollbar { display: none; }
.gallery__track:active { cursor: grabbing; }

.gallery__item {
  flex: 0 0 270px;
  height: 360px;
  overflow: hidden;
  background: var(--surface);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease-out);
  pointer-events: none;
}
.gallery__item:hover img { transform: scale(1.08); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-band {
  background: var(--surface);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(80px, 12vw, 160px) var(--gut);
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 70% at 50% 110%, rgba(196,150,58,0.09), transparent);
  pointer-events: none;
}
.cta-band .t-label { margin-bottom: 20px; }
.cta-band h2 { margin-bottom: 16px; }
.cta-band p  { color: var(--muted); max-width: 460px; margin: 0 auto 44px; }
.cta-band__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--gold-border);
  padding: clamp(60px, 8vw, 100px) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer__brand-logo {
  height: 52px;
  width: 52px;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 16px;
}
.footer__brand p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 250px;
  margin-top: 12px;
}

.footer__col-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer__nav-list { display: flex; flex-direction: column; gap: 11px; }
.footer__nav-link {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer__nav-link:hover { color: var(--cream); }

.footer__info {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.95;
}
.footer__info strong { color: var(--cream-dim); font-weight: 500; }

.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social-a {
  width: 36px; height: 36px;
  border: 1px solid var(--faint);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: border-color 0.22s, color 0.22s;
}
.footer__social-a:hover { border-color: var(--gold); color: var(--gold); }
.footer__social-a svg { width: 15px; height: 15px; fill: currentColor; }

.footer__bottom {
  border-top: 1px solid var(--faint);
  padding: 24px var(--gut);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: var(--max);
  margin: 0 auto;
}
.footer__copy { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.06em; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  height: clamp(320px, 44vh, 520px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: var(--nav-h);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,8,6,0.25), rgba(10,8,6,0.78));
}
.page-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 var(--gut) clamp(40px, 6vw, 72px);
  max-width: calc(var(--max) + var(--gut) * 2);
  margin: 0 auto;
}
.page-hero .t-label { margin-bottom: 10px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(48px, 8vw, 96px);
  align-items: center;
}
.about-story__frame {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.about-story__frame img { width: 100%; height: 100%; object-fit: cover; }
.about-story__frame::after {
  content: '';
  position: absolute;
  bottom: -18px; right: -18px;
  width: 55%; height: 55%;
  border: 1px solid var(--gold-border);
  pointer-events: none;
}
.about-story__text .t-label { margin-bottom: 16px; }
.about-story__text h2     { margin-bottom: 26px; }
.about-story__text p      { color: var(--muted); line-height: 1.88; margin-bottom: 16px; }

.about-story--reverse { direction: rtl; }
.about-story--reverse > * { direction: ltr; }

/* Pull quote band */
.about-pullquote {
  background: var(--surface);
  padding: clamp(56px, 8vw, 100px) var(--gut);
  text-align: center;
}
.about-pullquote__text {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  line-height: 1.55;
  color: var(--gold-light);
  max-width: 820px;
  margin: 0 auto;
  border: none;
  padding: 0;
}

/* Mindful eating section */
.about-meditation { background: var(--surface); }
.about-meditation__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(48px, 7vw, 88px);
  align-items: center;
}

.about-photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.about-photo-pair img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 2px;
}

/* Family + pets pillars */
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
}
.about-pillar__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 28px;
  border-radius: 2px;
}
.about-pillar__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.about-pillar:hover .about-pillar__img img { transform: scale(1.04); }
.about-pillar h3 {
  font-family: var(--ff-serif);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  margin-bottom: 14px;
  color: var(--cream);
}
.about-pillar p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
}

.values {
  background: var(--surface);
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gold-border);
}
.value-card {
  background: var(--surface);
  padding: clamp(36px, 5vw, 56px) clamp(28px, 4vw, 44px);
  text-align: center;
}
.value-card__icon {
  width: 44px; height: 44px;
  margin: 0 auto 20px;
  color: var(--gold);
}
.value-card h3 { color: var(--cream); font-size: 1rem; margin-bottom: 12px; }
.value-card p  { color: var(--muted); font-size: 0.88rem; line-height: 1.78; }

/* ============================================================
   MENU PAGE
   ============================================================ */
.menu-nav {
  position: sticky;
  top: var(--nav-h);
  z-index: 50;
  background: rgba(10,8,6,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--faint);
  position: sticky;
}
.menu-tabs-wrap {
  position: relative;
  overflow: hidden;
}
.menu-tabs-wrap::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 48px;
  background: linear-gradient(to left, rgba(10,8,6,0.92), transparent);
  pointer-events: none;
}
.menu-tabs {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gut);
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 0;
}
.menu-tabs::-webkit-scrollbar { display: none; }

.menu-tab {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 18px 26px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.22s, border-color 0.22s;
  white-space: nowrap;
  flex-shrink: 0;
  background: none;
}
.menu-tab:hover { color: var(--cream); }
.menu-tab.active { color: var(--gold); border-bottom-color: var(--gold); }

.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-section-title {
  padding: 56px var(--gut) 32px;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.menu-section-title--sub {
  padding-top: clamp(72px, 9vw, 116px);
}
.menu-section-title__copy {
  position: relative;
  flex-shrink: 0;
}
.menu-section-kicker {
  font-family: var(--ff-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.menu-section-title h2 {
  white-space: nowrap;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1.75rem, 3vw, 2.85rem);
  line-height: 1;
}
.menu-section-title .rule { transform-origin: left center; }

/* ── Menu list (text-only, editorial style) ── */
.menu-list {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--gut);
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--gold-border);
  border-left: 1px solid var(--gold-border);
}
.menu-item {
  padding: 32px 28px;
  border-right: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}
.menu-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.36s var(--ease-out);
}
.menu-item:hover { background: var(--surface); }
.menu-item:hover::before { transform: scaleY(1); }
.menu-item__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 7px;
}
.menu-item__name {
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.4;
}
.menu-item__price {
  font-family: var(--ff-serif);
  font-size: 1rem;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 1px;
  transition: color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.menu-item:hover .menu-item__price {
  color: var(--gold-light);
  transform: translateX(-2px);
}
.menu-item__note {
  font-size: 0.72rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 8px;
}
.menu-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: -2px 0 12px;
}
.menu-tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid var(--gold-border);
  background: rgba(196,150,58,0.055);
  color: var(--gold-light);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}
.menu-item__desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.65;
}
.menu-section-photo {
  max-width: 640px;
  margin: 64px auto;
  padding: 0 var(--gut);
}
.menu-section-photo img {
  width: 100%;
  border-radius: 3px;
  display: block;
}
.menu-section-photo--pair {
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.menu-section-photo--pair img { border-radius: 3px; }

.menu-section-photo--duo {
  max-width: 980px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(10px, 1.2vw, 16px);
  align-items: start;
}

.menu-section-photo--duo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 3px;
}

.menu-section-photo--dessert-collage {
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1.18fr 1fr;
  gap: 4px;
  align-items: stretch;
}

.menu-section-photo--dessert-collage > img {
  width: 100%;
  display: block;
  border-radius: 3px;
}

.menu-section-photo--dessert-collage > div {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  height: 100%;
  min-height: 0;
}

.menu-section-photo--dessert-collage > div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 3px;
}

/* Legacy card styles (kept for any existing references) */
.menu-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gut);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2px;
  background: var(--gold-border);
  outline: 1px solid var(--gold-border);
}
.menu-card__price {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  color: var(--gold);
  white-space: nowrap;
}
.menu-card__badges { display: flex; gap: 5px; flex-wrap: wrap; }

.badge {
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 7px;
  border: 1px solid;
  line-height: 1.3;
  font-weight: 600;
}
.badge--v  { border-color: var(--gold-dim); color: var(--gold); }
.badge--gf { border-color: var(--muted); color: var(--muted); }

/* ============================================================
   SHOP PAGE
   ============================================================ */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 2px;
  background: var(--gold-border);
  outline: 1px solid var(--gold-border);
}
.shop-card {
  background: var(--surface);
  overflow: hidden;
  transition: background 0.28s;
}
.shop-card:hover { background: var(--surface-2); }

.shop-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--surface-2);
}
.shop-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease-out);
}
.shop-card:hover .shop-card__img img { transform: scale(1.07); }

.shop-card__body { padding: 24px 22px; }
.shop-card__name {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 8px;
}
.shop-card__desc {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 18px;
}
.shop-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.shop-card__price {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  color: var(--gold);
}

/* ── Ecwid embed ─────────────────────────────────────────── */
.ecwid-wrap { min-height: 400px; }

/* Override Ecwid colours to match our dark theme */
.ecwid .ecwid-productBrowser,
.ecwid .ecwid-productBrowser * { box-sizing: border-box; }

.ecwid .ecwid-productBrowser-head,
.ecwid .ecwid-productBrowser-categoryPage-head { display: none !important; }

/* Buttons */
.ecwid .ecwid-btn--primary,
.ecwid .gwt-Button.ecwid-btn { background: var(--gold) !important; color: #0A0806 !important; border: none !important; border-radius: 0 !important; font-family: var(--ff-ui) !important; letter-spacing: 0.1em !important; text-transform: uppercase !important; }

.ecwid .ecwid-btn--primary:hover { background: var(--gold-light) !important; }

/* Product titles */
.ecwid .ecwid-productBrowser-productsListRow-nameLink { color: var(--cream) !important; font-family: var(--ff-serif) !important; }

/* Prices */
.ecwid .ecwid-productBrowser-price-value { color: var(--gold) !important; font-family: var(--ff-serif) !important; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(48px, 8vw, 96px);
  align-items: start;
}

.contact-info .t-label { margin-bottom: 18px; }
.contact-info h2      { margin-bottom: 36px; }

.c-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.c-detail__icon {
  width: 18px; height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}
.c-detail__lbl {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}
.c-detail__val {
  font-size: 0.95rem;
  color: var(--cream);
  line-height: 1.65;
}
.c-detail__val a:hover { color: var(--gold); transition: color 0.2s; }

.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 24px;
  font-size: 0.88rem;
  margin-top: 6px;
}
.hours-grid .day { color: var(--muted); }
.hours-grid .time { color: var(--cream); }

/* Form */
.form-group { margin-bottom: 22px; }
.form-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 9px;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--faint);
  color: var(--cream);
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  padding: 13px 15px;
  outline: none;
  transition: border-color 0.25s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus { border-color: var(--gold); }
.form-input::placeholder,
.form-textarea::placeholder { color: var(--faint); }
.form-textarea { resize: vertical; min-height: 116px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-select { color: var(--muted); }
.form-select option { background: var(--surface-2); color: var(--cream); }
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px 32px;
  background: var(--surface);
  border: 1px solid var(--gold-border);
}
.form-success__icon { color: var(--gold); margin: 0 auto 16px; width: 40px; height: 40px; }
.form-success h3 { font-family: var(--ff-serif); color: var(--gold); margin-bottom: 8px; }
.form-success p  { color: var(--muted); font-size: 0.9rem; }
.form-success__summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 28px;
  background: var(--gold-border);
  border: 1px solid var(--gold-border);
  text-align: left;
}
.form-success__summary div {
  background: var(--surface-2);
  padding: 16px 18px;
}
.form-success__summary dt {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.form-success__summary dd {
  font-family: var(--ff-serif);
  color: var(--cream);
  font-size: 1rem;
}

/* Keep section eyebrow labels consistently gold even inside text sections
   that set all paragraph text to muted. */
p.t-label,
.philosophy__body p.t-label,
.about-story__text p.t-label,
.cta-band p.t-label,
.contact-info p.t-label {
  color: var(--gold);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  }
  .reveal.is-visible { opacity: 1; transform: none; }

  .menu-section-title.is-visible .rule {
    animation: aRuleDraw 0.9s var(--ease-out) both;
  }

  .reveal-l {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  }
  .reveal-l.is-visible { opacity: 1; transform: none; }

  .reveal-r {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  }
  .reveal-r.is-visible { opacity: 1; transform: none; }

  .delay-1 { transition-delay: 0.1s; }
  .delay-2 { transition-delay: 0.2s; }
  .delay-3 { transition-delay: 0.32s; }
  .delay-4 { transition-delay: 0.44s; }
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes aFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes aFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes aPulseY {
  0%, 100% { opacity: 0.35; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.12); }
}
@keyframes aRuleDraw {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .philosophy       { grid-template-columns: 1fr; height: auto; }
  .philosophy__img  { height: 380px; }
  .about-story           { grid-template-columns: 1fr; direction: ltr; }
  .about-story__frame    { aspect-ratio: 16/9; }
  .about-story__frame::after { display: none; }
  .about-photo-pair      { grid-template-columns: 1fr; }
  .about-meditation__inner { grid-template-columns: 1fr; }
  .about-pillars         { grid-template-columns: 1fr; }
  .values__grid     { grid-template-columns: 1fr; }
  .contact-grid     { grid-template-columns: 1fr; }
  .featured__grid   {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    height: auto;
  }
  .feat-item:first-child,
  .feat-item:not(:first-child) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 768px) {
  .nav__links,
  .nav__reserve  { display: none; }
  .nav__burger   { display: flex; }
  .nav__drawer   { display: flex; }

  .hero__title   { font-size: clamp(3.2rem, 14vw, 5.5rem); }

  .footer__grid  { grid-template-columns: 1fr; gap: 32px; }

  .menu-section-title {
    align-items: flex-start;
    gap: 16px;
    padding-top: 44px;
  }
  .menu-section-title h2 {
    white-space: normal;
    font-size: clamp(1.6rem, 8vw, 2.15rem);
  }
  .menu-section-kicker {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
  }

  .menu-grid     { grid-template-columns: 1fr; padding: 0; }
  .menu-card__thumb { width: 100px; }
  .menu-list     { grid-template-columns: 1fr; }
  .menu-section-photo--pair,
  .menu-section-photo--duo,
  .menu-section-photo--dessert-collage { grid-template-columns: 1fr; }

  .menu-section-photo--dessert-collage > img { aspect-ratio: 4 / 3; }

  .menu-section-photo--dessert-collage > div {
    grid-template-rows: none;
    grid-template-columns: 1fr;
  }

  .shop-grid     { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

  .form-row      { grid-template-columns: 1fr; }
  .form-success__summary { grid-template-columns: 1fr; }

  .gallery__item { flex: 0 0 220px; height: 290px; }
}

@media (max-width: 480px) {
  /* Hero CTA: primary full-width, secondary text-link style */
  .hero__cta { flex-direction: column; align-items: center; gap: 10px; }
  .hero__cta .btn--gold { width: 100%; justify-content: center; padding: 15px 28px; }
  .hero__cta .btn--outline {
    background: transparent;
    border: none;
    color: rgba(240,234,224,0.6);
    padding: 8px 0;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    width: auto;
  }
  .hero__cta .btn--outline::after {
    content: ' →';
  }
  .hero__cta .btn--outline:hover { color: var(--cream); background: transparent; }
  .btn           { padding: 14px 28px; }
  .cta-band__btns .btn { width: 100%; justify-content: center; }
  .menu-card     { flex-direction: column; }
  .menu-card__thumb { width: 100%; height: 180px; }
  .cta-band__btns { flex-direction: column; align-items: center; }
  .footer__bottom { flex-direction: column; text-align: center; }
  /* Gallery partial reveal — slightly narrower card so next one peeks */
  .gallery__item { flex: 0 0 82vw; height: 280px; }
}
