/* =========================================================================
   Ebédszünet étkezde – Kiskunlacháza
   Design system + styles. Hand-built, no framework.
   Art direction: "Meleg ebédidő" — déli napfény egy meszelt házias konyhában.
   Krém alapok, paprika-piros CTA, mustár accent, ritka erdőzöld kontraszt.
   ========================================================================= */

/* ---------------------------------------------------------------- Tokens */
:root {
  /* Base / surfaces (light, cream-forward) */
  --bg:            #FBF6EC;   /* meleg krém alap */
  --surface:       #FFFDF8;   /* kártya / fehéres krém */
  --surface-2:     #F3E9D8;   /* meleg homok */
  --cream-deep:    #EFE3CF;
  --footer-bg:     #1C2C24;   /* mély erdőzöld */

  /* Dark contrast section (forest) */
  --forest:        #20342A;
  --forest-2:      #2A4536;

  /* Text / ink (meleg barna, nem fekete) */
  --ink:        #2A211B;
  --ink-soft:   #4B3F35;
  --muted:      #6E6053;
  --ink-dk:     #F6EFE1;   /* szöveg sötét felületen */
  --muted-dk:   #C8B9A4;   /* halvány szöveg sötét felületen */

  /* Brand: paprika / paradicsom piros */
  --primary:     #C5402B;
  --primary-600: #A8331F;
  --primary-700: #8A2716;
  --primary-tint: rgba(197, 64, 43, 0.10);

  /* Accent: mustár + meleg sárga */
  --accent:      #E0A53D;
  --accent-deep: #C5852A;

  /* Feedback */
  --success:  #4E8C57;
  --star-gold:#E8A93A;
  --danger:   #C5402B;

  /* Lines */
  --border:        rgba(42, 33, 27, 0.10);
  --border-strong: rgba(42, 33, 27, 0.17);
  --border-dk:     rgba(246, 239, 225, 0.14);

  /* Overlays */
  --overlay-hero: linear-gradient(180deg, rgba(28,20,14,0.18) 0%, rgba(28,20,14,0.40) 42%, rgba(24,18,12,0.82) 100%);
  --overlay-card: linear-gradient(180deg, rgba(24,18,12,0) 36%, rgba(24,18,12,0.86) 100%);
  --sun-glow:     radial-gradient(70% 90% at 50% 0%, rgba(224,165,61,0.20), transparent 65%);

  /* Fonts */
  --font-display: "Fraunces", "Georgia", "Times New Roman", serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Spacing (4px base) */
  --space-1: .25rem; --space-2: .5rem;  --space-3: .75rem; --space-4: 1rem;
  --space-5: 1.5rem; --space-6: 2rem;   --space-8: 3rem;   --space-10: 4rem;
  --space-12: 5rem;  --space-16: 7.5rem;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 780px;
  --gutter: 1.25rem;
  --gutter-lg: 2rem;
  --section-y: clamp(3.5rem, 8vw, 6.5rem);
  --section-y-sm: clamp(2.5rem, 6vw, 4rem);
  --header-h: 78px;

  /* Radius */
  --radius-sm: 9px; --radius-md: 14px; --radius-lg: 20px; --radius-xl: 28px;
  --radius-full: 999px;

  /* Shadows (meleg tónus) */
  --shadow-sm: 0 1px 2px rgba(60,40,20,.10), 0 2px 6px rgba(60,40,20,.06);
  --shadow-md: 0 10px 28px rgba(60,40,20,.12);
  --shadow-lg: 0 20px 50px rgba(50,33,16,.18);
  --shadow-cta: 0 10px 24px rgba(197,64,43,.30);
  --ring-focus: 0 0 0 3px var(--primary-tint), 0 0 0 1px var(--primary);

  /* Motion */
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --dur-fast: 150ms; --dur-base: 250ms; --dur-slow: 450ms;
}

/* ------------------------------------------------------------------ Base */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.62;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }

:focus-visible {
  outline: none;
  box-shadow: var(--ring-focus);
  border-radius: var(--radius-sm);
}

.container {
  width: min(100% - 2 * var(--gutter), var(--container-max));
  margin-inline: auto;
}
@media (min-width: 768px) { .container { width: min(100% - 2 * var(--gutter-lg), var(--container-max)); } }

.section { padding-block: var(--section-y); }
.section--tan { background: var(--surface-2); }
.section--surface { background: var(--surface); }
.section--forest { background: var(--forest); color: var(--ink-dk); }
[id] { scroll-margin-top: calc(var(--header-h) + 12px); }

.skip-link {
  position: absolute; left: 50%; top: -100px; transform: translateX(-50%);
  background: var(--primary); color: #fff; padding: .75rem 1.25rem;
  border-radius: 0 0 var(--radius-md) var(--radius-md); z-index: 200; font-weight: 700;
  transition: top var(--dur-base) var(--ease-out);
}
.skip-link:focus { top: 0; }

/* ------------------------------------------------------------ Typography */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -.005em; }
.display { font-size: clamp(2.6rem, 7.5vw, 4.75rem); line-height: 1.0; font-weight: 600; letter-spacing: -.02em; }
h1, .h1 { font-size: clamp(2.1rem, 5vw, 3.25rem); }
h2, .h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h3, .h3 { font-size: 1.35rem; line-height: 1.2; }
.eyebrow {
  font-family: var(--font-body); font-size: .8125rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--primary);
  display: inline-flex; align-items: center; gap: .5rem; margin-bottom: var(--space-3);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--accent); border-radius: 2px; }
.section--forest .eyebrow { color: var(--accent); }
.lead { font-size: 1.125rem; color: var(--muted); max-width: 62ch; }
.section--forest .lead { color: var(--muted-dk); }

.section-head { max-width: 760px; margin-bottom: var(--space-8); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

/* --------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  font-family: var(--font-body); font-weight: 700; font-size: 1rem; letter-spacing: .005em;
  padding: 0 1.6rem; height: 54px; border-radius: var(--radius-full);
  transition: transform var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn--primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-cta); }
.btn--primary:hover { background: var(--primary-600); transform: translateY(-2px); }
.btn--primary:active { background: var(--primary-700); transform: translateY(0); }
.btn--accent { background: var(--accent); color: var(--ink); box-shadow: 0 10px 24px rgba(224,165,61,.32); }
.btn--accent:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn--secondary { background: transparent; color: var(--ink); border: 1.5px solid var(--border-strong); }
.btn--secondary:hover { border-color: var(--primary); background: var(--primary-tint); color: var(--primary-700); }
.section--forest .btn--secondary { color: var(--ink-dk); border-color: var(--border-dk); }
.section--forest .btn--secondary:hover { border-color: var(--accent); background: rgba(224,165,61,.12); color: var(--ink-dk); }
/* Secondary button on dark photo backgrounds (hero / final CTA) */
.hero .btn--secondary, .final-cta .btn--secondary { color: #fff; border-color: rgba(255,255,255,.55); }
.hero .btn--secondary:hover, .final-cta .btn--secondary:hover { border-color: #fff; background: rgba(255,255,255,.14); color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); padding-inline: 1rem; }
.btn--ghost:hover { background: var(--surface-2); }
.btn--lg { height: 60px; font-size: 1.0625rem; padding-inline: 2rem; }
.btn--block { width: 100%; }

.cta-row { display: flex; flex-wrap: wrap; gap: var(--space-3); }

/* ---------------------------------------------------------------- Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: height var(--dur-base) var(--ease-out),
              background var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  height: 64px;
  background: rgba(251,246,236,.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); width: 100%; }

.brand { display: flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 600; letter-spacing: -.01em; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 13px; flex: none;
  background: linear-gradient(140deg, var(--primary), var(--accent));
  display: grid; place-items: center; color: #fff;
  box-shadow: var(--shadow-cta);
}
.brand-mark svg { width: 24px; height: 24px; }
.brand-text { line-height: 1.04; font-size: 1.12rem; }
.brand-text small { display: block; font-family: var(--font-body); font-weight: 600; font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--primary); }

.nav { display: none; }
.nav ul { display: flex; align-items: center; gap: var(--space-1); }
.nav a {
  display: inline-block; padding: .5rem .75rem; border-radius: var(--radius-full);
  font-weight: 600; font-size: .95rem; color: var(--muted);
  transition: color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.nav a:hover { color: var(--ink); background: var(--surface-2); }
.nav a[aria-current="true"] { color: var(--primary-700); background: var(--primary-tint); }

.header-cta { display: none; align-items: center; gap: var(--space-3); }
.header-phone { font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--ink); white-space: nowrap; }
.header-phone span { color: var(--muted); display: block; font-family: var(--font-body); font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }

.icon-btn {
  width: 46px; height: 46px; border-radius: var(--radius-md);
  display: grid; place-items: center; color: var(--ink);
  border: 1px solid var(--border-strong);
  transition: background var(--dur-fast) var(--ease-out);
}
.icon-btn:hover { background: var(--surface-2); }
.icon-btn svg { width: 22px; height: 22px; }
.header-tools { display: flex; align-items: center; gap: var(--space-2); }
.header-tools .icon-btn--call { background: var(--primary); border-color: var(--primary); color: #fff; }

@media (min-width: 1024px) {
  .nav { display: block; }
  .header-cta { display: flex; }
  .header-tools { display: none; }
}

/* ----------------------------------------------------- Mobile nav overlay */
.mobile-nav {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(28,20,14,.97);
  backdrop-filter: blur(8px);
  color: var(--ink-dk);
  display: flex; flex-direction: column; padding: var(--space-5) var(--gutter) calc(var(--space-8) + env(safe-area-inset-bottom));
  transform: translateY(-100%);
  transition: transform var(--dur-base) var(--ease-out);
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-6); }
.mobile-nav__top .brand-text { color: var(--ink-dk); }
.mobile-nav__top .icon-btn { color: var(--ink-dk); border-color: var(--border-dk); }
.mobile-nav ul { display: flex; flex-direction: column; gap: var(--space-1); }
.mobile-nav a.m-link {
  display: block; padding: 1rem .25rem; font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 600; border-bottom: 1px solid var(--border-dk); color: var(--ink-dk);
  transition: color var(--dur-fast) var(--ease-out), padding-left var(--dur-fast) var(--ease-out);
}
.mobile-nav a.m-link:hover { color: var(--accent); padding-left: .6rem; }
.mobile-nav__cta { margin-top: auto; padding-top: var(--space-6); display: grid; gap: var(--space-3); }
@media (min-width: 1024px) { .mobile-nav { display: none; } }

/* ----------------------------------------------------- Sticky call bar */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 1px;
  background: var(--border-strong);
  padding-bottom: env(safe-area-inset-bottom);
  background-color: rgba(255,253,248,.92);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 30px rgba(40,28,14,.16);
  transform: translateY(110%);
  transition: transform var(--dur-base) var(--ease-out);
}
.callbar.is-visible { transform: translateY(0); }
.callbar a {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  height: 62px; font-weight: 700; font-size: 1.02rem;
}
.callbar svg { width: 20px; height: 20px; }
.callbar .cb-call { background: var(--primary); color: #fff; }
.callbar .cb-route { color: var(--ink); }
@media (min-width: 1024px) { .callbar { display: none; } }

/* ------------------------------------------------------------------ Hero */
.hero { position: relative; min-height: 90vh; display: flex; align-items: flex-end; color: var(--ink-dk); overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.04) contrast(1.02) brightness(.98); }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--overlay-hero); }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--sun-glow); pointer-events: none; }
.hero__inner { padding-block: clamp(2.5rem, 7vw, 5rem) clamp(2.5rem, 6vw, 4.5rem); max-width: 780px; }
.hero .badge-open { margin-bottom: var(--space-4); }
.hero h1 { margin-bottom: var(--space-4); text-wrap: balance; color: #fff; }
.hero .hero__sub { font-size: 1.18rem; color: var(--ink-dk); opacity: .95; margin-bottom: var(--space-6); max-width: 54ch; }
.hero .cta-row { margin-bottom: var(--space-5); }
.hero__meta { display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-5); color: var(--muted-dk); font-size: .95rem; font-weight: 600; }
.hero__meta span { display: inline-flex; align-items: center; gap: .4rem; }
.hero__meta svg { width: 17px; height: 17px; color: var(--accent); }
.hero__meta .stars { color: var(--star-gold); }

/* badge: open/closed */
.badge-open {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(28,20,14,.50); border: 1px solid var(--border-dk);
  padding: .42rem .9rem; border-radius: var(--radius-full);
  font-size: .85rem; font-weight: 700; letter-spacing: .01em; color: var(--ink-dk);
}
.badge-open .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--muted-dk); box-shadow: 0 0 0 4px rgba(255,255,255,.07); }
.badge-open.is-open .dot { background: var(--success); animation: pulse 2.4s var(--ease-out) infinite; }
.badge-open.is-closed .dot { background: var(--danger); }
/* badge on light surfaces */
.badge-open--light { background: var(--surface); border-color: var(--border-strong); color: var(--ink); }
.badge-open--light .dot { box-shadow: 0 0 0 4px rgba(42,33,27,.05); }

/* ------------------------------------------------------------ Trust strip */
.trust { background: var(--surface-2); border-block: 1px solid var(--border); }
.trust__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-4); padding-block: var(--space-6); }
.trust__item { display: flex; align-items: center; gap: var(--space-3); }
.trust__item .ti-ic { width: 46px; height: 46px; border-radius: 13px; background: var(--surface); color: var(--primary); display: grid; place-items: center; flex: none; box-shadow: var(--shadow-sm); }
.trust__item .ti-ic svg { width: 23px; height: 23px; }
.trust__item strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; line-height: 1.15; }
.trust__item small { color: var(--muted); font-size: .82rem; }
.stars { color: var(--star-gold); letter-spacing: .05em; }
@media (min-width: 768px) { .trust__grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------------------------------------------------------- Weekly menu */
.menu-disclaimer {
  margin-top: var(--space-4); padding: var(--space-3) var(--space-4);
  background: var(--primary-tint); border: 1px solid rgba(197,64,43,.18);
  border-radius: var(--radius-md); font-size: .9rem; color: var(--ink-soft);
  display: flex; gap: .6rem; align-items: flex-start;
}
.menu-disclaimer svg { width: 18px; height: 18px; color: var(--primary); flex: none; margin-top: 2px; }
.section--forest .menu-disclaimer { background: rgba(224,165,61,.12); border-color: var(--border-dk); color: var(--muted-dk); }
.section--forest .menu-disclaimer svg { color: var(--accent); }

.week-meta { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-3); margin-bottom: var(--space-5); }
.week-meta .chip-week {
  display: inline-flex; align-items: center; gap: .5rem; background: var(--accent);
  color: var(--ink); font-weight: 700; font-size: .9rem; padding: .4rem .9rem; border-radius: var(--radius-full);
}
.week-meta .chip-week svg { width: 16px; height: 16px; }

.daytabs { display: flex; gap: var(--space-2); overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: var(--space-3); -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.daytabs::-webkit-scrollbar { display: none; }
.daytab {
  scroll-snap-align: center; white-space: nowrap; flex: 1 0 auto; min-width: 92px;
  padding: .7rem 1.1rem; border-radius: var(--radius-md);
  font-weight: 700; font-size: .98rem; color: var(--muted);
  background: var(--surface); border: 1.5px solid var(--border);
  transition: all var(--dur-fast) var(--ease-out);
  display: flex; flex-direction: column; align-items: center; gap: 2px; line-height: 1.1;
}
.daytab small { font-family: var(--font-body); font-weight: 600; font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; color: var(--accent-deep); }
.daytab:hover { border-color: var(--primary); color: var(--ink); }
.daytab[aria-selected="true"] { background: var(--ink); color: var(--surface); border-color: var(--ink); }
.daytab[aria-selected="true"] small { color: var(--accent); }
.daytab[data-today="1"] { position: relative; }
.daytab[data-today="1"]::after {
  content: "MA"; position: absolute; top: 6px; right: 7px;
  background: var(--primary); color: #fff; font-family: var(--font-body);
  font-size: .54rem; font-weight: 800; letter-spacing: .06em; line-height: 1;
  padding: .14rem .34rem; border-radius: var(--radius-full); box-shadow: var(--shadow-sm);
}
.daytab[aria-selected="true"][data-today="1"]::after { box-shadow: 0 0 0 1.5px var(--ink); }

.daypanel { display: none; }
.daypanel.is-active { display: block; animation: fadeUp var(--dur-base) var(--ease-out); }
.day-soup {
  display: flex; align-items: center; gap: var(--space-3); padding: var(--space-4) var(--space-5);
  background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-lg);
  margin-bottom: var(--space-4);
}
.day-soup .ds-ic { width: 44px; height: 44px; border-radius: 12px; background: var(--surface); color: var(--accent-deep); display: grid; place-items: center; flex: none; box-shadow: var(--shadow-sm); }
.day-soup .ds-ic svg { width: 24px; height: 24px; }
.day-soup .ds-label { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.day-soup .ds-name { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: var(--ink); }

.menu-cards { display: grid; gap: var(--space-4); }
@media (min-width: 760px) { .menu-cards { grid-template-columns: 1fr 1fr; } }
.menu-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--space-5); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: var(--space-3);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.menu-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.menu-card__head { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); }
.menu-card__badge { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--ink); }
.menu-card__badge .mc-letter { width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; color: #fff; font-size: .95rem; font-weight: 700; font-family: var(--font-body); }
.menu-card--a .mc-letter { background: var(--primary); }
.menu-card--b .mc-letter { background: var(--success); }
.menu-card__course { color: var(--ink-soft); font-size: 1.02rem; }
.menu-card__course strong { font-family: var(--font-display); font-weight: 600; color: var(--ink); }
.menu-card__foot { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--space-3); margin-top: auto; padding-top: var(--space-3); border-top: 1px dashed var(--border); }
.menu-card__price { font-family: var(--font-display); font-weight: 600; color: var(--primary); font-size: 1.35rem; line-height: 1; }
.menu-card__price small { display: block; font-family: var(--font-body); font-size: .72rem; font-weight: 600; color: var(--muted); margin-bottom: 3px; letter-spacing: .02em; }
.menu-card__price .price-big { color: var(--ink); font-size: .92rem; font-weight: 600; margin-left: .35rem; }

.tag-mini { font-size: .62rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; padding: .16rem .5rem; border-radius: var(--radius-full); }
.tag-mini--veg { background: rgba(78,140,87,.16); color: #356b3d; }
.tag-mini--hot { background: rgba(197,64,43,.12); color: var(--primary); }
.tag-mini--pop { background: rgba(224,165,61,.22); color: #946818; }

.menu-foot { margin-top: var(--space-6); display: flex; flex-wrap: wrap; gap: var(--space-3); align-items: center; justify-content: space-between; }
.menu-foot p { color: var(--muted); font-size: .95rem; max-width: 46ch; }
.section--forest .menu-foot p { color: var(--muted-dk); }

/* --------------------------------------------------------- How to order */
.steps { display: grid; gap: var(--space-4); margin-top: var(--space-6); }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); gap: var(--space-5); } }
.step {
  background: var(--forest-2); border: 1px solid var(--border-dk); border-radius: var(--radius-lg);
  padding: var(--space-6); position: relative; overflow: hidden;
}
.step__num { font-family: var(--font-display); font-weight: 600; font-size: 3.2rem; line-height: 1; color: rgba(224,165,61,.30); margin-bottom: var(--space-2); }
.step__ic { width: 50px; height: 50px; border-radius: 14px; background: rgba(224,165,61,.14); color: var(--accent); display: grid; place-items: center; margin-bottom: var(--space-4); }
.step__ic svg { width: 26px; height: 26px; }
.step h3 { color: var(--ink-dk); font-size: 1.25rem; margin-bottom: var(--space-2); }
.step p { color: var(--muted-dk); font-size: .96rem; }
.step .badge-soft { display: inline-block; margin-top: var(--space-3); font-size: .76rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--accent); background: rgba(224,165,61,.12); padding: .25rem .6rem; border-radius: var(--radius-full); }

/* ------------------------------------------------------------------ Menu (à la carte) */
.tabs { margin-top: var(--space-6); }
.tablist { display: flex; gap: var(--space-2); overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: var(--space-3); -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.tablist::-webkit-scrollbar { display: none; }
.tab {
  scroll-snap-align: center; white-space: nowrap; flex: none;
  padding: .65rem 1.15rem; border-radius: var(--radius-full);
  font-weight: 700; font-size: .95rem; color: var(--muted);
  background: var(--surface); border: 1.5px solid var(--border);
  transition: all var(--dur-fast) var(--ease-out);
}
.tab:hover { border-color: var(--primary); color: var(--ink); }
.tab[aria-selected="true"] { background: var(--ink); color: var(--surface); border-color: var(--ink); }

.tabpanel { display: none; margin-top: var(--space-5); }
.tabpanel.is-active { display: block; animation: fadeUp var(--dur-base) var(--ease-out); }

.alc-grid { display: grid; gap: var(--space-3); }
@media (min-width: 640px) { .alc-grid { grid-template-columns: 1fr 1fr; gap: var(--space-3) var(--space-6); } }

.alc-item {
  display: flex; align-items: baseline; gap: var(--space-3);
  padding: var(--space-4) 0; border-bottom: 1px dashed var(--border);
}
.alc-item__main { flex: 1; min-width: 0; }
.alc-item__name { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--ink); display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.alc-item__desc { color: var(--muted); font-size: .92rem; margin-top: 2px; }
.alc-item__dots { flex: 1; border-bottom: 1px dotted var(--border-strong); transform: translateY(-4px); min-width: 16px; }
.alc-item__price { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--primary); white-space: nowrap; }

/* --------------------------------------------------------------- Gallery */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
@media (min-width: 640px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery__item { position: relative; aspect-ratio: 1/1; border-radius: var(--radius-lg); overflow: hidden; background: var(--surface-2); cursor: zoom-in; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item.is-wide { grid-column: span 2; aspect-ratio: 2/1; }
.gallery__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(24,18,12,.25), transparent 40%); opacity: 0; transition: opacity var(--dur-fast); }
.gallery__item:hover::after { opacity: 1; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(20,14,8,.92); display: none; align-items: center; justify-content: center; padding: var(--space-5); }
.lightbox.is-open { display: flex; animation: fade var(--dur-base) var(--ease-out); }
.lightbox img { max-width: min(92vw, 1100px); max-height: 86vh; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.lightbox__btn { position: absolute; top: 50%; transform: translateY(-50%); width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; display: grid; place-items: center; backdrop-filter: blur(6px); }
.lightbox__btn:hover { background: rgba(255,255,255,.22); }
.lightbox__btn svg { width: 26px; height: 26px; }
.lb-prev { left: var(--space-4); }
.lb-next { right: var(--space-4); }
.lb-close { top: var(--space-5); right: var(--space-5); transform: none; }

/* ------------------------------------------------------------- About / why */
.about-grid { display: grid; gap: var(--space-6); align-items: center; }
@media (min-width: 900px) { .about-grid { grid-template-columns: 1fr 1fr; gap: var(--space-10); } }
.about-media { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.about-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-media .tag-float { position: absolute; left: var(--space-4); bottom: var(--space-4); background: var(--surface); color: var(--ink); padding: .6rem 1rem; border-radius: var(--radius-full); font-weight: 700; font-size: .9rem; box-shadow: var(--shadow-md); display: inline-flex; align-items: center; gap: .5rem; }
.about-media .tag-float svg { width: 18px; height: 18px; color: var(--primary); }
.about-copy p { color: var(--ink-soft); margin-bottom: var(--space-4); }
.about-copy p:last-of-type { margin-bottom: 0; }
.signature-name { font-family: var(--font-display); font-size: 1.3rem; color: var(--ink); margin-top: var(--space-5); }
.signature-name small { display: block; font-family: var(--font-body); font-size: .8rem; color: var(--muted); font-weight: 600; letter-spacing: .04em; }

.features { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); margin-top: var(--space-10); }
@media (min-width: 900px) { .features { grid-template-columns: repeat(4, 1fr); } }
.feature {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--space-5); color: var(--ink);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature .f-ic { width: 50px; height: 50px; border-radius: 14px; background: var(--primary-tint); color: var(--primary); display: grid; place-items: center; margin-bottom: var(--space-4); }
.feature .f-ic svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.15rem; margin-bottom: var(--space-2); }
.feature p { color: var(--muted); font-size: .92rem; }

/* --------------------------------------------------------------- Reviews */
.reviews { display: grid; gap: var(--space-4); }
@media (min-width: 768px) { .reviews { grid-template-columns: repeat(3, 1fr); } }
.review {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--space-5); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: var(--space-3);
}
.review .stars { font-size: 1.05rem; }
.review blockquote { font-family: var(--font-display); font-weight: 500; font-size: 1.08rem; color: var(--ink); line-height: 1.5; }
.review .review__who { display: flex; align-items: center; gap: .65rem; margin-top: auto; }
.review .avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent)); display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; color: #fff; flex: none; }
.review .review__who strong { font-size: .95rem; }
.review .review__who small { display: block; color: var(--muted); font-size: .8rem; }
.reviews-cta { margin-top: var(--space-6); text-align: center; }

/* -------------------------------------------------------------- Location */
.loc-grid { display: grid; gap: var(--space-6); }
@media (min-width: 900px) { .loc-grid { grid-template-columns: 1.05fr .95fr; gap: var(--space-8); align-items: stretch; } }
.map-embed { border-radius: var(--radius-xl); overflow: hidden; min-height: 340px; background: var(--surface-2); box-shadow: var(--shadow-lg); }
.map-embed iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }

.loc-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: var(--space-6); color: var(--ink); box-shadow: var(--shadow-sm); }
.loc-list { display: grid; gap: var(--space-4); margin-bottom: var(--space-5); }
.loc-row { display: flex; gap: var(--space-3); align-items: flex-start; }
.loc-row .lr-ic { width: 42px; height: 42px; border-radius: 12px; background: var(--primary-tint); color: var(--primary); display: grid; place-items: center; flex: none; }
.loc-row .lr-ic svg { width: 20px; height: 20px; }
.loc-row strong { display: block; font-size: 1.02rem; }
.loc-row a { color: var(--ink); }
.loc-row a:hover { color: var(--primary); }
.loc-row small { display: block; color: var(--muted); font-size: .85rem; margin-top: 2px; }

.hours { border-top: 1px solid var(--border); padding-top: var(--space-4); margin-bottom: var(--space-5); }
.hours__head { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); margin-bottom: var(--space-3); flex-wrap: wrap; }
.hours__head h3 { font-size: 1.1rem; }
.hours table { width: 100%; border-collapse: collapse; }
.hours td { padding: .5rem 0; font-size: .95rem; border-bottom: 1px solid var(--border); }
.hours td:last-child { text-align: right; color: var(--muted); font-weight: 600; }
.hours tr:last-child td { border-bottom: none; }
.hours tr.is-today td { color: var(--ink); }
.hours tr.is-today td:first-child { position: relative; padding-left: .9rem; font-weight: 700; }
.hours tr.is-today td:first-child::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 4px; height: 60%; background: var(--primary); border-radius: 4px; }
.hours tr.is-today td:last-child { color: var(--accent-deep); }
.hours td.is-closed { color: var(--muted); }
.loc-actions { display: grid; gap: var(--space-3); }
@media (min-width: 480px) { .loc-actions { grid-template-columns: 1fr 1fr; } }

/* ------------------------------------------------------------- Final CTA */
.final-cta { position: relative; text-align: center; color: var(--ink-dk); overflow: hidden; }
.final-cta__media { position: absolute; inset: 0; z-index: -2; }
.final-cta__media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.42) saturate(1.06); }
.final-cta::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--sun-glow); }
.final-cta .container { position: relative; }
.final-cta .eyebrow { color: var(--accent); justify-content: center; }
.final-cta h2 { margin-bottom: var(--space-3); text-wrap: balance; color: #fff; }
.final-cta p { color: var(--muted-dk); max-width: 48ch; margin: 0 auto var(--space-6); font-size: 1.12rem; }
.final-cta .cta-row { justify-content: center; }

/* ---------------------------------------------------------------- Footer */
.site-footer { background: var(--footer-bg); color: var(--ink-dk); padding-block: var(--space-10) var(--space-6); }
.footer-grid { display: grid; gap: var(--space-6); }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr; gap: var(--space-8); } }
.footer-brand .brand-text { color: var(--ink-dk); }
.footer-brand p { color: var(--muted-dk); margin-top: var(--space-3); font-size: .95rem; max-width: 36ch; }
.footer-social { display: flex; gap: var(--space-2); margin-top: var(--space-4); }
.footer-social a { width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--border-dk); display: grid; place-items: center; color: var(--ink-dk); transition: all var(--dur-fast) var(--ease-out); }
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-2px); }
.footer-social svg { width: 20px; height: 20px; }
.footer-col h4 { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; margin-bottom: var(--space-3); color: var(--ink-dk); }
.footer-col ul { display: grid; gap: var(--space-2); }
.footer-col a, .footer-col li { color: var(--muted-dk); font-size: .95rem; }
.footer-col a:hover { color: var(--ink-dk); }
.footer-bottom { border-top: 1px solid var(--border-dk); margin-top: var(--space-8); padding-top: var(--space-5); display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: space-between; color: var(--muted-dk); font-size: .85rem; }
.footer-bottom a { color: var(--accent); }
.footer-bottom a:hover { color: var(--ink-dk); }

/* page padding so call bar doesn't cover footer on mobile */
@media (max-width: 1023px) { .site-footer { padding-bottom: calc(var(--space-6) + 66px); } }

/* ------------------------------------------------------------- Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 70ms; }
.reveal[data-delay="2"] { transition-delay: 140ms; }
.reveal[data-delay="3"] { transition-delay: 210ms; }

/* ------------------------------------------------------------- Keyframes */
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(78,140,87,.5); } 50% { box-shadow: 0 0 0 6px rgba(78,140,87,0); } }

/* ------------------------------------------------------- Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}
