/* ==========================================================================
   MANUELO'S RESTAURANT
   Built by Baha Connect IT Solutions
   Do not edit the generated HTML. Edit _content.py or this file, then rebuild.
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. FONTS (self hosted, no third party request)
   -------------------------------------------------------------------------- */
@font-face {
  font-family: "Fraunces";
  src: url("assets/fonts/fraunces-var.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Karla";
  src: url("assets/fonts/karla-400.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Karla";
  src: url("assets/fonts/karla-600.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Karla";
  src: url("assets/fonts/karla-700.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Type families */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Karla", "Helvetica Neue", Arial, sans-serif;

  /* Type scale (6 sizes) */
  --fs-xs:   0.8125rem;
  --fs-sm:   0.9375rem;
  --fs-base: 1.0625rem;
  --fs-lg:   1.375rem;
  --fs-xl:   clamp(1.75rem, 3.4vw, 2.5rem);
  --fs-hero: clamp(2.35rem, 6.2vw, 4.4rem);

  /* Colour, all HSL */
  --forest:      133 35% 22%;
  --forest-deep: 133 41% 12%;
  --leaf:         89 41% 42%;
  --leaf-lt:      89 40% 62%;
  --cream:        44 45% 94%;
  --cream-2:      42 38% 89%;
  --sage:         96 21% 87%;
  --charcoal:    107 10% 12%;
  --gold:         38 52% 56%;
  --gold-dk:      38 58% 34%;
  --gold-lt:      38 62% 71%;

  /* Text hierarchy on light */
  --t1: 107 14% 12%;
  --t2: 120  9% 31%;
  --t3: 120  8% 42%;
  /* Text hierarchy on dark */
  --d1:  44 45% 96%;
  --d2:  90 16% 82%;
  --d3:  90 14% 68%;

  /* Spacing, 4pt grid */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px; --s-5: 24px;
  --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px; --s-10: 128px;

  /* Radius */
  --r-1: 8px; --r-2: 14px; --r-3: 24px; --r-4: 40px; --r-pill: 999px;

  /* Shadows, tinted toward the forest hue */
  --sh-1: 0 1px 2px hsl(var(--forest) / .07);
  --sh-2: 0 2px 6px hsl(var(--forest) / .09), 0 1px 2px hsl(var(--forest) / .06);
  --sh-3: 0 6px 18px hsl(var(--forest) / .11), 0 2px 5px hsl(var(--forest) / .07);
  --sh-4: 0 14px 36px hsl(var(--forest) / .15), 0 4px 10px hsl(var(--forest) / .08);
  --sh-5: 0 28px 64px hsl(var(--forest) / .22), 0 8px 18px hsl(var(--forest) / .10);

  --maxw: 1240px;
  --maxw-text: 66ch;
  --header-h: 84px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --------------------------------------------------------------------------
   2. BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: hsl(var(--t1));
  background-color: hsl(var(--cream));
  background-image:
    radial-gradient(circle at 12% 8%,  hsl(var(--sage) / .55) 0%, transparent 42%),
    radial-gradient(circle at 88% 4%,  hsl(var(--gold) / .10) 0%, transparent 38%);
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: hsl(var(--forest)); text-decoration-thickness: 1px; text-underline-offset: 3px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: hsl(var(--t1));
  margin: 0 0 var(--s-4);
  font-variation-settings: "SOFT" 20, "WONK" 1;
}
h1 { font-size: var(--fs-hero); line-height: 1.04; letter-spacing: -0.032em; }
h2 { font-size: var(--fs-xl); }
h3 { font-size: var(--fs-lg); line-height: 1.2; }
h4 { font-size: var(--fs-base); line-height: 1.25; }
p  { margin: 0 0 var(--s-4); max-width: var(--maxw-text); }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: hsl(var(--gold-dk));
  margin: 0 0 var(--s-3);
  display: block;
}
.on-dark .eyebrow, .band-forest .eyebrow { color: hsl(var(--gold-lt)); }

.lede { font-size: var(--fs-lg); line-height: 1.5; color: hsl(var(--t2)); font-weight: 400; }
.muted { color: hsl(var(--t2)); }
.small { font-size: var(--fs-sm); color: hsl(var(--t3)); }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--s-5); }
section { padding-block: var(--s-9); }
@media (max-width: 760px) { section { padding-block: var(--s-8); } }

.skip-link {
  position: absolute; left: var(--s-4); top: -100px; z-index: 200;
  background: hsl(var(--forest)); color: hsl(var(--d1));
  padding: var(--s-3) var(--s-5); border-radius: var(--r-1); font-weight: 700;
}
.skip-link:focus { top: var(--s-4); }

:focus-visible {
  outline: 3px solid hsl(var(--gold-dk));
  outline-offset: 3px;
  border-radius: var(--r-1);
}
.band-forest :focus-visible, .site-footer :focus-visible { outline-color: hsl(var(--gold-lt)); }

/* --------------------------------------------------------------------------
   3. DECORATIVE: LEAF RULE + FOREST BANDS
   -------------------------------------------------------------------------- */
.leaf-rule {
  display: flex; align-items: center; gap: var(--s-4);
  margin: 0 0 var(--s-6); color: hsl(var(--leaf));
}
.leaf-rule::before, .leaf-rule::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, hsl(var(--leaf) / .45), transparent);
}
.leaf-rule svg { width: 22px; height: 22px; flex: none; }
.leaf-rule.start::before { display: none; }
.leaf-rule.start { justify-content: flex-start; }

.band-forest {
  background-color: hsl(var(--forest-deep));
  background-image:
    radial-gradient(ellipse at 15% 0%, hsl(var(--forest) / .95) 0%, transparent 60%),
    radial-gradient(ellipse at 90% 100%, hsl(var(--leaf) / .22) 0%, transparent 55%);
  color: hsl(var(--d2));
  position: relative;
  overflow: hidden;
}
.band-forest::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cpath d='M30 18c14 0 24 10 24 24-14 0-24-10-24-24z' fill='%236A963F' fill-opacity='0.10'/%3E%3Cpath d='M92 76c-14 0-24 10-24 24 14 0 24-10 24-24z' fill='%236A963F' fill-opacity='0.08'/%3E%3C/svg%3E");
}
.band-forest h1, .band-forest h2, .band-forest h3, .band-forest h4 { color: hsl(var(--d1)); }
.band-forest p, .band-forest li { color: hsl(var(--d2)); }
.band-forest .wrap { position: relative; z-index: 1; }

.band-sage { background: linear-gradient(170deg, hsl(var(--sage) / .8), hsl(var(--cream) / 0)); }

/* --------------------------------------------------------------------------
   4. BUTTONS  (4 states each)
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  font-family: var(--font-body); font-size: var(--fs-sm); font-weight: 700;
  letter-spacing: .01em; line-height: 1;
  padding: 0 var(--s-6); height: 48px; border-radius: var(--r-pill);
  border: 1.5px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform .16s var(--ease), box-shadow .16s var(--ease),
              background-color .16s var(--ease), color .16s var(--ease),
              border-color .16s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex: none; }

.btn-primary { background: hsl(var(--forest)); color: hsl(var(--d1)); box-shadow: var(--sh-2); }
.btn-primary:hover  { background: hsl(var(--forest-deep)); transform: translateY(-2px); box-shadow: var(--sh-4); }
.btn-primary:active { transform: translateY(1px); box-shadow: var(--sh-1); }

.btn-gold { background: hsl(var(--gold)); color: hsl(var(--charcoal)); box-shadow: var(--sh-2); }
.btn-gold:hover  { background: hsl(var(--gold-lt)); transform: translateY(-2px); box-shadow: var(--sh-4); }
.btn-gold:active { transform: translateY(1px); box-shadow: var(--sh-1); }

.btn-outline { background: transparent; color: hsl(var(--forest)); border-color: hsl(var(--forest) / .35); }
.btn-outline:hover  { border-color: hsl(var(--forest)); background: hsl(var(--forest) / .06); transform: translateY(-2px); }
.btn-outline:active { transform: translateY(1px); }

.btn-ghost-light { background: hsl(var(--d1) / .09); color: hsl(var(--d1)); border-color: hsl(var(--d1) / .28); }
.btn-ghost-light:hover  { background: hsl(var(--d1) / .17); border-color: hsl(var(--d1) / .5); transform: translateY(-2px); }
.btn-ghost-light:active { transform: translateY(1px); }

.btn-wa { background: hsl(142 70% 29%); color: #fff; box-shadow: var(--sh-2); }
.btn-wa:hover  { background: hsl(142 70% 24%); transform: translateY(-2px); box-shadow: var(--sh-4); }
.btn-wa:active { transform: translateY(1px); box-shadow: var(--sh-1); }

.btn-sm { height: 40px; padding: 0 var(--s-5); font-size: var(--fs-xs); }
.btn:disabled, .btn[aria-disabled="true"] { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-6); }

/* --------------------------------------------------------------------------
   5. HEADER
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: hsl(var(--cream) / .93);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid hsl(var(--forest) / .10);
  transition: box-shadow .25s var(--ease), background-color .25s var(--ease);
}
.site-header.scrolled { box-shadow: var(--sh-3); background: hsl(var(--cream) / .98); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-5);
  height: var(--header-h); transition: height .25s var(--ease);
}
.site-header.scrolled .header-inner { height: 66px; }

.brand { display: flex; align-items: center; flex: none; text-decoration: none; }
.brand img { height: 42px; width: auto; transition: height .25s var(--ease); }
.site-header.scrolled .brand img { height: 34px; }

.nav-desktop { display: flex; align-items: center; gap: var(--s-5); }
.nav-desktop a {
  position: relative; font-size: var(--fs-sm); font-weight: 600;
  color: hsl(var(--t2)); text-decoration: none; padding-block: var(--s-2);
  transition: color .2s var(--ease);
}
.nav-desktop a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: hsl(var(--gold)); transition: width .25s var(--ease); border-radius: 2px;
}
.nav-desktop a:hover { color: hsl(var(--forest)); }
.nav-desktop a:hover::after { width: 100%; }
.nav-desktop a[aria-current="page"] { color: hsl(var(--forest)); }
.nav-desktop a[aria-current="page"]::after { width: 100%; background: hsl(var(--forest)); }

.header-actions { display: flex; align-items: center; gap: var(--s-3); flex: none; }

.hamburger {
  display: none; width: 46px; height: 46px; border: 1.5px solid hsl(var(--forest) / .28);
  background: transparent; border-radius: var(--r-1); cursor: pointer;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
  transition: background-color .2s var(--ease), border-color .2s var(--ease);
}
.hamburger:hover { background: hsl(var(--forest) / .07); border-color: hsl(var(--forest) / .5); }
.hamburger span {
  display: block; width: 20px; height: 2px; background: hsl(var(--forest));
  border-radius: 2px; transition: transform .28s var(--ease), opacity .2s var(--ease);
}
.nav-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .hamburger span:nth-child(2) { opacity: 0; }
.nav-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer: slides from the top so it can never create sideways overflow */
.nav-mobile {
  position: fixed; left: 0; right: 0; top: 0; z-index: 89;
  background: hsl(var(--cream));
  border-bottom: 1px solid hsl(var(--forest) / .12);
  box-shadow: var(--sh-5);
  padding: calc(var(--header-h) + var(--s-5)) var(--s-5) var(--s-7);
  transform: translateY(-102%);
  visibility: hidden;
  transition: transform .34s var(--ease), visibility 0s linear .34s;
  max-height: 100dvh; overflow-y: auto;
}
.nav-open .nav-mobile { transform: translateY(0); visibility: visible; transition-delay: 0s; }
.nav-mobile a {
  display: block; font-family: var(--font-display); font-size: var(--fs-lg);
  font-weight: 600; color: hsl(var(--t1)); text-decoration: none;
  padding: var(--s-3) 0; border-bottom: 1px solid hsl(var(--forest) / .10);
}
.nav-mobile a[aria-current="page"] { color: hsl(var(--leaf)); }
.nav-mobile .btn-row { margin-top: var(--s-6); }
.nav-mobile .btn { width: 100%; }

.nav-scrim {
  position: fixed; inset: 0; z-index: 88; background: hsl(var(--charcoal) / .5);
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility 0s linear .3s;
}
.nav-open .nav-scrim { opacity: 1; visibility: visible; transition-delay: 0s; }

@media (max-width: 1080px) {
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
  .header-actions .btn-desktop-only { display: none; }
}
@media (min-width: 1081px) { .nav-mobile, .nav-scrim { display: none; } }

/* --------------------------------------------------------------------------
   6. HERO  (asymmetric split, Ken Burns rotation, parallax)
   -------------------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; padding: 0; }
/* The hero container is deliberately unconstrained so the photography can
   bleed to the right edge of the viewport while the copy stays aligned to
   the site container. */
.hero > .wrap { max-width: none; padding-inline: 0; }
.hero-grid {
  display: grid; grid-template-columns: 1.02fr .98fr; align-items: stretch;
  min-height: min(760px, calc(100dvh - var(--header-h)));
}
.hero-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding-block: var(--s-9); position: relative; z-index: 2;
  padding-left: max(var(--s-5), calc((100vw - var(--maxw)) / 2 + var(--s-5)));
  padding-right: var(--s-8);
}
.hero-copy h1 { max-width: 13ch; }
.hero-copy .lede { max-width: 44ch; }

.hero-media { position: relative; overflow: hidden; border-radius: var(--r-4) 0 0 var(--r-4); }
.hero-media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(105deg, hsl(var(--cream)) 0%, hsl(var(--cream) / 0) 26%),
              linear-gradient(0deg, hsl(var(--forest-deep) / .34) 0%, transparent 46%);
}
.hero-slide {
  position: absolute; inset: -4% -4% -4% -4%;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.5s var(--ease);
  will-change: opacity, transform;
}
.hero-slide.active { opacity: 1; animation: kenburns 15s ease-out forwards; }
@keyframes kenburns {
  from { transform: scale(1.0) translate3d(0,0,0); }
  to   { transform: scale(1.11) translate3d(-1.2%, -1.6%, 0); }
}

/* Grain overlay: softens the upscaled source photography */
.grain::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: .30; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

.trust-row {
  display: flex; flex-wrap: wrap; gap: var(--s-2) var(--s-5);
  margin-top: var(--s-7); padding-top: var(--s-5);
  border-top: 1px solid hsl(var(--forest) / .14);
}
.trust-row span {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: hsl(var(--t3));
}
.trust-row svg { width: 15px; height: 15px; color: hsl(var(--leaf)); flex: none; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { padding: var(--s-8) var(--s-5) var(--s-6); order: 2; }
  .hero-media {
    order: 1; border-radius: 0 0 var(--r-3) var(--r-3);
    aspect-ratio: 4 / 3; margin-top: 0;
  }
  .hero-media::after { background: linear-gradient(0deg, hsl(var(--forest-deep) / .42) 0%, transparent 55%); }
}

/* --------------------------------------------------------------------------
   7. CARDS
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: var(--s-5); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* Typographic dish card */
.dish {
  position: relative; display: flex; flex-direction: column;
  background: hsl(0 0% 100% / .78);
  border: 1px solid hsl(var(--forest) / .12);
  border-radius: var(--r-2); padding: var(--s-6) var(--s-5) var(--s-5);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              border-color .25s var(--ease), background-color .25s var(--ease);
  text-decoration: none; color: inherit; overflow: hidden;
}
.dish::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, hsl(var(--leaf)), hsl(var(--gold)));
  transform: scaleY(0); transform-origin: top; transition: transform .3s var(--ease);
}
.dish:hover {
  transform: translateY(-6px); box-shadow: var(--sh-4);
  border-color: hsl(var(--forest) / .22); background: hsl(0 0% 100% / .96);
}
.dish:hover::before { transform: scaleY(1); }
.dish h3 { margin-bottom: var(--s-2); font-size: var(--fs-lg); }
.dish p { font-size: var(--fs-sm); color: hsl(var(--t2)); margin-bottom: var(--s-5); }
.dish-foot {
  margin-top: auto; display: flex; align-items: baseline;
  justify-content: space-between; gap: var(--s-3);
  padding-top: var(--s-3); border-top: 1px dashed hsl(var(--forest) / .18);
}
.price {
  font-family: var(--font-display); font-size: var(--fs-lg); font-weight: 600;
  color: hsl(var(--gold-dk)); letter-spacing: -0.02em; white-space: nowrap;
}
.price .cur { font-size: var(--fs-xs); font-weight: 700; letter-spacing: .06em; opacity: .8; }
.price-sub { font-size: var(--fs-xs); color: hsl(var(--t3)); font-weight: 600; }

.tags { display: flex; flex-wrap: wrap; gap: var(--s-2); }
.tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px var(--s-2); border-radius: var(--r-pill);
  background: hsl(var(--sage)); color: hsl(var(--forest));
  border: 1px solid hsl(var(--forest) / .14);
}
.tag-sea   { background: hsl(196 45% 90%); color: hsl(200 55% 26%); border-color: hsl(200 40% 70% / .5); }
.tag-veg   { background: hsl(95 40% 88%);  color: hsl(var(--forest)); border-color: hsl(var(--leaf) / .4); }
.tag-spicy { background: hsl(14 60% 92%);  color: hsl(10 65% 34%);  border-color: hsl(14 55% 74% / .6); }
.tag-star  { background: hsl(var(--gold) / .22); color: hsl(var(--gold-dk)); border-color: hsl(var(--gold) / .45); }

/* Category chips */
.cat-card {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-3);
  padding: var(--s-5); border-radius: var(--r-2); text-decoration: none;
  background: hsl(0 0% 100% / .6); border: 1px solid hsl(var(--forest) / .12);
  font-family: var(--font-display); font-size: var(--fs-base); font-weight: 600;
  color: hsl(var(--t1)); letter-spacing: -0.015em;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease),
              background-color .22s var(--ease), color .22s var(--ease);
}
.cat-card svg { width: 18px; height: 18px; color: hsl(var(--leaf)); transition: transform .22s var(--ease); flex: none; }
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--sh-3); background: hsl(var(--forest)); color: hsl(var(--d1)); }
.cat-card:hover svg { transform: translateX(4px); color: hsl(var(--gold-lt)); }

/* Media card with image */
.media-card {
  border-radius: var(--r-3); overflow: hidden; background: hsl(0 0% 100% / .7);
  border: 1px solid hsl(var(--forest) / .12); box-shadow: var(--sh-2);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  display: flex; flex-direction: column;
}
.media-card:hover { transform: translateY(-6px); box-shadow: var(--sh-4); }
.media-card .thumb { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: hsl(var(--sage)); }
.media-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.media-card:hover .thumb img { transform: scale(1.06); }
.media-card .thumb::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(0deg, hsl(var(--forest-deep) / .3), transparent 55%);
}
.media-card .body { padding: var(--s-5); display: flex; flex-direction: column; flex: 1; }

/* --------------------------------------------------------------------------
   8. LOCATIONS
   -------------------------------------------------------------------------- */
.loc-card {
  display: grid; grid-template-columns: 300px 1fr; gap: 0;
  border-radius: var(--r-3); overflow: hidden;
  background: hsl(0 0% 100% / .74); border: 1px solid hsl(var(--forest) / .13);
  box-shadow: var(--sh-2); transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.loc-card:hover { box-shadow: var(--sh-4); transform: translateY(-4px); }
.loc-card .loc-img { position: relative; min-height: 240px; background: hsl(var(--sage)); overflow: hidden; }
.loc-card .loc-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.loc-card .loc-body { padding: var(--s-6); }
.loc-card h3 { margin-bottom: var(--s-1); }
.loc-meta { list-style: none; margin: var(--s-4) 0; padding: 0; display: grid; gap: var(--s-2); }
.loc-meta li { display: flex; gap: var(--s-3); align-items: center; min-height: 34px;
  font-size: var(--fs-sm); color: hsl(var(--t2)); }
.loc-meta li.addr { align-items: flex-start; padding-block: var(--s-2); }
.loc-meta svg { width: 17px; height: 17px; color: hsl(var(--leaf)); flex: none; }
.loc-meta li.addr svg { margin-top: 3px; }
/* Comfortable tap targets: these sit next to the large Call and WhatsApp
   buttons but still need to be reliably tappable on a phone. */
.loc-meta a {
  display: inline-flex; align-items: center; min-height: 40px;
  padding: var(--s-1) var(--s-3); margin-left: calc(var(--s-3) * -1);
  border-radius: var(--r-1); color: hsl(var(--forest)); font-weight: 700;
  text-decoration: none; transition: background-color .2s var(--ease);
}
.loc-meta a:hover { background: hsl(var(--forest) / .09); text-decoration: underline; }
.services { display: flex; flex-wrap: wrap; gap: var(--s-2); margin: var(--s-4) 0 0; padding: 0; list-style: none; }
.badge-note {
  display: flex; gap: var(--s-3); align-items: flex-start;
  margin-top: var(--s-5); padding: var(--s-3) var(--s-4);
  background: hsl(var(--gold) / .13); border-left: 3px solid hsl(var(--gold));
  border-radius: 0 var(--r-1) var(--r-1) 0; font-size: var(--fs-sm); color: hsl(var(--t2));
}
.badge-note svg { width: 17px; height: 17px; color: hsl(var(--gold-dk)); flex: none; margin-top: 3px; }
.badge-note p { margin: 0; }
@media (max-width: 780px) {
  .loc-card { grid-template-columns: 1fr; }
  .loc-card .loc-img { min-height: 200px; aspect-ratio: 16 / 9; }
}

/* --------------------------------------------------------------------------
   9. REVIEWS
   -------------------------------------------------------------------------- */
.rating-block { display: flex; flex-wrap: wrap; gap: var(--s-7); align-items: center; justify-content: center; text-align: center; }
.rating-stat { display: flex; flex-direction: column; align-items: center; gap: var(--s-1); }
.rating-stat .num { font-family: var(--font-display); font-size: var(--fs-xl); font-weight: 600; color: hsl(var(--d1)); line-height: 1; }
.rating-stat .lbl { font-size: var(--fs-xs); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: hsl(var(--d3)); }
.stars { display: flex; gap: 3px; margin-bottom: var(--s-1); }
.stars svg { width: 17px; height: 17px; color: hsl(var(--gold)); }

.quote {
  background: hsl(var(--d1) / .07); border: 1px solid hsl(var(--d1) / .14);
  border-radius: var(--r-2); padding: var(--s-6) var(--s-5);
  display: flex; flex-direction: column; gap: var(--s-4);
}
.quote p { font-family: var(--font-display); font-size: var(--fs-base); font-weight: 400;
  font-variation-settings: "SOFT" 80, "WONK" 1; color: hsl(var(--d2)); margin: 0; }
.quote .attrib { font-size: var(--fs-xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: hsl(var(--d3)); margin-top: auto; }

.placeholder-flag {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: hsl(var(--gold-lt)); border: 1px dashed hsl(var(--gold) / .5);
  padding: var(--s-2) var(--s-3); border-radius: var(--r-1);
}

/* --------------------------------------------------------------------------
   10. INSTAGRAM STRIP
   -------------------------------------------------------------------------- */
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--s-2); }
@media (max-width: 900px) { .ig-grid { grid-template-columns: repeat(3, 1fr); } }
.ig-grid a { position: relative; display: block; aspect-ratio: 1; overflow: hidden; border-radius: var(--r-1); background: hsl(var(--sage)); }
.ig-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease); }
.ig-grid a::after {
  content: ""; position: absolute; inset: 0; background: hsl(var(--forest-deep) / .3);
  opacity: 0; transition: opacity .25s var(--ease); pointer-events: none;
}
.ig-grid a:hover img { transform: scale(1.09); }
.ig-grid a:hover::after { opacity: 1; }

/* --------------------------------------------------------------------------
   11. MENU PAGE
   -------------------------------------------------------------------------- */
.menu-layout { display: grid; grid-template-columns: 246px 1fr; gap: var(--s-8); align-items: start; }
@media (max-width: 940px) { .menu-layout { grid-template-columns: 1fr; gap: var(--s-5); } }

.menu-side { position: sticky; top: calc(var(--header-h) + var(--s-4)); }
@media (max-width: 940px) { .menu-side { position: static; } }
.menu-side h4 { font-family: var(--font-body); font-size: var(--fs-xs); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: hsl(var(--t3)); margin-bottom: var(--s-3); }
.menu-side nav { display: grid; gap: 2px; }
.menu-side nav a {
  display: block; padding: var(--s-3) var(--s-4); border-radius: var(--r-1);
  font-size: var(--fs-sm); font-weight: 600; color: hsl(var(--t2)); text-decoration: none;
  border-left: 2px solid transparent; transition: all .2s var(--ease);
}
.menu-side nav a:hover { background: hsl(var(--forest) / .07); color: hsl(var(--forest)); }
.menu-side nav a.active { background: hsl(var(--forest) / .09); border-left-color: hsl(var(--leaf)); color: hsl(var(--forest)); }

.menu-tools { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-bottom: var(--s-6); align-items: center; }
.search-field { position: relative; flex: 1 1 260px; min-width: 0; }
.search-field svg { position: absolute; left: var(--s-4); top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: hsl(var(--t3)); pointer-events: none; }
.search-field input {
  width: 100%; height: 50px; padding: 0 var(--s-5) 0 46px;
  font-family: var(--font-body); font-size: var(--fs-base); color: hsl(var(--t1));
  background: hsl(0 0% 100% / .85); border: 1.5px solid hsl(var(--forest) / .18);
  border-radius: var(--r-pill); transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.search-field input::placeholder { color: hsl(var(--t3)); }
.search-field input:focus { outline: none; border-color: hsl(var(--leaf)); box-shadow: 0 0 0 4px hsl(var(--leaf) / .16); }

.filter-chips { display: flex; gap: var(--s-2); flex-wrap: wrap; }
.chip {
  font-family: var(--font-body); font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 0 var(--s-4); height: 40px; border-radius: var(--r-pill); cursor: pointer;
  background: transparent; color: hsl(var(--t2)); border: 1.5px solid hsl(var(--forest) / .2);
  transition: all .2s var(--ease); display: inline-flex; align-items: center; gap: 6px;
}
.chip:hover { border-color: hsl(var(--forest) / .45); background: hsl(var(--forest) / .05); }
.chip[aria-pressed="true"] { background: hsl(var(--forest)); color: hsl(var(--d1)); border-color: hsl(var(--forest)); }

/* Horizontal category scroller on mobile */
.cat-scroller { display: none; }
@media (max-width: 940px) {
  .cat-scroller {
    display: flex; gap: var(--s-2); overflow-x: auto; padding-bottom: var(--s-3);
    margin-bottom: var(--s-4); scrollbar-width: none; -webkit-overflow-scrolling: touch;
  }
  .cat-scroller::-webkit-scrollbar { display: none; }
  .cat-scroller a {
    flex: none; padding: var(--s-2) var(--s-4); border-radius: var(--r-pill);
    background: hsl(0 0% 100% / .8); border: 1.5px solid hsl(var(--forest) / .18);
    font-size: var(--fs-xs); font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
    color: hsl(var(--t2)); text-decoration: none; white-space: nowrap;
  }
  .cat-scroller a.active { background: hsl(var(--forest)); color: hsl(var(--d1)); border-color: hsl(var(--forest)); }
}

.menu-section { margin-bottom: var(--s-8); scroll-margin-top: 120px; }
.menu-section > header { margin-bottom: var(--s-5); }
.menu-section h2 { margin-bottom: var(--s-1); }
.menu-section .sec-note { font-size: var(--fs-sm); color: hsl(var(--t3)); letter-spacing: .02em; margin: 0; }

.menu-toggle {
  display: none; width: 100%; align-items: center; justify-content: space-between;
  background: none; border: none; padding: 0; cursor: pointer; text-align: left; font: inherit; color: inherit;
}
.menu-toggle svg { width: 22px; height: 22px; color: hsl(var(--leaf)); transition: transform .28s var(--ease); flex: none; }
.menu-section.collapsed .menu-toggle svg { transform: rotate(-90deg); }
@media (max-width: 940px) {
  .menu-toggle { display: flex; }
  .menu-section.collapsed .menu-items { display: none; }
}

.menu-items { display: grid; gap: var(--s-4); grid-template-columns: repeat(2, 1fr); }
@media (max-width: 720px) { .menu-items { grid-template-columns: 1fr; } }

.menu-item {
  padding: var(--s-5); border-radius: var(--r-2);
  background: hsl(0 0% 100% / .7); border: 1px solid hsl(var(--forest) / .11);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.menu-item:hover { transform: translateY(-3px); box-shadow: var(--sh-3); border-color: hsl(var(--forest) / .2); }
.menu-item .mi-head { display: flex; gap: var(--s-4); align-items: baseline; justify-content: space-between; margin-bottom: var(--s-2); }
.menu-item h3 { font-size: var(--fs-base); margin: 0; flex: 1; }
.menu-item p { font-size: var(--fs-sm); color: hsl(var(--t2)); margin: 0 0 var(--s-3); }
.menu-item .tags { margin-top: var(--s-3); }
.menu-item[hidden] { display: none; }

.no-results { padding: var(--s-8) var(--s-5); text-align: center; color: hsl(var(--t2)); }

/* Pasta builder */
.builder { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); margin-bottom: var(--s-6); }
@media (max-width: 780px) { .builder { grid-template-columns: 1fr; } }
.builder-step {
  padding: var(--s-5); border-radius: var(--r-2);
  background: hsl(var(--sage) / .55); border: 1px solid hsl(var(--leaf) / .28);
  position: relative;
}
.builder-step .n {
  font-family: var(--font-display); font-size: var(--fs-lg); font-weight: 600;
  color: hsl(var(--leaf)); display: block; line-height: 1; margin-bottom: var(--s-2);
}
.builder-step h4 { margin-bottom: var(--s-3); }
.builder-step ul { margin: 0; padding-left: var(--s-5); font-size: var(--fs-sm); color: hsl(var(--t2)); }
.builder-step li { margin-bottom: var(--s-1); }

.notice {
  display: flex; gap: var(--s-4); align-items: flex-start;
  padding: var(--s-5); border-radius: var(--r-2); margin-top: var(--s-7);
  background: hsl(var(--sage) / .6); border: 1px solid hsl(var(--forest) / .14);
}
.notice svg { width: 20px; height: 20px; color: hsl(var(--forest)); flex: none; margin-top: 2px; }
.notice p { margin: 0; font-size: var(--fs-sm); color: hsl(var(--t2)); }

/* --------------------------------------------------------------------------
   12. GALLERY
   -------------------------------------------------------------------------- */
.gal-filters { display: flex; gap: var(--s-2); flex-wrap: wrap; margin-bottom: var(--s-6); }
.masonry { columns: 3; column-gap: var(--s-4); }
@media (max-width: 900px) { .masonry { columns: 2; } }
@media (max-width: 560px) { .masonry { columns: 1; } }
.masonry figure {
  break-inside: avoid; margin: 0 0 var(--s-4); position: relative;
  border-radius: var(--r-2); overflow: hidden; box-shadow: var(--sh-2);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.masonry figure:hover { transform: translateY(-4px); box-shadow: var(--sh-4); }
.masonry button {
  display: block; width: 100%; padding: 0; border: none; background: none;
  cursor: zoom-in; border-radius: var(--r-2); overflow: hidden;
}
.masonry img { width: 100%; height: auto; display: block; }
.masonry figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: var(--s-6) var(--s-4) var(--s-3);
  font-size: var(--fs-xs); color: hsl(var(--d1)); pointer-events: none;
  background: linear-gradient(0deg, hsl(var(--forest-deep) / .88), transparent);
  opacity: 0; transition: opacity .25s var(--ease);
}
.masonry figure:hover figcaption, .masonry button:focus-visible + figcaption { opacity: 1; }
.masonry figure[hidden] { display: none; }

.lightbox {
  position: fixed; inset: 0; z-index: 120; display: none;
  align-items: center; justify-content: center; padding: var(--s-5);
  background: hsl(var(--charcoal) / .93);
}
.lightbox[open], .lightbox.open { display: flex; }
.lightbox img { max-width: min(1100px, 94vw); max-height: 82dvh; width: auto; border-radius: var(--r-2); box-shadow: var(--sh-5); }
.lightbox .lb-cap { position: absolute; bottom: var(--s-6); left: 0; right: 0; text-align: center; color: hsl(var(--d2)); font-size: var(--fs-sm); padding-inline: var(--s-5); }
.lb-btn {
  position: absolute; width: 52px; height: 52px; border-radius: 50%; cursor: pointer;
  background: hsl(var(--d1) / .12); border: 1.5px solid hsl(var(--d1) / .3); color: hsl(var(--d1));
  display: flex; align-items: center; justify-content: center;
  transition: background-color .2s var(--ease), transform .2s var(--ease);
}
.lb-btn:hover { background: hsl(var(--d1) / .24); transform: scale(1.06); }
.lb-btn svg { width: 22px; height: 22px; }
.lb-close { top: var(--s-5); right: var(--s-5); }
.lb-prev { left: var(--s-4); top: 50%; margin-top: -26px; }
.lb-next { right: var(--s-4); top: 50%; margin-top: -26px; }

/* --------------------------------------------------------------------------
   13. FORMS
   -------------------------------------------------------------------------- */
.form-card {
  background: hsl(0 0% 100% / .82); border: 1px solid hsl(var(--forest) / .13);
  border-radius: var(--r-3); padding: var(--s-7); box-shadow: var(--sh-2);
}
@media (max-width: 640px) { .form-card { padding: var(--s-5); } }
.field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-5) var(--s-4); }
@media (max-width: 700px) { .field-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: var(--fs-xs); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: hsl(var(--t2)); }
.field .req { color: hsl(2 62% 44%); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: var(--fs-base); color: hsl(var(--t1));
  background: hsl(0 0% 100%); border: 1.5px solid hsl(var(--forest) / .2);
  border-radius: var(--r-1); padding: var(--s-3) var(--s-4); min-height: 48px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 118px; resize: vertical; line-height: 1.6; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23415044' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right var(--s-4) center; padding-right: 44px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: hsl(var(--leaf)); box-shadow: 0 0 0 4px hsl(var(--leaf) / .16);
}
.field input[aria-invalid="true"], .field select[aria-invalid="true"], .field textarea[aria-invalid="true"] {
  border-color: hsl(2 62% 48%); box-shadow: 0 0 0 4px hsl(2 62% 48% / .13);
}
.field .err { font-size: var(--fs-xs); color: hsl(2 62% 40%); font-weight: 700; min-height: 0; }
.field .err:empty { display: none; }
.form-status {
  margin-top: var(--s-5); padding: var(--s-4); border-radius: var(--r-1);
  font-size: var(--fs-sm); font-weight: 600; display: none;
}
.form-status.show { display: block; }
.form-status.ok  { background: hsl(var(--leaf) / .16); color: hsl(var(--forest)); border: 1px solid hsl(var(--leaf) / .4); }
.form-status.bad { background: hsl(2 62% 94%); color: hsl(2 62% 34%); border: 1px solid hsl(2 62% 74%); }

/* --------------------------------------------------------------------------
   14. ORDER MODAL
   -------------------------------------------------------------------------- */
.modal {
  position: fixed; inset: 0; z-index: 130; display: none;
  align-items: center; justify-content: center; padding: var(--s-5);
  background: hsl(var(--charcoal) / .72);
  backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
}
.modal.open { display: flex; animation: fadeIn .2s var(--ease); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-panel {
  background: hsl(var(--cream)); border-radius: var(--r-3); box-shadow: var(--sh-5);
  width: min(520px, 100%); max-height: 88dvh; overflow-y: auto;
  padding: var(--s-7); position: relative; animation: popIn .28s var(--ease);
}
@keyframes popIn { from { opacity: 0; transform: translateY(18px) scale(.97); } to { opacity: 1; transform: none; } }
@media (max-width: 560px) { .modal-panel { padding: var(--s-6) var(--s-5); } }
.modal-panel h2 { font-size: var(--fs-xl); margin-bottom: var(--s-2); }
.modal-close {
  position: absolute; top: var(--s-4); right: var(--s-4);
  width: 40px; height: 40px; border-radius: 50%; cursor: pointer;
  border: 1.5px solid hsl(var(--forest) / .2); background: transparent; color: hsl(var(--t2));
  display: flex; align-items: center; justify-content: center;
  transition: background-color .2s var(--ease), transform .2s var(--ease);
}
.modal-close:hover { background: hsl(var(--forest) / .09); transform: rotate(90deg); }
.modal-close svg { width: 19px; height: 19px; }
.order-options { display: grid; gap: var(--s-3); margin-top: var(--s-6); }
.order-option {
  display: flex; align-items: center; gap: var(--s-4); text-align: left;
  padding: var(--s-4) var(--s-5); border-radius: var(--r-2); text-decoration: none;
  background: hsl(0 0% 100% / .8); border: 1.5px solid hsl(var(--forest) / .15);
  color: hsl(var(--t1)); cursor: pointer; font: inherit; width: 100%;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.order-option:hover { transform: translateY(-3px); box-shadow: var(--sh-3); border-color: hsl(var(--leaf)); }
.order-option .ico {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: hsl(var(--sage)); color: hsl(var(--forest));
}
.order-option .ico svg { width: 20px; height: 20px; }
.order-option strong { display: block; font-family: var(--font-display); font-size: var(--fs-base); font-weight: 600; }
.order-option span { display: block; font-size: var(--fs-xs); color: hsl(var(--t3)); }

/* --------------------------------------------------------------------------
   15. FLOATING ACTIONS + MOBILE BAR
   -------------------------------------------------------------------------- */
.float-actions {
  position: fixed; right: var(--s-5); bottom: var(--s-5); z-index: 80;
  display: flex; flex-direction: column; gap: var(--s-3);
}
.float-actions a {
  width: 54px; height: 54px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; box-shadow: var(--sh-4);
  color: #fff; transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.float-actions a svg { width: 24px; height: 24px; }
.float-actions .fa-call { background: hsl(var(--forest)); }
.float-actions .fa-wa   { background: hsl(142 70% 29%); }
.float-actions a:hover { transform: scale(1.09) translateY(-2px); box-shadow: var(--sh-5); }

.mobile-bar { display: none; }
@media (max-width: 860px) {
  .float-actions { display: none; }
  .mobile-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 85;
    display: grid; grid-template-columns: repeat(4, 1fr);
    background: hsl(var(--cream) / .97);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid hsl(var(--forest) / .14);
    box-shadow: 0 -4px 20px hsl(var(--forest) / .12);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .mobile-bar a {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 3px; padding: var(--s-3) var(--s-1); min-height: 60px;
    font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
    color: hsl(var(--t2)); text-decoration: none;
    transition: background-color .2s var(--ease), color .2s var(--ease);
  }
  .mobile-bar a svg { width: 21px; height: 21px; color: hsl(var(--forest)); }
  .mobile-bar a:active { background: hsl(var(--forest) / .09); color: hsl(var(--forest)); }
  /* Keep the bar from covering page content */
  body { padding-bottom: calc(60px + env(safe-area-inset-bottom)); }
}

/* --------------------------------------------------------------------------
   16. FOOTER
   -------------------------------------------------------------------------- */
.site-footer { background: hsl(var(--forest-deep)); color: hsl(var(--d2)); padding-block: var(--s-9) var(--s-6); }
.site-footer h4 {
  font-family: var(--font-body); font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: hsl(var(--gold-lt)); margin-bottom: var(--s-4);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--s-7); }
@media (max-width: 940px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-6); } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer img.flogo { height: 52px; width: auto; margin-bottom: var(--s-4); }
.site-footer .ftag { font-family: var(--font-display); font-size: var(--fs-lg); font-weight: 400;
  font-variation-settings: "SOFT" 100, "WONK" 1; letter-spacing: .01em;
  color: hsl(var(--gold-lt)); margin-bottom: var(--s-5); }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-2); }
.site-footer a { color: hsl(var(--d2)); text-decoration: none; font-size: var(--fs-sm); transition: color .2s var(--ease); }
.site-footer a:hover { color: hsl(var(--gold-lt)); text-decoration: underline; }
.footer-social { display: flex; gap: var(--s-3); margin-top: var(--s-4); }
.footer-social a {
  width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  border: 1.5px solid hsl(var(--d1) / .24); color: hsl(var(--d1));
  transition: background-color .2s var(--ease), transform .2s var(--ease), border-color .2s var(--ease);
}
.footer-social a:hover { background: hsl(var(--d1) / .14); border-color: hsl(var(--gold-lt)); transform: translateY(-2px); }
.footer-social svg { width: 19px; height: 19px; }
.footer-bottom {
  margin-top: var(--s-8); padding-top: var(--s-5); border-top: 1px solid hsl(var(--d1) / .14);
  display: flex; flex-wrap: wrap; gap: var(--s-3) var(--s-5); align-items: center; justify-content: space-between;
  font-size: var(--fs-xs); color: hsl(var(--d3));
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: var(--s-4); }
.footer-bottom a { font-size: var(--fs-xs); }

/* --------------------------------------------------------------------------
   17. PAGE HEADERS + PROSE
   -------------------------------------------------------------------------- */
.page-head { padding-block: var(--s-8) var(--s-7); }
.page-head h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
.page-head .lede { max-width: 56ch; }
.breadcrumb { font-size: var(--fs-xs); color: hsl(var(--t3)); margin-bottom: var(--s-4); letter-spacing: .04em; }
.breadcrumb a { color: hsl(var(--t3)); text-decoration: none; }
.breadcrumb a:hover { color: hsl(var(--forest)); text-decoration: underline; }

.prose { max-width: var(--maxw-text); }
.prose h2 { font-size: var(--fs-lg); margin-top: var(--s-7); }
.prose ul { padding-left: var(--s-5); color: hsl(var(--t2)); }
.prose li { margin-bottom: var(--s-2); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-8); align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: var(--s-6); } }
.split-media { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
.split-media img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-2); box-shadow: var(--sh-3); aspect-ratio: 3 / 4; }
.split-media img:first-child { margin-top: var(--s-7); }

.ph-card {
  border: 1.5px dashed hsl(var(--forest) / .3); border-radius: var(--r-2);
  padding: var(--s-5); background: hsl(var(--sage) / .35);
}
.ph-card h4 { margin-bottom: var(--s-2); }
.ph-card p { font-size: var(--fs-sm); color: hsl(var(--t2)); margin: 0; }
.ph-card .placeholder-flag { color: hsl(var(--gold-dk)); border-color: hsl(var(--gold-dk) / .5); margin-bottom: var(--s-3); }

/* --------------------------------------------------------------------------
   18. MOTION: scroll reveal + parallax + reduced motion
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-group > * { opacity: 0; transform: translateY(28px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal-group.visible > * { opacity: 1; transform: none; }
.reveal-group.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-group.visible > *:nth-child(2) { transition-delay: .07s; }
.reveal-group.visible > *:nth-child(3) { transition-delay: .14s; }
.reveal-group.visible > *:nth-child(4) { transition-delay: .21s; }
.reveal-group.visible > *:nth-child(5) { transition-delay: .28s; }
.reveal-group.visible > *:nth-child(6) { transition-delay: .35s; }
.reveal-group.visible > *:nth-child(7) { transition-delay: .42s; }
.reveal-group.visible > *:nth-child(8) { transition-delay: .49s; }

/* Sideways reveals only where there is room. Below 900px they become vertical
   so they can never produce horizontal overflow on a phone. */
@media (min-width: 901px) {
  .reveal-left  { opacity: 0; transform: translateX(-36px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
  .reveal-right { opacity: 0; transform: translateX(36px);  transition: opacity .7s var(--ease), transform .7s var(--ease); }
  .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }
}
@media (max-width: 900px) {
  .reveal-left, .reveal-right { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
  .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }
}

section, .hero { overflow-x: clip; }

.parallax { will-change: transform; }

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


/* --------------------------------------------------------------------------
   19. LAYOUT UTILITIES
   These exist so the markup carries no inline style attributes, which lets the
   Content-Security-Policy stay strict. Do not add style="" to the templates.
   -------------------------------------------------------------------------- */
.m-0  { margin: 0; }
.mb-2-flush { margin: 0 0 var(--s-2); }
.mt-3 { margin-top: var(--s-3); }
.mt-5 { margin-top: var(--s-5); }
.mt-6 { margin-top: var(--s-6); }
.mt-7 { margin-top: var(--s-7); }
.my-7 { margin-block: var(--s-7); }
.mb-6 { margin-bottom: var(--s-6); }
.mb-7 { margin-bottom: var(--s-7); }
.mi-auto { margin-inline: auto; }
.fs-sm { font-size: var(--fs-sm); }
.gap-5 { gap: var(--s-5); }
.gap-6 { gap: var(--s-6); }
.jc-center { justify-content: center; }
.col { flex-direction: column; }
.w-full { width: 100%; }
.narrow-620 { max-width: 620px; margin-inline: auto; }
.narrow-640 { max-width: 640px; margin-inline: auto; }
.narrow-760 { max-width: 760px; margin-inline: auto; }
.narrow-920 { max-width: 920px; margin-inline: auto; }

/* Hero slide backgrounds are appended below by _build.py from the image list
   in build_home(). Keeping them in the stylesheet rather than a style
   attribute is what allows style-src to stay free of 'unsafe-inline'. */

/* Utilities */
.center { text-align: center; }
.center p, .center .lede { margin-inline: auto; }
.center .leaf-rule { justify-content: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.stack-6 > * + * { margin-top: var(--s-6); }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.hero-slide-1 { background-image: url('assets/dish-signature-salad.jpg'); }
.hero-slide-2 { background-image: url('assets/dish-grilled-chicken.jpg'); }
.hero-slide-3 { background-image: url('assets/dish-plated-salads.jpg'); }
