/* ==========================================================================
   RNR Coffee & Cafe — main stylesheet
   Warm, editorial, unhurried. Mobile-first.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* palette — follows the RNR wordmark: near-black espresso + metallic gold */
  --bg: #F6F1E7;
  --surface: #FFFFFF;
  --sand: #ECE1CD;
  --espresso: #2E2013;
  --ink: #241C16;
  --accent: #A9812F;          /* mid gold — dividers, prices, flourishes */
  --accent-deep: #7C591C;     /* bronze — buttons, links, small text */
  --accent-bright: #C9A65E;   /* soft gold — hairlines, subtle highlights */
  --accent2: #6B4A32;         /* coffee brown — secondary accent */
  --accent2-deep: #492F1E;
  --ok: #4E6137;              /* functional only: "open" status */
  --warn: #A5522C;            /* functional only: "closed" / caution */

  /* derived */
  --line: rgba(46, 32, 19, 0.16);
  --ink-soft: rgba(36, 28, 22, 0.68);
  --shadow-sm: 0 1px 2px rgba(59, 42, 32, 0.06), 0 2px 8px rgba(59, 42, 32, 0.06);
  --shadow-md: 0 6px 18px rgba(59, 42, 32, 0.10), 0 2px 6px rgba(59, 42, 32, 0.06);
  --shadow-lg: 0 18px 48px rgba(59, 42, 32, 0.16);

  /* type */
  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Work Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* rhythm */
  --radius: 14px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --wrap: 1180px;
  --wrap-narrow: 760px;
  --gutter: clamp(1.15rem, 4vw, 2.75rem);
  --section-y: clamp(3.5rem, 8vw, 6.5rem);

  --fs-800: clamp(2.6rem, 7vw, 4.6rem);
  --fs-700: clamp(2rem, 5vw, 3.2rem);
  --fs-600: clamp(1.55rem, 3.4vw, 2.15rem);
  --fs-500: clamp(1.2rem, 2vw, 1.4rem);
  --fs-400: 1rem;
  --fs-300: 0.875rem;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-400);
  font-weight: 400;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--espresso);
  font-weight: 560;
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 60, "WONK" 0;
  letter-spacing: -0.011em;
}

h1 { font-size: var(--fs-800); font-weight: 600; letter-spacing: -0.02em; }
h2 { font-size: var(--fs-700); }
h3 { font-size: var(--fs-600); }

a { text-decoration-thickness: 1px; text-underline-offset: 3px; }

strong { font-weight: 600; }

::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 3px solid var(--accent2);
  outline-offset: 2px;
  border-radius: 4px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.wrap-narrow { max-width: var(--wrap-narrow); }

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  z-index: 200;
  padding: 0.6rem 1rem;
  background: var(--espresso);
  color: #fff;
  border-radius: var(--radius-sm);
  transform: translateY(-160%);
  transition: transform 0.2s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

/* ---------- Motion: scroll reveal ----------
   .reveal          → fade + rise (default)
   data-anim="left|right|down|scale|fade" → direction variants
   data-stagger[="ms"] on a wrapper → its .reveal children cascade in
------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.78s var(--ease);
  will-change: opacity, transform;
}
.reveal[data-anim="left"]  { transform: translateX(-34px); }
.reveal[data-anim="right"] { transform: translateX(34px); }
.reveal[data-anim="down"]  { transform: translateY(-24px); }
.reveal[data-anim="scale"] { transform: scale(0.955); }
.reveal[data-anim="fade"]  { transform: none; }

.reveal.is-visible { opacity: 1; transform: none; }
.reveal.is-visible[data-anim="scale"] { transform: scale(1); }

.no-js .reveal { opacity: 1; transform: none; }

@media (max-width: 600px) {
  .reveal { transform: translateY(18px); }
  .reveal[data-anim="left"]  { transform: translateX(-20px); }
  .reveal[data-anim="right"] { transform: translateX(20px); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal[data-anim] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    transition-delay: 0s !important;
  }
}

/* ---------- Motion: hero load sequence ---------- */
.hero-media {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.1s var(--ease), transform 1.5s var(--ease);
}
.hero [data-hero] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.8s var(--ease);
}
.hero.is-in .hero-media { opacity: 1; transform: scale(1); }
.hero.is-in [data-hero] { opacity: 1; transform: none; }
.hero.is-in [data-hero]:nth-child(1) { transition-delay: 0.15s; }
.hero.is-in [data-hero]:nth-child(2) { transition-delay: 0.26s; }
.hero.is-in [data-hero]:nth-child(3) { transition-delay: 0.37s; }
.hero.is-in [data-hero]:nth-child(4) { transition-delay: 0.47s; }
.hero.is-in [data-hero]:nth-child(5) { transition-delay: 0.57s; }
.no-js .hero-media,
.no-js .hero [data-hero] { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .hero-media,
  .hero [data-hero] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    transition-delay: 0s !important;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.55rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.005em;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform 0.18s var(--ease), background-color 0.18s var(--ease),
    color 0.18s var(--ease), border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--accent);
  color: var(--espresso);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--accent-deep); color: #fff; box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  color: var(--espresso);
  border-color: var(--espresso);
}
.btn-outline:hover { background: var(--espresso); color: var(--bg); }

.btn-ghost {
  background: var(--surface);
  color: var(--espresso);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { border-color: var(--espresso); }

.btn-wa {
  background: #1FA855;
  color: #fff;
  padding: 0.6rem 1.05rem;
  font-size: 0.9rem;
}
.btn-wa:hover { background: #17924a; }
.btn-wa svg { width: 1.05em; height: 1.05em; }

.btn-sm { padding: 0.6rem 1.1rem; font-size: 0.9rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease),
    background-color 0.2s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
  background: color-mix(in srgb, var(--bg) 96%, transparent);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 68px;
  padding-block: 0.6rem;
}

.wordmark {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.32rem;
  color: var(--espresso);
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  flex-shrink: 0;
}
.wordmark span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* logo image lockup */
.wordmark-img {
  height: 54px;
  width: auto;
  display: block;
}
@media (max-width: 600px) {
  .wordmark-img { height: 44px; }
}
.wordmark-fallback { display: none; }
.wordmark.is-textfallback { align-items: baseline; gap: 0.4rem; }
.wordmark.is-textfallback .wordmark-fallback {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.32rem;
  letter-spacing: 0.02em;
  color: var(--espresso);
}
.wordmark.is-textfallback .wordmark-fallback b {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.footer-brand .wordmark-img { height: 78px; }

/* brand tagline */
.footer-tagline {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--accent);
  margin: 0.2rem 0 0.6rem;
}
.hero-tagline {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.92);
  margin-top: 0.8rem;
  text-shadow: 0 1px 12px rgba(36, 28, 22, 0.5);
}

.header-aside {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
/* mobile header is tight — WhatsApp lives in the sticky bottom bar there,
   and the pill drops its trailing note to stay on one line */
@media (max-width: 640px) {
  .header-aside .btn-wa { display: none; }
  .status-pill .status-note { display: none; }
  .status-pill { padding: 0.32rem 0.7rem; }
}

/* status pill */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.32rem 0.7rem 0.32rem 0.6rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: var(--sand);
  color: var(--ink-soft);
  white-space: nowrap;
}
.status-pill .dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.status-pill.is-open { background: color-mix(in srgb, var(--ok) 18%, var(--surface)); color: var(--ok); }
.status-pill.is-closed { background: color-mix(in srgb, var(--warn) 16%, var(--surface)); color: var(--warn); }
.status-pill .status-note { font-weight: 500; color: inherit; opacity: 0.85; }

/* nav */
.site-nav { display: flex; align-items: center; }
.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--espresso);
}
.nav-toggle .bars {
  width: 18px; height: 12px; position: relative; display: inline-block;
}
.nav-toggle .bars::before,
.nav-toggle .bars::after,
.nav-toggle .bars span {
  content: ""; position: absolute; left: 0; right: 0; height: 2px;
  background: currentColor; border-radius: 2px; transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle .bars::before { top: 0; }
.nav-toggle .bars span { top: 5px; }
.nav-toggle .bars::after { bottom: 0; }
.nav-toggle[aria-expanded="true"] .bars::before { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bars span { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bars::after { transform: translateY(-5px) rotate(-45deg); }

.nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 899px) {
  .nav-menu {
    position: fixed;
    inset: 68px 0 auto 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    display: grid;
    gap: 0.15rem;
    padding: 0.75rem var(--gutter) 1.25rem;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s var(--ease), opacity 0.22s var(--ease);
  }
  .nav-menu.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-menu a {
    display: block;
    padding: 0.7rem 0.5rem;
    text-decoration: none;
    font-weight: 500;
    color: var(--espresso);
    border-bottom: 1px solid var(--line);
  }
  .nav-menu li:last-child a { border-bottom: 0; }
  .nav-menu a[aria-current="page"] { color: var(--accent-deep); }
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .nav-menu {
    display: flex;
    gap: 0.35rem;
    align-items: center;
  }
  .nav-menu a {
    display: inline-block;
    padding: 0.45rem 0.7rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--espresso);
    border-radius: var(--radius-sm);
    position: relative;
    transition: color 0.15s var(--ease), background-color 0.15s var(--ease);
  }
  .nav-menu a::after {
    content: "";
    position: absolute;
    left: 0.7rem; right: 0.7rem; bottom: 0.28rem;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s var(--ease);
  }
  .nav-menu a:hover { color: var(--accent-deep); }
  .nav-menu a:hover::after,
  .nav-menu a[aria-current="page"]::after { transform: scaleX(1); }
  .nav-menu a[aria-current="page"] { color: var(--accent-deep); }
}

/* ---------- Divider motif ---------- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  color: var(--accent);
  font-size: 1.1rem;
  letter-spacing: 0.5em;
  padding-block: clamp(1.5rem, 5vw, 3rem);
  user-select: none;
}
.divider::before, .divider::after {
  content: "";
  height: 1px;
  width: min(80px, 12vw);
  background: var(--line);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 0.9rem;
}

.lede { font-size: var(--fs-500); color: var(--ink-soft); line-height: 1.6; }

/* ---------- Section scaffolding ---------- */
.section { padding-block: var(--section-y); }
.section-head { max-width: 46ch; margin-bottom: clamp(2rem, 5vw, 3rem); }
.section-head.center { margin-inline: auto; text-align: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  min-height: min(88svh, 720px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: clip;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media img { width: 100%; height: 118%; object-fit: cover; will-change: transform; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(36, 28, 22, 0.15) 0%, rgba(36, 28, 22, 0.30) 45%, rgba(36, 28, 22, 0.78) 100%);
}
.hero-inner { padding-block: clamp(2.5rem, 8vw, 5rem); }
.hero .eyebrow { color: #fff; opacity: 0.95; text-shadow: 0 1px 12px rgba(36, 28, 22, 0.55); }
.hero h1 { color: #fff; max-width: 16ch; text-shadow: 0 2px 24px rgba(36, 28, 22, 0.35); }
.hero .hero-sub {
  margin-top: 1.1rem;
  font-size: var(--fs-500);
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.92);
}
.hero-ctas {
  margin-top: 1.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.hero .btn-outline { color: #fff; border-color: rgba(255,255,255,0.8); }
.hero .btn-outline:hover { background: #fff; color: var(--espresso); border-color: #fff; }

/* page hero (interior pages) */
.page-hero {
  background: var(--sand);
  padding-block: clamp(2.75rem, 7vw, 4.75rem);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { max-width: 20ch; }
.page-hero p { margin-top: 0.9rem; max-width: 52ch; }
.page-hero .lede { color: var(--ink-soft); }

/* page-hero load-in (pure CSS, above the fold) */
.js .page-hero .wrap > * {
  opacity: 0;
  transform: translateY(18px);
  animation: pageHeroIn 0.7s var(--ease) forwards;
}
.js .page-hero .wrap > *:nth-child(2) { animation-delay: 0.1s; }
.js .page-hero .wrap > *:nth-child(3) { animation-delay: 0.2s; }
.js .page-hero .wrap > *:nth-child(4) { animation-delay: 0.3s; }
@keyframes pageHeroIn { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .js .page-hero .wrap > * { opacity: 1; transform: none; animation: none; }
}

/* ---------- Intro strip ---------- */
.pour {
  background: var(--espresso);
  color: var(--bg);
}
.pour .wrap { padding-block: clamp(2.75rem, 7vw, 4.5rem); }
.pour p {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  line-height: 1.4;
  max-width: 30ch;
  color: var(--bg);
}
.pour .wrap { display: grid; gap: 1.5rem; }
@media (min-width: 800px) {
  .pour .wrap { grid-template-columns: auto 1fr; align-items: center; gap: 3rem; }
  .pour .eyebrow { margin: 0; }
  .pour p { max-width: 46ch; }
}

/* ---------- Card grid ---------- */
.card-grid {
  display: grid;
  gap: clamp(1.1rem, 3vw, 1.75rem);
  grid-template-columns: 1fr;
}
@media (min-width: 620px) { .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 720px) {
  .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.card-media { aspect-ratio: 4 / 3; background: var(--sand); }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 1.15rem 1.25rem 1.35rem; display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.card-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}
.card h3 { font-size: 1.15rem; }
.price {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--accent-deep);
  font-size: 1.05rem;
  white-space: nowrap;
}
.card p { font-size: 0.94rem; color: var(--ink-soft); }

.card-link { text-decoration: none; color: inherit; }
.card-link:hover .card { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* ---------- Split / lifestyle block ---------- */
.split {
  display: grid;
  gap: clamp(1.5rem, 5vw, 3.5rem);
  align-items: center;
}
@media (min-width: 860px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split.flip .split-media { order: 2; }
}
.split-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 5 / 4;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-body h2 { margin-bottom: 1rem; }
.split-body p + p { margin-top: 0.9rem; }
.split-list {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.7rem;
  list-style: none;
  padding: 0;
}
.split-list li {
  padding-left: 1.7rem;
  position: relative;
  color: var(--ink-soft);
}
.split-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 0.7rem; height: 0.7rem;
  border-radius: 50%;
  background: var(--accent);
}

/* ---------- CTA band ---------- */
.band {
  background: var(--accent-deep);
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(2rem, 6vw, 3.5rem);
  text-align: center;
  display: grid;
  gap: 1.2rem;
  justify-items: center;
}
.band h2 { color: #fff; max-width: 20ch; }
.band p { max-width: 52ch; color: rgba(255,255,255,0.92); }
.band .btn-ghost { background: #fff; border-color: #fff; }
.band .btn-ghost:hover { background: rgba(255,255,255,0.88); }
.band-wrap { padding-block: var(--section-y); }

/* olive variant */
.band.band-alt { background: var(--accent2); }

/* ---------- Beans / roastery promo ---------- */
.promo {
  background: var(--sand);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  gap: 0;
}
@media (min-width: 820px) { .promo { grid-template-columns: 1.1fr 1fr; align-items: stretch; } }
.promo-media { aspect-ratio: 16 / 11; }
.promo-media img { width: 100%; height: 100%; object-fit: cover; }
.promo-body { padding: clamp(1.75rem, 5vw, 3rem); align-self: center; }
.promo-body h2 { margin-bottom: 0.9rem; }
.promo-body p { color: var(--ink-soft); max-width: 44ch; }
.promo-body .btn { margin-top: 1.5rem; }

/* ---------- Testimonials ---------- */
.quote-grid {
  display: grid;
  gap: clamp(1.1rem, 3vw, 1.75rem);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .quote-grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .quote-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }

.quote {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.6rem 1.4rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.quote .stars { color: var(--accent); letter-spacing: 0.15em; font-size: 0.9rem; }
.quote blockquote {
  font-family: var(--font-head);
  font-weight: 440;
  font-size: 1.12rem;
  line-height: 1.5;
  color: var(--espresso);
}
.quote figcaption {
  margin-top: auto;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.quote figcaption strong { color: var(--espresso); display: block; font-size: 0.95rem; }

/* ---------- Visit-us block ---------- */
.visit {
  background: var(--espresso);
  color: var(--bg);
}
.visit .wrap { padding-block: var(--section-y); display: grid; gap: 2.5rem; }
@media (min-width: 900px) { .visit .wrap { grid-template-columns: 1fr 1fr; gap: 3.5rem; } }
.visit h2 { color: var(--bg); }
.visit a { color: var(--bg); }
.visit .eyebrow,
.pour .eyebrow { color: var(--accent-bright); }
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.25rem;
  font-size: 0.95rem;
}
.hours-table th, .hours-table td {
  text-align: left;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(246, 241, 231, 0.16);
}
.hours-table th { font-weight: 500; color: rgba(246,241,231,0.75); }
.hours-table td { text-align: right; font-variant-numeric: tabular-nums; }
.hours-table tr.is-today th, .hours-table tr.is-today td { color: #fff; font-weight: 600; }
.hours-table tr.is-closed td { color: color-mix(in srgb, var(--warn) 55%, #fff); }

.visit-address { margin-top: 1.25rem; font-style: normal; line-height: 1.8; color: rgba(246,241,231,0.9); }
.visit-map {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 10;
  margin-bottom: 1.25rem;
}
.visit-map img { width: 100%; height: 100%; object-fit: cover; }
.ig-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.25rem; }
.ig-row a {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(246,241,231,0.28);
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-size: 0.88rem;
}
.ig-row a:hover { border-color: var(--bg); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding-block: clamp(2.75rem, 6vw, 4rem) 2rem;
}
.footer-grid {
  display: grid;
  gap: 2.25rem;
}
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.4fr; } }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 0.5rem; }
.footer-col a { color: var(--espresso); text-decoration: none; font-size: 0.95rem; }
.footer-col a:hover { color: var(--accent); text-decoration: underline; }
.footer-brand .wordmark { font-size: 1.2rem; margin-bottom: 0.8rem; }
.footer-brand p { font-size: 0.92rem; color: var(--ink-soft); max-width: 34ch; }

.newsletter { display: grid; gap: 0.6rem; margin-top: 0.4rem; }
.newsletter p { font-size: 0.9rem; color: var(--ink-soft); }
.newsletter-row { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.newsletter input[type="email"] {
  flex: 1 1 12rem;
  min-width: 0;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}
.newsletter input:focus-visible { border-color: var(--accent2); }
.form-note { font-size: 0.85rem; }
.form-note[data-state="ok"] { color: var(--ok); font-weight: 600; }
.form-note[data-state="error"] { color: var(--warn); font-weight: 600; }

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.83rem;
  color: var(--ink-soft);
}
.footer-bottom .demo-tag {
  background: var(--sand);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  font-weight: 500;
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: flex;
  gap: 0.6rem;
  padding: 0.7rem var(--gutter) calc(0.7rem + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--bg) 94%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px rgba(59,42,32,0.08);
}
.sticky-cta .btn { flex: 1; }
.sticky-cta .btn-wa { flex: 0 0 auto; padding-inline: 1rem; }
body.has-sticky-cta { padding-bottom: 5rem; }
@media (min-width: 900px) {
  .sticky-cta { display: none; }
  body.has-sticky-cta { padding-bottom: 0; }
}

/* ---------- Menu page ---------- */
.menu-nav {
  position: sticky;
  top: 68px;
  z-index: 80;
  background: color-mix(in srgb, var(--bg) 95%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.menu-nav ul {
  display: flex;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0.7rem var(--gutter);
  max-width: var(--wrap);
  margin-inline: auto;
  overflow-x: auto;
  scrollbar-width: none;
}
.menu-nav ul::-webkit-scrollbar { display: none; }
.menu-nav a {
  display: inline-block;
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  white-space: nowrap;
  color: var(--espresso);
  border: 1.5px solid var(--line);
  transition: background-color 0.15s var(--ease), color 0.15s var(--ease), border-color 0.15s var(--ease);
}
.menu-nav a:hover { border-color: var(--espresso); }
.menu-nav a.is-active { background: var(--accent-deep); color: #fff; border-color: var(--accent-deep); }

.menu-section { scroll-margin-top: 130px; padding-block: clamp(2.5rem, 6vw, 4rem); }
.menu-section + .menu-section { border-top: 1px solid var(--line); }
.menu-section > .wrap > h2 { display: flex; align-items: baseline; gap: 0.8rem; flex-wrap: wrap; }
.menu-section-note { font-size: 0.9rem; color: var(--ink-soft); margin-top: 0.5rem; }

.menu-list {
  margin-top: 1.75rem;
  display: grid;
  gap: 0.2rem;
}
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 1rem;
  align-items: baseline;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
}
.menu-item:last-child { border-bottom: 0; }
.menu-item .mi-name { font-weight: 600; color: var(--espresso); font-size: 1.05rem; }
.menu-item .mi-price {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.menu-item .mi-desc { grid-column: 1 / -1; font-size: 0.92rem; color: var(--ink-soft); }
.menu-item .mi-tag {
  display: inline-block;
  margin-left: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent2-deep);
  background: color-mix(in srgb, var(--accent2) 18%, var(--surface));
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-pill);
  vertical-align: middle;
}

.menu-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 2rem;
}
.menu-photo-strip img { aspect-ratio: 1; object-fit: cover; border-radius: var(--radius-sm); }
@media (max-width: 560px) { .menu-photo-strip { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Gallery ---------- */
.masonry {
  columns: 1;
  column-gap: clamp(0.6rem, 2vw, 1rem);
}
@media (min-width: 560px) { .masonry { columns: 2; } }
@media (min-width: 900px) { .masonry { columns: 3; } }
.masonry figure {
  break-inside: avoid;
  margin-bottom: clamp(0.6rem, 2vw, 1rem);
}
.masonry button.tile {
  display: block;
  width: 100%;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  background: var(--sand);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.masonry button.tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.masonry img { width: 100%; display: block; }
.masonry figcaption {
  font-size: 0.82rem;
  color: var(--ink-soft);
  padding: 0.5rem 0.2rem 0;
}

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 5vw, 3rem);
  background: rgba(36, 28, 22, 0.82);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease);
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox figure {
  max-width: min(1000px, 100%);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.lightbox img {
  border-radius: var(--radius);
  max-height: 78vh;
  width: auto;
  margin-inline: auto;
  box-shadow: var(--shadow-lg);
}
.lightbox figcaption { color: rgba(255,255,255,0.85); font-size: 0.9rem; text-align: center; }
.lightbox-close {
  position: absolute;
  top: clamp(0.75rem, 3vw, 1.5rem);
  right: clamp(0.75rem, 3vw, 1.5rem);
  width: 2.75rem; height: 2.75rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  color: #fff;
  font-size: 1.4rem;
  display: grid;
  place-items: center;
  transition: background-color 0.15s var(--ease);
}
.lightbox-close:hover { background: rgba(255,255,255,0.28); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  color: #fff;
  font-size: 1.5rem;
  display: grid;
  place-items: center;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.28); }
.lightbox-nav.prev { left: clamp(0.5rem, 2vw, 1.5rem); }
.lightbox-nav.next { right: clamp(0.5rem, 2vw, 1.5rem); }
@media (max-width: 560px) { .lightbox-nav { display: none; } }

/* ---------- FAQ accordion ---------- */
.faq-list { display: grid; gap: 0.75rem; max-width: var(--wrap-narrow); }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.35rem;
  font-family: var(--font-head);
  font-weight: 560;
  font-size: 1.08rem;
  color: var(--espresso);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chevron {
  flex-shrink: 0;
  width: 1.1rem; height: 1.1rem;
  position: relative;
  transition: transform 0.2s var(--ease);
}
.faq-item summary .chevron::before,
.faq-item summary .chevron::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 0.75rem; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.faq-item summary .chevron::before { transform: translate(-50%, -50%); }
.faq-item summary .chevron::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform 0.2s var(--ease); }
.faq-item[open] summary .chevron::after { transform: translate(-50%, -50%) rotate(0); }
.faq-item .faq-body { padding: 0 1.35rem 1.3rem; color: var(--ink-soft); }
.faq-item .faq-body p + p { margin-top: 0.75rem; }
/* JS-driven smooth open/close */
.js .faq-item .faq-body { overflow: hidden; }
.js .faq-item.is-animating .faq-body { transition: height 0.3s var(--ease); }
@media (prefers-reduced-motion: reduce) {
  .js .faq-item.is-animating .faq-body { transition: none; }
}

/* ---------- Contact page ---------- */
.contact-grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); }
@media (min-width: 920px) { .contact-grid { grid-template-columns: 1fr 1.05fr; align-items: start; } }

.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2rem);
  box-shadow: var(--shadow-sm);
}
.info-card + .info-card { margin-top: 1.25rem; }
.info-card h2 { font-size: 1.35rem; margin-bottom: 1rem; }
.info-card address { font-style: normal; line-height: 1.9; }
.info-card .hours-table th,
.info-card .hours-table td {
  border-bottom-color: var(--line);
  color: var(--ink);
}
.info-card .hours-table th { color: var(--ink-soft); }
.info-card .hours-table tr.is-today th,
.info-card .hours-table tr.is-today td { color: var(--espresso); }
.info-card .hours-table tr.is-closed td { color: var(--warn); }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  margin-top: 1.25rem;
  aspect-ratio: 16 / 10;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* forms */
.enquiry-form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: 0.4rem; }
.field label { font-weight: 600; font-size: 0.9rem; color: var(--espresso); }
.field .req { color: var(--accent); }
.field input,
.field select,
.field textarea {
  padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible { border-color: var(--accent2); outline-offset: 0; }
.field-row { display: grid; gap: 1.1rem; }
@media (min-width: 560px) { .field-row.two { grid-template-columns: 1fr 1fr; } }
.form-hint { font-size: 0.82rem; color: var(--ink-soft); }

.form-success {
  border: 1.5px solid var(--ok);
  background: color-mix(in srgb, var(--ok) 12%, var(--surface));
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
  display: none;
}
.form-success h3 { color: var(--ok); font-size: 1.2rem; margin-bottom: 0.4rem; }
.form-success p { color: var(--ink-soft); font-size: 0.95rem; }
.enquiry-form.is-sent { display: none; }
.form-success.is-shown { display: block; }

.field-error { color: var(--warn); font-size: 0.82rem; font-weight: 600; }
.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: var(--warn); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.stack > * + * { margin-top: 1rem; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
.bg-sand { background: var(--sand); }
.bg-surface { background: var(--surface); }
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }
