/* ============================================================
   Marigold & Crumb — all-day brunch café & bakery, Walthamstow
   Bright Scandi-warm. Design-forward. © 2026
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Palette */
  --off-white: #FBF7EF;
  --ink: #23211C;
  --sage: #8FA76A;
  --butter: #F2C14E;
  --cherry: #E2503B;
  --sky: #A9C9D6;
  --card: #FFFFFF;

  /* Derived / supporting */
  --ink-70: rgba(35, 33, 28, 0.70);
  --ink-55: rgba(35, 33, 28, 0.55);
  --ink-12: rgba(35, 33, 28, 0.12);
  --ink-08: rgba(35, 33, 28, 0.08);
  --sage-tint: #EAF0DD;
  --butter-tint: #FCF1D4;
  --cherry-tint: #FBE3DE;
  --sky-tint: #E4EFF3;
  --line: #ECE4D4;

  /* Semantic */
  --bg: var(--off-white);
  --text: var(--ink);
  --muted: var(--ink-70);
  --surface: var(--card);
  --accent: var(--cherry);
  --accent-2: var(--sage);

  /* Type */
  --font-display: "Gloock", Georgia, "Times New Roman", serif;
  --font-body: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Spacing rhythm — 8px */
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 48px;
  --s-6: 64px;
  --s-7: 96px;
  --s-8: 128px;

  /* Layout */
  --container: 1180px;
  --radius-s: 10px;
  --radius: 16px;
  --radius-l: 26px;
  --radius-pill: 999px;

  /* Effects */
  --shadow-s: 0 2px 8px rgba(35, 33, 28, 0.06);
  --shadow: 0 14px 40px -18px rgba(35, 33, 28, 0.28);
  --shadow-lg: 0 30px 70px -28px rgba(35, 33, 28, 0.38);
  --ring: 0 0 0 3px rgba(226, 80, 59, 0.35);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 76px;
}

/* ---------- Dark theme (class on <html>, no localStorage) ---------- */
html.theme-dark {
  --off-white: #1F1D18;
  --ink: #F4EEE0;
  --card: #2A2722;
  --ink-70: rgba(244, 238, 224, 0.74);
  --ink-55: rgba(244, 238, 224, 0.55);
  --ink-12: rgba(244, 238, 224, 0.14);
  --ink-08: rgba(244, 238, 224, 0.08);
  --sage-tint: #2B3322;
  --butter-tint: #36301E;
  --cherry-tint: #3A241F;
  --sky-tint: #23302F;
  --line: #3A362E;

  --bg: var(--off-white);
  --text: var(--ink);
  --surface: var(--card);
  --shadow-s: 0 2px 10px rgba(0, 0, 0, 0.4);
  --shadow: 0 16px 44px -18px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 30px 70px -24px rgba(0, 0, 0, 0.7);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease);
}

img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }

a { color: inherit; text-decoration: none; }

::selection {
  background: var(--butter);
  color: var(--ink);
}
html.theme-dark ::selection {
  background: var(--cherry);
  color: #fff;
}

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

.skip-link {
  position: absolute;
  left: var(--s-2);
  top: -120px;
  z-index: 2000;
  background: var(--ink);
  color: var(--off-white);
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: var(--s-2); }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--s-3);
}
.section { padding-block: var(--s-7); position: relative; }
.section--tight { padding-block: var(--s-6); }
.section--pad-top { padding-top: var(--s-7); padding-bottom: var(--s-5); }

.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.measure { max-width: 62ch; }
.measure-sm { max-width: 48ch; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--text);
}
.display {
  font-size: clamp(3rem, 8.5vw, 6.6rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
}
h2.h-section {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1.02;
}
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.kicker--center { justify-content: center; }
.kicker--sage { color: var(--accent-2); }

.lead {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: var(--muted);
  line-height: 1.6;
}

.eyebrow-note {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Hand-drawn squiggle underline motif */
.squiggle {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.squiggle::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -0.16em;
  height: 0.42em;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='14' viewBox='0 0 120 14'><path d='M2 8 C 14 2, 26 12, 40 7 S 66 2, 80 8 S 106 12, 118 6' fill='none' stroke='%23E2503B' stroke-width='3.4' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}
.squiggle--sage::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='14' viewBox='0 0 120 14'><path d='M2 8 C 14 2, 26 12, 40 7 S 66 2, 80 8 S 106 12, 118 6' fill='none' stroke='%238FA76A' stroke-width='3.4' stroke-linecap='round'/></svg>");
}
.squiggle--butter::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='14' viewBox='0 0 120 14'><path d='M2 8 C 14 2, 26 12, 40 7 S 66 2, 80 8 S 106 12, 118 6' fill='none' stroke='%23F2C14E' stroke-width='3.6' stroke-linecap='round'/></svg>");
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--off-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 2px solid var(--btn-bg);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s var(--ease), color 0.25s var(--ease);
  text-align: center;
  line-height: 1.1;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(-1px); }

.btn--accent { --btn-bg: var(--cherry); --btn-fg: #fff; }
.btn--sage { --btn-bg: var(--sage); --btn-fg: #fff; }
.btn--butter { --btn-bg: var(--butter); --btn-fg: var(--ink); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  border-color: var(--ink-12);
}
.btn--ghost:hover { border-color: var(--text); background: transparent; }

.btn--light {
  --btn-bg: var(--off-white);
  --btn-fg: var(--ink);
}

.btn--block { width: 100%; }
.btn--lg { padding: 18px 34px; font-size: 1.06rem; }
.btn--sm { padding: 11px 20px; font-size: 0.92rem; }

.btn-arrow { transition: transform 0.25s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  color: var(--accent);
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s var(--ease), gap 0.2s var(--ease);
}
.text-link:hover { border-color: var(--accent); gap: 11px; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-s);
  border-bottom-color: var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: var(--s-3);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.32rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
  flex-shrink: 0;
}
.brand:hover .brand-mark { transform: rotate(-18deg); }
.brand-mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
}
.brand-amp { color: var(--cherry); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  padding: 0;
}
.nav-links a {
  position: relative;
  display: inline-block;
  padding: 9px 14px;
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--muted);
  border-radius: var(--radius-pill);
  transition: color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--cherry);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.25s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 18px; }
.nav-links a[aria-current="page"] {
  color: var(--text);
}
.nav-links a[aria-current="page"]::after { width: 18px; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--s-1);
  flex-shrink: 0;
}

/* Theme toggle */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--ink-12);
  background: transparent;
  cursor: pointer;
  color: var(--text);
  transition: background-color 0.2s var(--ease), transform 0.4s var(--ease), border-color 0.2s var(--ease);
}
.theme-toggle:hover { background: var(--ink-08); }
.theme-toggle:active { transform: rotate(40deg); }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
html.theme-dark .theme-toggle .icon-sun { display: block; }
html.theme-dark .theme-toggle .icon-moon { display: none; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0 11px;
  border: 1px solid var(--ink-12);
  border-radius: 14px;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2.4px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

/* ---------- Decorative blobs ---------- */
.blob {
  position: absolute;
  z-index: 0;
  border-radius: 46% 54% 62% 38% / 47% 40% 60% 53%;
  filter: blur(2px);
  opacity: 0.55;
  pointer-events: none;
}
.blob--sage { background: var(--sage-tint); }
.blob--butter { background: var(--butter-tint); }
.blob--cherry { background: var(--cherry-tint); }
.blob--sky { background: var(--sky-tint); }
@media (prefers-reduced-motion: no-preference) {
  .blob--float { animation: blobFloat 16s var(--ease) infinite alternate; }
}
@keyframes blobFloat {
  0% { transform: translateY(0) rotate(0deg) scale(1); }
  100% { transform: translateY(-26px) rotate(8deg) scale(1.06); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(var(--s-5), 7vw, var(--s-7));
  padding-bottom: clamp(var(--s-5), 7vw, var(--s-7));
  overflow: hidden;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--s-6);
  align-items: center;
}
.hero-copy { max-width: 640px; }
.hero h1 { margin-block: var(--s-2) var(--s-3); }
.hero .lead { margin-bottom: var(--s-4); }
.hero-meta {
  margin-top: var(--s-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3) var(--s-5);
  align-items: center;
}
.hero-meta .meta-item {
  display: flex;
  flex-direction: column;
}
.hero-meta .meta-num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1;
}
.hero-meta .meta-label {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* Hero art — rising-sun arc + pastry plate */
.hero-art {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 460px;
  margin-inline: auto;
}
.hero-art svg { width: 100%; height: 100%; overflow: visible; }
@media (prefers-reduced-motion: no-preference) {
  .sun-arc { animation: sunRise 2.2s var(--ease) both; transform-origin: 50% 100%; }
  .steam-free-rays line { animation: rayPulse 4s ease-in-out infinite; }
  .pastry-bob { animation: bob 6s ease-in-out infinite; transform-origin: center; }
}
@keyframes sunRise {
  0% { transform: translateY(40px) scale(0.85); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
@keyframes rayPulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.9; }
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* ---------- Trust strip ---------- */
.trust-strip {
  border-block: 1px solid var(--line);
  background: color-mix(in srgb, var(--card) 55%, transparent);
}
.trust-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s-3) var(--s-5);
  padding-block: var(--s-3);
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.01em;
}
.trust-item svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--sage); }

/* ---------- Section headers ---------- */
.section-head {
  max-width: 720px;
  margin-bottom: var(--s-5);
}
.section-head.center { margin-inline: auto; }
.section-head .kicker { margin-bottom: var(--s-2); }
.section-head p { margin-top: var(--s-2); }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: var(--s-3); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--s-4);
  box-shadow: var(--shadow-s);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

/* Service preview card */
.svc-card {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  overflow: hidden;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.svc-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--sage-tint);
  color: var(--sage);
  margin-bottom: var(--s-1);
}
.svc-icon svg { width: 32px; height: 32px; }
.svc-card:nth-child(2n) .svc-icon { background: var(--butter-tint); color: #b9851f; }
.svc-card:nth-child(3n) .svc-icon { background: var(--cherry-tint); color: var(--cherry); }
.svc-card:nth-child(4n) .svc-icon { background: var(--sky-tint); color: #5a8ea0; }
.svc-card h3 { font-size: 1.32rem; }
.svc-card p { color: var(--muted); font-size: 0.98rem; flex-grow: 1; }
.svc-card .svc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--s-1);
  padding-top: var(--s-2);
  border-top: 1px solid var(--line);
}
.svc-card .price {
  font-family: var(--font-display);
  font-size: 1.5rem;
}

/* ---------- Why us / stats ---------- */
.stats-band {
  background: var(--ink);
  color: var(--off-white);
  border-radius: var(--radius-l);
  padding: clamp(var(--s-5), 5vw, var(--s-7));
  position: relative;
  overflow: hidden;
}
html.theme-dark .stats-band { background: #15140F; }
.stats-band .kicker { color: var(--butter); }
.stats-band h2 { color: var(--off-white); }
.stats-band .lead { color: rgba(251, 247, 239, 0.78); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
  margin-top: var(--s-5);
  position: relative;
  z-index: 2;
}
.stat .stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  line-height: 1;
  color: var(--butter);
}
.stat:nth-child(2) .stat-num { color: var(--sky); }
.stat:nth-child(3) .stat-num { color: var(--sage); }
.stat:nth-child(4) .stat-num { color: var(--cherry); }
.stat .stat-label {
  margin-top: var(--s-1);
  color: rgba(251, 247, 239, 0.72);
  font-size: 0.95rem;
}

/* ---------- Testimonials ---------- */
.testi-card {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.testi-card .quote-mark {
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 0.6;
  color: var(--butter);
  height: 1.6rem;
}
.testi-card blockquote {
  font-size: 1.08rem;
  line-height: 1.55;
  font-weight: 500;
}
.testi-card .stars { color: var(--butter); letter-spacing: 2px; font-size: 0.95rem; }
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: var(--s-1);
}
.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #fff;
  flex-shrink: 0;
}
.avatar--sage { background: var(--sage); }
.avatar--cherry { background: var(--cherry); }
.avatar--sky { background: #6ba0b3; }
.avatar--butter { background: #d9a52f; color: var(--ink); }
.testi-author .who { font-weight: 700; font-size: 0.98rem; line-height: 1.2; }
.testi-author .where { font-size: 0.84rem; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: var(--cherry);
  color: #fff;
  border-radius: var(--radius-l);
  padding: clamp(var(--s-5), 6vw, var(--s-8)) var(--s-4);
  text-align: center;
  overflow: hidden;
}
.cta-band h2 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.6rem); }
.cta-band p { color: rgba(255,255,255,0.9); margin-top: var(--s-2); }
.cta-band .btn-row { justify-content: center; margin-top: var(--s-4); position: relative; z-index: 2; }
.cta-band .btn--light:hover { box-shadow: 0 14px 40px -16px rgba(0,0,0,0.5); }
.cta-band-inner { position: relative; z-index: 2; }
.cta-blob {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  z-index: 1;
  pointer-events: none;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(251, 247, 239, 0.74);
  padding-top: var(--s-7);
  margin-top: var(--s-7);
}
html.theme-dark .site-footer { background: #15140F; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: var(--s-5);
  padding-bottom: var(--s-6);
}
.footer-brand .brand { color: var(--off-white); margin-bottom: var(--s-2); }
.footer-brand p { font-size: 0.95rem; max-width: 34ch; }
.footer-col h4 {
  color: var(--off-white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: var(--s-2);
}
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col address {
  color: rgba(251, 247, 239, 0.74);
  font-style: normal;
  font-size: 0.96rem;
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--butter); }
.footer-col address { line-height: 1.7; }
.footer-hours { display: grid; grid-template-columns: auto auto; gap: 4px 16px; font-size: 0.92rem; }
.footer-hours dt { color: rgba(251,247,239,0.62); }
.footer-hours dd { text-align: right; }
.footer-bottom {
  border-top: 1px solid rgba(251, 247, 239, 0.14);
  padding-block: var(--s-3);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-2);
  font-size: 0.86rem;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(251,247,239,0.18);
  color: rgba(251,247,239,0.82);
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.3s var(--ease);
}
.footer-social a:hover { background: var(--butter); color: var(--ink); transform: translateY(-3px); border-color: var(--butter); }
.footer-social svg { width: 19px; height: 19px; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }
[data-reveal-delay="5"] { transition-delay: 0.40s; }

/* ============================================================
   SERVICES / MENU
   ============================================================ */
.menu-list { display: flex; flex-direction: column; gap: var(--s-2); }
.menu-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-4);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-s);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.menu-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--sage); }
.menu-item .m-icon {
  width: 56px; height: 56px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 16px;
  background: var(--sage-tint);
  color: var(--sage);
}
.menu-item .m-icon svg { width: 30px; height: 30px; }
.menu-item:nth-child(4n+2) .m-icon { background: var(--butter-tint); color: #b9851f; }
.menu-item:nth-child(4n+3) .m-icon { background: var(--cherry-tint); color: var(--cherry); }
.menu-item:nth-child(4n+4) .m-icon { background: var(--sky-tint); color: #5a8ea0; }
.menu-item .m-body { min-width: 0; }
.menu-item .m-title {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.menu-item .m-title h3 { font-size: 1.28rem; }
.menu-item .m-desc { color: var(--muted); font-size: 0.97rem; margin-top: 3px; }
.menu-item .m-detail { font-size: 0.85rem; color: var(--ink-55); margin-top: 5px; }
.menu-item .m-price {
  font-family: var(--font-display);
  font-size: 1.7rem;
  white-space: nowrap;
}
.menu-item .m-price .free { color: var(--sage); font-size: 1.2rem; }
.menu-item .m-cta { white-space: nowrap; }

.badge-pop {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--butter);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: var(--radius-pill);
}
.menu-item--popular {
  border-color: var(--butter);
  border-width: 2px;
  box-shadow: 0 16px 44px -22px rgba(242, 193, 78, 0.7);
}
.menu-item--popular::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(120deg, transparent 70%, var(--butter-tint));
  opacity: 0.5;
  pointer-events: none;
}

.menu-note {
  margin-top: var(--s-3);
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu-note svg { width: 20px; height: 20px; color: var(--sage); flex-shrink: 0; }

/* Menu category tabs (visual grouping) */
.menu-cats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-1);
  margin-bottom: var(--s-4);
}
.menu-cat-pill {
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: var(--surface);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--muted);
}
.menu-cat-pill[data-active="true"] { background: var(--ink); color: var(--off-white); border-color: var(--ink); }

/* ============================================================
   ABOUT
   ============================================================ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  align-items: center;
}
.story-figure {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.story-figure svg { width: 100%; height: 100%; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); }
.value-card { display: flex; flex-direction: column; gap: var(--s-1); }
.value-card .v-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 15px;
  background: var(--cherry-tint);
  color: var(--cherry);
  margin-bottom: var(--s-1);
}
.value-card:nth-child(2) .v-icon { background: var(--sage-tint); color: var(--sage); }
.value-card:nth-child(3) .v-icon { background: var(--sky-tint); color: #5a8ea0; }
.value-card .v-icon svg { width: 28px; height: 28px; }
.value-card h3 { font-size: 1.2rem; }
.value-card p { color: var(--muted); font-size: 0.96rem; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-3); }
.team-card { text-align: center; }
.team-card .t-avatar {
  width: 110px; height: 110px;
  border-radius: 50%;
  margin: 0 auto var(--s-2);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: #fff;
  position: relative;
  box-shadow: var(--shadow-s);
}
.team-card:nth-child(4n+1) .t-avatar { background: var(--sage); }
.team-card:nth-child(4n+2) .t-avatar { background: var(--cherry); }
.team-card:nth-child(4n+3) .t-avatar { background: #6ba0b3; }
.team-card:nth-child(4n+4) .t-avatar { background: #d9a52f; color: var(--ink); }
.team-card h3 { font-size: 1.18rem; }
.team-card .role { color: var(--accent); font-weight: 700; font-size: 0.88rem; }
.team-card p { color: var(--muted); font-size: 0.92rem; margin-top: 6px; }

.creds-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-2);
}
.cred-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  background: var(--surface);
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-s);
}
.cred-chip svg { width: 22px; height: 22px; color: var(--sage); flex-shrink: 0; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: var(--s-2);
}
.tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-s);
  cursor: pointer;
  isolation: isolate;
}
.tile--wide { grid-column: span 2; }
.tile--tall { grid-row: span 2; }
.tile-art { position: absolute; inset: 0; transition: transform 0.6s var(--ease); }
.tile:hover .tile-art { transform: scale(1.08); }
.tile-art svg { width: 100%; height: 100%; }
.tile-cap {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--s-3);
  background: linear-gradient(to top, rgba(35,33,28,0.72) 0%, rgba(35,33,28,0.1) 50%, transparent 75%);
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  z-index: 2;
}
.tile:hover .tile-cap, .tile:focus-within .tile-cap { opacity: 1; transform: none; }
.tile-cap .t-kicker {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--butter);
}
.tile-cap h3 { color: #fff; font-size: 1.25rem; margin-top: 4px; }
.tile-cap p { font-size: 0.88rem; color: rgba(255,255,255,0.85); margin-top: 4px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--s-5);
  align-items: start;
}
.contact-methods { display: flex; flex-direction: column; gap: var(--s-2); margin-bottom: var(--s-4); }
.method {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-3);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.method:hover { transform: translateX(5px); box-shadow: var(--shadow-s); }
.method .m-ic {
  width: 50px; height: 50px; flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--sage-tint); color: var(--sage);
}
.method:nth-child(2) .m-ic { background: var(--cherry-tint); color: var(--cherry); }
.method:nth-child(3) .m-ic { background: var(--sky-tint); color: #5a8ea0; }
.method .m-ic svg { width: 26px; height: 26px; }
.method .m-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 700; }
.method .m-val { font-weight: 600; font-size: 1.05rem; }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-s);
}
.hours-table caption {
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.3rem;
  padding: var(--s-3) var(--s-3) var(--s-1);
}
.hours-table th, .hours-table td { padding: 13px var(--s-3); text-align: left; font-size: 0.97rem; }
.hours-table tbody tr { border-top: 1px solid var(--line); }
.hours-table td:last-child { text-align: right; font-weight: 600; }
.hours-table tr.is-today { background: var(--butter-tint); }
.hours-table tr.is-today td { font-weight: 700; }
html.theme-dark .hours-table tr.is-today { background: var(--butter-tint); }

/* Forms */
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: clamp(var(--s-3), 4vw, var(--s-5));
  box-shadow: var(--shadow);
}
.field { margin-bottom: var(--s-3); }
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 7px;
}
.field .req { color: var(--cherry); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1.5px solid var(--ink-12);
  border-radius: var(--radius-s);
  font-size: 1rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background-color 0.2s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--cherry);
  box-shadow: var(--ring);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-55); }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--cherry); }
.field .error-msg {
  display: none;
  color: var(--cherry);
  font-size: 0.84rem;
  margin-top: 6px;
  font-weight: 600;
}
.field.has-error .error-msg { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-2); }

.form-success {
  display: none;
  align-items: flex-start;
  gap: var(--s-2);
  padding: var(--s-3);
  border-radius: var(--radius);
  background: var(--sage-tint);
  border: 1px solid var(--sage);
  margin-bottom: var(--s-3);
}
.form-success.is-active { display: flex; }
.form-success svg { width: 28px; height: 28px; color: var(--sage); flex-shrink: 0; }
.form-success h4 { font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; }
.form-success p { font-size: 0.92rem; color: var(--muted); }

/* Map placeholder */
.map-card {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 10;
  background: var(--sky-tint);
}
.map-card svg { width: 100%; height: 100%; display: block; }
.map-pin {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -100%);
  z-index: 3;
}
.map-pin svg { width: 54px; height: 54px; filter: drop-shadow(0 6px 10px rgba(35,33,28,0.3)); }
@media (prefers-reduced-motion: no-preference) {
  .map-pin { animation: pinBounce 2.4s ease-in-out infinite; }
}
@keyframes pinBounce {
  0%, 100% { transform: translate(-50%, -100%); }
  50% { transform: translate(-50%, -118%); }
}
.map-badge {
  position: absolute;
  bottom: var(--s-3); left: var(--s-3);
  z-index: 3;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 12px 18px;
  box-shadow: var(--shadow-s);
  font-size: 0.92rem;
}
.map-badge strong { display: block; font-size: 1rem; }

/* ============================================================
   CHECKOUT
   ============================================================ */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr;
  gap: var(--s-4);
  align-items: start;
}
.checkout-main { display: flex; flex-direction: column; gap: var(--s-3); }
.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: clamp(var(--s-3), 3vw, var(--s-4));
  box-shadow: var(--shadow-s);
}
.panel-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--s-3);
}
.panel-step {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--off-white);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 1rem;
  flex-shrink: 0;
}
.panel-head h2 { font-family: var(--font-display); font-size: 1.4rem; }

/* Time slot pills */
.slot-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.slot {
  position: relative;
  cursor: pointer;
}
.slot input { position: absolute; opacity: 0; pointer-events: none; }
.slot span {
  display: block;
  padding: 11px 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--ink-12);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s var(--ease);
  background: var(--bg);
}
.slot:hover span { border-color: var(--sage); }
.slot input:checked + span {
  background: var(--ink);
  color: var(--off-white);
  border-color: var(--ink);
}
.slot input:focus-visible + span { box-shadow: var(--ring); }

/* Payment tabs */
.pay-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--s-3);
}
.pay-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: var(--radius-s);
  border: 1.5px solid var(--ink-12);
  background: var(--bg);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.pay-tab[aria-selected="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--off-white);
}
.pay-tab svg { width: 20px; height: 20px; }
.pay-panel { display: none; }
.pay-panel.is-active { display: block; }

.redirect-note {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: var(--s-3);
  border-radius: var(--radius);
  background: var(--sky-tint);
  border: 1px dashed var(--sky);
  font-size: 0.96rem;
}
.redirect-note svg { width: 34px; height: 34px; flex-shrink: 0; color: #5a8ea0; }

/* Card form formatting */
.card-input-wrap { position: relative; }
.card-input-wrap .card-brand-hint {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* Order summary */
.summary {
  position: sticky;
  top: calc(var(--header-h) + 16px);
}
.summary-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.summary-head {
  background: var(--ink);
  color: var(--off-white);
  padding: var(--s-3) var(--s-4);
}
.summary-head h2 { color: var(--off-white); font-size: 1.3rem; }
.summary-head p { font-size: 0.85rem; color: rgba(251,247,239,0.7); margin-top: 2px; }
.summary-body { padding: var(--s-4); }
.summary-line {
  display: flex;
  justify-content: space-between;
  gap: var(--s-2);
  padding: 9px 0;
  font-size: 0.97rem;
}
.summary-line .s-label { color: var(--muted); }
.summary-line.s-item .s-label { color: var(--text); font-weight: 600; }
.summary-divider { border: 0; border-top: 1px solid var(--line); margin: var(--s-1) 0; }
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: var(--s-2);
  margin-top: var(--s-1);
  border-top: 2px solid var(--ink);
}
.summary-total .t-label { font-weight: 700; font-size: 1.05rem; }
.summary-total .t-val { font-family: var(--font-display); font-size: 1.9rem; }
.discount-line .s-val { color: var(--sage); font-weight: 700; }

/* Promo + gift toggle */
.summary-extras { padding: 0 var(--s-4) var(--s-4); display: flex; flex-direction: column; gap: var(--s-2); }
.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-2);
  padding: 12px 14px;
  border-radius: var(--radius-s);
  background: var(--bg);
  border: 1px solid var(--line);
}
.toggle-row .tr-label { font-weight: 600; font-size: 0.92rem; display: flex; align-items: center; gap: 8px; }
.toggle-row .tr-label svg { width: 18px; height: 18px; color: var(--sage); }
.switch { position: relative; width: 46px; height: 26px; flex-shrink: 0; }
.switch input { position: absolute; opacity: 0; width: 100%; height: 100%; cursor: pointer; margin: 0; }
.switch .track {
  position: absolute; inset: 0;
  background: var(--ink-12);
  border-radius: var(--radius-pill);
  transition: background-color 0.25s var(--ease);
}
.switch .track::before {
  content: "";
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.25s var(--ease);
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.switch input:checked + .track { background: var(--sage); }
.switch input:checked + .track::before { transform: translateX(20px); }
.switch input:focus-visible + .track { box-shadow: var(--ring); }

.promo-field { display: none; gap: 8px; }
.promo-field.is-active { display: flex; }
.promo-field input {
  flex: 1;
  padding: 11px 14px;
  border: 1.5px solid var(--ink-12);
  border-radius: var(--radius-s);
  background: var(--bg);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.promo-field input:focus { outline: none; border-color: var(--cherry); box-shadow: var(--ring); }
.promo-msg { font-size: 0.84rem; font-weight: 600; margin-top: 2px; min-height: 1.1em; }
.promo-msg.ok { color: var(--sage); }
.promo-msg.bad { color: var(--cherry); }

.gift-field { display: none; flex-direction: column; gap: 8px; }
.gift-field.is-active { display: flex; }

/* Secure footer in checkout */
.secure-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: var(--s-2);
  font-size: 0.86rem;
  color: var(--muted);
  font-weight: 600;
}
.secure-row svg { width: 20px; height: 20px; color: var(--sage); }
.gateway-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: var(--s-2);
}
.chip {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 6px 12px;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--muted);
}
.chip--visa { color: #1a1f71; border-color: #1a1f71; }
.chip--mc { color: #c8202f; border-color: #eb7b1f; }
.chip--amex { color: #2671b9; border-color: #2671b9; }
.chip--stripe { color: #635bff; border-color: #635bff; }
.chip--paypal { color: #003087; border-color: #009cde; }
.chip--apple { color: var(--text); border-color: var(--ink-55); }
.chip--klarna { color: #d96176; border-color: #ffb3c7; background: #ffeaef; }
html.theme-dark .chip--visa, html.theme-dark .chip--amex, html.theme-dark .chip--paypal { color: #9ec3ee; }
html.theme-dark .chip--stripe { color: #b3aeff; }
html.theme-dark .chip--klarna { background: #3a2630; color: #ffb3c7; }

.demo-note {
  margin-top: var(--s-3);
  font-size: 0.8rem;
  color: var(--ink-55);
  text-align: center;
  font-style: italic;
}

.pay-btn-wrap { margin-top: var(--s-3); }
.btn.is-loading { pointer-events: none; opacity: 0.92; }
.btn .spinner {
  display: none;
  width: 19px; height: 19px;
  border: 2.4px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.btn.is-loading .spinner { display: block; }
.btn.is-loading .btn-label { opacity: 0.85; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   SUCCESS
   ============================================================ */
.success-wrap {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}
.check-circle {
  width: 120px; height: 120px;
  margin: 0 auto var(--s-4);
  border-radius: 50%;
  background: var(--sage-tint);
  display: grid;
  place-items: center;
  position: relative;
}
.check-circle svg { width: 64px; height: 64px; }
.check-circle .ring {
  position: absolute; inset: -8px;
  border: 3px solid var(--sage);
  border-radius: 50%;
  opacity: 0;
}
@media (prefers-reduced-motion: no-preference) {
  .check-circle .ring { animation: ringPop 0.7s var(--ease) 0.3s both; }
  .check-circle svg .tick-path {
    stroke-dasharray: 80;
    stroke-dashoffset: 80;
    animation: drawTick 0.7s var(--ease) 0.2s both;
  }
  .check-circle { animation: popIn 0.5s var(--ease) both; }
}
@keyframes drawTick { to { stroke-dashoffset: 0; } }
@keyframes ringPop {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.12); opacity: 0; }
}
@keyframes popIn {
  0% { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.ref-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin: var(--s-3) auto;
  padding: var(--s-2) var(--s-4);
  background: var(--surface);
  border: 2px dashed var(--sage);
  border-radius: var(--radius);
}
.ref-box .ref-label { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); font-weight: 700; }
.ref-box .ref-code { font-family: var(--font-display); font-size: 1.7rem; letter-spacing: 0.06em; }

.success-summary {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--s-4);
  text-align: left;
  margin: var(--s-4) 0;
  box-shadow: var(--shadow-s);
}
.success-summary .ss-line {
  display: flex; justify-content: space-between; gap: var(--s-2);
  padding: 8px 0;
  font-size: 0.97rem;
}
.success-summary .ss-line + .ss-line { border-top: 1px solid var(--line); }
.success-summary .ss-label { color: var(--muted); }
.success-summary .ss-val { font-weight: 600; text-align: right; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
  text-align: left;
  margin: var(--s-5) 0;
}
.step { display: flex; flex-direction: column; gap: 8px; }
.step .step-num {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--cherry);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
}
.step:nth-child(2) .step-num { background: var(--sage); }
.step:nth-child(3) .step-num { background: var(--sky); color: var(--ink); }
.step h3 { font-size: 1.1rem; }
.step p { font-size: 0.92rem; color: var(--muted); }

/* ============================================================
   BOOKINGS
   ============================================================ */
.booking-types { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); }
.booking-card {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  overflow: hidden;
}
.booking-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.booking-card .b-art {
  height: 140px;
  margin: calc(-1 * var(--s-4)) calc(-1 * var(--s-4)) 0;
  position: relative;
  overflow: hidden;
}
.booking-card .b-art svg { width: 100%; height: 100%; }
.booking-card h3 { font-size: 1.4rem; margin-top: var(--s-1); }
.booking-card .b-meta {
  display: flex; gap: var(--s-2); flex-wrap: wrap;
  font-size: 0.84rem; color: var(--muted); font-weight: 600;
}
.booking-card .b-meta span { display: inline-flex; align-items: center; gap: 6px; }
.booking-card .b-meta svg { width: 16px; height: 16px; color: var(--sage); }
.booking-card p { color: var(--muted); font-size: 0.97rem; flex-grow: 1; }
.booking-card .price { font-family: var(--font-display); font-size: 1.5rem; }

/* Events list */
.event-list { display: flex; flex-direction: column; gap: var(--s-2); }
.event-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--s-3);
  align-items: center;
  padding: var(--s-3);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-s);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.event-row:hover { transform: translateX(5px); box-shadow: var(--shadow); }
.event-date {
  text-align: center;
  flex-shrink: 0;
  width: 72px;
  padding: 10px;
  border-radius: var(--radius-s);
  background: var(--cherry-tint);
}
.event-date .e-day { font-family: var(--font-display); font-size: 1.7rem; line-height: 1; color: var(--cherry); }
.event-date .e-mon { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; color: var(--cherry); }
.event-row:nth-child(2n) .event-date { background: var(--sage-tint); }
.event-row:nth-child(2n) .event-date .e-day, .event-row:nth-child(2n) .event-date .e-mon { color: var(--sage); }
.event-row:nth-child(3n) .event-date { background: var(--sky-tint); }
.event-row:nth-child(3n) .event-date .e-day, .event-row:nth-child(3n) .event-date .e-mon { color: #5a8ea0; }
.event-info h3 { font-size: 1.2rem; }
.event-info p { font-size: 0.92rem; color: var(--muted); }

/* FAQ accordion */
.faq-list { display: flex; flex-direction: column; gap: var(--s-1); max-width: 800px; margin-inline: auto; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.faq-item[open] { border-color: var(--sage); box-shadow: var(--shadow-s); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-2);
  padding: var(--s-3) var(--s-4);
  cursor: pointer;
  font-weight: 700;
  font-size: 1.08rem;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-ic {
  flex-shrink: 0;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--sage-tint);
  color: var(--sage);
  transition: transform 0.3s var(--ease);
}
.faq-item summary .faq-ic svg { width: 18px; height: 18px; }
.faq-item[open] summary .faq-ic { transform: rotate(45deg); background: var(--cherry-tint); color: var(--cherry); }
.faq-answer { padding: 0 var(--s-4) var(--s-4); color: var(--muted); font-size: 0.98rem; }
.faq-answer p + p { margin-top: var(--s-1); }

/* Page hero (interior) */
.page-hero {
  position: relative;
  padding-top: clamp(var(--s-5), 6vw, var(--s-7));
  padding-bottom: var(--s-4);
  overflow: hidden;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  margin-block: var(--s-2) var(--s-2);
}
.breadcrumb {
  font-size: 0.86rem;
  color: var(--muted);
  display: flex;
  gap: 8px;
  align-items: center;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { opacity: 0.5; }

/* ---------- Sticky mobile "Book a table" bar ---------- */
.mobile-book-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-2);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px -12px rgba(35,33,28,0.25);
  transform: translateY(120%);
  transition: transform 0.4s var(--ease);
}
.mobile-book-bar.is-shown { transform: none; }
.mobile-book-bar .mb-info { line-height: 1.2; }
.mobile-book-bar .mb-info strong { font-family: var(--font-display); font-size: 1.05rem; display: block; }
.mobile-book-bar .mb-info span { font-size: 0.78rem; color: var(--muted); }
.mobile-book-bar .btn { flex-shrink: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-col--hours { grid-column: 1 / -1; }
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--s-4); }
  .hero-art { max-width: 360px; order: -1; }
  .story-grid { grid-template-columns: 1fr; gap: var(--s-4); }
  .story-figure { max-width: 460px; }
  .contact-grid { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .summary { position: static; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-4); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-types { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  :root { --header-h: 68px; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: var(--s-3);
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), visibility 0.3s;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav-links.is-open { transform: none; opacity: 1; visibility: visible; }
  .nav-links a { padding: 14px 16px; font-size: 1.05rem; border-radius: var(--radius-s); }
  .nav-links a::after { display: none; }
  .nav-links a[aria-current="page"] { background: var(--sage-tint); color: var(--text); }
  .nav-links .btn { margin-top: var(--s-1); }
  .grid-3, .grid-4, .values-grid, .booking-types { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .section { padding-block: var(--s-6); }
  .menu-item {
    grid-template-columns: 1fr;
    gap: var(--s-2);
    text-align: left;
  }
  .menu-item .m-icon { display: none; }
  .menu-item .m-foot-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-2);
  }
  .field-row { grid-template-columns: 1fr; }
  /* show sticky mobile bar */
  body.has-book-bar { padding-bottom: 84px; }
  .mobile-book-bar { display: flex; }
}

@media (max-width: 560px) {
  .container { padding-inline: var(--s-2); }
  .display { font-size: clamp(2.6rem, 13vw, 3.6rem); }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: var(--s-3); }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .tile--wide, .tile--tall { grid-column: auto; grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--s-4); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-meta { gap: var(--s-2) var(--s-4); }
  .pay-tabs { gap: 6px; }
  .pay-tab { padding: 10px 13px; font-size: 0.85rem; }
  .event-row { grid-template-columns: auto 1fr; }
  .event-row .btn { grid-column: 1 / -1; }
}
