/* ===========================================================================
   HARVEST CAFE
   Carmichael Road West Shoppes, Nassau, The Bahamas
   Website designed by Baha Connect
   =========================================================================== */

/* ---------------------------------------------------------------------------
   1. DESIGN TOKENS
   --------------------------------------------------------------------------- */

:root {
  /* Type */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Helvetica Neue', sans-serif;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  2rem;
  --text-4xl:  2.75rem;
  --text-5xl:  3.75rem;

  --leading-none:    1;
  --leading-tight:   1.12;
  --leading-snug:    1.35;
  --leading-normal:  1.65;
  --leading-relaxed: 1.8;

  --weight-regular:  400;
  --weight-medium:   500;
  --weight-semibold: 700;
  --weight-bold:     700;
  --weight-black:    900;

  --tracking-tight:  -0.025em;
  --tracking-normal: 0em;
  --tracking-wide:   0.06em;
  --tracking-widest: 0.16em;

  /* Green: the Harvest olive, extended into a full scale */
  --green-50:  hsl(76, 52%, 96%);
  --green-100: hsl(78, 45%, 89%);
  --green-200: hsl(80, 38%, 77%);
  --green-300: hsl(82, 33%, 59%);
  --green-400: hsl(83, 40%, 42%);
  --green-500: hsl(84, 48%, 31%);
  --green-600: hsl(85, 53%, 24%);
  --green-700: hsl(85, 55%, 19%);
  --green-800: hsl(86, 58%, 14%);
  --green-900: hsl(86, 62%, 9%);

  /* Orange: the Harvest wordmark colour */
  --orange-50:  hsl(24, 72%, 97%);
  --orange-100: hsl(22, 80%, 92%);
  --orange-200: hsl(22, 85%, 83%);
  --orange-300: hsl(24, 88%, 74%);
  --orange-400: hsl(26, 92%, 65%);
  --orange-500: hsl(24, 90%, 56%);
  --orange-600: hsl(22, 88%, 48%);
  --orange-700: hsl(21, 84%, 40%);
  --orange-800: hsl(19, 80%, 31%);
  --orange-900: hsl(18, 78%, 23%);

  /* Warm greys, never pure grey */
  --warm-50:  hsl(40, 30%, 97%);
  --warm-100: hsl(38, 22%, 93%);
  --warm-200: hsl(36, 17%, 86%);
  --warm-300: hsl(34, 13%, 74%);
  --warm-400: hsl(32, 10%, 57%);
  --warm-500: hsl(30, 9%, 43%);
  --warm-600: hsl(30, 10%, 32%);
  --warm-700: hsl(30, 11%, 23%);
  --warm-800: hsl(30, 12%, 15%);
  --warm-900: hsl(30, 14%, 9%);

  --cream: hsl(44, 58%, 95%);
  --cream-deep: hsl(42, 44%, 91%);

  --whatsapp: hsl(142, 72%, 29%);
  --whatsapp-dark: hsl(142, 74%, 22%);

  --text-primary:   var(--warm-900);
  --text-secondary: var(--warm-500);
  --text-tertiary:  hsl(32, 12%, 42%);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --section-y: var(--space-24);
  --section-x: var(--space-6);
  --container-max: 1180px;
  --content-max: 66ch;
  --gap-cards: var(--space-6);

  /* Shadows, warm-tinted rather than neutral black */
  --shadow-xs: 0 1px 2px hsl(30 30% 10% / 0.06);
  --shadow-sm: 0 1px 4px hsl(30 30% 10% / 0.08), 0 1px 2px hsl(30 30% 10% / 0.06);
  --shadow-md: 0 4px 14px hsl(30 30% 10% / 0.10), 0 2px 4px hsl(30 30% 10% / 0.07);
  --shadow-lg: 0 14px 36px hsl(30 30% 10% / 0.13), 0 4px 8px hsl(30 30% 10% / 0.07);
  --shadow-xl: 0 26px 68px hsl(30 30% 10% / 0.16), 0 8px 16px hsl(30 30% 10% / 0.08);

  /* Radius: soft personality. Pills for actions, 16px for surfaces. */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 74px;
}

/* ---------------------------------------------------------------------------
   2. RESET AND BASE
   --------------------------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--space-4));
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--text-primary);
  background: var(--cream);
  overflow-x: hidden;
  /* Faint botanical wash so the page is never a flat colour */
  background-image:
    radial-gradient(ellipse 70% 40% at 8% 0%, hsl(80 38% 77% / 0.30), transparent 60%),
    radial-gradient(ellipse 60% 45% at 100% 22%, hsl(22 85% 83% / 0.30), transparent 62%),
    radial-gradient(ellipse 80% 40% at 50% 100%, hsl(78 45% 89% / 0.40), transparent 65%);
  background-attachment: fixed;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0;
  color: var(--green-800);
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
}

h1 { font-size: var(--text-4xl); font-weight: var(--weight-bold); }
h2 { font-size: var(--text-3xl); font-weight: var(--weight-bold); }
h3 { font-size: var(--text-2xl); font-weight: var(--weight-semibold); line-height: var(--leading-snug); }
h4 { font-family: var(--font-body); font-size: var(--text-xl); font-weight: var(--weight-semibold); line-height: var(--leading-snug); letter-spacing: var(--tracking-normal); }

p { margin: 0 0 var(--space-4); max-width: var(--content-max); }
a { color: var(--green-600); text-decoration-color: hsl(85 53% 24% / 0.35); text-underline-offset: 3px; }
a:hover { text-decoration-color: currentColor; }

:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--section-x);
}

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: var(--space-16); }
.section--cream { background: linear-gradient(180deg, hsl(44 58% 95% / 0), hsl(42 44% 91% / 0.75), hsl(44 58% 95% / 0)); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--green-700); color: var(--cream);
  padding: var(--space-3) var(--space-6); border-radius: 0 0 var(--radius-md) 0;
  font-weight: var(--weight-semibold);
}
.skip-link:focus { left: 0; }

.eyebrow {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--orange-700);
  margin: 0 0 var(--space-3);
  display: block;
}

.lede { font-size: var(--text-lg); color: var(--warm-600); line-height: var(--leading-relaxed); }
.muted { color: var(--text-secondary); }

.section-head { max-width: 62ch; margin-bottom: var(--space-12); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center p { margin-inline: auto; }

/* Botanical sprig ornament, drawn from the leaf in the Harvest mark */
.sprig { display: block; width: 116px; height: 26px; color: var(--green-400); opacity: 0.85; margin-bottom: var(--space-4); }
.section-head--center .sprig { margin-inline: auto; }
.sprig path, .sprig line { fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; }
.sprig .leaf { fill: currentColor; stroke: none; }

/* ---------------------------------------------------------------------------
   3. BUTTONS
   --------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  line-height: var(--leading-tight);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s var(--ease), box-shadow 0.16s var(--ease),
              background-color 0.2s var(--ease), color 0.2s var(--ease),
              border-color 0.2s var(--ease);
}
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--primary { background: var(--orange-500); color: hsl(18 78% 14%); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--orange-400); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--primary:active { transform: translateY(1px); box-shadow: var(--shadow-xs); }

.btn--wa { background: var(--whatsapp); color: hsl(142 60% 96%); box-shadow: var(--shadow-sm); }
.btn--wa:hover { background: var(--whatsapp-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--wa:active { transform: translateY(1px); box-shadow: var(--shadow-xs); }

.btn--ghost { background: transparent; color: var(--green-700); border-color: hsl(85 53% 24% / 0.35); }
.btn--ghost:hover { background: var(--green-50); border-color: var(--green-600); transform: translateY(-2px); }
.btn--ghost:active { transform: translateY(1px); }

.btn--onphoto { background: hsl(44 58% 95% / 0.14); color: var(--cream); border-color: hsl(44 58% 95% / 0.55); backdrop-filter: blur(6px); }
.btn--onphoto:hover { background: var(--cream); color: var(--green-800); border-color: var(--cream); transform: translateY(-2px); }

.btn--sm { padding: var(--space-3) var(--space-6); font-size: var(--text-xs); }
.btn--block { width: 100%; }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; transform: none; box-shadow: none; }

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

.link-arrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-weight: var(--weight-semibold); font-size: var(--text-sm);
  letter-spacing: var(--tracking-wide); text-transform: uppercase;
  color: var(--orange-700); text-decoration: none;
}
.link-arrow span { transition: transform 0.2s var(--ease); }
.link-arrow:hover span { transform: translateX(5px); }

/* ---------------------------------------------------------------------------
   4. HEADER AND NAVIGATION
   --------------------------------------------------------------------------- */

.header {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  height: var(--header-h);
  display: flex; align-items: center;
  background: hsl(44 58% 95% / 0.72);
  backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid hsl(85 40% 24% / 0.10);
  transition: background-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.header.is-stuck { background: hsl(44 58% 95% / 0.96); box-shadow: var(--shadow-md); }
.header .container { display: flex; align-items: center; justify-content: space-between; gap: var(--space-6); }

.brand { display: flex; align-items: center; gap: var(--space-3); text-decoration: none; flex: none; }
.brand img { height: 42px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-display); font-size: var(--text-lg); font-weight: var(--weight-bold); color: var(--green-700); letter-spacing: var(--tracking-tight); }
.brand-sub { font-size: 0.6rem; letter-spacing: var(--tracking-widest); text-transform: uppercase; color: var(--orange-700); margin-top: 3px; }

.nav { display: flex; align-items: center; gap: var(--space-6); }
.nav a {
  position: relative;
  font-size: var(--text-sm); font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wide); text-transform: uppercase;
  color: var(--warm-600); text-decoration: none; padding-block: var(--space-2);
  transition: color 0.2s var(--ease);
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--orange-500);
  transition: width 0.25s var(--ease);
}
.nav a:hover { color: var(--green-700); }
.nav a:hover::after { width: 100%; }
.nav a.is-active { color: var(--green-700); font-weight: var(--weight-semibold); }
.nav a.is-active::after { width: 100%; background: var(--green-500); }

.header-cta { display: flex; align-items: center; gap: var(--space-3); }

.burger {
  display: none; width: 46px; height: 46px;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid hsl(85 40% 24% / 0.22);
  border-radius: var(--radius-full); cursor: pointer;
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.burger:hover { background: var(--green-50); border-color: var(--green-500); }
.burger span { display: block; width: 20px; height: 2px; background: var(--green-700); position: relative; transition: background-color 0.2s var(--ease); }
.burger span::before, .burger span::after {
  content: ''; position: absolute; left: 0; width: 20px; height: 2px; background: var(--green-700);
  transition: transform 0.28s var(--ease), top 0.28s var(--ease);
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 89;
  background: var(--cream);
  padding: var(--space-8) var(--section-x) var(--space-16);
  display: flex; flex-direction: column; gap: var(--space-2);
  transform: translateY(-12px); opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
.mobile-menu a.m-link {
  font-family: var(--font-display); font-size: var(--text-3xl); font-weight: var(--weight-bold);
  color: var(--green-800); text-decoration: none; padding-block: var(--space-3);
  border-bottom: 1px solid hsl(85 40% 24% / 0.12);
  letter-spacing: var(--tracking-tight);
  transition: color 0.2s var(--ease), padding-left 0.2s var(--ease);
}
.mobile-menu a.m-link:hover, .mobile-menu a.m-link.is-active { color: var(--orange-600); padding-left: var(--space-2); }
.mobile-menu .m-actions { margin-top: var(--space-8); display: grid; gap: var(--space-3); }
.mobile-menu .m-meta { margin-top: var(--space-8); font-size: var(--text-sm); color: var(--text-secondary); }
body.menu-open { overflow: hidden; }

/* ---------------------------------------------------------------------------
   5. HERO
   --------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: min(94vh, 820px);
  display: flex; align-items: flex-end;
  padding-top: calc(var(--header-h) + var(--space-16));
  padding-bottom: var(--space-16);
  overflow: hidden;
  isolation: isolate;
}
.hero-media { position: absolute; inset: -12% 0 -12% 0; z-index: -2; will-change: transform; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }

/* Animated warm wash sitting over the photograph, keeps text legible and
   gives the hero a living, slow-moving atmosphere */
.hero-wash {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(184deg, hsl(86 62% 9% / 0.30) 0%, hsl(86 62% 9% / 0.10) 34%, hsl(86 62% 9% / 0.86) 88%),
    linear-gradient(115deg, hsl(85 55% 19% / 0.55), hsl(18 78% 23% / 0.30) 48%, hsl(85 55% 19% / 0.52));
  background-size: 100% 100%, 300% 300%;
  animation: washDrift 16s ease-in-out infinite;
}
@keyframes washDrift {
  0%   { background-position: 0% 50%, 0% 50%; }
  50%  { background-position: 0% 50%, 100% 50%; }
  100% { background-position: 0% 50%, 0% 50%; }
}

.hero-inner { position: relative; z-index: 1; }
.hero .eyebrow { color: var(--orange-300); }
.hero h1 {
  font-size: clamp(2.75rem, 9vw, var(--text-5xl));
  color: var(--cream);
  max-width: 15ch;
  margin-bottom: var(--space-6);
  text-shadow: 0 2px 40px hsl(86 62% 9% / 0.55);
}
.hero h1 em { font-style: italic; color: var(--orange-300); }
.hero p {
  color: hsl(44 40% 88%);
  font-size: var(--text-lg);
  max-width: 46ch;
  margin-bottom: var(--space-8);
  line-height: var(--leading-relaxed);
}

/* Quick actions: call, directions, whatsapp */
.quick-actions {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3); margin-top: var(--space-12); max-width: 520px;
}
.qa {
  display: flex; flex-direction: column; align-items: center; gap: var(--space-2);
  padding: var(--space-4) var(--space-2);
  background: hsl(44 58% 95% / 0.12);
  border: 1px solid hsl(44 58% 95% / 0.30);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  color: var(--cream); text-decoration: none;
  font-size: var(--text-xs); font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide); text-transform: uppercase;
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.qa svg { width: 22px; height: 22px; color: var(--orange-300); transition: color 0.2s var(--ease); }
.qa:hover { transform: translateY(-4px); background: hsl(44 58% 95% / 0.94); color: var(--green-800); border-color: var(--cream); }
.qa:hover svg { color: var(--orange-600); }

/* ---------------------------------------------------------------------------
   6. PAGE HERO (interior pages)
   --------------------------------------------------------------------------- */

.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + var(--space-16));
  padding-bottom: var(--space-16);
  overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; right: -140px; top: -60px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, hsl(22 85% 83% / 0.55), transparent 66%);
  pointer-events: none;
}
.page-hero h1 { max-width: 18ch; margin-bottom: var(--space-4); }
.page-hero p { font-size: var(--text-lg); color: var(--warm-600); }
.crumb { font-size: var(--text-xs); letter-spacing: var(--tracking-widest); text-transform: uppercase; color: var(--text-tertiary); margin-bottom: var(--space-4); }
.crumb a { color: var(--text-secondary); text-decoration: none; }
.crumb a:hover { color: var(--green-600); }

/* ---------------------------------------------------------------------------
   7. CARDS AND DISH GRID
   --------------------------------------------------------------------------- */

.grid { display: grid; gap: var(--gap-cards); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.dish {
  position: relative;
  background: hsl(0 0% 100% / 0.72);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--green-500);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
  display: flex; flex-direction: column;
}
.dish:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dish-media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--warm-100); }
.dish-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.dish:hover .dish-media img { transform: scale(1.06); }
.dish-body { padding: var(--space-6); display: flex; flex-direction: column; gap: var(--space-2); flex: 1; }
.dish-top { display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-4); }
.dish h3 { font-size: var(--text-xl); font-family: var(--font-display); }
.dish-price { font-family: var(--font-display); font-size: var(--text-xl); font-weight: var(--weight-bold); color: var(--orange-700); flex: none; }
.dish p { font-size: var(--text-sm); color: var(--warm-500); margin: 0; }

.tag {
  align-self: flex-start;
  font-size: 0.65rem; font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-widest); text-transform: uppercase;
  color: var(--green-700); background: var(--green-100);
  padding: var(--space-1) var(--space-3); border-radius: var(--radius-full);
}

/* ---------------------------------------------------------------------------
   8. SPLIT / ABOUT PREVIEW
   --------------------------------------------------------------------------- */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-16); align-items: center; }
.split--reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; }
.split-media::before {
  content: ''; position: absolute; inset: auto -18px -18px auto;
  width: 62%; height: 62%; border: 2px solid var(--orange-300);
  border-radius: var(--radius-lg); z-index: -1;
}
.split-body h2 { margin-bottom: var(--space-4); }

.stat-row { display: flex; flex-wrap: wrap; gap: var(--space-8); margin: var(--space-8) 0; }
.stat { }
.stat-num { font-family: var(--font-display); font-size: var(--text-3xl); font-weight: var(--weight-bold); color: var(--green-600); line-height: 1; }
.stat-label { font-size: var(--text-xs); letter-spacing: var(--tracking-widest); text-transform: uppercase; color: var(--text-secondary); margin-top: var(--space-2); }

/* ---------------------------------------------------------------------------
   9. MENU CATEGORY PREVIEW
   --------------------------------------------------------------------------- */

.cat-card {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 230px; padding: var(--space-6);
  border-radius: var(--radius-lg); overflow: hidden; text-decoration: none;
  background: var(--green-700);
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.cat-card:hover img { transform: scale(1.07); }
.cat-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, hsl(86 62% 9% / 0.10) 30%, hsl(86 62% 9% / 0.86));
}
.cat-card-body { position: relative; z-index: 1; }
.cat-card h3 { color: var(--cream); font-size: var(--text-2xl); margin-bottom: var(--space-1); }
.cat-card span { font-size: var(--text-xs); letter-spacing: var(--tracking-widest); text-transform: uppercase; color: var(--orange-300); font-weight: var(--weight-semibold); }

/* ---------------------------------------------------------------------------
   10. GALLERY
   --------------------------------------------------------------------------- */

.filters { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-bottom: var(--space-8); }
.filter {
  font-size: var(--text-xs); font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide); text-transform: uppercase;
  padding: var(--space-3) var(--space-6); border-radius: var(--radius-full);
  border: 1px solid hsl(85 40% 24% / 0.22); background: transparent;
  color: var(--warm-600); cursor: pointer;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.16s var(--ease);
}
.filter:hover { background: var(--green-50); border-color: var(--green-500); transform: translateY(-2px); }
.filter[aria-pressed="true"] { background: var(--green-600); border-color: var(--green-600); color: var(--cream); }

.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.gal-item {
  position: relative; padding: 0; border: 0; cursor: pointer; overflow: hidden;
  border-radius: var(--radius-lg); background: var(--warm-100);
  aspect-ratio: 1 / 1; box-shadow: var(--shadow-sm);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gal-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.gal-item:hover img { transform: scale(1.07); }
.gal-item figcaption {
  position: absolute; inset: auto 0 0 0; z-index: 1;
  padding: var(--space-6) var(--space-4) var(--space-4);
  background: linear-gradient(180deg, transparent, hsl(86 62% 9% / 0.85));
  color: var(--cream); font-size: var(--text-sm); font-weight: var(--weight-semibold);
  text-align: left; opacity: 0; transform: translateY(8px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.gal-item:hover figcaption, .gal-item:focus-visible figcaption { opacity: 1; transform: translateY(0); }
.gal-item.is-hidden { display: none; }

.lightbox {
  position: fixed; inset: 0; z-index: 120;
  background: hsl(86 62% 6% / 0.94);
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-6);
  opacity: 0; visibility: hidden; transition: opacity 0.25s var(--ease), visibility 0.25s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(1000px, 92vw); max-height: 78vh; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); }
.lightbox-cap { color: var(--cream); text-align: center; margin-top: var(--space-4); font-size: var(--text-sm); letter-spacing: var(--tracking-wide); }
.lb-btn {
  position: absolute; background: hsl(44 58% 95% / 0.12); border: 1px solid hsl(44 58% 95% / 0.30);
  color: var(--cream); width: 52px; height: 52px; border-radius: var(--radius-full);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background-color 0.2s var(--ease), transform 0.16s var(--ease);
}
.lb-btn:hover { background: hsl(44 58% 95% / 0.94); color: var(--green-800); transform: scale(1.06); }
.lb-close { top: var(--space-6); right: var(--space-6); }
.lb-prev { left: var(--space-4); top: 50%; transform: translateY(-50%); }
.lb-next { right: var(--space-4); top: 50%; transform: translateY(-50%); }
.lb-prev:hover, .lb-next:hover { transform: translateY(-50%) scale(1.06); }

/* ---------------------------------------------------------------------------
   11. REVIEWS BAND
   --------------------------------------------------------------------------- */

.reviews-band {
  background: var(--green-700);
  background-image:
    radial-gradient(ellipse 60% 50% at 12% 0%, hsl(84 48% 31% / 0.75), transparent 62%),
    radial-gradient(ellipse 50% 60% at 92% 100%, hsl(18 78% 23% / 0.55), transparent 62%);
  color: var(--cream);
  position: relative; overflow: hidden;
}
.reviews-band h2 { color: var(--cream); }
.reviews-band .eyebrow { color: var(--orange-300); }
.reviews-band .sprig { color: var(--green-200); }
.rating-wrap { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-12); justify-content: space-between; }
.rating-score { display: flex; align-items: baseline; gap: var(--space-3); }
.rating-score b { font-family: var(--font-display); font-size: 4.5rem; font-weight: var(--weight-bold); line-height: 1; color: var(--cream); }
.stars { display: flex; gap: 3px; margin-bottom: var(--space-2); }
.stars svg { width: 22px; height: 22px; color: var(--orange-400); }
.rating-meta { font-size: var(--text-sm); color: hsl(78 30% 82%); }
.review-card {
  background: hsl(44 58% 95% / 0.08); border: 1px solid hsl(44 58% 95% / 0.18);
  border-radius: var(--radius-lg); padding: var(--space-6);
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease);
}
.review-card:hover { transform: translateY(-4px); background: hsl(44 58% 95% / 0.14); }
.review-card p { color: hsl(44 40% 90%); font-size: var(--text-base); font-style: italic; }
.review-card cite { font-style: normal; font-size: var(--text-xs); letter-spacing: var(--tracking-widest); text-transform: uppercase; color: var(--orange-300); }

/* ---------------------------------------------------------------------------
   12. LOCATION AND HOURS
   --------------------------------------------------------------------------- */

.info-panel {
  background: hsl(0 0% 100% / 0.75);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--orange-400);
}
.hours-list { list-style: none; margin: 0; padding: 0; }
.hours-list li {
  display: flex; justify-content: space-between; gap: var(--space-4);
  padding-block: var(--space-3);
  border-bottom: 1px solid hsl(36 17% 86% / 0.9);
  font-size: var(--text-sm);
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list .day { color: var(--warm-600); font-weight: var(--weight-medium); }
.hours-list .time { color: var(--text-primary); font-variant-numeric: tabular-nums; }
.hours-list li.is-today { background: var(--green-50); margin-inline: calc(var(--space-3) * -1); padding-inline: var(--space-3); border-radius: var(--radius-sm); }
.hours-list li.is-today .day { color: var(--green-700); font-weight: var(--weight-semibold); }

.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-4); }
.contact-list li { display: flex; gap: var(--space-4); align-items: flex-start; }
.contact-icon {
  flex: none; width: 42px; height: 42px; border-radius: var(--radius-full);
  background: var(--green-50); color: var(--green-500);
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 19px; height: 19px; }
.contact-list .c-label { font-size: var(--text-xs); letter-spacing: var(--tracking-widest); text-transform: uppercase; color: var(--text-tertiary); display: block; }
.contact-list .c-value { font-size: var(--text-lg); color: var(--text-primary); text-decoration: none; font-weight: var(--weight-medium); }
.contact-list a.c-value:hover { color: var(--orange-700); }

.map-frame {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); border: 3px solid hsl(0 0% 100% / 0.8);
  line-height: 0; height: 100%; min-height: 340px;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; }

/* ---------------------------------------------------------------------------
   13. INSTAGRAM STRIP
   --------------------------------------------------------------------------- */

.ig-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3); }
.ig-tile { position: relative; display: block; aspect-ratio: 1/1; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-xs); }
.ig-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.ig-tile::after {
  content: ''; position: absolute; inset: 0;
  background: hsl(86 62% 9% / 0); transition: background-color 0.25s var(--ease);
}
.ig-tile:hover img { transform: scale(1.09); }
.ig-tile:hover::after { background: hsl(86 62% 9% / 0.28); }

/* ---------------------------------------------------------------------------
   14. FINAL CTA
   --------------------------------------------------------------------------- */

.cta-band {
  position: relative; overflow: hidden;
  background-image: url('img/hot-honey-chicken-burger.jpg');
  background-size: cover; background-position: center 45%;
  background-attachment: fixed;
  text-align: center;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, hsl(86 62% 9% / 0.84), hsl(85 55% 19% / 0.90));
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--cream); font-size: clamp(2rem, 6vw, 3.25rem); max-width: 18ch; margin-inline: auto; margin-bottom: var(--space-6); }
.cta-band p { color: hsl(44 40% 88%); margin-inline: auto; margin-bottom: var(--space-8); font-size: var(--text-lg); }
.cta-band .btn-row { justify-content: center; }
.cta-band .sprig { color: var(--orange-300); margin-inline: auto; }

/* ---------------------------------------------------------------------------
   15. FORMS
   --------------------------------------------------------------------------- */

.form-card {
  background: hsl(0 0% 100% / 0.8);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
}
.field { display: grid; gap: var(--space-2); margin-bottom: var(--space-6); }
.field label { font-size: var(--text-xs); font-weight: var(--weight-semibold); letter-spacing: var(--tracking-widest); text-transform: uppercase; color: var(--warm-600); }
.field .hint { font-size: var(--text-xs); color: var(--text-tertiary); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }

input, select, textarea {
  font-family: var(--font-body); font-size: var(--text-base); color: var(--text-primary);
  padding: var(--space-3) var(--space-4);
  background: hsl(40 30% 99%);
  border: 1px solid var(--warm-200);
  border-radius: var(--radius-md);
  box-shadow: inset 0 2px 4px hsl(30 30% 10% / 0.05);
  width: 100%;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
textarea { min-height: 132px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px hsl(84 48% 31% / 0.16), inset 0 2px 4px hsl(30 30% 10% / 0.04);
}
input[aria-invalid="true"], textarea[aria-invalid="true"], select[aria-invalid="true"] {
  border-color: hsl(2 72% 50%);
  box-shadow: 0 0 0 3px hsl(2 72% 50% / 0.14);
}
.error-msg { color: hsl(2 68% 40%); font-size: var(--text-xs); font-weight: var(--weight-semibold); }
.form-status { margin-top: var(--space-4); font-size: var(--text-sm); font-weight: var(--weight-semibold); }
.form-status.ok { color: var(--green-600); }
.form-status.bad { color: hsl(2 68% 40%); }

.radio-row { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.radio-chip { position: relative; }
.radio-chip input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.radio-chip span {
  display: inline-block; padding: var(--space-3) var(--space-6);
  border: 1px solid var(--warm-200); border-radius: var(--radius-full);
  font-size: var(--text-sm); font-weight: var(--weight-medium); cursor: pointer;
  background: hsl(40 30% 99%);
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.radio-chip input:checked + span { background: var(--green-600); border-color: var(--green-600); color: var(--cream); }
.radio-chip input:focus-visible + span { outline: 3px solid var(--orange-500); outline-offset: 2px; }
.radio-chip span:hover { border-color: var(--green-500); }

.order-preview {
  margin-top: var(--space-6); padding: var(--space-6);
  background: var(--green-50); border-radius: var(--radius-md);
  border-left: 3px solid var(--green-400);
  font-size: var(--text-sm); color: var(--warm-600);
  white-space: pre-wrap; font-family: var(--font-body); line-height: var(--leading-relaxed);
}
.order-preview strong { color: var(--green-700); display: block; margin-bottom: var(--space-2); font-size: var(--text-xs); letter-spacing: var(--tracking-widest); text-transform: uppercase; }

/* ---------------------------------------------------------------------------
   16. MENU PAGE
   --------------------------------------------------------------------------- */

.menu-nav {
  position: sticky; top: var(--header-h); z-index: 40;
  background: hsl(44 58% 95% / 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(85 40% 24% / 0.10);
  padding-block: var(--space-3);
}
.menu-nav-inner { display: flex; gap: var(--space-2); overflow-x: auto; scrollbar-width: none; }
.menu-nav-inner::-webkit-scrollbar { display: none; }
.menu-nav a {
  flex: none; font-size: var(--text-xs); font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide); text-transform: uppercase;
  padding: var(--space-3) var(--space-6); border-radius: var(--radius-full);
  color: var(--warm-600); text-decoration: none;
  border: 1px solid hsl(85 40% 24% / 0.18);
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.menu-nav a:hover { background: var(--green-50); border-color: var(--green-500); color: var(--green-700); }
.menu-nav a.is-current { background: var(--green-600); border-color: var(--green-600); color: var(--cream); }

.menu-cat { margin-bottom: var(--space-24); }
.menu-cat-head { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--space-6); margin-bottom: var(--space-8); }
.menu-cat-head h2 { font-size: clamp(1.75rem, 5vw, 2.5rem); }
.menu-cat-head p { margin: var(--space-2) 0 0; color: var(--text-secondary); font-size: var(--text-sm); }

.menu-list { display: grid; gap: var(--space-6); }
.menu-item {
  display: grid; grid-template-columns: 1fr auto; gap: var(--space-2) var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid hsl(36 17% 86% / 0.85);
}
.menu-item:last-child { border-bottom: 0; padding-bottom: 0; }
.menu-item-name { font-family: var(--font-display); font-size: var(--text-xl); font-weight: var(--weight-semibold); color: var(--green-800); display: flex; align-items: baseline; gap: var(--space-3); flex-wrap: wrap; }
.menu-item-price { font-family: var(--font-display); font-size: var(--text-xl); font-weight: var(--weight-bold); color: var(--orange-700); white-space: nowrap; }
.menu-item-desc { grid-column: 1 / -1; font-size: var(--text-sm); color: var(--warm-500); margin: 0; max-width: 68ch; }
.menu-item-variants { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-6); margin-top: var(--space-1); }
.variant { font-size: var(--text-sm); color: var(--warm-600); }
.variant b { color: var(--orange-700); font-weight: var(--weight-semibold); font-variant-numeric: tabular-nums; }
.menu-item-addon { grid-column: 1 / -1; font-size: var(--text-xs); letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--green-600); font-weight: var(--weight-semibold); }
.menu-item-photo { grid-column: 1 / -1; margin-top: var(--space-3); border-radius: var(--radius-md); overflow: hidden; max-width: 320px; box-shadow: var(--shadow-sm); }
.menu-item-photo img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform 0.5s var(--ease); }
.menu-item-photo:hover img { transform: scale(1.05); }

.cat-note {
  margin-top: var(--space-6); padding: var(--space-4) var(--space-6);
  background: var(--orange-50); border-left: 3px solid var(--orange-400);
  border-radius: var(--radius-sm); font-size: var(--text-sm); color: var(--orange-900);
}
.side-chips { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.side-chip {
  padding: var(--space-3) var(--space-6);
  background: hsl(0 0% 100% / 0.75); border: 1px solid var(--warm-200);
  border-radius: var(--radius-full); font-size: var(--text-sm); color: var(--warm-600);
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease);
}
.side-chip:hover { transform: translateY(-3px); border-color: var(--green-400); }

.notice {
  margin-top: var(--space-12); padding: var(--space-6);
  border: 1px dashed hsl(85 40% 24% / 0.3); border-radius: var(--radius-md);
  font-size: var(--text-sm); color: var(--warm-500); text-align: center;
}
.notice p { margin: 0 auto; }

/* ---------------------------------------------------------------------------
   17. FOOTER
   --------------------------------------------------------------------------- */

.footer {
  background: var(--green-900);
  color: hsl(78 22% 78%);
  padding-block: var(--space-16) var(--space-8);
  margin-bottom: 0;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--space-12); }
.footer h4 { color: var(--cream); font-size: var(--text-xs); letter-spacing: var(--tracking-widest); text-transform: uppercase; margin-bottom: var(--space-6); font-family: var(--font-body); }
.footer a { color: hsl(78 22% 78%); text-decoration: none; transition: color 0.2s var(--ease); }
.footer a:hover { color: var(--orange-300); }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-3); font-size: var(--text-sm); }
.footer .f-brand img { height: 74px; width: auto; margin-bottom: var(--space-4); filter: brightness(1.7) saturate(1.15); }
.footer .f-brand p { font-size: var(--text-sm); color: hsl(78 18% 66%); max-width: 34ch; }
.footer-hours { font-size: var(--text-sm); display: grid; gap: var(--space-2); }
.footer-hours div { display: flex; justify-content: space-between; gap: var(--space-4); }
.footer-hours span:last-child { color: hsl(78 18% 66%); font-variant-numeric: tabular-nums; }
.socials { display: flex; gap: var(--space-3); margin-top: var(--space-6); }
.socials a {
  width: 42px; height: 42px; border-radius: var(--radius-full);
  border: 1px solid hsl(78 22% 78% / 0.28);
  display: flex; align-items: center; justify-content: center;
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.socials a svg { width: 19px; height: 19px; }
.socials a:hover { background: var(--orange-500); border-color: var(--orange-500); color: hsl(18 78% 14%); transform: translateY(-3px); }
.footer-base {
  margin-top: var(--space-16); padding-top: var(--space-6);
  border-top: 1px solid hsl(78 22% 78% / 0.16);
  display: flex; flex-wrap: wrap; gap: var(--space-4);
  justify-content: space-between; align-items: center;
  font-size: var(--text-xs); color: hsl(78 16% 58%);
}

/* ---------------------------------------------------------------------------
   18. FLOATING ACTIONS AND STICKY ORDER BAR
   --------------------------------------------------------------------------- */

.float-stack {
  position: fixed; right: var(--space-4); bottom: var(--space-6); z-index: 80;
  display: flex; flex-direction: column; gap: var(--space-3);
}
.float-btn {
  width: 56px; height: 56px; border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.float-btn svg { width: 27px; height: 27px; }
.float-btn:hover { transform: translateY(-4px) scale(1.05); box-shadow: var(--shadow-xl); }
.float-wa { background: var(--whatsapp); color: hsl(142 60% 96%); }
.float-call { background: var(--orange-500); color: hsl(18 78% 14%); display: none; }

.order-bar {
  position: fixed; inset: auto 0 0 0; z-index: 85;
  display: none; gap: var(--space-2);
  padding: var(--space-3) var(--space-4) calc(var(--space-3) + env(safe-area-inset-bottom, 0px));
  background: hsl(44 58% 95% / 0.97);
  backdrop-filter: blur(14px);
  border-top: 1px solid hsl(85 40% 24% / 0.14);
  box-shadow: 0 -6px 24px hsl(30 30% 10% / 0.10);
}
.order-bar .btn { flex: 1; padding-inline: var(--space-3); }

/* ---------------------------------------------------------------------------
   19. MOTION: SCROLL REVEALS
   --------------------------------------------------------------------------- */

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-38px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal-right { opacity: 0; transform: translateX(38px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-group > *:nth-child(1) { transition-delay: 0s; }
.reveal-group > *:nth-child(2) { transition-delay: 0.09s; }
.reveal-group > *:nth-child(3) { transition-delay: 0.18s; }
.reveal-group > *:nth-child(4) { transition-delay: 0.27s; }
.reveal-group > *:nth-child(5) { transition-delay: 0.36s; }
.reveal-group > *:nth-child(6) { transition-delay: 0.45s; }

/* ---------------------------------------------------------------------------
   20. 404
   --------------------------------------------------------------------------- */

.notfound { min-height: 76vh; display: flex; align-items: center; text-align: center; padding-top: var(--header-h); }
.notfound .container { max-width: 640px; }
.notfound .big { font-family: var(--font-display); font-size: clamp(5rem, 22vw, 10rem); line-height: 0.9; color: var(--green-200); font-weight: var(--weight-black); }
.notfound .sprig { margin-inline: auto; }
.notfound .btn-row { justify-content: center; }

/* ---------------------------------------------------------------------------
   21. RESPONSIVE
   --------------------------------------------------------------------------- */

@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-12) var(--space-8); }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split { gap: var(--space-12); }
}

@media (max-width: 860px) {
  :root { --section-y: var(--space-16); }
  .nav, .header-cta .btn { display: none; }
  .burger { display: flex; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .rating-wrap { gap: var(--space-8); }
  .menu-cat-head { flex-direction: column; align-items: flex-start; }
  .cta-band { background-attachment: scroll; }
  body { background-attachment: scroll; }
  /* Horizontal slides read badly on a narrow screen and push the canvas.
     Fall back to the vertical reveal below 860px. */
  .reveal-left, .reveal-right { transform: translateY(30px); }
  .reveal-left.visible, .reveal-right.visible { transform: translateY(0); }
  /* The offset accent frame overhangs the viewport once the split stacks */
  .split-media::before { display: none; }
}

@media (max-width: 620px) {
  :root { --section-x: var(--space-4); --section-y: var(--space-12); }
  h1 { font-size: var(--text-3xl); }
  h2 { font-size: 1.75rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .hero { min-height: auto; padding-top: calc(var(--header-h) + var(--space-12)); }
  .quick-actions { max-width: none; }
  .form-card, .info-panel { padding: var(--space-6); }
  .order-bar { display: flex; }
  .float-stack { bottom: calc(var(--space-16) + var(--space-6)); }
  .float-call { display: flex; }
  .rating-score b { font-size: 3.25rem; }
  body { padding-bottom: 0; }
  .footer { padding-bottom: calc(var(--space-16) + var(--space-8)); }
}

/* ---------------------------------------------------------------------------
   22. REDUCED MOTION
   --------------------------------------------------------------------------- */

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

@media print {
  .header, .mobile-menu, .float-stack, .order-bar, .menu-nav { display: none !important; }
  body { background: #fff; }
}
