/* ===========================================================================
   Bokma Coffee Company - Cafen-style clone, rebuilt in Bokma's palette.
   Native scroll only (no smooth-scroll library). All motion guarded behind
   prefers-reduced-motion. Tokens: cream / butter / maroon / gold / ink.
   =========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --cream: #fefcf3;
  --cream-2: #f8f1e2;
  --butter: #f3ecca;
  --maroon: #5a1815;
  --maroon-2: #3f110f;
  --gold: #f3d572;
  --gold-deep: #d9b347;
  --ink: #4a2c22;
  --muted: #8a6f5e;
  --line: rgba(74, 44, 34, 0.14);
  --shadow-sm: 0 2px 10px rgba(58, 24, 18, 0.06);
  --shadow-md: 0 18px 50px rgba(58, 24, 18, 0.12);
  --shadow-lg: 0 30px 80px rgba(58, 24, 18, 0.18);
  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 34px;
  --r-pill: 999px;
  --ff-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --ff-sans: 'Barlow', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --ff-display: 'Fraunces', Georgia, serif;
  --ff-label: 'Barlow Condensed', 'Barlow', system-ui, sans-serif;
  --nav-h: 84px;
  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--ff-sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, button, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--ff-serif); font-weight: 700; line-height: 1.08; letter-spacing: -0.01em; }

.container { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--maroon); color: var(--cream); padding: 10px 18px;
  border-radius: var(--r-pill); transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 16px; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: var(--r-pill); font-weight: 600;
  font-family: var(--ff-label);
  font-size: 0.96rem; letter-spacing: 0.01em; line-height: 1;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
              color 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}
.btn--lg { padding: 15px 30px; font-size: 1.02rem; }
.btn--maroon { background: var(--maroon); color: var(--cream); }
.btn--maroon:hover { background: var(--maroon-2); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--gold { background: var(--gold); color: var(--maroon-2); }
.btn--gold:hover { background: var(--gold-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn--outline:hover { border-color: var(--maroon); color: var(--maroon); transform: translateY(-2px); }
.btn--ghost {
  background: transparent; color: var(--cream);
  border: 1.5px solid rgba(254, 252, 243, 0.60);
}
.btn--ghost:hover { background: rgba(254, 252, 243, 0.10); border-color: var(--cream); transform: translateY(-2px); }

/* Section title helpers */
.section-title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(1.7rem, 3.5vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: -0.005em;
}
.section-title--maroon { color: var(--maroon); }
.section-title--center { text-align: center; margin-inline: auto; }
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.74rem;
  font-weight: 600; color: var(--gold-deep); font-family: var(--ff-label);
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal--left { transform: translateX(-34px); }
.reveal--right { transform: translateX(34px); }
.reveal.is-in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ===========================================================================
   NAV
   =========================================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease),
              box-shadow 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
}
.nav.is-stuck {
  background: rgba(254, 252, 243, 0.86);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--line);
}
.nav.is-hidden { transform: translateY(-100%); }
.nav__inner { display: flex; align-items: center; gap: 24px; width: min(100% - 40px, var(--maxw)); }

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__mark {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  box-shadow: 0 0 0 1.5px rgba(90, 24, 21, 0.22);
}
.brand__word {
  font-family: var(--ff-serif); font-weight: 800; font-size: 1.5rem;
  color: var(--maroon); letter-spacing: -0.01em;
}
/* Header wordmark only: bold signage typography matching the storefront logo. */
.nav .brand__word {
  font-family: var(--ff-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  font-size: 1.34rem;
  line-height: 1;
}

.nav__links { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.nav__links a {
  padding: 8px 14px; border-radius: var(--r-pill); font-weight: 600;
  font-size: 0.95rem; color: var(--ink); position: relative;
  font-family: var(--ff-label);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.nav__links a:hover { background: rgba(90, 24, 21, 0.07); color: var(--maroon); }
.nav__links a.is-active { color: var(--maroon); }
/* Transparent nav over hero video: swap to cream so links are readable */
.nav:not(.is-stuck) .nav__links a { color: rgba(254, 252, 243, 0.90); }
.nav:not(.is-stuck) .nav__links a:hover { background: rgba(254, 252, 243, 0.14); color: var(--cream); }
.nav:not(.is-stuck) .brand__word { color: var(--cream); }
.nav__cta { margin-left: 4px; }

.nav__toggle {
  display: none; width: 46px; height: 46px; margin-left: auto;
  border-radius: 12px; border: 1px solid var(--line);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  background: rgba(254, 252, 243, 0.7);
}
.nav__toggle span { width: 20px; height: 2px; background: var(--maroon); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed; inset: 0; z-index: 120; background: var(--maroon);
  color: var(--cream); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px;
  opacity: 0; transform: translateY(-12px); pointer-events: none;
  transition: opacity 0.34s var(--ease), transform 0.34s var(--ease);
}
.mobile-nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
.mobile-nav nav { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.mobile-nav a {
  font-family: var(--ff-serif); font-size: 1.9rem; color: var(--cream);
  padding: 10px 16px; font-weight: 600;
}
.mobile-nav a.btn { font-family: var(--ff-sans); font-size: 1rem; margin-top: 18px; background: var(--gold); color: var(--maroon-2); }
.mobile-nav__close {
  position: absolute; top: 22px; right: 26px; font-size: 2.4rem;
  line-height: 1; color: var(--cream); width: 44px; height: 44px;
}

/* ===========================================================================
   HERO (full-bleed video)
   =========================================================================== */
.hero {
  position: relative; overflow: hidden;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  background: var(--maroon-2); /* shows while video loads */
}
.hero__video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(
    160deg,
    rgba(63, 17, 15, 0.74) 0%,
    rgba(90, 24, 21, 0.50) 55%,
    rgba(40, 10, 8, 0.40) 100%
  );
}
.hero__content {
  position: relative; z-index: 2; width: 100%; text-align: center;
  padding: calc(var(--nav-h) + 70px) 0 clamp(90px, 11vw, 150px);
}
.hero__head { max-width: 860px; margin-inline: auto; }
.hero__eyebrow {
  text-transform: uppercase; letter-spacing: 0.24em; font-size: 0.76rem;
  font-weight: 600; color: var(--gold); margin-bottom: 18px;
}
.hero__title {
  font-family: var(--ff-serif); font-weight: 700;
  font-size: clamp(2.6rem, 6.5vw, 5.4rem);
  line-height: 1.08; color: var(--cream); letter-spacing: -0.025em;
  margin-inline: auto; max-width: 18ch;
}
.hero__actions {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
  margin-top: 34px;
}
.hero__playpause {
  position: absolute; bottom: 24px; right: 28px; z-index: 3;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(254, 252, 243, 0.86); backdrop-filter: blur(6px);
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}
.hero__playpause:hover { transform: scale(1.08); background: var(--cream); }
.icon-pause, .icon-play { display: block; }
.icon-pause {
  width: 14px; height: 15px;
  border-left: 4px solid var(--maroon); border-right: 4px solid var(--maroon);
}
.icon-play {
  width: 0; height: 0; margin-left: 3px;
  border-top: 8px solid transparent; border-bottom: 8px solid transparent;
  border-left: 13px solid var(--maroon);
}

/* ===========================================================================
   STORY (maroon + floating bean)
   =========================================================================== */
.story {
  background: var(--maroon); color: var(--cream-2);
  padding: clamp(60px, 9vw, 110px) 0; text-align: center;
  position: relative; overflow: hidden;
}
.story::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 50% 0%, rgba(243, 213, 114, 0.10), transparent 70%);
  pointer-events: none;
}
.story__inner { position: relative; max-width: 980px; }
.story__bean {
  width: clamp(64px, 8vw, 92px); height: auto; margin: 0 auto 26px;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.4));
  animation: beanFloat 5.5s ease-in-out infinite;
}
@keyframes beanFloat {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-14px) rotate(4deg); }
}
@media (prefers-reduced-motion: reduce) {
  .story__bean { animation: none; }
}
.story__lead {
  font-family: var(--ff-serif); font-weight: 600;
  font-size: clamp(1.7rem, 3.6vw, 3rem); line-height: 1.22;
  color: var(--cream); letter-spacing: -0.01em;
}
/* word-by-word reveal */
.story__lead .word {
  display: inline-block; opacity: 0.16;
  transition: opacity 0.5s var(--ease);
}
.story__lead .word.is-lit { opacity: 1; }
.no-js .story__lead .word { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .story__lead .word { opacity: 1; } }
.story__pill {
  display: inline-block; border: 1.5px solid var(--gold);
  color: var(--gold); border-radius: var(--r-pill);
  padding: 0 0.5em; line-height: 1.3;
}
.story__sub {
  margin-top: 26px; color: rgba(254, 252, 243, 0.74);
  font-size: 1.06rem; max-width: 60ch; margin-inline: auto;
}

/* ===========================================================================
   TICKER
   =========================================================================== */
.ticker {
  background: var(--gold); color: var(--maroon-2);
  padding: 16px 0; overflow: hidden; border-block: 1px solid var(--gold-deep);
}
.ticker__track {
  display: flex; align-items: center; gap: 26px; width: max-content;
  white-space: nowrap; will-change: transform;
}
.ticker__item {
  font-family: var(--ff-serif); font-weight: 600; font-size: 1.15rem;
  letter-spacing: 0.01em;
}
.ticker__sep { font-size: 0.9rem; opacity: 0.7; }

/* ===========================================================================
   MENU
   =========================================================================== */
.menu { padding: clamp(64px, 9vw, 120px) 0; background: var(--cream); }
.menu__card {
  background: var(--butter); border-radius: var(--r-lg);
  padding: clamp(28px, 5vw, 56px); box-shadow: var(--shadow-md);
  border: 1px solid rgba(217, 179, 71, 0.4);
}
.menu__head { text-align: center; margin-bottom: 34px; }
.menu__mark {
  width: 60px; height: 60px; border-radius: 50%; object-fit: cover;
  margin: 0 auto 16px; box-shadow: 0 0 0 1.5px rgba(90, 24, 21, 0.22);
}
.menu__head .section-title { color: var(--maroon); max-width: 18ch; margin: 0 auto 24px; }
.menu__tabs {
  display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  background: rgba(254, 252, 243, 0.7); padding: 6px; border-radius: var(--r-pill);
}
.menu__tab {
  padding: 9px 20px; border-radius: var(--r-pill); font-weight: 600;
  font-family: var(--ff-label);
  font-size: 0.92rem; color: var(--ink);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.menu__tab:hover { color: var(--maroon); }
.menu__tab.is-active { background: var(--maroon); color: var(--cream); }

.menu__panel { animation: panelIn 0.5s var(--ease); }
.menu__panel[hidden] { display: none; }
@keyframes panelIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .menu__panel { animation: none; } }

.menu__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
}
.mitem {
  position: relative; display: flex; align-items: center; gap: 16px;
  background: var(--cream); border-radius: var(--r-md); padding: 14px 18px;
  border: 1px solid var(--line);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.mitem:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.mitem__badge {
  position: absolute; top: -10px; left: 16px;
  background: var(--maroon); color: var(--cream);
  font-family: var(--ff-label); font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--r-pill);
}
.mitem__img {
  width: 70px; height: 70px; border-radius: 16px; object-fit: cover;
  flex: 0 0 auto; box-shadow: var(--shadow-sm);
}
.mitem__body { flex: 1 1 auto; }
.mitem__body h3 { font-size: 1.18rem; color: var(--maroon); margin-bottom: 2px; }
.mitem__body p { font-size: 0.9rem; color: var(--muted); line-height: 1.45; }
.mitem__price {
  font-family: var(--ff-serif); font-weight: 700; font-size: 1.15rem;
  color: var(--gold-deep); flex: 0 0 auto; align-self: flex-start;
}
.menu__note {
  text-align: center; margin-top: 30px; color: var(--muted);
  font-size: 0.92rem; letter-spacing: 0.01em;
}

/* ===========================================================================
   EVENTS
   =========================================================================== */
.events { padding: clamp(64px, 9vw, 120px) 0; background: var(--cream-2); overflow: hidden; }
.events__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-bottom: 34px;
}
.events__head .eyebrow { margin-bottom: 8px; }
.events__rail {
  display: flex; gap: 22px; overflow-x: auto; padding: 8px 4px 22px;
  scroll-snap-type: x mandatory; cursor: grab;
  scrollbar-width: none; -ms-overflow-style: none;
  width: min(100% - 40px, var(--maxw)); margin-inline: auto;
}
.events__rail::-webkit-scrollbar { display: none; }
.events__rail.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.ecard {
  flex: 0 0 clamp(300px, 42vw, 460px); scroll-snap-align: start;
  background: var(--cream); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.ecard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ecard__body { padding: 26px 26px 18px; order: 2; }
.ecard__media { order: 1; aspect-ratio: 16 / 10; overflow: hidden; }
.ecard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.ecard:hover .ecard__media img { transform: scale(1.05); }
.ecard__date {
  text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.72rem;
  font-weight: 600; color: var(--gold-deep); margin-bottom: 8px;
}
.ecard__body h3 { font-size: 1.4rem; color: var(--maroon); margin-bottom: 8px; }
.ecard__desc { color: var(--muted); font-size: 0.96rem; margin-bottom: 14px; }
.ecard__link { font-weight: 600; color: var(--maroon); border-bottom: 1.5px solid var(--gold); padding-bottom: 2px; }
.ecard__link:hover { color: var(--gold-deep); }

.stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 48px; text-align: center;
}
.stat { padding: 22px 14px; border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; }
.stat__num {
  display: block; font-family: var(--ff-serif); font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--maroon); line-height: 1;
}
.stat__label { display: block; margin-top: 10px; color: var(--muted); font-size: 0.92rem; letter-spacing: 0.02em; }

/* ===========================================================================
   TESTIMONIALS
   =========================================================================== */
.quotes { padding: clamp(64px, 9vw, 120px) 0; background: var(--maroon); color: var(--cream); overflow: hidden; }
.quotes__strip {
  display: flex; gap: 14px; overflow-x: auto; padding-bottom: 8px;
  width: min(100% - 40px, 1320px); margin: 0 auto clamp(40px, 6vw, 64px);
  scrollbar-width: none; cursor: grab;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.quotes__strip::-webkit-scrollbar { display: none; }
.quotes__strip.is-dragging { cursor: grabbing; }
.quotes__strip img {
  flex: 0 0 auto; width: 200px; height: 240px; object-fit: cover;
  border-radius: var(--r-md); box-shadow: var(--shadow-md);
}
.quotes__viewer {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  width: min(100% - 40px, 880px); margin-inline: auto;
}
.quotes__arrow {
  flex: 0 0 auto; width: 52px; height: 52px; border-radius: 50%;
  border: 1.5px solid rgba(254, 252, 243, 0.4); color: var(--cream);
  font-size: 1.8rem; line-height: 1; display: grid; place-items: center;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.2s var(--ease);
}
.quotes__arrow:hover { background: var(--gold); color: var(--maroon-2); border-color: var(--gold); transform: scale(1.06); }
.quotes__stage { position: relative; flex: 1 1 auto; min-height: 230px; }
.quote {
  position: absolute; inset: 0; text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; opacity: 0; visibility: hidden;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  transform: translateY(14px);
}
.quote.is-active { opacity: 1; visibility: visible; transform: none; position: relative; }
.no-js .quote { position: relative; opacity: 1; visibility: visible; transform: none; }
.quote__stars { color: var(--gold); letter-spacing: 4px; font-size: 1.15rem; }
.quote blockquote {
  font-family: var(--ff-serif); font-weight: 500; font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 2rem); line-height: 1.4;
  color: var(--cream); max-width: 30ch;
}
.quote figcaption { display: flex; flex-direction: column; gap: 2px; }
.quote__name { font-weight: 700; font-size: 1.02rem; color: var(--gold); }
.quote__role { font-size: 0.86rem; color: rgba(254, 252, 243, 0.6); }

/* ===========================================================================
   FEATURES
   =========================================================================== */
.feat {
  position: relative; overflow: hidden; display: flex; align-items: center;
  min-height: clamp(560px, 82vh, 780px);
  padding: clamp(56px, 8vw, 110px) 0;
}
.feat__bg { position: absolute; inset: 0; z-index: 0; }
.feat__bg img { width: 100%; height: 100%; object-fit: cover; }
.feat__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(63, 17, 15, 0.55) 0%, rgba(63, 17, 15, 0.28) 42%, rgba(63, 17, 15, 0.08) 100%);
}
.feat__inner {
  position: relative; z-index: 1; display: flex; justify-content: flex-end;
  width: min(100% - 40px, var(--maxw));
}
.feat__panel {
  background: rgba(254, 252, 243, 0.93);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(254, 252, 243, 0.6); border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 46px); width: min(100%, 480px);
  box-shadow: var(--shadow-lg);
}
.feat__panel .eyebrow { margin-bottom: 12px; }
.feat__panel .section-title { margin-bottom: 26px; }
.feat__desc {
  font-size: 0.97rem; color: var(--ink); line-height: 1.65;
  margin-bottom: 22px; opacity: 0.88;
}
.feat__list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.feat__item { position: relative; padding-left: 24px; }
.feat__item::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 11px; height: 11px; border-radius: 50%; background: var(--gold-deep);
  box-shadow: 0 0 0 4px rgba(217, 179, 71, 0.2);
}
.feat__item h3 { font-size: 1.2rem; color: var(--maroon); margin-bottom: 3px; }
.feat__item p { color: var(--ink); font-size: 0.95rem; }
.feat__cta { display: flex; align-items: center; gap: 16px; margin-top: 30px; flex-wrap: wrap; }
.feat__note { font-family: var(--ff-serif); font-style: italic; color: var(--gold-deep); }

/* ===========================================================================
   RESERVATION
   =========================================================================== */
.reserve { padding: clamp(64px, 9vw, 120px) 0; background: var(--butter); }
.reserve__inner { display: flex; justify-content: center; }
.reserve__card {
  background: var(--cream); border-radius: var(--r-lg);
  padding: clamp(30px, 5vw, 56px); box-shadow: var(--shadow-md);
  width: min(100%, 760px); border: 1px solid var(--line);
}
.reserve__card .section-title { margin-bottom: 12px; text-align: center; }
.reserve__lede { text-align: center; color: var(--muted); max-width: 48ch; margin: 0 auto 30px; }
.reserve__form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 0.82rem; font-weight: 600; font-family: var(--ff-label); color: var(--ink); letter-spacing: 0.02em; }
.field input {
  padding: 12px 15px; border-radius: var(--r-sm); border: 1.5px solid var(--line);
  background: var(--cream); transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus { outline: none; border-color: var(--maroon); box-shadow: 0 0 0 3px rgba(90, 24, 21, 0.12); }
.reserve__submit { grid-column: 1 / -1; justify-self: center; margin-top: 6px; min-width: 220px; }
.reserve__msg { grid-column: 1 / -1; text-align: center; font-weight: 600; color: var(--maroon); min-height: 1.2em; }

/* ===========================================================================
   FIND US
   =========================================================================== */
.find { padding: clamp(64px, 9vw, 120px) 0 0; background: var(--cream); }
.find__title { text-align: center; margin-bottom: 40px; }
.find__grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; align-items: stretch;
  margin-bottom: 40px;
}
.loc {
  background: var(--cream-2); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.loc__media { aspect-ratio: 16 / 9; overflow: hidden; }
.loc__media img { width: 100%; height: 100%; object-fit: cover; }
.loc__body { padding: 26px 28px; }
.loc__body h3 { font-size: 1.5rem; color: var(--maroon); margin-bottom: 10px; }
.loc__addr { color: var(--ink); margin-bottom: 4px; }
.loc__phone a { color: var(--maroon); font-weight: 600; }
.loc__dir { display: inline-block; margin-top: 14px; font-weight: 600; color: var(--maroon); border-bottom: 1.5px solid var(--gold); padding-bottom: 2px; }
.loc__dir:hover { color: var(--gold-deep); }
.loc--hours { background: var(--maroon); color: var(--cream); }
.loc__body--hours h3 { color: var(--cream); }
.hours { width: 100%; border-collapse: collapse; margin-bottom: 16px; }
.hours th, .hours td { text-align: left; padding: 11px 0; border-bottom: 1px solid rgba(254, 252, 243, 0.16); font-weight: 500; }
.hours th { font-family: var(--ff-label); font-weight: 600; }
.hours td { text-align: right; color: rgba(254, 252, 243, 0.82); }
.hours tr.is-today th, .hours tr.is-today td { color: var(--gold); }
.hours__status {
  display: inline-block; font-weight: 600; font-size: 0.92rem;
  padding: 7px 14px; border-radius: var(--r-pill); margin-bottom: 18px;
}
.hours__status.is-open { background: rgba(243, 213, 114, 0.2); color: var(--gold); }
.hours__status.is-closed { background: rgba(254, 252, 243, 0.12); color: rgba(254, 252, 243, 0.8); }
.loc__contacts { display: flex; gap: 18px; }
.loc__contacts a { color: var(--gold); font-weight: 600; border-bottom: 1.5px solid transparent; }
.loc__contacts a:hover { border-color: var(--gold); }
.find__map {
  height: clamp(320px, 42vw, 480px); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  background: var(--cream-2);
}
.leaflet-container { font-family: var(--ff-sans); }

/* ===========================================================================
   NEWSLETTER
   =========================================================================== */
.newsletter { padding: clamp(64px, 9vw, 120px) 0; background: var(--cream); }
.newsletter__inner { text-align: center; max-width: 760px; }
.newsletter__icon { font-size: 2.6rem; display: block; margin-bottom: 18px; }
.newsletter .section-title { margin-bottom: 30px; font-size: clamp(1.6rem, 3.4vw, 2.5rem); }
.newsletter__form {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  max-width: 540px; margin-inline: auto;
}
.newsletter__form input {
  flex: 1 1 280px; padding: 14px 20px; border-radius: var(--r-pill);
  border: 1.5px solid var(--line); background: var(--cream-2);
}
.newsletter__form input:focus { outline: none; border-color: var(--maroon); box-shadow: 0 0 0 3px rgba(90, 24, 21, 0.12); }
.newsletter__msg { margin-top: 16px; font-weight: 600; color: var(--maroon); min-height: 1.2em; }

/* ===========================================================================
   FOOTER
   =========================================================================== */
.site-footer { background: var(--cream-2); padding: clamp(50px, 7vw, 80px) 0 30px; border-top: 1px solid var(--line); }
.footer__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.footer__card { border-radius: var(--r-lg); padding: clamp(28px, 4vw, 44px); }
.footer__card--cream { background: var(--cream); border: 1px solid var(--line); }
.footer__card--maroon { background: var(--maroon); color: var(--cream); }
.brand--footer { margin-bottom: 22px; }
.brand--footer .brand__mark { width: 48px; height: 48px; }
.footer__hours h3 { font-size: 1.2rem; color: var(--maroon); margin-bottom: 10px; }
.footer__hours p { color: var(--muted); font-size: 0.95rem; }
.footer__addr { margin-top: 18px; color: var(--ink); font-weight: 500; }
.footer__credit { margin-top: 16px; color: var(--muted); font-size: 0.9rem; }
.footer__credit a { color: var(--maroon); font-weight: 600; border-bottom: 1.5px solid var(--gold); }
.footer__links-h { font-size: 1.2rem; color: var(--gold); margin-bottom: 18px; }
.footer__links { display: flex; gap: 50px; flex-wrap: wrap; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col a { color: rgba(254, 252, 243, 0.86); font-size: 0.98rem; transition: color 0.2s var(--ease); }
.footer__col a:hover { color: var(--gold); }
.footer__social { display: flex; gap: 12px; margin-top: 28px; }
.footer__social a {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid rgba(254, 252, 243, 0.3);
  display: grid; place-items: center; font-weight: 700; font-size: 0.82rem;
  color: var(--cream); transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.footer__social a:hover { background: var(--gold); color: var(--maroon-2); border-color: var(--gold); }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px; margin-top: 34px; padding-top: 22px;
  border-top: 1px solid var(--line); color: var(--muted); font-size: 0.88rem;
}
.footer__bottom p:last-child { font-family: var(--ff-serif); font-style: italic; }

/* ===========================================================================
   CINEMATIC INTRO (logo-split reveal)
   Two door panels each show one half of the circular seal logo.
   On is-open the doors slide apart, the logo splits with them, and the live
   homepage hero video is revealed underneath. No separate intro clip.
   =========================================================================== */

/* Hidden by default; shown on first visit via html.intro-armed */
.intro {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: transparent; /* doors carry the black; removing bg here lets the
                               homepage show through the gap as doors slide apart */
}
html.intro-armed .intro { display: block; }

/* Door panels: each occupies half the screen, clips its logo half */
.intro__door--l,
.intro__door--r {
  position: absolute; top: 0; bottom: 0; width: 50%;
  background: #2d1a0f; /* warm espresso brown — matches the site's ink/maroon palette */
  overflow: hidden;  /* clips logo image to exactly this door's half */
  z-index: 2;
  transition: transform 0.72s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}
.intro__door--l { left: 0; }
.intro__door--r { right: 0; }
.intro.is-open .intro__door--l { transform: translateX(-100%); }
.intro.is-open .intro__door--r { transform: translateX(100%); }

/* Logo halves: same 130px image in each door, positioned so the logo
   center falls exactly on the seam between the two doors.
   right:-65px shifts the image 65px past the door's right edge (left door),
   left:-65px mirrors it on the right door. overflow:hidden does the clipping. */
.intro__door-logo {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.intro__door--l .intro__door-logo { right: -65px; }
.intro__door--r .intro__door-logo { left: -65px; }
.intro.is-ready .intro__door-logo { opacity: 1; }
.intro__door-logo img {
  width: 130px; height: 130px; border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(255,255,255,0.05), 0 0 52px rgba(214,169,78,0.22);
  object-fit: contain; display: block;
}

/* Dismiss fade */
.intro.is-done { opacity: 0; pointer-events: none; transition: opacity 1.5s ease-in-out; }
.intro.is-quick.is-done { transition: opacity 0.43s ease; }

/* Lock body scroll while intro plays */
body.intro-open { overflow: hidden; }

/* Reduced-motion: never show */
@media (prefers-reduced-motion: reduce) {
  html.intro-armed .intro { display: none; }
}

/* ===========================================================================
   RESPONSIVE
   =========================================================================== */
@media (max-width: 980px) {
  .feat__inner { justify-content: center; }
  .find__grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .menu__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .reserve__form { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .feat { min-height: auto; }
  .feat__panel { width: 100%; }
  .hero__actions .btn { flex: 1 1 auto; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-left: 0; border-top: 1px solid var(--line); }
  .stat:first-child { border-top: 0; }
  .quotes__arrow { width: 44px; height: 44px; font-size: 1.5rem; }
  .quotes__strip img { width: 150px; height: 184px; }
  .footer__links { gap: 30px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
