/* ==========================================================================
   CAFÉ NAIMORA — Premium hospitality design system
   Teal Navy · Warm Brown · Off White & Light Gray · Soft Gold · editorial typography
   ========================================================================== */

:root {
  /* Brand: Teal Navy primary · Warm Brown accent · Off White/Light Gray neutrals · Soft Gold (sparingly) */
  --cream: #F7F6F1;        /* Off White */
  --cream-2: #ECEAE3;      /* Light Gray */
  --paper: #FFFFFF;
  --ink: #0B1B2E;          /* Dark Navy ink */
  --ink-2: #33445C;
  --muted: #68748A;
  --line: rgba(11, 27, 46, .12);
  --line-soft: rgba(11, 27, 46, .07);

  --dark: #021B3A;         /* Teal Navy (primary) */
  --dark-2: #03142C;
  --dark-3: #0A2A50;
  --cream-on-dark: #EDF1F7;
  --line-dark: rgba(240, 243, 248, .16);

  --brown: #8B5E3C;        /* Warm Brown (accent) */
  --brown-deep: #6E4A2F;
  --gold: #CBA574;         /* Soft Gold (sparingly) */

  --green: #1FAF54; /* WhatsApp */

  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Manrope', 'Helvetica Neue', sans-serif;

  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);
  --shadow-card: 0 2px 6px rgba(3, 17, 38, .06), 0 18px 44px -18px rgba(3, 17, 38, .18);
  --shadow-lift: 0 6px 16px rgba(3, 17, 38, .10), 0 32px 64px -20px rgba(3, 17, 38, .30);

  --header-h: 84px;
  --radius: 18px;
  --radius-sm: 12px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
ul[role='list'], ol[role='list'] { list-style: none; padding: 0; }
::selection { background: rgba(139, 94, 60, .28); }

.skip-link {
  position: absolute; left: 16px; top: -80px; z-index: 2000;
  background: var(--ink); color: var(--cream);
  padding: 12px 20px; border-radius: 8px;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 14px; }

:focus-visible { outline: 2px solid var(--brown); outline-offset: 3px; border-radius: 4px; }

[id] { scroll-margin-top: 96px; }

/* ---------- typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 480; line-height: 1.08; letter-spacing: -.01em; }
.display {
  font-size: clamp(2.6rem, 6.2vw, 5rem);
  font-variation-settings: 'opsz' 144;
}
.h-xl { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
.h-lg { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.lede {
  font-size: clamp(1.06rem, 1.6vw, 1.25rem);
  color: var(--ink-2);
  max-width: 60ch;
}
.dark-surface .lede, .dark-surface p { color: rgba(233, 238, 246, .78); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--brown);
}
.eyebrow::before { content: ''; width: 34px; height: 1px; background: var(--brown); opacity: .85; }
.eyebrow.centered::after { content: ''; width: 34px; height: 1px; background: var(--brown); opacity: .85; }

/* legibility: gold eyebrows on dark surfaces */
.dark-surface .eyebrow, .page-hero .eyebrow, .hero .eyebrow, .site-footer .eyebrow { color: var(--gold); }
.dark-surface .eyebrow::before, .dark-surface .eyebrow.centered::after,
.page-hero .eyebrow::before, .hero .eyebrow::before, .site-footer .eyebrow::before { background: var(--gold); }

.serif-i { font-family: var(--font-display); font-style: italic; font-weight: 400; }

/* ---------- layout ---------- */
.container { width: min(1240px, 100% - clamp(2.5rem, 6vw, 5rem)); margin-inline: auto; }
.section { padding-block: clamp(4.5rem, 9vw, 8.5rem); }
.section-tight { padding-block: clamp(3rem, 6vw, 5.5rem); }
.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head .h-xl { margin-bottom: 16px; text-wrap: balance; }
.section-head.center { margin-inline: auto; text-align: center; }

.dark-surface { background: var(--dark); color: #EDF1F7; }
.dark-surface h1, .dark-surface h2, .dark-surface h3 { color: #EDF1F7; }

/* ---------- buttons ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 17px 34px;
  border-radius: 999px;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out),
              background .35s, color .35s, border-color .35s;
  overflow: hidden;
  white-space: nowrap;
}
.btn svg { width: 15px; height: 15px; transition: transform .45s var(--ease-out); flex: none; }
.btn:hover svg { transform: translateX(5px); }
.btn:active { transform: scale(.97); }

.btn-primary { background: var(--brown); color: #FFFFFF; box-shadow: 0 14px 32px -12px rgba(139, 94, 60, .55); }
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.28) 50%, transparent 65%);
  transform: translateX(-120%); transition: transform .8s var(--ease-out);
}
.btn-primary:hover { background: var(--brown-deep); transform: translateY(-2px); box-shadow: 0 20px 42px -14px rgba(139, 94, 60, .65); }
.btn-primary:hover::after { transform: translateX(120%); }

.btn-outline { border: 1px solid rgba(240, 243, 248, .4); color: #EDF1F7; background: rgba(246,241,232,.02); }
.btn-outline:hover { background: rgba(240, 243, 248, .12); border-color: rgba(246,241,232,.75); transform: translateY(-2px); }

.btn-outline-dark { border: 1px solid rgba(11, 27, 46, .3); color: var(--ink); }
.btn-outline-dark:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }

.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark:hover { background: var(--dark-3); transform: translateY(-2px); box-shadow: 0 18px 40px -16px rgba(23,16,10,.5); }

.btn-whatsapp { background: var(--green); color: #fff; box-shadow: 0 14px 32px -12px rgba(31, 175, 84, .5); }
.btn-whatsapp:hover { background: #169C47; transform: translateY(-2px); }
.btn-whatsapp svg { width: 17px; height: 17px; }

.btn-sm { padding: 13px 26px; font-size: .7rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .76rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--brown);
  transition: gap .35s var(--ease-out), color .3s;
}
.link-arrow svg { width: 15px; height: 15px; transition: transform .35s var(--ease-out); }
.link-arrow:hover { color: var(--brown-deep); }
.link-arrow:hover svg { transform: translateX(6px); }
.dark-surface .link-arrow:hover { color: var(--gold); }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); transition-delay: var(--d, 0s); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal-img { clip-path: inset(0 0 100% 0); transition: clip-path 1.2s var(--ease-out); transition-delay: var(--d, 0s); }
.reveal-img.in { clip-path: inset(0 0 0 0); }

/* ---------- page fade transition ---------- */
/* opacity only: a transform animation on body would make it the containing
   block for every fixed-position element (header, drawer, modals, float) */
body { animation: pageIn .6s var(--ease-out) both; }
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }
body.leaving { opacity: 0; transition: opacity .28s var(--ease-soft); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 980;
  transition: background .5s var(--ease-soft), box-shadow .5s, backdrop-filter .5s;
}
.site-header.drawer-lock {
  background: transparent;
  -webkit-backdrop-filter: none; backdrop-filter: none;
  box-shadow: none;
}
body.drawer-open .wa-float { opacity: 0 !important; pointer-events: none; }
.site-header .header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  height: var(--header-h);
  transition: height .45s var(--ease-out);
}
.brand { display: inline-flex; align-items: center; gap: 14px; flex: none; }
.brand img { height: 58px; width: auto; transition: height .45s var(--ease-out); filter: drop-shadow(0 2px 10px rgba(0,0,0,.35)); }
.brand-name {
  font-family: var(--font-display); font-size: 1.18rem; letter-spacing: .04em;
  color: var(--cream); line-height: 1.15;
}
.brand-name small { display: block; font-family: var(--font-body); font-size: .56rem; font-weight: 600; letter-spacing: .34em; text-transform: uppercase; color: var(--gold); margin-top: 3px; }

.main-nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); }
.main-nav a {
  position: relative;
  font-size: .72rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase;
  color: rgba(240, 243, 248, .82);
  padding: 8px 2px;
  transition: color .3s;
}
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: 2px;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease-out);
}
.main-nav a:hover { color: #fff; }
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.main-nav a[aria-current='page'] { color: var(--gold); }
.main-nav a[aria-current='page']::after { transform: scaleX(1); }

.header-cta { display: inline-flex; align-items: center; gap: 14px; flex: none; }
.wa-chip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(240, 243, 248, .3);
  color: #EDF1F7;
  transition: background .3s, border-color .3s, transform .35s var(--ease-out);
}
.wa-chip:hover { background: rgba(31, 175, 84, .9); border-color: transparent; transform: translateY(-2px); }
.wa-chip svg { width: 18px; height: 18px; }

.site-header.scrolled {
  background: rgba(3, 17, 38, .86);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(240, 243, 248, .08), 0 18px 44px -18px rgba(0, 0, 0, .55);
}
.site-header.scrolled .header-inner { height: 66px; }
.site-header.scrolled .brand img { height: 46px; }

/* burger */
.nav-toggle {
  display: none;
  position: relative; z-index: 1001;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(240, 243, 248, .3);
  transition: border-color .3s, background .3s;
}
.nav-toggle span {
  position: absolute; left: 13px; right: 13px; height: 1.6px;
  background: #EDF1F7;
  transition: transform .4s var(--ease-out), top .4s var(--ease-out), opacity .3s;
}
.nav-toggle span:nth-child(1) { top: 18px; }
.nav-toggle span:nth-child(2) { top: 23px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle[aria-expanded='true'] span:nth-child(1) { top: 23px; transform: rotate(45deg); }
.nav-toggle[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded='true'] span:nth-child(3) { top: 23px; transform: rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 950;
  background: linear-gradient(168deg, #021B3A 0%, #03142C 62%, #0A2A50 100%);
  color: var(--cream);
  display: flex; flex-direction: column;
  padding: 110px clamp(1.6rem, 7vw, 3rem) 40px;
  visibility: hidden; opacity: 0;
  transition: opacity .45s var(--ease-soft), visibility 0s .45s;
}
.drawer.open { visibility: visible; opacity: 1; transition: opacity .5s var(--ease-soft); }
.drawer nav { display: flex; flex-direction: column; gap: 4px; }
.drawer nav a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8.5vw, 2.9rem);
  color: #EDF1F7; padding: 10px 0;
  border-bottom: 1px solid rgba(240, 243, 248, .08);
  display: flex; align-items: baseline; justify-content: space-between;
  opacity: 0; transform: translateY(26px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out), color .3s;
  transition-delay: calc(var(--i) * 60ms);
}
.drawer.open nav a { opacity: 1; transform: none; }
.drawer nav a:hover, .drawer nav a[aria-current='page'] { color: var(--gold); }
.drawer nav a .idx { font-family: var(--font-body); font-size: .68rem; letter-spacing: .3em; color: var(--muted); }
.drawer-foot { margin-top: auto; padding-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease-out) .35s, transform .6s var(--ease-out) .35s; }
.drawer.open .drawer-foot { opacity: 1; transform: none; }
.drawer-foot .meta { font-size: .82rem; color: rgba(233, 238, 246, .6); line-height: 1.8; }
.drawer-foot .meta strong { color: #EDF1F7; font-weight: 600; }

/* ==========================================================================
   HERO (home)
   ========================================================================== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: var(--cream); overflow: clip; background: var(--dark); }
.hero-media { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s ease; }
.hero-slide.on { opacity: 1; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; transform-origin: center; }
.hero-slide.on img { animation: heroZoom 14s var(--ease-soft) forwards; }
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1.02); } }
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(2, 15, 33, .62) 0%, rgba(2, 15, 33, .30) 46%, rgba(2, 15, 33, 0) 70%),
    linear-gradient(to top, rgba(2, 15, 33, .95) 0%, rgba(2, 15, 33, .64) 38%, rgba(2, 15, 33, .45) 62%, rgba(2, 15, 33, .60) 100%),
    radial-gradient(120% 90% at 20% 100%, rgba(2, 15, 33, .5), transparent 60%);
}
.hero-content { position: relative; z-index: 2; padding-bottom: clamp(5.5rem, 12vh, 9rem); padding-top: 140px; }
.hero-eyebrow { margin-bottom: 26px; opacity: 0; animation: fadeUp 1s var(--ease-out) .35s forwards; text-shadow: 0 2px 18px rgba(2, 15, 33, .75); }
.hero-title { margin-bottom: 22px; text-shadow: 0 5px 44px rgba(2, 15, 33, .6), 0 1px 10px rgba(2, 15, 33, .5); }
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line span {
  display: block;
  font-size: clamp(3rem, 9.4vw, 7.2rem);
  font-variation-settings: 'opsz' 144;
  color: #F3F6FB;
  transform: translateY(110%);
  animation: riseUp 1.15s var(--ease-out) forwards;
}
.hero-title .line:nth-child(1) span { animation-delay: .45s; }
.hero-title .line:nth-child(2) span { animation-delay: .6s; }
.hero-title .line em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-family: var(--font-display); font-style: italic; font-size: clamp(1.06rem, 2vw, 1.4rem);
  color: rgba(243, 246, 251, .92); margin-bottom: 14px;
  text-shadow: 0 2px 22px rgba(2, 15, 33, .7);
  opacity: 0; animation: fadeUp 1s var(--ease-out) .95s forwards;
}
.hero-copy { max-width: 46ch; color: rgba(243, 246, 251, .85); margin-bottom: 40px; text-shadow: 0 2px 20px rgba(2, 15, 33, .7); opacity: 0; animation: fadeUp 1s var(--ease-out) 1.1s forwards; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; opacity: 0; animation: fadeUp 1s var(--ease-out) 1.25s forwards; }
.hero .btn-outline { background: rgba(2, 15, 33, .38); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.hero .btn-outline:hover { background: rgba(240, 243, 248, .18); }

@keyframes riseUp { to { transform: none; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

.scroll-hint {
  position: absolute; z-index: 3; left: 50%; bottom: 26px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: .6rem; font-weight: 600; letter-spacing: .4em; text-transform: uppercase;
  color: rgba(243, 246, 251, .55);
  opacity: 0; animation: fadeUp 1s var(--ease-out) 1.7s forwards;
}
.scroll-hint .track { width: 1px; height: 52px; background: rgba(243, 246, 251, .18); overflow: hidden; }
.scroll-hint .track::after { content: ''; display: block; width: 1px; height: 16px; background: var(--gold); animation: scrollDot 2.2s var(--ease-soft) infinite; }
@keyframes scrollDot { 0% { transform: translateY(-18px); } 65%, 100% { transform: translateY(56px); } }

.hero-badge {
  position: absolute; z-index: 3; right: clamp(1.5rem, 5vw, 4rem); bottom: clamp(5.5rem, 12vh, 9rem);
  text-align: right; font-size: .78rem; line-height: 2; letter-spacing: .06em;
  color: rgba(243, 246, 251, .85); text-shadow: 0 1px 14px rgba(2, 15, 33, .8);
  opacity: 0; animation: fadeUp 1s var(--ease-out) 1.5s forwards;
}
.hero-badge strong { display: block; color: #F3F6FB; font-weight: 600; }

.hero-dots {
  position: absolute; z-index: 3; left: clamp(1.5rem, 5vw, 4rem); bottom: clamp(5.5rem, 12vh, 9rem);
  display: flex; align-items: center; gap: 9px;
  opacity: 0; animation: fadeUp 1s var(--ease-out) 1.7s forwards;
}
.hero-dots button {
  width: 26px; height: 4px; padding: 0; border: none; border-radius: 999px; cursor: pointer;
  background: rgba(243, 246, 251, .35);
  transition: width .4s var(--ease-out), background .4s;
}
.hero-dots button:hover { background: rgba(243, 246, 251, .8); }
.hero-dots button.on { width: 44px; background: var(--gold); }

/* ==========================================================================
   EXPERIENCE CARDS (home quick nav)
   ========================================================================== */
.exp-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px; }
.exp-card {
  grid-column: span 2;
  position: relative; display: flex; flex-direction: column;
  background: var(--paper); border: 1px solid var(--line-soft);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .55s var(--ease-out), box-shadow .55s var(--ease-out);
}
.exp-card:nth-child(4), .exp-card:nth-child(5) { grid-column: span 3; }
.exp-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.exp-media { aspect-ratio: 16 / 10; overflow: hidden; }
.exp-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-out), filter .6s; }
.exp-card:hover .exp-media img { transform: scale(1.07); }
.exp-body { padding: 26px 26px 28px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.exp-body h3 { font-size: 1.35rem; }
.exp-body p { font-size: .92rem; color: var(--muted); flex: 1; }
.exp-body .link-arrow { margin-top: 12px; }

/* ==========================================================================
   EDITORIAL SPLITS
   ========================================================================== */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.split.reverse { grid-template-columns: .95fr 1.05fr; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; align-self: stretch; min-height: min(540px, 56vw); }
.split-media .frame { border-radius: var(--radius); overflow: hidden; }
.split-media .frame.main { position: absolute; inset: 0 6% 7% 0; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media .frame.small {
  position: absolute; width: 44%; aspect-ratio: 4 / 5;
  right: -2%; bottom: -4%;
  border: 8px solid var(--cream);
  box-shadow: var(--shadow-lift);
}
.dark-surface .split-media .frame.small { border-color: var(--dark); }
.split-copy .eyebrow { margin-bottom: 20px; }
.split-copy h2 { margin-bottom: 22px; }
.split-copy p + p { margin-top: 1em; }
.split-copy .btn, .split-copy .link-arrow { margin-top: 34px; }

.moments { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.moments li {
  font-size: .74rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  padding: 10px 18px; border: 1px solid var(--line); border-radius: 999px;
  color: var(--ink-2);
  transition: background .3s, color .3s, border-color .3s, transform .35s var(--ease-out);
}
.dark-surface .moments li { border-color: var(--line-dark); color: rgba(233, 238, 246, .75); }
.moments li:hover { background: var(--brown); border-color: var(--brown); color: #FFFFFF; transform: translateY(-2px); }

/* ==========================================================================
   SIGNATURE DISHES — horizontal showcase
   ========================================================================== */
.sig-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(2.2rem, 4vw, 3.2rem); }
.sig-nav { display: flex; gap: 10px; flex: none; }
.sig-nav button {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--ink);
  transition: background .3s, color .3s, border-color .3s, transform .3s var(--ease-out);
}
.sig-nav button:hover { background: var(--ink); border-color: var(--ink); color: var(--cream); transform: translateY(-2px); }
.sig-nav svg { width: 18px; height: 18px; }
.sig-scroll {
  display: grid; grid-auto-flow: column; grid-auto-columns: clamp(260px, 24vw, 330px);
  gap: 22px; overflow-x: auto; overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory; padding-bottom: 18px;
  scrollbar-width: none; cursor: grab;
}
.sig-scroll::-webkit-scrollbar { display: none; }
.sig-scroll.dragging { cursor: grabbing; scroll-snap-type: none; }
.dish-card {
  scroll-snap-align: start;
  background: var(--paper); border: 1px solid var(--line-soft);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; height: 100%;
  transition: transform .55s var(--ease-out), box-shadow .55s var(--ease-out);
  text-align: left;
}
.dish-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lift); }
.dish-media { position: relative; aspect-ratio: 4 / 3.4; overflow: hidden; background: var(--dark-2); }
.dish-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-out); }
.dish-card:hover .dish-media img { transform: scale(1.08); }
.dish-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: .6rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(3, 17, 38, .72); color: var(--gold);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(203, 165, 116, .35);
}
.dish-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.dish-cat { font-size: .62rem; font-weight: 700; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); }
.dish-name { font-size: 1.28rem; }
.dish-desc { font-size: .88rem; color: var(--muted); line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.dish-foot { margin-top: auto; padding-top: 14px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.dish-price { font-family: var(--font-display); font-size: 1.06rem; font-weight: 550; color: var(--brown-deep); letter-spacing: .02em; }
.dish-view {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .64rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-2);
}
.dish-view svg { width: 13px; height: 13px; transition: transform .35s var(--ease-out); }
.dish-card:hover .dish-view { color: var(--brown-deep); }
.dish-card:hover .dish-view svg { transform: translateX(4px); }

/* placeholder tile for image-less items */
.dish-media.placeholder { display: grid; place-items: center; background:
  radial-gradient(130% 120% at 30% 20%, #0A2A50 0%, #02142E 70%); }
.dish-media.placeholder .ph-mark { width: 72px; opacity: .78; filter: drop-shadow(0 4px 16px rgba(47,125,225,.28)); }
.dish-media.placeholder .ph-initial {
  position: absolute; font-family: var(--font-display); font-style: italic;
  font-size: 3rem; color: rgba(233, 238, 246, .16); user-select: none;
}

/* ==========================================================================
   HERITAGE / DRINKS dark editorial
   ========================================================================== */
.heritage-list { margin-top: 34px; border-top: 1px solid var(--line-dark); }
.heritage-list a {
  display: flex; align-items: baseline; justify-content: space-between; gap: 18px;
  padding: 17px 4px; border-bottom: 1px solid var(--line-dark);
  transition: padding .4s var(--ease-out), background .3s;
}
.heritage-list a:hover { padding-left: 14px; background: linear-gradient(90deg, rgba(174,131,66,.09), transparent); }
.heritage-list .n { font-family: var(--font-display); font-size: 1.22rem; color: #EDF1F7; }
.heritage-list .p { font-size: .8rem; letter-spacing: .1em; color: var(--gold); white-space: nowrap; }

.bfast-rows { margin-top: 30px; }
.bfast-rows a {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 13px 2px; border-bottom: 1px solid var(--line-soft);
}
.bfast-rows a:first-child { border-top: 1px solid var(--line-soft); }
.bfast-rows .n { font-size: .98rem; font-weight: 550; transition: color .3s, padding .3s var(--ease-out); }
.bfast-rows a:hover .n { color: var(--brown-deep); padding-left: 8px; }
.bfast-rows .p { font-size: .82rem; color: var(--muted); white-space: nowrap; }

.drinks-cols { columns: 2; column-gap: 34px; margin-top: 30px; }
.drinks-cols li {
  break-inside: avoid;
  font-family: var(--font-display); font-size: 1.08rem;
  padding: 9px 0; border-bottom: 1px dashed rgba(240, 243, 248, .12);
  color: rgba(233, 238, 246, .85);
  transition: color .3s, padding .3s var(--ease-out);
}
.drinks-cols li:hover { color: var(--gold); padding-left: 8px; }

/* ==========================================================================
   DELIVERY
   ========================================================================== */
.delivery { text-align: center; }
.delivery-apps { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 40px; }
.delivery-app {
  display: inline-flex; align-items: center; gap: 13px;
  padding: 16px 30px; border-radius: 999px;
  background: var(--paper); border: 1px solid var(--line);
  font-weight: 700; font-size: .9rem; letter-spacing: .04em;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .3s;
}
.delivery-app:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); border-color: rgba(139, 94, 60, .5); }
.delivery-app .app-ic { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; flex: none; }
.delivery-app .app-ic svg { width: 17px; height: 17px; }
.delivery-app .app-ic.logo { width: 40px; height: 32px; padding: 0; overflow: hidden; background: transparent; }
.delivery-app .app-ic.logo img { width: 100%; height: 100%; object-fit: contain; }
.delivery-note { margin-top: 22px; font-size: .82rem; color: var(--muted); }

/* ==========================================================================
   VISIT BAND
   ========================================================================== */
.visit-band { position: relative; overflow: clip; }
.visit-band .band-inner {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr auto; gap: 34px; align-items: center;
  padding-block: clamp(2.8rem, 5vw, 4.2rem);
}
.visit-band h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-bottom: 6px; }
.visit-cell .lbl { font-size: .64rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.visit-cell p { font-size: .92rem; color: rgba(233, 238, 246, .78); line-height: 1.7; }

/* ==========================================================================
   PAGE HERO (inner pages)
   ========================================================================== */
.page-hero {
  position: relative; background: var(--dark); color: var(--cream);
  padding: calc(var(--header-h) + clamp(4rem, 9vw, 7rem)) 0 clamp(3.4rem, 7vw, 5.6rem);
  overflow: clip;
}
.page-hero .glow { position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 90% at 82% 8%, rgba(139, 94, 60, .16), transparent 60%),
              radial-gradient(40% 70% at 8% 100%, rgba(47, 125, 225, .07), transparent 65%); }
.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); margin-bottom: 18px; text-wrap: balance; }
.page-hero p { max-width: 56ch; color: rgba(233, 238, 246, .72); font-size: 1.05rem; }

/* ==========================================================================
   MENU PAGE
   ========================================================================== */
.menu-toolbar {
  position: sticky; top: 66px; z-index: 500;
  background: rgba(240, 243, 248, .9);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .4s;
}
.menu-toolbar.stuck { box-shadow: 0 14px 34px -18px rgba(3, 17, 38, .22); }
.toolbar-inner { display: flex; flex-direction: column; gap: 0; }
.search-row { display: flex; align-items: center; gap: 18px; padding: 16px 0 10px; }
.menu-search {
  flex: 1; display: flex; align-items: center; gap: 13px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 999px; padding: 13px 22px;
  transition: border-color .3s, box-shadow .3s;
}
.menu-search:focus-within { border-color: var(--brown); box-shadow: 0 0 0 4px rgba(139, 94, 60, .14); }
.menu-search svg { width: 17px; height: 17px; color: var(--muted); flex: none; }
.menu-search input { border: none; outline: none; background: none; width: 100%; font-size: .95rem; }
.menu-search input::placeholder { color: var(--muted); }
.menu-count { font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }

.cat-row-wrap { position: relative; }
.cat-row {
  display: flex; gap: 9px; overflow-x: auto; scrollbar-width: none;
  padding: 4px 2px 16px; scroll-behavior: smooth;
}
.cat-row::-webkit-scrollbar { display: none; }
.cat-pill {
  flex: none;
  padding: 11px 21px; border-radius: 999px;
  border: 1px solid var(--line);
  font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-2); background: transparent;
  transition: background .35s, color .35s, border-color .35s, transform .35s var(--ease-out);
}
.cat-pill:hover { border-color: var(--brown); color: var(--brown-deep); transform: translateY(-1px); }
.cat-pill.active { background: var(--ink); border-color: var(--ink); color: var(--cream); }

.menu-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.menu-grid .dish-card { animation: cardIn .65s var(--ease-out) both; animation-delay: calc(var(--i, 0) * 45ms); }
@keyframes cardIn { from { opacity: 0; transform: translateY(26px) scale(.985); } to { opacity: 1; transform: none; } }

.menu-empty { text-align: center; padding: 90px 20px; display: none; }
.menu-empty.show { display: block; }
.menu-empty h3 { font-size: 1.6rem; margin-bottom: 10px; }
.menu-empty p { color: var(--muted); margin-bottom: 26px; }

.menu-foot-cta { text-align: center; margin-top: clamp(3.4rem, 6vw, 5rem); }
.menu-foot-cta p { color: var(--muted); margin-bottom: 20px; font-size: .95rem; }

/* ---------- dish modal ---------- */
.modal-root { position: fixed; inset: 0; z-index: 1200; display: none; }
.modal-root.open { display: block; }
.modal-overlay {
  position: absolute; inset: 0;
  background: rgba(2, 15, 33, .62);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  opacity: 0; transition: opacity .45s var(--ease-soft);
}
.modal-root.show .modal-overlay { opacity: 1; }
.modal-panel {
  position: absolute; left: 50%; top: 50%;
  width: min(960px, calc(100vw - 32px));
  max-height: min(88vh, 780px);
  transform: translate(-50%, -50%) translateY(34px) scale(.97);
  background: var(--paper); border-radius: 22px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1.05fr;
  opacity: 0;
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
  box-shadow: 0 60px 120px -30px rgba(0, 0, 0, .55);
}
.modal-root.show .modal-panel { opacity: 1; transform: translate(-50%, -50%); }
.modal-media { position: relative; min-height: 100%; background: var(--dark-2); }
.modal-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.modal-media.placeholder { display: grid; place-items: center; background: radial-gradient(130% 120% at 30% 20%, #0A2A50 0%, #02142E 70%); }
.modal-media.placeholder .ph-mark { width: 130px; }
.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 5;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(3, 17, 38, .68); color: #EDF1F7;
  display: grid; place-items: center;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  transition: background .3s, transform .35s var(--ease-out);
}
.modal-close:hover { background: var(--brown); transform: rotate(90deg); }
.modal-close svg { width: 16px; height: 16px; }
.modal-body { padding: clamp(26px, 4vw, 46px); overflow-y: auto; }
.modal-body .dish-cat { margin-bottom: 12px; }
.modal-body h3 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin-bottom: 10px; }
.modal-price { font-family: var(--font-display); font-size: 1.25rem; color: var(--brown-deep); font-weight: 550; margin-bottom: 18px; }
.modal-badge-row { margin-bottom: 14px; }
.modal-badge {
  display: inline-block; font-size: .6rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px;
  background: rgba(139, 94, 60, .12); color: var(--brown-deep);
  border: 1px solid rgba(139, 94, 60, .35);
}
.modal-desc { color: var(--ink-2); font-size: .98rem; line-height: 1.75; margin-bottom: 28px; }
.modal-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 34px; }
.modal-related h4 { font-family: var(--font-body); font-size: .66rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.related-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.related-item {
  border: 1px solid var(--line-soft); border-radius: 14px; overflow: hidden;
  text-align: left; background: var(--cream);
  transition: transform .4s var(--ease-out), box-shadow .4s, border-color .3s;
}
.related-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: rgba(139, 94, 60, .4); }
.related-item .r-media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--dark-2); position: relative; }
.related-item .r-media img { width: 100%; height: 100%; object-fit: cover; }
.related-item .r-media.placeholder { display: grid; place-items: center; background: radial-gradient(130% 120% at 30% 20%, #0A2A50 0%, #02142E 70%); }
.related-item .r-media .ph-mark { width: 34px; }
.related-item .r-body { padding: 11px 13px; }
.related-item .r-name { font-size: .8rem; font-weight: 600; line-height: 1.35; margin-bottom: 2px; }
.related-item .r-price { font-size: .74rem; color: var(--brown-deep); font-weight: 600; }

/* ==========================================================================
   EVENTS
   ========================================================================== */
.event-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.event-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4 / 4.6; display: flex; align-items: flex-end;
  color: var(--cream); isolation: isolate;
}
.event-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; transition: transform 1.2s var(--ease-out); }
.event-card::after { content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(2, 15, 33, .88) 6%, rgba(2, 15, 33, .16) 55%, rgba(2, 15, 33, .15)); }
.event-card:hover img { transform: scale(1.07); }
.event-card .e-body { padding: 28px; }
.event-card h3 { font-size: 1.42rem; margin-bottom: 7px; }
.event-card p { font-size: .88rem; color: rgba(233, 238, 246, .72); max-width: 34ch; }

.steps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; counter-reset: step; }
.step { border-top: 1px solid var(--line); padding-top: 26px; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-size: 2.1rem; font-style: italic;
  color: var(--brown); display: block; margin-bottom: 14px;
}
.step h3 { font-size: 1.2rem; margin-bottom: 9px; }
.step p { font-size: .92rem; color: var(--muted); }

/* form */
.form-card {
  background: var(--paper); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: clamp(26px, 4vw, 48px);
  box-shadow: var(--shadow-card);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .68rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-2); }
.field label .req { color: var(--brown-deep); }
.field input, .field select, .field textarea {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 15px 18px; font-size: .96rem;
  outline: none; width: 100%;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--brown); box-shadow: 0 0 0 4px rgba(139, 94, 60, .14); background: var(--paper);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' fill='none'%3E%3Cpath d='m1 1 4.5 4.5L10 1' stroke='%234B4032' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 18px center; }
.field .hint { font-size: .76rem; color: var(--muted); }
.field.error input, .field.error select, .field.error textarea { border-color: #B23B2E; box-shadow: 0 0 0 4px rgba(178, 59, 46, .1); }
.form-actions { margin-top: 30px; display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.form-note { font-size: .8rem; color: var(--muted); max-width: 46ch; }

/* enquiry ready state */
.enquiry-ready { display: none; text-align: center; padding: clamp(20px, 4vw, 40px) 10px; }
.enquiry-ready.show { display: block; animation: cardIn .6s var(--ease-out) both; }
.ready-ic {
  width: 74px; height: 74px; border-radius: 50%;
  background: rgba(31, 175, 84, .12); color: var(--green);
  display: grid; place-items: center; margin: 0 auto 24px;
}
.ready-ic svg { width: 30px; height: 30px; }
.enquiry-ready h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 12px; }
.enquiry-ready > p { color: var(--muted); max-width: 52ch; margin: 0 auto 26px; }
.message-preview {
  text-align: left; background: var(--cream); border: 1px dashed rgba(139, 94, 60, .5);
  border-radius: var(--radius-sm); padding: 20px 22px;
  font-size: .88rem; color: var(--ink-2); white-space: pre-wrap;
  max-width: 560px; margin: 0 auto 30px; line-height: 1.8;
}
.enquiry-ready .row { display: flex; flex-wrap: wrap; gap: 13px; justify-content: center; }

/* ==========================================================================
   INSIGHTS
   ========================================================================== */
.ins-featured {
  display: grid; grid-template-columns: 1.15fr .85fr; border-radius: var(--radius);
  overflow: hidden; background: var(--paper); border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-card); text-align: left;
  transition: transform .55s var(--ease-out), box-shadow .55s var(--ease-out);
}
.ins-featured:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.ins-featured .f-media { position: relative; min-height: 380px; overflow: hidden; }
.ins-featured .f-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.ins-featured:hover .f-media img { transform: scale(1.06); }
.ins-featured .f-body { padding: clamp(28px, 4vw, 52px); display: flex; flex-direction: column; justify-content: center; gap: 15px; }
.ins-featured h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }

.ins-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 26px; }
.ins-card {
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; text-align: left;
  transition: transform .55s var(--ease-out), box-shadow .55s var(--ease-out);
}
.ins-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.ins-card .c-media { aspect-ratio: 16 / 10.5; overflow: hidden; }
.ins-card .c-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.ins-card:hover .c-media img { transform: scale(1.07); }
.ins-card .c-body { padding: 26px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.ins-card h3 { font-size: 1.32rem; line-height: 1.22; }
.ins-card p { font-size: .9rem; color: var(--muted); flex: 1; }
.ins-meta { display: flex; align-items: center; gap: 10px; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.ins-meta .cat-tag { color: var(--brown-deep); font-weight: 700; }
.ins-read { margin-top: 8px; }

/* article reader modal uses .modal-root styles */
.article-panel {
  position: absolute; left: 50%; top: 50%;
  width: min(760px, calc(100vw - 32px));
  max-height: 88vh;
  transform: translate(-50%, -50%) translateY(34px) scale(.98);
  background: var(--paper); border-radius: 22px; overflow: hidden auto;
  opacity: 0; transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
  box-shadow: 0 60px 120px -30px rgba(0, 0, 0, .55);
}
.modal-root.show .article-panel { opacity: 1; transform: translate(-50%, -50%); }
.article-hero { position: relative; height: 320px; }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(23,16,10,.45), transparent 55%); }
.article-content { padding: clamp(26px, 5vw, 52px); }
.article-content .ins-meta { margin-bottom: 16px; }
.article-content h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 22px; }
.article-content p { color: var(--ink-2); margin-bottom: 1.2em; line-height: 1.85; }
.article-content .article-foot { margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--line-soft); display: flex; flex-wrap: wrap; gap: 13px; align-items: center; justify-content: space-between; }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.philosophy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.phil-card {
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: clamp(28px, 3.4vw, 44px);
  transition: transform .55s var(--ease-out), box-shadow .55s var(--ease-out);
}
.phil-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.phil-card .num { font-family: var(--font-display); font-style: italic; font-size: 1rem; color: var(--brown); display: block; margin-bottom: 40px; }
.phil-card h3 { font-size: 1.42rem; margin-bottom: 12px; }
.phil-card p { font-size: .93rem; color: var(--muted); }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: .94fr 1.06fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.info-card { display: flex; flex-direction: column; gap: 0; }
.info-row { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--line-soft); }
.info-row:first-child { padding-top: 0; }
.info-ic {
  width: 52px; height: 52px; flex: none; border-radius: 50%;
  border: 1px solid var(--line); display: grid; place-items: center; color: var(--brown-deep);
}
.info-ic svg { width: 20px; height: 20px; }
.info-row h3 { font-size: .68rem; font-family: var(--font-body); font-weight: 700; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.info-row p, .info-row a.val { font-size: 1.02rem; font-weight: 500; line-height: 1.6; }
.info-row a.val:hover { color: var(--brown-deep); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.social-row { display: flex; gap: 12px; }
.soc-btn {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--line-dark); color: rgba(233, 238, 246, .85);
  display: grid; place-items: center;
  transition: background .35s, border-color .35s, color .35s, transform .4s var(--ease-out);
}
.soc-btn:hover { background: var(--brown); border-color: var(--brown); color: #FFFFFF; transform: translateY(-3px); }
.soc-btn svg { width: 18px; height: 18px; }
.soc-btn.on-light { border-color: var(--line); color: var(--ink-2); }
.soc-btn.on-light:hover { color: #FFFFFF; border-color: var(--brown); }

.map-wrap {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line-soft); box-shadow: var(--shadow-card);
  aspect-ratio: 16 / 8; background: var(--cream-2);
}
.map-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: sepia(.1) saturate(.88) hue-rotate(-2deg); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: #010D1C; color: rgba(233, 238, 246, .78); position: relative; overflow: clip; }
.site-footer .glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(50% 60% at 50% 0%, rgba(47, 125, 225, .1), transparent 65%); }
.footer-top {
  position: relative;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: clamp(3.6rem, 7vw, 5.6rem) 0 clamp(2.6rem, 5vw, 3.6rem);
  border-bottom: 1px solid rgba(240, 243, 248, .08);
}
.footer-top img { height: 190px; width: auto; margin-bottom: 8px; }
.footer-tag { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--gold); }
.footer-tag + p { font-size: .84rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(233, 238, 246, .4); margin-top: 10px; }

.footer-grid {
  position: relative;
  display: grid; grid-template-columns: 1.3fr .8fr 1fr .9fr; gap: 40px;
  padding: clamp(2.8rem, 5vw, 4rem) 0;
}
.footer-grid h4 { font-family: var(--font-body); font-size: .66rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: rgba(233, 238, 246, .45); margin-bottom: 20px; }
.footer-grid nav { display: flex; flex-direction: column; gap: 11px; }
.footer-grid nav a { font-size: .95rem; transition: color .3s, padding .3s var(--ease-out); }
.footer-grid nav a:hover { color: var(--gold); padding-left: 6px; }
.footer-contact p { font-size: .93rem; line-height: 1.9; }
.footer-contact a:hover { color: var(--gold); }
.footer-col-brand p { font-size: .93rem; max-width: 34ch; line-height: 1.85; }
.footer-col-brand .social-row { margin-top: 24px; }
.footer-menu-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 8px; font-size: .76rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.footer-menu-link svg { width: 14px; height: 14px; transition: transform .35s var(--ease-out); }
.footer-menu-link:hover svg { transform: translateX(5px); }

.footer-bottom {
  position: relative;
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between;
  padding: 26px 0 30px; border-top: 1px solid rgba(240, 243, 248, .08);
  font-size: .78rem; color: rgba(233, 238, 246, .42);
}

/* ==========================================================================
   WHATSAPP FLOAT + TOAST
   ========================================================================== */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 1100;
  display: flex; align-items: center; gap: 12px;
  opacity: 0; transform: translateY(20px) scale(.9);
  animation: waIn .8s var(--ease-out) 1.4s forwards;
}
@keyframes waIn { to { opacity: 1; transform: none; } }
.wa-float .bubble {
  background: var(--dark-2); color: rgba(233, 238, 246, .9);
  border: 1px solid rgba(240, 243, 248, .12);
  font-size: .78rem; font-weight: 600; letter-spacing: .04em;
  padding: 11px 18px; border-radius: 999px;
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, .5);
  opacity: 0; transform: translateX(8px);
  transition: opacity .4s var(--ease-out), transform .4s var(--ease-out);
  pointer-events: none; white-space: nowrap;
}
.wa-float:hover .bubble, .wa-float:focus-visible .bubble { opacity: 1; transform: none; }
.wa-float .wa-btn {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 16px 38px -10px rgba(31, 175, 84, .6);
  transition: transform .4s var(--ease-out), box-shadow .4s;
  position: relative;
}
.wa-float .wa-btn::after {
  content: ''; position: absolute; inset: -5px; border-radius: 50%;
  border: 1.5px solid rgba(31, 175, 84, .55);
  animation: waPulse 2.6s var(--ease-soft) infinite;
}
@keyframes waPulse { 0% { transform: scale(.86); opacity: 0; } 35% { opacity: 1; } 100% { transform: scale(1.22); opacity: 0; } }
.wa-float .wa-btn:hover { transform: scale(1.07); }
.wa-float .wa-btn svg { width: 28px; height: 28px; }

.toast {
  position: fixed; left: 50%; bottom: 30px; z-index: 1300;
  transform: translate(-50%, 80px);
  background: var(--dark-2); color: #EDF1F7;
  border: 1px solid rgba(203, 165, 116, .35);
  font-size: .84rem; padding: 15px 26px; border-radius: 999px;
  box-shadow: 0 24px 50px -14px rgba(0, 0, 0, .55);
  opacity: 0; transition: transform .5s var(--ease-out), opacity .5s;
  pointer-events: none; max-width: calc(100vw - 40px); text-align: center;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band { position: relative; text-align: center; overflow: clip; }
.cta-band .eyebrow { margin-bottom: 20px; }
.cta-band h2 { font-size: clamp(2rem, 5vw, 3.6rem); margin-bottom: 18px; }
.cta-band p { max-width: 52ch; margin: 0 auto 34px; }
.cta-band .row { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1120px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .ins-grid { grid-template-columns: repeat(2, 1fr); }
  .event-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-badge { display: none; }
  .hero-dots { bottom: 2rem; }
}
@media (max-width: 980px) {
  .main-nav, .header-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 3rem; }
  .split.reverse .split-media { order: 0; }
  .split-media { align-self: auto; min-height: 0; }
  .split-media .frame.main { position: relative; inset: auto; aspect-ratio: 4 / 3.4; }
  .split-media .frame.small { right: 4%; bottom: -8%; }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-card, .exp-card:nth-child(4), .exp-card:nth-child(5) { grid-column: span 1; }
  .exp-card:last-child { grid-column: span 2; }
  .visit-band .band-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .visit-band .band-inner .btn { justify-self: start; }
  .philosophy-grid { grid-template-columns: 1fr 1fr; }
  .phil-card:last-child { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .ins-featured { grid-template-columns: 1fr; }
  .ins-featured .f-media { min-height: 0; aspect-ratio: 16 / 9; }
  .modal-panel { grid-template-columns: 1fr; grid-template-rows: minmax(220px, 300px) 1fr; max-height: 90vh; }
  .modal-media { min-height: 0; }
}
@media (max-width: 760px) {
  body { font-size: 15.5px; }
  .menu-grid { grid-template-columns: 1fr; }
  .ins-grid, .event-grid, .philosophy-grid { grid-template-columns: 1fr; }
  .phil-card:last-child { grid-column: auto; }
  .exp-grid { grid-template-columns: 1fr; }
  .exp-card:last-child { grid-column: auto; }
  .form-grid { grid-template-columns: 1fr; }
  .sig-head { flex-direction: column; align-items: flex-start; }
  .sig-nav { display: none; }
  .sig-scroll { grid-auto-columns: min(78vw, 320px); }
  .visit-band .band-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .scroll-hint { display: none; }
  .drinks-cols { columns: 1; }
  .related-row { grid-template-columns: 1fr 1fr 1fr; gap: 9px; }
  .related-item .r-name { font-size: .72rem; }
  .brand img { height: 48px; }
  .brand-name { display: none; }
  .map-wrap { aspect-ratio: 16 / 12; }
  .search-row { flex-wrap: wrap; }
  .menu-count { width: 100%; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-top img { height: 150px; }
  .modal-actions .btn { width: 100%; justify-content: center; }
}

/* ==========================================================================
   DIRECT ORDERING — bag button · order drawer · payment · tracking timeline
   ========================================================================== */

/* ---------- header bag button ---------- */
.bag-count[hidden], .recent-row[hidden], .o-field[hidden],
.order-panel[hidden], .order-overlay[hidden] { display: none; }

.bag-btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(240, 243, 248, .3);
  color: #EDF1F7;
  transition: background .3s, border-color .3s, transform .35s var(--ease-out);
}
.bag-btn:hover { background: rgba(203, 165, 116, .18); border-color: rgba(203, 165, 116, .55); transform: translateY(-2px); }
.bag-btn svg { width: 18px; height: 18px; }
.bag-btn.plop { animation: bagPlop .5s var(--ease-out); }
@keyframes bagPlop { 30% { transform: scale(1.14); } 100% { transform: scale(1); } }
.bag-count {
  position: absolute; top: -5px; right: -6px;
  min-width: 19px; height: 19px; padding: 0 5px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold); color: var(--dark);
  border-radius: 999px; font-size: .62rem; font-weight: 800; letter-spacing: .02em;
  border: 2px solid rgba(3, 17, 38, .9);
}

/* ---------- overlay + panel ---------- */
.order-overlay {
  position: fixed; inset: 0; z-index: 1150;
  background: rgba(2, 27, 58, .5);
  -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px);
  opacity: 0; transition: opacity .4s var(--ease-soft);
}
.order-overlay.on { opacity: 1; }
.order-panel {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 1160;
  width: min(460px, 100%);
  background: var(--cream);
  border-left: 1px solid var(--line-soft);
  box-shadow: -30px 0 80px -30px rgba(3, 17, 38, .45);
  display: flex; flex-direction: column;
  transform: translateX(102%);
  transition: transform .55s var(--ease-out);
}
.order-panel.on { transform: none; }

.ord-head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  padding: 24px 26px 18px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--paper);
}
.ord-head h3 { font-size: 1.5rem; font-weight: 480; }
.ord-sub { font-size: .8rem; color: var(--muted); margin-top: 3px; }
.ord-close {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-2); transition: border-color .3s, transform .35s var(--ease-out), background .3s;
}
.ord-close:hover { border-color: var(--ink); transform: rotate(90deg); background: var(--cream-2); }
.ord-close svg { width: 15px; height: 15px; }
.ord-body { flex: 1; overflow-y: auto; padding: 22px 26px 30px; scrollbar-width: thin; }
.ord-foot { border-top: 1px solid var(--line-soft); background: var(--paper); padding: 18px 26px 22px; }
.ord-place { width: 100%; }
.ord-safe { font-size: .74rem; color: var(--muted); text-align: center; margin-top: 12px; line-height: 1.6; }

/* ---------- empty state ---------- */
.ord-empty { text-align: center; padding: 44px 10px; }
.ord-empty-ic {
  width: 74px; height: 74px; margin: 0 auto 20px; border-radius: 50%;
  border: 1px dashed rgba(139, 94, 60, .5);
  display: flex; align-items: center; justify-content: center; color: var(--brown);
}
.ord-empty-ic svg { width: 28px; height: 28px; }
.ord-empty h4 { font-size: 1.3rem; margin-bottom: 8px; }
.ord-empty p { font-size: .9rem; color: var(--muted); margin-bottom: 22px; }

/* ---------- line items ---------- */
.ord-lines { display: flex; flex-direction: column; }
.ord-row {
  display: grid; grid-template-columns: 58px 1fr auto; gap: 14px; align-items: center;
  padding: 13px 0; border-bottom: 1px solid var(--line-soft);
}
.ord-thumb { width: 58px; height: 58px; border-radius: 12px; overflow: hidden; background: var(--cream-2); }
.ord-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ord-thumb.ph { display: flex; align-items: center; justify-content: center; }
.ord-thumb .ph-mark { width: 26px; height: 26px; object-fit: contain; opacity: .5; }
.ord-name { font-size: .92rem; font-weight: 600; line-height: 1.35; }
.ord-unit { font-size: .78rem; color: var(--muted); margin-top: 2px; }
.ord-right { display: flex; align-items: center; gap: 10px; }
.stepper {
  display: inline-flex; align-items: center; gap: 2px;
  border: 1px solid var(--line); border-radius: 999px; padding: 3px;
  background: var(--paper);
}
.stepper button {
  width: 26px; height: 26px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-2); transition: background .25s, color .25s;
}
.stepper button:hover { background: var(--dark); color: var(--cream); }
.stepper button svg { width: 12px; height: 12px; }
.stepper span { min-width: 22px; text-align: center; font-size: .84rem; font-weight: 700; }
.ord-remove { width: 32px; height: 32px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--muted); transition: color .25s, background .25s; }
.ord-remove:hover { color: #B3402A; background: rgba(179, 64, 42, .08); }
.ord-remove svg { width: 15px; height: 15px; }

/* ---------- segmented fulfilment ---------- */
.ord-section-label {
  font-size: .68rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-2); margin: 24px 0 10px;
}
.seg { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; background: var(--cream-2); border-radius: 999px; padding: 5px; }
.seg-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 11px 10px; border-radius: 999px;
  font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); transition: background .3s, color .3s, box-shadow .3s;
}
.seg-btn svg { width: 16px; height: 16px; }
.seg-btn.on { background: var(--dark); color: var(--cream-on-dark); box-shadow: 0 8px 20px -8px rgba(3, 17, 38, .5); }

/* ---------- form fields ---------- */
.ord-form { display: grid; gap: 14px; margin-top: 16px; }
.o-field { display: grid; gap: 7px; margin-top: 14px; }
.ord-form .o-field { margin-top: 0; }
.o-field label { font-size: .8rem; font-weight: 600; color: var(--ink-2); }
.o-field label .opt { font-weight: 400; color: var(--muted); }
.o-field input, .o-field textarea {
  width: 100%; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 13px 15px; font-size: .92rem; color: var(--ink);
  transition: border-color .3s, box-shadow .3s;
}
.o-field input::placeholder, .o-field textarea::placeholder { color: #9AA3B2; }
.o-field input:focus, .o-field textarea:focus { outline: none; border-color: var(--brown); box-shadow: 0 0 0 3px rgba(139, 94, 60, .16); }
.o-field textarea { resize: vertical; min-height: 54px; }

/* ---------- payment options ---------- */
.pay-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.pay-opt {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 15px 8px 13px;
  transition: border-color .3s, box-shadow .3s, transform .3s var(--ease-out);
}
.pay-opt:hover { transform: translateY(-2px); }
.pay-opt.on { border-color: var(--brown); box-shadow: 0 0 0 1px var(--brown), 0 10px 24px -12px rgba(139, 94, 60, .4); }
.pay-ic { color: var(--brown); }
.pay-ic svg { width: 22px; height: 22px; }
.pay-label { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.pay-tick {
  position: absolute; top: 7px; right: 7px;
  width: 17px; height: 17px; border-radius: 50%;
  background: var(--brown); color: #fff;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(.5); transition: opacity .25s, transform .25s var(--ease-out);
}
.pay-opt.on .pay-tick { opacity: 1; transform: scale(1); }
.pay-tick svg { width: 9px; height: 9px; }
.pay-note { font-size: .78rem; color: var(--muted); line-height: 1.7; margin-top: 10px; }

/* ---------- totals ---------- */
.ord-totals { margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--line-soft); }
.t-row { display: flex; align-items: baseline; justify-content: space-between; font-size: 1rem; }
.t-row strong { font-size: 1.25rem; font-weight: 800; letter-spacing: -.01em; }
.t-note { font-size: .76rem; color: var(--muted); margin-top: 6px; line-height: 1.65; }

/* ---------- success view ---------- */
.ord-success { text-align: center; }
.ok-ring {
  width: 66px; height: 66px; margin: 10px auto 18px; border-radius: 50%;
  border: 1px solid rgba(203, 165, 116, .7); color: var(--brown);
  display: flex; align-items: center; justify-content: center;
  animation: okPop .6s var(--ease-out) .1s both;
}
@keyframes okPop { from { opacity: 0; transform: scale(.6); } }
.ok-ring svg { width: 30px; height: 30px; }
.code-label { font-size: .68rem; font-weight: 700; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); }
.order-code {
  font-family: var(--font-display); font-size: 2.3rem; font-weight: 480; letter-spacing: .06em;
  margin: 8px 0 16px; color: var(--dark);
}
.ok-copy { font-size: .9rem; color: var(--ink-2); line-height: 1.75; max-width: 34ch; margin: 0 auto 20px; }
.ok-sum { text-align: left; background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius-sm); padding: 14px 18px; margin-bottom: 22px; }
.ok-line { display: flex; justify-content: space-between; gap: 14px; font-size: .86rem; padding: 5px 0; }
.ok-line.total { border-top: 1px dashed var(--line); margin-top: 6px; padding-top: 10px; font-weight: 800; }
.ok-line.dim { color: var(--muted); font-size: .78rem; }
.ok-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.ok-note { font-size: .76rem; color: var(--muted); line-height: 1.7; margin-top: 18px; }

/* ==========================================================================
   TRACK YOUR ORDER (order.html)
   ========================================================================== */
.track-wrap { max-width: 780px; margin: 0 auto; }
.track-card {
  background: var(--paper); border: 1px solid var(--line-soft);
  border-radius: var(--radius); box-shadow: var(--shadow-card);
  padding: clamp(1.4rem, 3.4vw, 2.4rem);
}
.track-card > label { display: block; font-size: .8rem; font-weight: 600; color: var(--ink-2); margin-bottom: 10px; }
.track-form { display: flex; gap: 12px; }
.track-form input {
  flex: 1; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 15px 18px; font-size: 1rem; letter-spacing: .08em; font-weight: 600;
  text-transform: uppercase; transition: border-color .3s, box-shadow .3s;
}
.track-form input::placeholder { text-transform: none; letter-spacing: 0; font-weight: 400; color: #9AA3B2; }
.track-form input:focus { outline: none; border-color: var(--brown); box-shadow: 0 0 0 3px rgba(139, 94, 60, .16); }
.recent-row { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-top: 16px; }
.recent-label { font-size: .74rem; color: var(--muted); letter-spacing: .06em; }
.recent-chip {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); border-radius: 999px; background: var(--cream);
  padding: 6px 7px 6px 13px; font-size: .78rem; font-weight: 700; letter-spacing: .05em;
  transition: border-color .3s, transform .3s var(--ease-out);
}
.recent-chip:hover { border-color: var(--brown); transform: translateY(-1px); }

/* ---------- timeline card ---------- */
.tl-card {
  background: var(--paper); border: 1px solid var(--line-soft);
  border-radius: var(--radius); box-shadow: var(--shadow-card);
  padding: clamp(1.4rem, 3.4vw, 2.4rem);
  margin-top: 22px;
}
.tl-missing { text-align: center; }
.tl-missing h3 { font-size: 1.45rem; margin-bottom: 10px; }
.tl-missing p { font-size: .9rem; color: var(--muted); max-width: 46ch; margin: 0 auto 20px; line-height: 1.8; }
.tl-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 34px; }
.tl-code { font-family: var(--font-display); font-size: 1.9rem; letter-spacing: .05em; color: var(--dark); }
.tl-placed { font-size: .8rem; color: var(--muted); margin-top: 3px; }
.status-pill, .mini-pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .68rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 999px; white-space: nowrap;
}
.mini-pill { padding: 4px 10px; font-size: .6rem; }
.st-received { background: rgba(10, 42, 80, .1); color: var(--dark-3); }
.st-preparing { background: rgba(203, 165, 116, .22); color: var(--brown-deep); }
.st-dispatched { background: rgba(139, 94, 60, .14); color: var(--brown-deep); }
.st-completed { background: rgba(31, 175, 84, .13); color: #128A41; }

.tl-track { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); padding: 0 4px; }
.tl-track::before {
  content: ''; position: absolute; left: 8%; right: 8%; top: 23px; height: 2px;
  background: var(--cream-2); border-radius: 2px;
}
.tl-fill {
  position: absolute; left: 8%; top: 23px; height: 2px; width: calc((100% - 16%) * var(--p, 0%) / 100);
  background: linear-gradient(90deg, var(--brown), var(--gold));
  border-radius: 2px; transition: width 1.2s var(--ease-out);
}
.tl-stage { position: relative; display: flex; flex-direction: column; align-items: center; gap: 9px; text-align: center; }
.tl-ic {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--paper); border: 2px solid var(--cream-2); color: #A9B2C0;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .4s, background .4s, color .4s;
}
.tl-ic svg { width: 19px; height: 19px; }
.tl-label { font-size: .76rem; font-weight: 700; color: var(--ink-2); }
.tl-time { font-size: .7rem; color: var(--muted); }
.tl-stage.done .tl-ic { background: var(--brown); border-color: var(--brown); color: #fff; }
.tl-stage.done .tl-label { color: var(--ink); }
.tl-stage.current .tl-ic { border-color: var(--gold); color: var(--brown-deep); background: rgba(203, 165, 116, .14); }
.tl-stage.current .tl-ic::after {
  content: ''; position: absolute; inset: -8px; border-radius: 50%;
  border: 1px solid rgba(203, 165, 116, .8);
  animation: tlPulse 1.9s var(--ease-out) infinite;
}
.tl-stage.current .tl-label { color: var(--brown-deep); }
@keyframes tlPulse { from { opacity: .9; transform: scale(.72); } to { opacity: 0; transform: scale(1.18); } }
.tl-eta { font-size: .95rem; color: var(--ink-2); text-align: center; margin: 26px auto 4px; max-width: 46ch; line-height: 1.7; }
.tl-summary { margin: 22px auto 0; max-width: 520px; background: var(--cream); border-radius: var(--radius-sm); padding: 14px 18px; }
.tl-foot { margin-top: 22px; display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.tl-note { font-size: .76rem; color: var(--muted); max-width: 52ch; line-height: 1.75; }

/* ---------- how-it-works steps (order page) ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.6vw, 2rem); }
.step-card {
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.1rem); box-shadow: var(--shadow-card);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.step-num {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 300; color: var(--gold);
  line-height: 1; margin-bottom: 14px;
}
.step-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.step-card p { font-size: .9rem; color: var(--muted); line-height: 1.75; }

/* ---------- footer credit ---------- */
.footer-bottom .dev { color: rgba(233, 238, 246, .42); }
.footer-bottom .dev a {
  color: rgba(233, 238, 246, .62); font-weight: 600;
  text-decoration: underline; text-decoration-color: rgba(203, 165, 116, .35); text-underline-offset: 3px;
  transition: color .3s, text-decoration-color .3s;
}
.footer-bottom .dev a:hover { color: var(--gold); text-decoration-color: var(--gold); }

/* ---------- nav breathing room with the new Order link ---------- */
@media (min-width: 981px) and (max-width: 1210px) {
  .main-nav { gap: 15px; }
  .main-nav a { font-size: .64rem; letter-spacing: .16em; }
  .header-cta { gap: 10px; }
}

/* ---------- ordering responsive ---------- */
@media (max-width: 640px) {
  .pay-grid { grid-template-columns: 1fr 1fr; }
  .pay-opt:last-child { grid-column: 1 / -1; }
  .track-form { flex-direction: column; }
  .track-form .btn { width: 100%; }
  .steps-grid { grid-template-columns: 1fr; }
  .tl-track { grid-template-columns: 1fr; gap: 20px; padding-left: 6px; }
  .tl-track::before { left: 23px; right: auto; top: 8%; bottom: 8%; width: 2px; height: auto; }
  .tl-fill { left: 23px; top: 8%; width: 2px !important; height: calc((100% - 16%) * var(--p, 0%) / 100); }
  .tl-stage { flex-direction: row; align-items: center; gap: 16px; text-align: left; }
  .tl-stage .tl-label { min-width: 110px; }
  .tl-stage .tl-time { margin-left: auto; }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .reveal-img { opacity: 1; transform: none; clip-path: none; }
  .hero-title .line span { transform: none; }
  .hero-eyebrow, .hero-sub, .hero-copy, .hero-actions, .scroll-hint, .hero-badge { opacity: 1; }
  .order-panel { transform: none; }
  .order-overlay { opacity: 1; }
  .tl-stage.current .tl-ic::after { animation: none; opacity: 0; }
}

/* ==========================================================================
   HERO ART — floating thematic emblems inside inner page heroes
   Absolutely positioned: adds no height, padding or layout shift.
   ========================================================================== */
.hero-art {
  position: absolute;
  top: 50%;
  right: clamp(1.5rem, 5.6vw, 5.5rem);
  width: clamp(215px, 24vw, 350px);
  transform: translateY(-46%);
  color: rgba(203, 165, 116, .9);
  pointer-events: none;
  z-index: 0;
}
.hero-art::before {
  content: ''; position: absolute; inset: -12%;
  background: radial-gradient(closest-side, rgba(203, 165, 116, .13), transparent 72%);
}
.hero-art svg { position: relative; width: 100%; height: auto; display: block; overflow: visible; }
.hero-art .ha-float { animation: heroBob 7.6s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes heroBob {
  0%, 100% { transform: translateY(6px) rotate(-1.1deg); }
  50%      { transform: translateY(-8px) rotate(1.1deg); }
}
/* secondary-tone strokes */
.hero-art .dim { stroke: rgba(237, 241, 247, .42); }
/* steam (About cup) */
.hero-art .steam { opacity: 0; transform-box: fill-box; transform-origin: center bottom; animation: steamDrift 3.6s ease-in-out infinite; }
.hero-art .steam.s2 { animation-delay: 1.2s; }
.hero-art .steam.s3 { animation-delay: 2.4s; }
@keyframes steamDrift {
  0%   { transform: translateY(7px) scaleY(.85); opacity: 0; }
  32%  { opacity: .75; }
  100% { transform: translateY(-9px) scaleY(1.06); opacity: 0; }
}
/* bubbles (Events coupe) */
.hero-art .bub { opacity: 0; transform-box: fill-box; transform-origin: center; animation: bubbleUp 3.1s ease-in infinite; }
.hero-art .bub.b2 { animation-delay: .75s; }
.hero-art .bub.b3 { animation-delay: 1.5s; }
.hero-art .bub.b4 { animation-delay: 2.25s; }
@keyframes bubbleUp {
  0%   { transform: translateY(9px); opacity: 0; }
  28%  { opacity: .9; }
  100% { transform: translateY(-13px); opacity: 0; }
}
/* sonar rings (Contact pin) */
.hero-art .ring { opacity: 0; transform-box: fill-box; transform-origin: center; animation: ringOut 3s cubic-bezier(.2, .6, .3, 1) infinite; }
.hero-art .ring.r2 { animation-delay: 1.5s; }
@keyframes ringOut {
  0%   { transform: scale(.55); opacity: .55; }
  100% { transform: scale(1.4); opacity: 0; }
}
/* marching route dashes (Order tracking) */
.hero-art .route { stroke-dasharray: 5 7; animation: dashMarch 3.4s linear infinite; }
@keyframes dashMarch { to { stroke-dashoffset: -48; } }
/* scrolling feed (Insights phone) — hold, glide one card, hold, glide; pattern loops seamlessly */
.hero-art .feed { animation: feedScroll 9.5s cubic-bezier(.68, .04, .24, .96) infinite; }
@keyframes feedScroll {
  0%, 30%   { transform: translateY(0); }
  55%, 85%  { transform: translateY(-42px); }
  100%      { transform: translateY(-84px); }
}
/* pulsing waypoint dots */
.hero-art .puls { transform-box: fill-box; transform-origin: center; animation: dotPulse 2.4s ease-in-out infinite; }
@keyframes dotPulse { 0%, 100% { transform: scale(.8); opacity: .65; } 50% { transform: scale(1.28); opacity: 1; } }
/* twinkling accents (all pages) */
.hero-art .tw { opacity: .22; animation: twinkle 4s ease-in-out infinite; }
.hero-art .tw.t2 { animation-delay: 1.4s; }
.hero-art .tw.t3 { animation-delay: 2.7s; }
@keyframes twinkle { 0%, 100% { opacity: .16; } 50% { opacity: .85; } }

@media (max-width: 980px) {
  .hero-art { width: clamp(150px, 28vw, 240px); right: clamp(.5rem, 4vw, 2rem); opacity: .5; }
}
@media (max-width: 640px) {
  .hero-art { top: auto; bottom: -7%; right: -8vw; transform: none; width: 46vw; opacity: .24; }
}

/* ==========================================================================
   GUEST VOICES — brown band + local phone video feed (insights)
   ========================================================================== */
.voices { position: relative; background: linear-gradient(180deg, #8B5E3C 0%, #7A5233 48%, #6E4A2F 100%); overflow: clip; }
.page-hero + .voices { padding-top: clamp(2.2rem, 4.5vw, 3.6rem); }
.voices .glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(55% 70% at 86% 0%, rgba(255, 214, 170, .18), transparent 60%),
              radial-gradient(45% 60% at 0% 100%, rgba(59, 33, 16, .4), transparent 65%);
}
.voices .eyebrow { color: #F6E6CE; }
.voices .eyebrow::before { background: #F6E6CE; }

.vv-grid { display: grid; grid-template-columns: 1fr auto; gap: clamp(2.5rem, 6vw, 6.5rem); align-items: center; }
.vv-copy { max-width: 560px; }
.vv-copy h2 { margin-bottom: 18px; }
.vv-copy > p { color: rgba(255, 244, 230, .82); }
.voices .tt-lede-link {
  color: #FFF3E0; font-weight: 600;
  text-decoration: underline; text-decoration-color: rgba(255, 243, 224, .5); text-underline-offset: 3px;
  transition: color .3s, text-decoration-color .3s;
}
.voices .tt-lede-link:hover { color: #fff; text-decoration-color: #fff; }
.vv-hint { display: flex; gap: 12px; align-items: flex-start; margin-top: 24px; font-size: .87rem; line-height: 1.75; color: rgba(255, 240, 220, .66); }
.vv-hint svg { flex: none; width: 17px; height: 17px; margin-top: 3px; color: #FFE9CB; }
.vv-copy .vv-follow { margin-top: 28px; background: #FFF3E2; color: var(--brown-deep); box-shadow: 0 14px 32px -12px rgba(40, 22, 10, .55); }
.vv-copy .vv-follow:hover { background: #FFFFFF; transform: translateY(-2px); }
.vv-copy .vv-follow svg { width: 14px; height: 14px; }

/* ---------- the phone ---------- */
.vv-phone-wrap { justify-self: center; }
.vv-phone {
  position: relative;
  width: clamp(272px, 23.5vw, 330px);
  border-radius: 50px;
  padding: 11px;
  background: linear-gradient(155deg, #133560 0%, #04101F 58%, #01060E 100%);
  box-shadow:
    inset 0 0 0 1.5px rgba(255, 214, 170, .18),
    inset 0 0 0 4px rgba(1, 8, 18, .9),
    0 50px 100px -34px rgba(38, 20, 8, .75);
  animation: phoneBob 8.5s ease-in-out infinite;
}
@keyframes phoneBob { 0%, 100% { transform: translateY(5px) rotate(-.5deg); } 50% { transform: translateY(-7px) rotate(.5deg); } }
.vv-side { position: absolute; background: #0C2A4C; border-radius: 3px; }
.vv-vol1 { left: -2.5px; top: 118px; width: 3px; height: 34px; }
.vv-vol2 { left: -2.5px; top: 162px; width: 3px; height: 34px; }
.vv-pwr { right: -2.5px; top: 148px; width: 3px; height: 54px; }
.vv-screen {
  position: relative; border-radius: 40px; overflow: hidden;
  background: #000; aspect-ratio: 9 / 19.3;
}
.vv-island {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 84px; height: 23px; border-radius: 999px; background: #010509; z-index: 6;
  box-shadow: inset 0 0 4px rgba(255, 255, 255, .07);
}
.vv-island::after {
  content: ''; position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #1D3A5F, #050B14 70%);
}
.vv-homebar {
  position: absolute; bottom: 7px; left: 50%; transform: translateX(-50%);
  width: 36%; height: 4.5px; border-radius: 999px;
  background: rgba(255, 244, 230, .85); z-index: 6; pointer-events: none;
}

/* ---------- the feed ---------- */
.vv-feed {
  position: absolute; inset: 0;
  overflow-y: auto; scroll-snap-type: y mandatory;
  scrollbar-width: none; -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  border-radius: 40px; outline: none;
}
.vv-feed::-webkit-scrollbar { display: none; }
.vv-clip { position: relative; height: 100%; scroll-snap-align: start; scroll-snap-stop: always; background: #0A0A0A; }
.vv-clip video { width: 100%; height: 100%; object-fit: cover; display: block; }
.vv-clip::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 40%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .66));
  pointer-events: none;
}
.vv-meta { position: absolute; left: 15px; right: 70px; bottom: 30px; z-index: 3; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.vv-handle { color: #fff; font-size: .84rem; font-weight: 700; text-shadow: 0 1px 8px rgba(0, 0, 0, .55); transition: color .3s; }
.vv-handle:hover { color: #FFE9CB; }
.vv-tag {
  font-size: .58rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255, 244, 230, .8); border: 1px solid rgba(255, 244, 230, .35);
  padding: 4px 9px; border-radius: 999px; white-space: nowrap;
}
.vv-tk, .vv-sound {
  position: absolute; right: 14px; z-index: 4;
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(0, 0, 0, .45); border: 1px solid rgba(255, 255, 255, .32); color: #fff;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transition: background .3s, transform .35s var(--ease-out);
  cursor: pointer;
}
.vv-tk:hover, .vv-sound:hover { background: rgba(0, 0, 0, .72); transform: scale(1.07); }
.vv-tk svg, .vv-sound svg { width: 17px; height: 17px; }
.vv-tk { bottom: 104px; }
.vv-sound { bottom: 158px; }
.vv-paused {
  position: absolute; inset: 0; margin: auto; width: 68px; height: 68px; border-radius: 50%;
  background: rgba(0, 0, 0, .45); border: 1px solid rgba(255, 255, 255, .5);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  display: grid; place-items: center; color: #fff;
  opacity: 0; transform: scale(.75); transition: opacity .35s, transform .35s var(--ease-out);
  pointer-events: none; z-index: 3;
}
.vv-paused svg { width: 26px; height: 26px; margin-left: 3px; }
.vv-clip.paused .vv-paused { opacity: 1; transform: scale(1); }
.vv-dots {
  position: absolute; right: 9px; top: 50%; transform: translateY(-50%); z-index: 5;
  display: flex; flex-direction: column; gap: 7px; pointer-events: none;
}
.vv-dots span { width: 5px; height: 5px; border-radius: 999px; background: rgba(255, 255, 255, .35); transition: height .3s var(--ease-out), background .3s; pointer-events: auto; cursor: pointer; }
.vv-dots span:hover { background: rgba(255, 244, 230, .8); }
.vv-dots span.on { background: #FFE9CB; height: 16px; }
.vv-cue {
  position: absolute; left: 50%; bottom: 36px; transform: translateX(-50%); z-index: 5;
  color: rgba(255, 244, 230, .92);
  animation: cueBob 1.7s ease-in-out infinite;
  transition: opacity .5s; pointer-events: none;
}
.vv-cue svg { width: 20px; height: 20px; }
.vv-cue.off { opacity: 0; }
@keyframes cueBob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 7px); } }

@media (max-width: 1020px) {
  .vv-grid { grid-template-columns: 1fr; gap: clamp(2.2rem, 6vw, 3.4rem); }
  .vv-copy { max-width: 640px; }
}
@media (max-width: 640px) {
  .vv-phone { width: min(310px, 82vw); border-radius: 44px; }
  .vv-screen { border-radius: 35px; }
  .vv-feed { border-radius: 35px; }
}
@media (prefers-reduced-motion: reduce) {
  .vv-phone { animation: none; }
  .vv-cue { animation: none; }
}
