/* ==========================================================================
   BAMBOO SHACK
   Design system and site styles

   Palette sampled directly from the Bamboo Shack logo:
     red    #CE2027   deep green #1B331C   bamboo lime #A0B946
   Type: Anton (display) with Nunito (body). Two families, nothing else.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Fonts */
  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;

  /* Type scale */
  --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.5rem;

  /* Line heights, inversely proportional to size */
  --leading-none: 1;
  --leading-tight: 1.1;
  --leading-snug: 1.3;
  --leading-normal: 1.6;
  --leading-relaxed: 1.75;

  /* Weights */
  --weight-regular: 400;
  --weight-medium: 600;
  --weight-bold: 700;
  --weight-black: 800;

  /* Tracking */
  --tracking-tight: -0.025em;
  --tracking-normal: 0em;
  --tracking-wide: 0.06em;
  --tracking-widest: 0.14em;

  /* Brand colour */
  --red: hsl(357 73% 47%);
  --red-hover: hsl(357 73% 40%);
  --red-active: hsl(357 70% 33%);
  --red-deep: hsl(357 62% 26%);
  --red-tint: hsl(357 70% 96%);

  --green-deep: hsl(122 30% 15%);
  --green-deeper: hsl(122 32% 10%);
  --green: hsl(122 30% 26%);
  --lime: hsl(72 45% 50%);
  --lime-bright: hsl(72 56% 62%);
  --lime-tint: hsl(72 45% 94%);

  --cream: hsl(38 56% 97%);
  --cream-deep: hsl(38 40% 93%);
  --charcoal: hsl(30 7% 10%);
  --white: hsl(0 0% 100%);

  /* Text hierarchy on light */
  --ink-1: hsl(30 10% 12%);
  --ink-2: hsl(30 7% 33%);
  --ink-3: hsl(30 6% 47%);
  --rule: hsl(30 14% 87%);

  /* Text hierarchy on dark */
  --snow-1: hsl(40 30% 97%);
  --snow-2: hsl(40 14% 80%);
  --snow-3: hsl(40 9% 64%);
  --rule-dark: hsl(120 10% 26%);

  /* Spacing scale */
  --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;

  /* Radius, kept tight and consistent */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --r-pill: 999px;

  /* Shadows, assigned by z position */
  --shadow-xs: 0 1px 2px hsl(30 20% 8% / 0.10);
  --shadow-sm: 0 2px 6px hsl(30 20% 8% / 0.10);
  --shadow-md: 0 6px 16px hsl(30 20% 8% / 0.13);
  --shadow-lg: 0 16px 34px hsl(30 20% 8% / 0.16);
  --shadow-xl: 0 28px 60px hsl(30 20% 8% / 0.22);

  /* Layout */
  --container: 1180px;
  --container-narrow: 820px;
  --gutter: 20px;
  --header-h: 74px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (min-width: 768px) {
  :root { --gutter: 32px; --header-h: 86px; }
}

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

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink-1);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: var(--weight-regular);
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
  text-transform: uppercase;
  margin: 0;
  color: var(--ink-1);
}

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

@media (min-width: 768px) {
  h1 { font-size: var(--text-5xl); }
  h2 { font-size: var(--text-4xl); }
}

p { margin: 0 0 var(--s-4); max-width: 68ch; }
h1 + p, h2 + p, h3 + p { margin-top: var(--s-4); }
p:last-child { margin-bottom: 0; }

a { color: var(--red); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--red-hover); }

ul, ol { margin: 0; padding: 0; }

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

.skip-link {
  position: absolute;
  left: var(--s-4);
  top: -80px;
  z-index: 200;
  background: var(--red);
  color: var(--white);
  padding: var(--s-3) var(--s-5);
  border-radius: var(--r-md);
  font-weight: var(--weight-bold);
  text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: var(--s-4); color: var(--white); }

.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;
}

/* --------------------------------------------------------------------------
   3. LAYOUT PRIMITIVES
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--s-8); }
@media (min-width: 768px) { .section { padding-block: var(--s-9); } }

.section--tight { padding-block: var(--s-7); }

.section--cream { background: var(--cream); }
.section--cream-deep { background: var(--cream-deep); }
.section--dark { background: var(--green-deep); color: var(--snow-1); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--snow-1); }
.section--dark p { color: var(--snow-2); }
.section--ink { background: var(--charcoal); color: var(--snow-1); }
.section--ink h2, .section--ink h3, .section--ink h4 { color: var(--snow-1); }
.section--ink p { color: var(--snow-2); }

/* Woven bamboo texture, subtle depth instead of a flat fill */
.texture-weave {
  background-image:
    repeating-linear-gradient(135deg, hsl(72 45% 50% / 0.055) 0 2px, transparent 2px 11px),
    repeating-linear-gradient(45deg, hsl(357 73% 47% / 0.035) 0 2px, transparent 2px 11px);
}
.texture-weave-dark {
  background-image:
    repeating-linear-gradient(135deg, hsl(72 45% 60% / 0.06) 0 2px, transparent 2px 12px);
}

.section-head { margin-bottom: var(--s-6); }
.section-head--center { text-align: center; }
.section-head--center p { margin-inline: auto; }
.section-head p { color: var(--ink-2); font-size: var(--text-lg); margin-top: var(--s-3); }
.section--dark .section-head p, .section--ink .section-head p { color: var(--snow-2); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-black);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--s-3);
}
.section--dark .eyebrow, .section--ink .eyebrow { color: var(--lime-bright); }

/* The bamboo rule: a short chunky red bar with a lime shadow, echoing the logo */
.rule-mark {
  display: block;
  width: 68px;
  height: 7px;
  border-radius: var(--r-pill);
  background: var(--red);
  box-shadow: 0 4px 0 -1px var(--lime);
  margin-bottom: var(--s-4);
}
.section-head--center .rule-mark { margin-inline: auto; }

/* --------------------------------------------------------------------------
   4. BUTTONS, four states each
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  min-height: 48px;
  padding: 0 var(--s-6);
  border: 2px solid transparent;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-black);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.12s var(--ease), background-color 0.2s var(--ease),
              box-shadow 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(--red); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--red-hover); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--primary:active { background: var(--red-active); transform: translateY(1px); box-shadow: var(--shadow-xs); }
.btn--primary[disabled] { background: var(--ink-3); box-shadow: none; cursor: not-allowed; transform: none; }

.btn--lime { background: var(--lime); color: var(--green-deeper); box-shadow: var(--shadow-sm); }
.btn--lime:hover { background: var(--lime-bright); color: var(--green-deeper); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--lime:active { background: var(--lime); transform: translateY(1px); box-shadow: var(--shadow-xs); }

.btn--ghost { background: transparent; color: var(--ink-1); border-color: var(--ink-1); }
.btn--ghost:hover { background: var(--ink-1); color: var(--cream); transform: translateY(-2px); }
.btn--ghost:active { transform: translateY(1px); }

.btn--ghost-light { background: transparent; color: var(--snow-1); border-color: hsl(0 0% 100% / 0.6); }
.btn--ghost-light:hover { background: var(--snow-1); color: var(--green-deeper); border-color: var(--snow-1); transform: translateY(-2px); }
.btn--ghost-light:active { transform: translateY(1px); }

.btn--sm { min-height: 44px; padding: 0 var(--s-4); font-size: var(--text-xs); }
.btn--block { width: 100%; }

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

/* --------------------------------------------------------------------------
   5. HEADER
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green-deep);
  border-bottom: 3px solid var(--lime);
  transition: box-shadow 0.25s var(--ease), background-color 0.25s var(--ease);
}
.header.is-stuck { box-shadow: var(--shadow-lg); background: var(--green-deeper); }

.header__inner {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  min-height: var(--header-h);
}

.header__logo { display: flex; align-items: center; gap: var(--s-3); margin-right: auto; text-decoration: none; }
.header__logo img { height: 46px; width: auto; }
@media (min-width: 768px) { .header__logo img { height: 58px; } }

.header__wordmark {
  display: none;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-black);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--lime-bright);
  max-width: 12ch;
  line-height: var(--leading-snug);
}
@media (min-width: 1100px) { .header__wordmark { display: block; } }

.nav { display: none; }
@media (min-width: 1024px) {
  .nav { display: flex; align-items: center; gap: var(--s-5); list-style: none; }
}
.nav__link {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: var(--s-2) 0;
  color: var(--snow-1);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 3px;
  background: var(--lime);
  border-radius: var(--r-pill);
  transition: width 0.25s var(--ease);
}
.nav__link:hover { color: var(--lime-bright); }
.nav__link:hover::after { width: 100%; }
.nav__link[aria-current="page"] { color: var(--lime-bright); }
.nav__link[aria-current="page"]::after { width: 100%; background: var(--red); }

.header__cta { display: none; }
@media (min-width: 1024px) { .header__cta { display: inline-flex; } }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  width: auto;
  min-width: 48px;
  min-height: 48px;
  padding: 0 var(--s-3);
  background: transparent;
  border: 2px solid hsl(0 0% 100% / 0.35);
  border-radius: var(--r-md);
  color: var(--snow-1);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-black);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.nav-toggle:hover { background: hsl(0 0% 100% / 0.1); border-color: var(--lime); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

.nav-toggle__bars { position: relative; width: 20px; height: 14px; }
.nav-toggle__bars span {
  position: absolute; left: 0;
  width: 100%; height: 2.5px;
  background: currentColor;
  border-radius: var(--r-pill);
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle__bars span:nth-child(3) { bottom: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { bottom: auto; top: 50%; transform: translateY(-50%) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--green-deeper);
  padding: calc(var(--header-h) + var(--s-6)) var(--gutter) var(--s-7);
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0s linear 0.25s;
}
.drawer.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0s linear 0s;
}
@media (min-width: 1024px) { .drawer { display: none; } }

.drawer__list { list-style: none; }
.drawer__list li { border-bottom: 1px solid var(--rule-dark); }
.drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  color: var(--snow-1);
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  letter-spacing: var(--tracking-tight);
  text-transform: uppercase;
  text-decoration: none;
}
.drawer__link:hover, .drawer__link[aria-current="page"] { color: var(--lime-bright); }
.drawer__link span { color: var(--lime); font-size: var(--text-lg); }
.drawer__actions { display: grid; gap: var(--s-3); margin-top: var(--s-6); }
.drawer__contact { margin-top: var(--s-6); color: var(--snow-3); font-size: var(--text-sm); }

/* --------------------------------------------------------------------------
   6. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 78vh;
  min-height: 78svh;
  overflow: hidden;
  background: var(--green-deeper);
}
.hero--page { min-height: 44vh; align-items: center; }

.hero__media { position: absolute; inset: 0; overflow: hidden; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 66% 55%;
  transform: scale(1.06);
  animation: heroDrift 22s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to   { transform: scale(1.16) translate3d(-1.5%, -1.5%, 0); }
}

.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, hsl(122 32% 8% / 0.92) 0%, hsl(122 32% 8% / 0.68) 34%, hsl(122 32% 8% / 0.22) 70%, hsl(122 32% 8% / 0.4) 100%),
    linear-gradient(to right, hsl(122 32% 8% / 0.88) 0%, hsl(122 32% 8% / 0.66) 26%, transparent 58%);
}

.hero__body {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: var(--s-8) var(--s-7);
  color: var(--snow-1);
}
.hero__crest { height: 92px; width: auto; margin-bottom: var(--s-5); filter: drop-shadow(0 6px 18px hsl(0 0% 0% / 0.5)); }
@media (min-width: 768px) { .hero__crest { height: 122px; } }

.hero h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 9vw, 5.25rem);
  line-height: 0.94;
  text-shadow: 0 4px 26px hsl(0 0% 0% / 0.45);
  max-width: 14ch;
}
.hero h1 em { font-style: normal; color: var(--lime-bright); display: block; }
.hero__lede {
  margin-top: var(--s-4);
  max-width: 46ch;
  font-size: var(--text-lg);
  color: var(--snow-1);
  text-shadow: 0 2px 12px hsl(0 0% 0% / 0.6);
}
.hero .btn-row { margin-top: var(--s-6); }

.hero--page .hero__media img { filter: blur(4px) saturate(0.92); transform: scale(1.14); animation: none; }
.hero--page .hero__body { padding-block: var(--s-8); text-align: center; }
.hero--page h1 { max-width: 20ch; margin-inline: auto; }
.hero--page .hero__lede { margin-inline: auto; }
.hero--page .hero__scrim {
  background: linear-gradient(to bottom, hsl(122 32% 10% / 0.86), hsl(122 32% 10% / 0.94)),
              linear-gradient(120deg, hsl(357 62% 22% / 0.7), transparent 70%);
}

/* Rotating ribbon strip, a nod to the diagonal banners on the printed menu */
.ribbon {
  position: relative;
  z-index: 3;
  background: var(--red);
  border-block: 3px solid var(--green-deep);
  overflow: hidden;
}
.ribbon__track {
  display: flex;
  width: max-content;
  animation: ribbonSlide 34s linear infinite;
}
.ribbon__group { display: flex; flex: none; }
.ribbon span {
  display: inline-flex;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-3) var(--s-5);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
}
.ribbon span::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--lime); }
@keyframes ribbonSlide { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-50%, 0, 0); } }

/* --------------------------------------------------------------------------
   7. CARDS AND MEDIA
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: var(--s-5); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 620px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: hsl(72 45% 62%); }
.card__body { padding: var(--s-5); display: flex; flex-direction: column; gap: var(--s-2); flex: 1; }

/* Light cards keep light-card text colours even when the section around them is
   dark. Without this the section level heading colour leaks in and the card
   title disappears against the white panel. */
.card h2, .card h3, .card h4, .card .favourite__name, .card .story__title { color: var(--ink-1); }
.card p, .card .favourite__desc, .card .story__desc { color: var(--ink-2); }
.favourite--plain .card__body h3,
.favourite--plain .card__body .favourite__name { color: var(--snow-1); }
.favourite--plain .card__body p { color: var(--snow-2); }
.card__body > .btn-row { margin-top: auto; padding-top: var(--s-4); }

.media { position: relative; background: var(--green-deep); overflow: hidden; }
.media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.card:hover .media img { transform: scale(1.05); }
.media--4x3 { aspect-ratio: 4 / 3; }
.media--16x9 { aspect-ratio: 16 / 9; }
.media--1x1 { aspect-ratio: 1 / 1; }
.media--wide { aspect-ratio: 21 / 9; }

/* If an image file is not present yet, show a branded panel rather than a
   broken image icon. Applied by site.js on the image error event. */
.media.is-missing img { display: none; }
.media.is-missing::after {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, hsl(72 45% 50% / 0.16) 0 6px, transparent 6px 20px),
    linear-gradient(140deg, var(--green-deep), var(--green-deeper));
}

/* Signature favourites */
.favourite { position: relative; }
.favourite--feature { grid-column: 1 / -1; }
@media (min-width: 960px) { .favourite--feature { grid-column: span 2; } }
.favourite--feature .media { aspect-ratio: 21 / 9; }

.favourite__name { font-family: var(--font-display); font-size: var(--text-2xl); text-transform: uppercase; letter-spacing: var(--tracking-tight); }
.favourite__price {
  align-self: flex-start;
  background: var(--lime-tint);
  border: 1px solid hsl(72 45% 74%);
  color: var(--green-deep);
  border-radius: var(--r-pill);
  padding: 2px var(--s-3);
  font-size: var(--text-sm);
  font-weight: var(--weight-black);
}
.favourite__desc { color: var(--ink-2); font-size: var(--text-sm); }
.favourite__link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  min-height: 44px;
  white-space: nowrap;
  margin-top: auto;
  padding-top: var(--s-4);
  color: var(--red);
  font-size: var(--text-sm);
  font-weight: var(--weight-black);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  text-decoration: none;
}
.favourite__link:hover { text-decoration: underline; }
.favourite--plain .card__body { background: var(--green-deep); }
.favourite--plain .favourite__name { color: var(--snow-1); }
.favourite--plain .favourite__price { background: hsl(72 45% 50% / 0.18); border-color: hsl(72 45% 50% / 0.5); color: var(--lime-bright); }
.favourite--plain .favourite__link { color: var(--lime-bright); }

/* Category tiles */
.tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: var(--s-1);
  min-height: 132px;
  padding: var(--s-5);
  background: var(--white);
  border: 1px solid var(--rule);
  border-left: 6px solid var(--red);
  border-radius: var(--r-md);
  color: var(--ink-1);
  text-decoration: none;
  box-shadow: var(--shadow-xs);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-left-color 0.22s var(--ease);
}
.tile:nth-child(even) { border-left-color: var(--lime); }
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); color: var(--ink-1); }
.tile__name { font-family: var(--font-display); font-size: var(--text-xl); text-transform: uppercase; letter-spacing: var(--tracking-tight); }
.tile__count { font-size: var(--text-xs); font-weight: var(--weight-black); letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--ink-3); }
.tile__badge {
  position: absolute; top: var(--s-3); right: var(--s-3);
  background: var(--red); color: var(--white);
  font-size: 10px; font-weight: var(--weight-black);
  letter-spacing: var(--tracking-wide); text-transform: uppercase;
  padding: 3px var(--s-2); border-radius: var(--r-pill);
}

/* --------------------------------------------------------------------------
   8. STORY BAND (brand story, parallax)
   -------------------------------------------------------------------------- */
.band {
  position: relative;
  overflow: hidden;
  background: var(--green-deeper);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  color: var(--snow-1);
}
.band__scrim { position: absolute; inset: 0; background: linear-gradient(115deg, hsl(122 32% 9% / 0.92) 0%, hsl(122 32% 9% / 0.74) 48%, hsl(357 62% 18% / 0.6) 100%); }
.band__inner { position: relative; z-index: 1; }
.band h2, .band h3 { color: var(--white); }
.band p { color: var(--snow-2); }
@media (max-width: 768px) { .band { background-attachment: scroll; } }

.split { display: grid; gap: var(--s-6); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1.05fr 1fr; gap: var(--s-8); } }
.split--top { align-items: start; }
.split__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-xl); }

.stat-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-4); margin-top: var(--s-6); }
@media (min-width: 620px) { .stat-row { grid-template-columns: repeat(3, 1fr); } }
.stat { border-top: 3px solid var(--lime); padding-top: var(--s-3); }
.stat__num { display: block; font-family: var(--font-display); font-size: var(--text-3xl); line-height: var(--leading-none); color: var(--white); }
.stat__label { display: block; margin-top: var(--s-2); font-size: var(--text-xs); font-weight: var(--weight-black); letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--snow-3); }

/* --------------------------------------------------------------------------
   9. LOCATIONS
   -------------------------------------------------------------------------- */
.loc-card {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding: var(--s-5);
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.loc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.loc-card__head { display: flex; align-items: flex-start; gap: var(--s-3); }
.loc-card__pin {
  flex: none;
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: var(--r-md);
  background: var(--red-tint);
  color: var(--red);
}
.loc-card__pin svg { width: 22px; height: 22px; }
.loc-card__name { font-family: var(--font-display); font-size: var(--text-xl); text-transform: uppercase; letter-spacing: var(--tracking-tight); }
.loc-card__area { font-size: var(--text-sm); color: var(--ink-3); }
.loc-card__rows { display: grid; gap: var(--s-2); font-size: var(--text-sm); color: var(--ink-2); }
.loc-card__row { display: flex; gap: var(--s-2); }
.loc-card__row svg { width: 17px; height: 17px; flex: none; margin-top: 3px; color: var(--ink-3); }
.loc-card__note {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--green);
  background: var(--lime-tint);
  border-radius: var(--r-sm);
  padding: var(--s-2) var(--s-3);
}
.loc-card .btn-row { margin-top: auto; padding-top: var(--s-2); }
.loc-card .btn { flex: 1 1 140px; }

/* --------------------------------------------------------------------------
   10. MENU PAGE
   -------------------------------------------------------------------------- */
.menu-tools {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
  padding-block: var(--s-4);
}
.menu-tools__inner { display: grid; gap: var(--s-3); }

.search-field { position: relative; }
.search-field svg {
  position: absolute; left: var(--s-4); top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 20px; color: var(--ink-3);
  pointer-events: none;
}
.search-field input {
  width: 100%;
  min-height: 52px;
  padding: 0 var(--s-4) 0 48px;
  background: var(--white);
  border: 2px solid var(--rule);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--ink-1);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.search-field input::placeholder { color: var(--ink-3); }
.search-field input:hover { border-color: hsl(30 14% 78%); }
.search-field input:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 4px hsl(357 73% 47% / 0.16); }
.search-field input:focus-visible { outline: none; }

.chips { display: flex; flex-wrap: wrap; gap: var(--s-2); }
.chip {
  min-height: 44px;
  padding: 0 var(--s-4);
  background: var(--white);
  border: 2px solid var(--rule);
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  color: var(--ink-2);
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.18s var(--ease), color 0.18s var(--ease),
              border-color 0.18s var(--ease), transform 0.12s var(--ease);
}
.chip:hover { border-color: var(--red); color: var(--red); transform: translateY(-1px); }
.chip:active { transform: translateY(1px); }
.chip[aria-pressed="true"] { background: var(--red); border-color: var(--red); color: var(--white); }

.menu-meta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--s-3); }
.menu-count { font-size: var(--text-sm); font-weight: var(--weight-bold); color: var(--ink-3); }

.menu-cat { margin-bottom: var(--s-8); scroll-margin-top: calc(var(--header-h) + 90px); }
.menu-cat__head { display: flex; flex-wrap: wrap; align-items: baseline; gap: var(--s-3); border-bottom: 3px solid var(--red); padding-bottom: var(--s-3); margin-bottom: var(--s-5); }
.menu-cat__head h2 { font-size: var(--text-3xl); color: var(--red); }
.menu-cat__blurb { color: var(--ink-3); font-size: var(--text-sm); }
.menu-cat__badge {
  background: var(--green-deep); color: var(--lime-bright);
  font-size: var(--text-xs); font-weight: var(--weight-black);
  letter-spacing: var(--tracking-wide); text-transform: uppercase;
  padding: var(--s-1) var(--s-3); border-radius: var(--r-pill);
}

.menu-list { list-style: none; display: grid; gap: 2px; }
@media (min-width: 800px) { .menu-list { grid-template-columns: repeat(2, 1fr); column-gap: var(--s-7); } }

.menu-item {
  display: flex;
  align-items: baseline;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-2);
  border-radius: var(--r-sm);
  transition: background-color 0.18s var(--ease);
}
.menu-item:hover { background: var(--white); }
.menu-item__name { font-weight: var(--weight-bold); color: var(--ink-1); }
.menu-item__leader { flex: 1; border-bottom: 2px dotted hsl(30 14% 78%); transform: translateY(-4px); min-width: 20px; }
.menu-item__price { font-family: var(--font-display); font-size: var(--text-lg); letter-spacing: var(--tracking-normal); color: var(--red); white-space: nowrap; }
.menu-item__price--text { font-family: var(--font-body); font-size: var(--text-xs); font-weight: var(--weight-black); letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--ink-3); }

.menu-empty { display: none; padding: var(--s-7) 0; text-align: center; color: var(--ink-2); }
.menu-empty.is-shown { display: block; }

.note-bar {
  display: flex; gap: var(--s-3);
  padding: var(--s-4) var(--s-5);
  background: var(--white);
  border: 1px solid var(--rule);
  border-left: 5px solid var(--lime);
  border-radius: var(--r-md);
  font-size: var(--text-sm);
  color: var(--ink-2);
}
.note-bar svg { width: 20px; height: 20px; flex: none; color: var(--green); }

/* --------------------------------------------------------------------------
   11. COMMUNITY / EDITORIAL
   -------------------------------------------------------------------------- */
.story { background: var(--white); }
.story__tag {
  align-self: flex-start;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: var(--weight-black);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  padding: 3px var(--s-3);
  border-radius: var(--r-pill);
}
.story__date { font-size: var(--text-xs); font-weight: var(--weight-black); letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--ink-3); }
.story__title { font-family: var(--font-display); font-size: var(--text-xl); text-transform: uppercase; letter-spacing: var(--tracking-tight); }
.story__desc { color: var(--ink-2); font-size: var(--text-sm); }

.partner-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--s-6); }
.partner {
  display: grid; place-items: center;
  width: 120px; height: 120px;
  padding: var(--s-3);
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.partner:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.partner img { max-height: 82px; width: auto; object-fit: contain; }

/* --------------------------------------------------------------------------
   12. FORMS
   -------------------------------------------------------------------------- */
.form { display: grid; gap: var(--s-5); }
.field { display: grid; gap: var(--s-2); }
.field label { font-size: var(--text-sm); font-weight: var(--weight-black); color: var(--ink-1); }
.field .hint { font-size: var(--text-xs); color: var(--ink-3); font-weight: var(--weight-regular); }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 52px;
  padding: var(--s-3) var(--s-4);
  background: var(--white);
  border: 2px solid var(--rule);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--ink-1);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; line-height: var(--leading-normal); }
.field input:hover, .field select:hover, .field textarea:hover { border-color: hsl(30 14% 78%); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px hsl(357 73% 47% / 0.16);
}
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: none; }
.field[data-invalid="true"] input,
.field[data-invalid="true"] select,
.field[data-invalid="true"] textarea { border-color: var(--red); background: var(--red-tint); }
.field .error { display: none; font-size: var(--text-sm); font-weight: var(--weight-bold); color: var(--red-hover); }
.field[data-invalid="true"] .error { display: flex; gap: var(--s-2); align-items: center; }
.field .error svg { width: 16px; height: 16px; flex: none; }

.form-status {
  display: none;
  gap: var(--s-3);
  padding: var(--s-4) var(--s-5);
  border-radius: var(--r-md);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
}
.form-status.is-shown { display: flex; }
.form-status svg { width: 20px; height: 20px; flex: none; }
.form-status--info { background: var(--lime-tint); border: 1px solid hsl(72 45% 74%); color: var(--green-deep); }
.form-status--error { background: var(--red-tint); border: 1px solid hsl(357 60% 84%); color: var(--red-active); }
.form-status--ok { background: var(--lime-tint); border: 1px solid hsl(72 45% 62%); color: var(--green-deep); }

.panel {
  padding: var(--s-6);
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
@media (min-width: 768px) { .panel { padding: var(--s-7); } }
.panel--dark { background: var(--green-deep); border-color: var(--rule-dark); color: var(--snow-1); }
.panel--dark h3, .panel--dark h4 { color: var(--snow-1); }
.panel--dark p { color: var(--snow-2); }

.contact-list { list-style: none; display: grid; gap: var(--s-4); }
.contact-list li { display: flex; gap: var(--s-3); align-items: flex-start; }
.contact-list svg { width: 20px; height: 20px; flex: none; margin-top: 3px; color: var(--lime); }
.contact-list a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: inherit;
  font-weight: var(--weight-bold);
}
.contact-list a:hover { color: var(--lime-bright); }
.contact-list .label { display: block; font-size: var(--text-xs); font-weight: var(--weight-black); letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--snow-3); }

/* --------------------------------------------------------------------------
   13. ROLE LIST
   -------------------------------------------------------------------------- */
.role-list { list-style: none; display: grid; gap: var(--s-2); grid-template-columns: 1fr; }
@media (min-width: 620px) { .role-list { grid-template-columns: repeat(2, 1fr); } }
.role-list li {
  display: flex; align-items: center; gap: var(--s-3);
  padding: var(--s-3) var(--s-4);
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  font-weight: var(--weight-bold);
}
.role-list svg { width: 18px; height: 18px; flex: none; color: var(--green); }

/* --------------------------------------------------------------------------
   14. SOCIAL
   -------------------------------------------------------------------------- */
.social-row { display: flex; flex-wrap: wrap; gap: var(--s-3); }
.social-link {
  display: inline-grid; place-items: center;
  width: 52px; height: 52px;
  border: 2px solid var(--rule-dark);
  border-radius: var(--r-md);
  color: var(--snow-1);
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.social-link svg { width: 24px; height: 24px; }
.social-link:hover { background: var(--lime); border-color: var(--lime); color: var(--green-deeper); transform: translateY(-3px); }
.social-link:active { transform: translateY(0); }

/* --------------------------------------------------------------------------
   15. FOOTER
   -------------------------------------------------------------------------- */
.footer { background: var(--green-deeper); color: var(--snow-2); border-top: 5px solid var(--red); }
.footer__grid { display: grid; gap: var(--s-6); padding-block: var(--s-8) var(--s-6); }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; } }

.footer__logo img { height: 70px; width: auto; }
.footer p { font-size: var(--text-sm); color: var(--snow-2); }
.footer h2 { color: var(--lime-bright); font-size: var(--text-sm); letter-spacing: var(--tracking-widest); text-transform: uppercase; margin-bottom: var(--s-4); }
.footer__links { list-style: none; display: grid; }
.footer__links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--snow-2);
  font-size: var(--text-sm);
  text-decoration: none;
}
.footer__links a:hover { color: var(--lime-bright); text-decoration: underline; }
.footer__bar {
  display: flex; flex-wrap: wrap; gap: var(--s-3);
  align-items: center; justify-content: space-between;
  padding-block: var(--s-5);
  border-top: 1px solid var(--rule-dark);
  font-size: var(--text-xs);
  color: var(--snow-3);
}
.footer__bar a { color: var(--snow-3); }
.footer__bar a:hover { color: var(--lime-bright); }

/* Mobile quick action bar */
.quickbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rule-dark);
  border-top: 3px solid var(--lime);
  transform: translateY(110%);
  transition: transform 0.3s var(--ease);
}
.quickbar.is-shown { transform: translateY(0); }
.quickbar a {
  display: flex; align-items: center; justify-content: center; gap: var(--s-2);
  min-height: 56px;
  background: var(--green-deep);
  color: var(--snow-1);
  font-size: var(--text-xs);
  font-weight: var(--weight-black);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  text-decoration: none;
}
.quickbar a:active { background: var(--green); color: var(--snow-1); }
.quickbar a svg { width: 18px; height: 18px; }
@media (min-width: 1024px) { .quickbar { display: none; } }
body.has-quickbar .footer__bar { padding-bottom: calc(var(--s-5) + 56px); }
@media (min-width: 1024px) { body.has-quickbar .footer__bar { padding-bottom: var(--s-5); } }

/* --------------------------------------------------------------------------
   16. MOTION
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-left, .reveal-right { opacity: 0; transform: translateY(28px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
@media (min-width: 900px) {
  .reveal-left { transform: translateX(-32px); }
  .reveal-right { transform: translateX(32px); }
}
.reveal-left.is-visible, .reveal-right.is-visible { opacity: 1; transform: none; }
.reveal-group > *:nth-child(1) { transition-delay: 0s; }
.reveal-group > *:nth-child(2) { transition-delay: 0.07s; }
.reveal-group > *:nth-child(3) { transition-delay: 0.14s; }
.reveal-group > *:nth-child(4) { transition-delay: 0.21s; }
.reveal-group > *:nth-child(5) { transition-delay: 0.28s; }
.reveal-group > *:nth-child(6) { transition-delay: 0.35s; }

@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 img { animation: none; transform: scale(1.02); }
  .ribbon__track { animation: none; }
  .band { background-attachment: scroll; }
}

/* --------------------------------------------------------------------------
   17. PRINT (menu page)
   -------------------------------------------------------------------------- */
@media print {
  .header, .drawer, .quickbar, .menu-tools, .footer, .hero, .btn, .note-bar { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .section { padding-block: 0; }
  .menu-cat { break-inside: avoid; margin-bottom: 18pt; }
  .menu-cat__head h2 { color: #000; font-size: 15pt; }
  .menu-item__price { color: #000; }
  .print-head { display: block !important; margin-bottom: 16pt; }
}
.print-head { display: none; }
