/* =========================================================
   RANGAMATI — Bangladeshi & Indian Restaurant, Wokingham
   Design system. Mobile-first. No frameworks.
   Palette derived from the supplied logo (green wordmark
   #068F62, white "Restaurant & Takeaway" strapline).
   ========================================================= */

/* ---------- 1. TOKENS ---------- */
:root {
  /* Brand — sampled directly from rangamati-logo.png */
  --brand:        #068F62;
  --brand-600:    #057A53;
  --brand-700:    #045E41;
  --brand-tint:   #E7F3ED;

  /* Dark surfaces. The logo strapline is white, so the mark
     only reads correctly on a dark field — hence a deep
     forest ink rather than a neutral black. */
  --ink:          #0B2118;
  --ink-2:        #123024;
  --ink-3:        #1B4433;

  /* Accent — reserved almost entirely for the ORDER ONLINE button */
  --gold:         #E0A73C;
  --gold-600:     #C68B2C;
  --gold-700:     #A5721F;

  /* Paper */
  --paper:        #FCFAF5;
  --paper-2:      #F5F0E5;
  --line:         #E3DCCD;
  --line-dark:    rgba(255,255,255,.14);

  /* Text */
  --heading:      #0C2018;
  --body:         #3D4842;
  --muted:        #6E7B75;
  --on-dark:      #F2EEE4;
  --on-dark-mute: #A9B8B0;

  /* Type */
  --font-display: "Eczar", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-body:    "Karla", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Scale */
  --step--1: clamp(.8rem, .77rem + .15vw, .875rem);
  --step-0:  clamp(1rem, .96rem + .2vw, 1.075rem);
  --step-1:  clamp(1.15rem, 1.08rem + .35vw, 1.35rem);
  --step-2:  clamp(1.4rem, 1.26rem + .7vw, 1.85rem);
  --step-3:  clamp(1.75rem, 1.5rem + 1.2vw, 2.6rem);
  --step-4:  clamp(2.1rem, 1.66rem + 2.1vw, 3.6rem);

  /* Layout */
  --wrap: 1180px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --section-y: clamp(3.25rem, 8vw, 6rem);
  --radius: 4px;
  --radius-lg: 8px;

  --shadow-sm: 0 1px 2px rgba(11,33,24,.06), 0 4px 14px rgba(11,33,24,.05);
  --shadow-md: 0 10px 34px rgba(11,33,24,.12);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- 2. RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  /* room for the mobile sticky order bar */
  padding-bottom: env(safe-area-inset-bottom);
}
img, picture, svg { max-width: 100%; display: block; }
img { height: auto; }
a { color: var(--brand-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
button { font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--heading);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -.005em;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }
p  { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

/* ---------- 3. UTILITIES ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 780px; }
.section { padding-block: var(--section-y); }
.section--tint { background: var(--paper-2); }
.section--dark { background: var(--ink); color: var(--on-dark); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark p { color: var(--on-dark-mute); }

.skip-link {
  position: absolute; left: .5rem; top: -100px; z-index: 999;
  background: var(--gold); color: var(--ink); padding: .7rem 1.1rem;
  border-radius: var(--radius); font-weight: 700; text-decoration: none;
}
.skip-link:focus { top: .5rem; }

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

:where(a, button, [tabindex]):focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Eyebrow — small caps label above section headings */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand-700);
  margin: 0 0 .85rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: ""; width: 1.8rem; height: 1px; background: var(--gold-600); flex: none;
}
.section--dark .eyebrow { color: var(--gold); }
.section--dark .eyebrow::before { background: var(--gold-700); }

.lede { font-size: var(--step-1); color: var(--body); line-height: 1.55; }
.section--dark .lede { color: var(--on-dark); }

/* ---------- 4. BUTTONS ----------
   One CTA colour discipline: gold is used for ORDER ONLINE and
   almost nothing else, so the primary conversion is never
   competing with another button of the same weight.            */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .55rem;
  min-height: 52px;
  padding: .85rem 1.5rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--step--1);
  letter-spacing: .09em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .22s var(--ease), border-color .22s var(--ease),
              color .22s var(--ease), transform .22s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--order {
  background: var(--gold); border-color: var(--gold); color: var(--ink);
  box-shadow: 0 2px 0 var(--gold-700);
}
.btn--order:hover { background: var(--gold-600); border-color: var(--gold-600); }

.btn--ghost { background: transparent; border-color: var(--brand); color: var(--brand-700); }
.btn--ghost:hover { background: var(--brand); color: #fff; }

.btn--ghost-light { background: transparent; border-color: rgba(255,255,255,.42); color: #fff; }
.btn--ghost-light:hover { background: #fff; border-color: #fff; color: var(--ink); }

.btn--solid { background: var(--brand); border-color: var(--brand); color: #fff; }
.btn--solid:hover { background: var(--brand-700); border-color: var(--brand-700); }

.btn--sm { min-height: 44px; padding: .55rem 1.1rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }
.btn-row .btn { flex: 1 1 auto; }
@media (min-width: 34em) { .btn-row .btn { flex: 0 0 auto; } }

/* Text link with arrow */
.arrow-link {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 700; font-size: var(--step--1);
  letter-spacing: .09em; text-transform: uppercase;
  color: var(--brand-700); text-decoration: none;
  border-bottom: 2px solid var(--gold); padding-bottom: .2rem;
}
.arrow-link svg { transition: transform .22s var(--ease); }
.arrow-link:hover svg { transform: translateX(4px); }
.section--dark .arrow-link { color: var(--gold); }

/* ---------- 5. HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--ink);
  border-bottom: 1px solid var(--line-dark);
  transition: box-shadow .25s var(--ease), background-color .25s var(--ease);
}
.site-header.is-stuck { box-shadow: 0 6px 24px rgba(11,33,24,.28); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
  padding-block: .55rem;
}
.brand { display: flex; align-items: center; text-decoration: none; flex: none; }
.brand img { width: clamp(132px, 34vw, 178px); height: auto; }

.header-actions { display: flex; align-items: center; gap: .5rem; }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  background: transparent; border: 1px solid var(--line-dark);
  border-radius: var(--radius); color: #fff; cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px;
  background: currentColor; border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after  { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

.header-order { display: none; }

/* Desktop nav */
.site-nav { display: none; }
.site-nav ul { display: flex; gap: clamp(1rem, 2.4vw, 2rem); list-style: none; margin: 0; padding: 0; }
.site-nav a {
  color: var(--on-dark); text-decoration: none;
  font-size: var(--step--1); font-weight: 500;
  letter-spacing: .11em; text-transform: uppercase;
  padding: .5rem 0; position: relative; display: block;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
}
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.site-nav a[aria-current="page"] { color: #fff; }

@media (min-width: 62em) {
  .site-nav { display: block; }
  .nav-toggle { display: none; }
  .header-order { display: inline-flex; }
  .header-inner { min-height: 78px; }
}

/* Mobile drawer */
.nav-drawer {
  position: fixed; inset: 0 0 0 auto; width: min(88vw, 340px);
  background: var(--ink-2); color: var(--on-dark);
  z-index: 80;
  transform: translateX(100%);
  transition: transform .3s var(--ease);
  display: flex; flex-direction: column;
  padding: 1.1rem var(--gutter) calc(1.5rem + env(safe-area-inset-bottom));
  overflow-y: auto;
  border-left: 1px solid var(--line-dark);
}
.nav-drawer.is-open { transform: translateX(0); }
.nav-drawer__head { display: flex; justify-content: flex-end; margin-bottom: 1rem; }
.nav-drawer__close {
  width: 48px; height: 48px; border: 1px solid var(--line-dark);
  background: transparent; color: #fff; border-radius: var(--radius);
  font-size: 1.4rem; line-height: 1; cursor: pointer;
}
.nav-drawer ul { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.nav-drawer li + li { border-top: 1px solid var(--line-dark); }
.nav-drawer a.drawer-link {
  display: block; padding: 1rem 0;
  color: var(--on-dark); text-decoration: none;
  font-family: var(--font-display); font-size: var(--step-2); font-weight: 600;
}
.nav-drawer a.drawer-link[aria-current="page"] { color: var(--gold); }
.nav-drawer .drawer-cta { display: grid; gap: .6rem; margin-top: auto; }
.nav-drawer__meta {
  margin-top: 1.4rem; padding-top: 1.2rem;
  border-top: 1px solid var(--line-dark);
  font-size: var(--step--1); color: var(--on-dark-mute);
}
.nav-drawer__meta a { color: var(--on-dark); }

.nav-scrim {
  position: fixed; inset: 0; z-index: 70;
  background: rgba(7,20,15,.6);
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
  border: 0; padding: 0; cursor: pointer;
}
.nav-scrim.is-open { opacity: 1; visibility: visible; }
body.nav-open { overflow: hidden; }

/* ---------- 6. STATUS PILL (live open / closed) ---------- */
.status {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .38rem .8rem;
  border: 1px solid var(--line-dark);
  border-radius: 100px;
  font-size: var(--step--1); font-weight: 500;
  background: rgba(255,255,255,.05);
  color: var(--on-dark);
}
.status__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--muted); flex: none; }
.status.is-open   .status__dot { background: #3FD394; box-shadow: 0 0 0 4px rgba(63,211,148,.18); }
.status.is-closed .status__dot { background: #E0A73C; }
.status--light { background: #fff; border-color: var(--line); color: var(--heading); }

/* ---------- 7. HERO ---------- */
.hero { position: relative; background: var(--ink); color: var(--on-dark); overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: .72; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,33,24,.80) 0%, rgba(11,33,24,.52) 45%, rgba(11,33,24,.93) 100%),
    linear-gradient(90deg, rgba(11,33,24,.72) 0%, rgba(11,33,24,.18) 62%, rgba(11,33,24,0) 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  padding-block: clamp(2.75rem, 9vw, 5.5rem);
  max-width: 46rem;
}
.hero h1 { color: #fff; margin-bottom: .55rem; text-shadow: 0 2px 18px rgba(11,33,24,.5); }
.hero h1 .accent { color: var(--brand); display: block; }
.hero__sub { color: rgba(255,255,255,.9); text-shadow: 0 1px 12px rgba(11,33,24,.55); font-size: var(--step-1); margin-bottom: 1.6rem; max-width: 34rem; }
.hero .btn-row { margin-bottom: 1.5rem; }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: .6rem .9rem; align-items: center;
  font-size: var(--step--1); color: rgba(255,255,255,.85);
}
.hero__meta span.dot { opacity: .4; }

/* Hero on interior pages — compact band */
.page-hero { background: var(--ink); color: var(--on-dark); position: relative; overflow: hidden; }
.page-hero__media { position: absolute; inset: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.page-hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,33,24,.85), rgba(11,33,24,.95));
}
.page-hero__inner { position: relative; z-index: 2; padding-block: clamp(2.25rem, 7vw, 4rem); max-width: 46rem; }
.page-hero h1 { color: #fff; }
.page-hero p { color: var(--on-dark-mute); max-width: 40rem; }

/* Breadcrumbs */
.crumbs { font-size: var(--step--1); color: var(--on-dark-mute); margin-bottom: .9rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: 0; }
.crumbs a { color: var(--on-dark-mute); text-decoration: none; }
.crumbs a:hover { color: #fff; text-decoration: underline; }
.crumbs li + li::before { content: "/"; margin-right: .4rem; opacity: .5; }

/* ---------- 8. QUICK ACTIONS (ribs, not cards) ---------- */
.actions { background: var(--paper-2); border-bottom: 1px solid var(--line); }
.actions ul { list-style: none; margin: 0; padding: 0; display: grid; }
.actions li + li { border-top: 1px solid var(--line); }
.actions a {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.15rem 0; text-decoration: none; color: var(--heading);
  transition: color .2s var(--ease);
}
.actions a:hover { color: var(--brand-700); }
.actions .ico {
  width: 42px; height: 42px; flex: none;
  display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 50%;
  background: #fff; color: var(--brand);
  transition: background-color .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease);
}
.actions a:hover .ico { background: var(--brand); color: #fff; border-color: var(--brand); }
.actions .txt { flex: 1 1 auto; min-width: 0; }
.actions .txt strong {
  display: block; font-family: var(--font-display);
  font-size: var(--step-1); font-weight: 600; color: var(--heading);
}
.actions .txt span { font-size: var(--step--1); color: var(--muted); }
.actions .chev { flex: none; color: var(--gold-700); transition: transform .22s var(--ease); }
.actions a:hover .chev { transform: translateX(4px); }
.actions li.is-primary a .ico { background: var(--gold); border-color: var(--gold); color: var(--ink); }

@media (min-width: 48em) {
  .actions ul { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .actions li + li { border-top: 0; border-left: 1px solid var(--line); }
  .actions a { padding: 1.5rem 1.5rem; }
  .actions li:first-child a { padding-left: 0; }
  .actions li:last-child a { padding-right: 0; }
}

/* ---------- 9. SPLIT (asymmetric text + image) ---------- */
.split { display: grid; gap: clamp(1.75rem, 5vw, 3.5rem); align-items: center; }
@media (min-width: 56em) {
  .split { grid-template-columns: 1.05fr 1fr; }
  .split--flip .split__media { order: -1; }
}
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--radius-lg); }
.split__media::before { content: none; }
@media (min-width: 56em) {
  .split__media::before {
    content: ""; position: absolute; inset: auto -14px -14px auto;
    width: 55%; height: 55%;
    border-right: 1px solid var(--gold-600); border-bottom: 1px solid var(--gold-600);
    border-radius: 0 0 var(--radius-lg) 0;
    pointer-events: none;
  }
}
.split__inset {
  position: absolute; right: -12px; bottom: -28px;
  width: min(42%, 190px);
  border-radius: var(--radius-lg);
  border: 5px solid var(--paper);
  box-shadow: var(--shadow-md);
  display: none;
}
@media (min-width: 40em) { .split__inset { display: block; } }

/* ---------- 10. THE MENU BOARD (signature element) ----------
   A typeset board rather than another grid of cards: category
   names set large with leader dots, the way a printed takeaway
   menu reads. Carries the "established restaurant" feel without
   depending on photography.                                    */
.board { border-top: 2px solid var(--heading); }
.board__row {
  display: flex; align-items: baseline; gap: .75rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none; color: inherit;
  transition: background-color .22s var(--ease), padding-inline .22s var(--ease);
}
a.board__row:hover { background: var(--brand-tint); padding-inline: .75rem; }
.board__name {
  font-family: var(--font-display); font-weight: 600;
  font-size: var(--step-2); color: var(--heading);
  flex: none; line-height: 1.15;
}
.board__leader {
  flex: 1 1 auto; min-width: 1.5rem;
  border-bottom: 1px dotted var(--line);
  transform: translateY(-.28em);
}
.board__desc {
  flex: none; font-size: var(--step--1); color: var(--muted);
  text-align: right; max-width: 48%;
}
.board__row .heat { color: var(--gold-700); letter-spacing: .08em; font-size: .82em; }
.board__row .veg  { color: var(--brand); font-weight: 700; font-size: .82em; }

@media (max-width: 34em) {
  .board__row { flex-wrap: wrap; gap: .15rem .6rem; }
  .board__leader { display: none; }
  .board__desc { flex: 1 1 100%; text-align: left; max-width: none; }
}

/* ---------- 11. DISH SHOWCASE ---------- */
.dishes { display: grid; gap: 1.25rem; }
@media (min-width: 40em) { .dishes { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64em) { .dishes { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }

.dish { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--ink); display: block; text-decoration: none; }
.dish img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  transition: transform .5s var(--ease), opacity .35s var(--ease);
  opacity: .78;
}
.dish:hover img { transform: scale(1.05); opacity: .62; }
.dish__body {
  position: absolute; inset: auto 0 0 0;
  padding: 1.1rem;
  background: linear-gradient(180deg, rgba(11,33,24,0), rgba(11,33,24,.92) 62%);
}
.dish__body h3 { color: #fff; font-size: var(--step-1); margin: 0 0 .2rem; }
.dish__body p { color: var(--on-dark-mute); font-size: var(--step--1); margin: 0; }

/* First dish spans two columns on wide screens — avoids a flat 4-up grid */
@media (min-width: 64em) {
  .dishes--feature { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; }
  .dishes--feature .dish:first-child { grid-row: span 2; }
  .dishes--feature .dish:first-child img { aspect-ratio: 3/4; height: 100%; }
  .dishes--feature .dish:first-child h3 { font-size: var(--step-2); }
}

/* ---------- 12. REASONS ---------- */
.reasons { display: grid; gap: 1.5rem 2rem; }
@media (min-width: 40em) { .reasons { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64em) { .reasons { grid-template-columns: repeat(3, 1fr); } }
.reason { padding-top: 1.1rem; border-top: 1px solid var(--line); }
.section--dark .reason { border-top-color: var(--line-dark); }
.reason__ico { color: var(--brand); margin-bottom: .7rem; }
.section--dark .reason__ico { color: var(--gold); }
.reason h3 { font-size: var(--step-1); margin-bottom: .3rem; }
.reason p { font-size: var(--step--1); margin: 0; color: var(--muted); }
.section--dark .reason p { color: var(--on-dark-mute); }

/* ---------- 13. ORDER BAND ---------- */
.order-band { position: relative; background: var(--ink-2); color: var(--on-dark); overflow: hidden; }
.order-band__media { position: absolute; inset: 0; }
.order-band__media img { width: 100%; height: 100%; object-fit: cover; opacity: .28; }
.order-band__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(11,33,24,.95) 22%, rgba(11,33,24,.7) 100%);
}
.order-band__inner { position: relative; z-index: 2; padding-block: var(--section-y); max-width: 42rem; }
.order-band h2 { color: #fff; }

/* ---------- 14. HOURS & LOCATION ---------- */
.panel {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.25rem, 4vw, 2rem);
  box-shadow: var(--shadow-sm);
}
.panel h3 { margin-bottom: .9rem; }
.info-grid { display: grid; gap: 1.25rem; }
@media (min-width: 56em) { .info-grid { grid-template-columns: 1fr 1fr; gap: 1.75rem; } }

.hours { list-style: none; margin: 0; padding: 0; }
.hours li {
  display: flex; justify-content: space-between; gap: 1rem; align-items: baseline;
  padding: .6rem 0; border-bottom: 1px dotted var(--line);
  font-size: var(--step--1);
}
.hours li:last-child { border-bottom: 0; }
.hours .day { font-weight: 700; color: var(--heading); letter-spacing: .02em; }
.hours .times { text-align: right; color: var(--body); font-variant-numeric: tabular-nums; }
.hours li.is-today { background: var(--brand-tint); margin-inline: -.6rem; padding-inline: .6rem; border-radius: var(--radius); }
.hours li.is-today .day::after { content: " · Today"; color: var(--brand-700); font-weight: 500; }

.address { font-style: normal; line-height: 1.7; }
.address strong { color: var(--heading); font-family: var(--font-display); font-size: var(--step-1); display: block; margin-bottom: .3rem; }
.meta-list { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: .7rem; font-size: var(--step--1); }
.meta-list li { display: flex; gap: .65rem; align-items: flex-start; }
.meta-list svg { color: var(--brand); flex: none; margin-top: .15rem; }
.meta-list a { color: var(--heading); }

/* ---------- 15. REVIEWS ---------- */
.reviews { display: grid; gap: 1.25rem; }
@media (min-width: 48em) { .reviews { grid-template-columns: repeat(3, 1fr); } }
.review {
  background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--brand);
  border-radius: var(--radius); padding: 1.35rem;
}
.review blockquote { margin: 0 0 .9rem; font-size: var(--step-0); color: var(--body); }
.review figcaption { font-size: var(--step--1); color: var(--muted); font-weight: 700; }
.reviews-empty {
  border: 1px dashed var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 5vw, 2.5rem); text-align: center; background: #fff;
}

/* ---------- 16. GALLERY ---------- */
.gallery { display: grid; gap: .65rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 48em) { .gallery { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
@media (min-width: 72em) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery button {
  padding: 0; border: 0; background: var(--ink); cursor: zoom-in;
  border-radius: var(--radius); overflow: hidden; display: block; width: 100%;
}
.gallery img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  transition: transform .45s var(--ease), opacity .3s var(--ease);
}
.gallery button:hover img { transform: scale(1.06); opacity: .85; }
@media (min-width: 48em) {
  .gallery button:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery button:nth-child(1) img { aspect-ratio: 1; height: 100%; }
}

.lightbox {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(7,20,15,.94);
  display: grid; place-items: center;
  padding: 1rem;
  opacity: 0; visibility: hidden; transition: opacity .25s var(--ease), visibility .25s var(--ease);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(100%, 1100px); max-height: 82vh; border-radius: var(--radius); }
.lightbox__caption { color: var(--on-dark-mute); font-size: var(--step--1); text-align: center; margin-top: .85rem; }
.lightbox__btn {
  position: absolute; background: rgba(255,255,255,.1); border: 1px solid var(--line-dark);
  color: #fff; width: 52px; height: 52px; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center; font-size: 1.4rem; line-height: 1;
}
.lightbox__btn:hover { background: rgba(255,255,255,.2); }
.lightbox__close { top: 1rem; right: 1rem; }
.lightbox__prev  { left: .6rem; top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: .6rem; top: 50%; transform: translateY(-50%); }
@media (min-width: 48em) { .lightbox__prev { left: 1.5rem; } .lightbox__next { right: 1.5rem; } }

/* ---------- 17. FOOTER ---------- */
.site-footer { background: var(--ink); color: var(--on-dark-mute); padding-block: clamp(2.5rem, 7vw, 4rem) 0; }
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 48em) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 68em) { .footer-grid { grid-template-columns: 1.5fr .8fr 1fr 1.1fr; gap: 2.5rem; } }
.site-footer h2, .site-footer h3 { color: #fff; font-size: var(--step-1); margin-bottom: .85rem; }
.site-footer img.footer-logo { width: 190px; margin-bottom: 1rem; }
.site-footer p { font-size: var(--step--1); line-height: 1.7; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; font-size: var(--step--1); }
.site-footer a { color: var(--on-dark-mute); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-hours { font-size: var(--step--1); line-height: 1.8; }
.footer-hours strong { color: #fff; display: block; }
.social { display: flex; gap: .6rem; margin-top: 1rem; }
.social a {
  width: 44px; height: 44px; border: 1px solid var(--line-dark); border-radius: 50%;
  display: grid; place-items: center; color: var(--on-dark);
  transition: background-color .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease);
}
.social a:hover { background: var(--brand); border-color: var(--brand); color: #fff; }
.footer-seo {
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line-dark);
  font-size: var(--step--1); color: var(--on-dark-mute); max-width: 60rem;
}
.footer-bottom {
  margin-top: 1.5rem; padding-block: 1.25rem calc(1.25rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line-dark);
  display: flex; flex-wrap: wrap; gap: .6rem 1.25rem; justify-content: space-between;
  font-size: var(--step--1);
}
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: .6rem 1.25rem; }

/* ---------- 18. MOBILE STICKY ORDER BAR ---------- */
.order-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  display: grid; grid-template-columns: 1fr 1.35fr; gap: .55rem;
  padding: .6rem var(--gutter) calc(.6rem + env(safe-area-inset-bottom));
  background: rgba(11,33,24,.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line-dark);
  transform: translateY(110%);
  transition: transform .3s var(--ease);
}
.order-bar.is-visible { transform: translateY(0); }
.order-bar .btn { min-height: 50px; padding-inline: .6rem; font-size: .78rem; letter-spacing: .07em; }
@media (min-width: 62em) { .order-bar { display: none; } }
@media (max-width: 61.99em) { body { padding-bottom: 4.75rem; } }

/* ---------- 19. MOTION ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: .06s; }
.reveal:nth-child(3) { transition-delay: .12s; }
.reveal:nth-child(4) { transition-delay: .18s; }

@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 { opacity: 1; transform: none; }
  .btn:hover { transform: none; }
}

/* ---------- 20. PROSE (policies / long copy) ---------- */
.prose h2 { margin-top: 2rem; }
.prose h3 { margin-top: 1.5rem; font-size: var(--step-1); }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: .5rem; }

/* ---------- 21. PRINT ---------- */
@media print {
  .site-header, .order-bar, .nav-drawer, .nav-scrim, .hero__media, .site-footer .social { display: none !important; }
  body { background: #fff; color: #000; padding: 0; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .8em; }
}

/* ---------- 22. TAP TARGET FLOOR ----------
   Footer, policy and inline tel/contact links are text-sized by design.
   Padding lifts every one of them past the 24px WCAG 2.5.8 minimum
   without changing how they look.                                     */
.site-footer ul a,
.site-footer p a,
.footer-bottom a,
.meta-list a,
.nav-drawer__meta a {
  display: inline-block;
  padding-block: .45rem;
}
.site-footer ul { gap: .15rem; }
.footer-bottom ul { gap: .1rem 1.25rem; }
.crumbs a { display: inline-block; padding-block: .25rem; }

/* ---------- 23. SPECIFICITY GUARDS ----------
   .site-footer a sets a muted link colour, which outranks the plain
   .btn--* colour rules. Buttons inside the footer need re-asserting or
   the primary CTA loses its dark-on-gold label.                       */
.site-footer a.btn--order,
.site-footer a.btn--order:hover { color: var(--ink); text-decoration: none; }
.site-footer a.btn--solid,
.site-footer a.btn--solid:hover { color: #fff; text-decoration: none; }
.site-footer a.btn--ghost-light { color: #fff; text-decoration: none; }
.site-footer a.btn--ghost-light:hover { color: var(--ink); text-decoration: none; }

/* ---------- 24. PROMO BAR ----------
   Sits directly under the sticky header. Deep green so it reads as part
   of the brand furniture, with the offer itself picked out in gold.     */
.promo-bar {
  background: var(--brand-700);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.14);
  /* Deliberately not sticky — it sits above the sticky header and
     scrolls away, so the header never has to share the top edge. */
}
.promo-bar__inner {
  display: flex; align-items: center; justify-content: center;
  gap: .5rem .8rem; flex-wrap: wrap;
  padding-block: .6rem;
  text-align: center;
  font-size: var(--step--1);
  line-height: 1.4;
}
.promo-bar strong { color: var(--gold); font-weight: 700; letter-spacing: .01em; }
.promo-bar .promo-days { color: rgba(255,255,255,.82); }
[data-promo] .promo-today {
  display: none;
  background: var(--gold); color: var(--ink);
  font-weight: 700; font-size: .75rem; letter-spacing: .07em; text-transform: uppercase;
  padding: .2rem .55rem; border-radius: 100px;
}
[data-promo].is-today .promo-today { display: inline-block; }
.promo-bar a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* Offer callout used inside the page body */
.offer {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem;
  background: var(--ink-2); color: var(--on-dark);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--gold);
  padding: clamp(1.25rem, 4vw, 1.85rem);
}
.offer__body { flex: 1 1 20rem; }
.offer h3 { color: #fff; margin-bottom: .3rem; }
.offer p { color: var(--on-dark-mute); font-size: var(--step--1); margin: 0; }
.offer .promo-today { margin-left: .3rem; vertical-align: middle; }

/* ---------- 25. RELOCATION NOTICE (opens with the site) ---------- */
.notice {
  position: fixed; inset: 0; z-index: 95;
  display: grid; place-items: center;
  padding: 1rem;
  background: rgba(6,18,13,.82);
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.notice.is-open { opacity: 1; visibility: visible; }

.notice__card {
  position: relative;
  width: min(100%, 30rem);
  max-height: 92vh; overflow-y: auto;
  background: var(--ink);
  border: 1px solid rgba(255,255,255,.16);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px rgba(0,0,0,.5);
  padding: clamp(1.4rem, 5vw, 2.1rem);
  text-align: center;
  color: var(--on-dark);
  transform: translateY(14px) scale(.98);
  transition: transform .3s var(--ease);
}
.notice.is-open .notice__card { transform: none; }

.notice__close {
  position: absolute; top: .55rem; right: .55rem;
  width: 44px; height: 44px;
  background: transparent; border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%; color: #fff; font-size: 1.3rem; line-height: 1; cursor: pointer;
}
.notice__close:hover { background: rgba(255,255,255,.12); }

.notice__logo { width: 190px; margin: .25rem auto 1.1rem; }
.notice__flag {
  display: inline-block;
  background: var(--gold); color: var(--ink);
  font-weight: 700; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 100px; margin-bottom: .9rem;
}
.notice h2 {
  color: #fff; font-size: var(--step-2); margin-bottom: .15rem; line-height: 1.15;
}
.notice h2 span { display: block; color: var(--brand); }
.notice__why { color: var(--on-dark-mute); font-size: var(--step--1); margin: .9rem 0 1.1rem; }
.notice__why b { color: #fff; font-weight: 700; }

.notice__address {
  font-style: normal;
  border-block: 1px solid rgba(255,255,255,.14);
  padding-block: 1rem;
  margin-bottom: 1.2rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--step-1);
  line-height: 1.45;
  letter-spacing: .01em;
}
.notice__address a { color: var(--gold); text-decoration: none; display: inline-block; padding-block: .3rem; }
.notice__address a:hover { text-decoration: underline; }
.notice__address .tel-label {
  display: block; font-family: var(--font-body); font-size: var(--step--1);
  color: var(--on-dark-mute); letter-spacing: .08em; text-transform: uppercase; margin-top: .5rem;
}
.notice .btn-row { flex-direction: column; }
.notice .btn-row .btn { flex: 1 1 auto; width: 100%; }

/* ---------- 26. SHOPFRONT BAND ---------- */
.brandshot { margin: clamp(2rem, 6vw, 3rem) 0 0; }
.brandshot img {
  width: 100%; border-radius: var(--radius-lg);
  aspect-ratio: 21/10; object-fit: cover;
}
.brandshot figcaption {
  margin-top: .85rem;
  font-size: var(--step--1);
  color: var(--muted);
  text-align: center;
}

/* ---------- 27. MOBILE APPS ---------- */
.appband { background: var(--ink); color: var(--on-dark); }
.appband h2 { color: #fff; }
.appband p { color: var(--on-dark-mute); }
.appband .lede { color: var(--on-dark); }
.appband .eyebrow { color: var(--gold); }
.appband .eyebrow::before { background: var(--gold-700); }

.app-grid { display: grid; gap: clamp(2rem, 6vw, 3.5rem); align-items: center; }
@media (min-width: 58em) { .app-grid { grid-template-columns: 1.1fr .9fr; } }

.app-stores { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.6rem; }

.store-btn {
  display: inline-flex; align-items: center; gap: .7rem;
  min-height: 60px;
  padding: .6rem 1.25rem;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  background: var(--gold);
  color: var(--ink);
  text-decoration: none;
  transition: background-color .22s var(--ease), transform .22s var(--ease), border-color .22s var(--ease);
}
.store-btn:hover { background: var(--gold-600); border-color: var(--gold-600); transform: translateY(-2px); }
.store-btn__txt { display: flex; flex-direction: column; line-height: 1.15; }
.store-btn__txt small {
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; opacity: .8;
}
.store-btn__txt strong {
  font-size: 1.02rem; font-weight: 700; letter-spacing: .01em;
}

/* Not yet available — reads as a status, not a dead button */
.store-btn.is-soon {
  background: transparent;
  border-color: rgba(255,255,255,.28);
  border-style: dashed;
  color: var(--on-dark-mute);
  cursor: default;
}
.store-btn.is-soon:hover { transform: none; background: transparent; border-color: rgba(255,255,255,.28); }
.store-btn.is-soon strong { color: #fff; }

.app-note { font-size: var(--step--1); margin-top: 1rem; }

.app-points { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.1rem; }
.app-points li {
  display: flex; gap: .9rem; align-items: flex-start;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line-dark);
}
.app-points li:last-child { border-bottom: 0; padding-bottom: 0; }
.app-points svg { color: var(--brand); flex: none; margin-top: .2rem; }
.app-points strong { display: block; color: #fff; font-weight: 700; font-size: var(--step-0); }
.app-points span { display: block; color: var(--on-dark-mute); font-size: var(--step--1); line-height: 1.5; }

/* ---------- 28. FOOTER CREDIT ----------
   .site-footer a is muted by default; the agency credit sits inside a
   paragraph so it needs to read as a link rather than as body copy. */
.footer-bottom p a.credit {
  color: var(--on-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-bottom p a.credit:hover { color: #fff; }
