/* ============================================================
   UNCLE MICK'S — Coastal Kitchen & Raw Bar
   Shared design system
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* palette */
  --teal-900: #082a2c;
  --teal-800: #0d3b3e;
  --teal-700: #11514f;
  --teal-600: #1c6b66;
  --sand-100: #fbf7ef;
  --sand-200: #f6efe3;
  --sand-300: #ece0cb;
  --cream:    #fffdf8;
  --brass:    #c98a3a;
  --brass-dk: #a86d27;
  --coral:    #e2674d;
  --coral-dk: #c64f37;
  --ink:      #1a1714;
  --ink-soft: #4a443d;
  --line:     rgba(13, 59, 62, 0.14);

  /* type */
  --display: "Fraunces", "Playfair Display", Georgia, serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* spacing / motion */
  --shell: min(1240px, 92vw);
  --radius: 18px;
  --radius-lg: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 6px 20px -10px rgba(8, 42, 44, 0.35);
  --shadow-md: 0 24px 60px -28px rgba(8, 42, 44, 0.45);
  --shadow-lg: 0 40px 90px -40px rgba(8, 42, 44, 0.55);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--sand-200);
  line-height: 1.65;
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.075rem);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
:focus-visible { outline: 3px solid var(--brass); outline-offset: 3px; border-radius: 4px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; line-height: 1.05; letter-spacing: -0.015em; color: var(--teal-900); }
.eyebrow {
  font-family: var(--body);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brass-dk);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--brass); display: inline-block; }
.eyebrow.center::after { content: ""; width: 28px; height: 2px; background: var(--brass); display: inline-block; }
.section-title { font-size: clamp(2rem, 1.4rem + 2.6vw, 3.4rem); }
.lead { font-size: clamp(1.05rem, 1rem + 0.4vw, 1.3rem); color: var(--ink-soft); }
.script-accent { font-style: italic; color: var(--brass-dk); }

/* ---------- Layout helpers ---------- */
.shell { width: var(--shell); margin-inline: auto; }
.section { padding: clamp(4.5rem, 3rem + 7vw, 9rem) 0; position: relative; }
.section-head { max-width: 680px; margin-bottom: 3.2rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .section-title { margin: 0.7rem 0 1rem; }
.tight { max-width: 60ch; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.95em 1.7em;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s, color 0.3s;
  will-change: transform;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn-primary { background: var(--coral); color: var(--cream); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--coral-dk); transform: translateY(-3px); box-shadow: 0 18px 36px -16px rgba(198, 79, 55, 0.7); }
.btn-ghost { border: 1.5px solid rgba(255,255,255,0.55); color: var(--cream); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); }
.btn-dark { background: var(--teal-800); color: var(--cream); box-shadow: var(--shadow-sm); }
.btn-dark:hover { background: var(--teal-900); transform: translateY(-3px); }
.btn-line { border: 1.5px solid var(--teal-800); color: var(--teal-800); }
.btn-line:hover { background: var(--teal-800); color: var(--cream); transform: translateY(-3px); }
.link-arrow { font-weight: 600; color: var(--coral-dk); display: inline-flex; align-items: center; gap: 0.4em; }
.link-arrow svg { transition: transform 0.35s var(--ease); width: 1em; }
.link-arrow:hover svg { transform: translateX(5px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: background 0.45s var(--ease), padding 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.nav.scrolled {
  background: rgba(251, 247, 239, 0.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  padding: 0.6rem 0;
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -22px rgba(8,42,44,0.5);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: flex; align-items: center; gap: 0.7rem; font-family: var(--display); font-weight: 600; font-size: 1.3rem; color: var(--cream); letter-spacing: -0.01em; transition: color 0.4s; }
.nav.scrolled .brand { color: var(--teal-900); }
.brand .mark {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; flex: none;
  background: var(--brass);
  color: var(--teal-900);
  font-weight: 700; font-size: 1.05rem;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.35);
}
.brand small { display: block; font-family: var(--body); font-size: 0.6rem; letter-spacing: 0.32em; text-transform: uppercase; opacity: 0.75; font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  color: rgba(255,255,255,0.92);
  font-weight: 500; font-size: 0.95rem;
  position: relative;
  transition: color 0.4s;
}
.nav.scrolled .nav-links a { color: var(--ink-soft); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 2px; background: var(--brass);
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--brass); }
.nav.scrolled .nav-links a.active { color: var(--brass-dk); }

.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-phone { display: inline-flex; align-items: center; gap: 0.5em; font-weight: 600; font-size: 0.92rem; color: var(--cream); transition: color 0.4s; }
.nav.scrolled .nav-phone { color: var(--teal-800); }
.nav-phone svg { width: 1em; }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; position: relative; z-index: 110; }
.nav-toggle span { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--cream); border-radius: 2px; transition: 0.35s var(--ease); }
.nav.scrolled .nav-toggle span { background: var(--teal-900); }
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
body.menu-open .nav-toggle span { background: var(--cream); }
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--cream);
  background: var(--teal-900);
}
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 90% at 80% 10%, rgba(201,138,58,0.18), transparent 55%),
    linear-gradient(180deg, rgba(8,42,44,0.35) 0%, rgba(8,42,44,0.15) 40%, rgba(8,42,44,0.75) 100%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; width: var(--shell); margin-inline: auto; padding: 9rem 0 5rem; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: center; }
.hero-copy { max-width: 620px; }
.hero h1 {
  color: var(--cream);
  font-size: clamp(2.7rem, 1.8rem + 5.2vw, 5.4rem);
  line-height: 0.98;
  margin: 1.3rem 0 1.4rem;
  letter-spacing: -0.02em;
}
.hero h1 em { font-style: italic; color: var(--brass); }
.hero .eyebrow { color: var(--brass); }
.hero .eyebrow::before { background: var(--brass); }
.hero-sub { font-size: clamp(1.05rem, 1rem + 0.45vw, 1.3rem); color: rgba(255,255,255,0.85); max-width: 52ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 1.8rem 2.6rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.16); }
.hero-meta div span { display: block; }
.hero-meta .num { font-family: var(--display); font-size: 1.9rem; color: var(--brass); line-height: 1; }
.hero-meta .lbl { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 0.4rem; }

/* hero visual stack (plated dish card) */
.hero-visual { position: relative; justify-self: end; width: 100%; max-width: 460px; }
.hero-plate {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  transform: rotate(2deg);
  border: 6px solid rgba(255,255,255,0.08);
}
.hero-plate img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; z-index: 3;
  background: var(--cream); color: var(--teal-900);
  border-radius: 16px; padding: 0.9rem 1.1rem;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 0.7rem;
}
.hero-badge.tl { top: -22px; left: -26px; transform: rotate(-4deg); }
.hero-badge.br { bottom: -20px; right: -18px; transform: rotate(3deg); }
.hero-badge .stars { color: var(--brass); letter-spacing: 0.1em; font-size: 0.9rem; }
.hero-badge strong { font-family: var(--display); font-size: 1.05rem; display: block; }
.hero-badge small { font-size: 0.72rem; color: var(--ink-soft); }
.hero-scroll {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.7);
}
.hero-scroll .mouse { width: 22px; height: 36px; border: 2px solid rgba(255,255,255,0.5); border-radius: 12px; position: relative; }
.hero-scroll .mouse::after { content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 3px; height: 7px; background: var(--brass); border-radius: 2px; animation: scrollDot 1.8s var(--ease) infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%, 11px); } 100% { opacity: 0; } }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative; padding: 11rem 0 5rem; color: var(--cream);
  background: var(--teal-900); overflow: hidden;
}
.page-hero canvas { position: absolute; inset: 0; z-index: 0; }
.page-hero::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(8,42,44,0.5), rgba(8,42,44,0.82)); z-index:1; }
.page-hero .shell { position: relative; z-index: 2; }
.page-hero h1 { color: var(--cream); font-size: clamp(2.4rem, 1.7rem + 3.6vw, 4.2rem); margin: 1rem 0 0.8rem; }
.page-hero .eyebrow { color: var(--brass); }
.page-hero .eyebrow::before { background: var(--brass); }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 56ch; font-size: 1.1rem; }
.crumbs { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 1.6rem; }
.crumbs a:hover { color: var(--brass); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 0.1s; }
[data-reveal][data-delay="2"] { transition-delay: 0.2s; }
[data-reveal][data-delay="3"] { transition-delay: 0.3s; }
[data-reveal][data-delay="4"] { transition-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { background: var(--teal-800); color: var(--sand-200); padding: 1.1rem 0; overflow: hidden; border-block: 1px solid rgba(255,255,255,0.08); }
.marquee-track { display: flex; gap: 3rem; white-space: nowrap; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span { font-family: var(--display); font-style: italic; font-size: 1.3rem; display: inline-flex; align-items: center; gap: 3rem; color: var(--sand-200); }
.marquee span::after { content: "✦"; color: var(--brass); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   STORY / SPLIT
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 1rem + 4vw, 5rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.story-media { position: relative; }
.story-media .frame {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
  aspect-ratio: 5/6;
}
.story-media .frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.story-media:hover .frame img { transform: scale(1.05); }
.story-media .stamp {
  position: absolute; bottom: -28px; right: -22px;
  width: 130px; height: 130px; border-radius: 50%;
  background: var(--brass); color: var(--teal-900);
  display: grid; place-items: center; text-align: center;
  font-family: var(--display); font-weight: 600; line-height: 1.1;
  box-shadow: var(--shadow-md);
  animation: spinSlow 26s linear infinite;
}
.story-media .stamp span { font-size: 0.95rem; }
.story-media .stamp small { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; display: block; }
@keyframes spinSlow { to { transform: rotate(360deg); } }
.story-copy p + p { margin-top: 1.1rem; }
.signature { font-family: var(--display); font-style: italic; font-size: 1.6rem; color: var(--brass-dk); margin-top: 1.6rem; }
.signature small { display: block; font-family: var(--body); font-style: normal; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); margin-top: 0.3rem; }

/* ============================================================
   FEATURE / VALUE CARDS
   ============================================================ */
.section.alt { background: var(--sand-100); }
.section.dark { background: var(--teal-900); color: var(--sand-200); }
.section.dark h2, .section.dark h3 { color: var(--cream); }
.section.dark .lead { color: rgba(255,255,255,0.8); }
.section.dark .eyebrow { color: var(--brass); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.card {
  background: var(--cream); border-radius: var(--radius); padding: 2.1rem 1.9rem;
  border: 1px solid var(--line);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s;
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 0;
  background: linear-gradient(90deg, var(--brass), var(--coral));
  transition: width 0.5s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.card:hover::before { width: 100%; }
.card-ico {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: var(--sand-200); color: var(--brass-dk); margin-bottom: 1.3rem;
  transition: background 0.5s, color 0.5s;
}
.card:hover .card-ico { background: var(--teal-800); color: var(--brass); }
.card-ico svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.35rem; margin-bottom: 0.6rem; }
.card p { color: var(--ink-soft); font-size: 0.98rem; }

/* ============================================================
   MENU PREVIEW
   ============================================================ */
.menu-list { display: grid; gap: 0.4rem; }
.menu-row {
  display: grid; grid-template-columns: auto 1fr auto; gap: 1rem; align-items: baseline;
  padding: 1.15rem 0; border-bottom: 1px dashed var(--line);
  transition: padding-left 0.4s var(--ease);
}
.menu-row:hover { padding-left: 0.6rem; }
.menu-row .name { font-family: var(--display); font-size: 1.2rem; color: var(--teal-900); }
.menu-row .tag { font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--coral-dk); font-weight: 700; margin-left: 0.6rem; }
.menu-row .dots { border-bottom: 1px dotted var(--line); transform: translateY(-4px); }
.menu-row .desc { display: block; font-size: 0.9rem; color: var(--ink-soft); margin-top: 0.2rem; font-family: var(--body); }
.menu-row .price { font-family: var(--display); font-size: 1.2rem; color: var(--brass-dk); white-space: nowrap; }

.menu-cats { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.6rem; }
.menu-cats button {
  padding: 0.55em 1.2em; border-radius: 999px; font-weight: 600; font-size: 0.88rem;
  background: var(--cream); border: 1px solid var(--line); color: var(--ink-soft);
  transition: 0.35s var(--ease);
}
.menu-cats button.active, .menu-cats button:hover { background: var(--teal-800); color: var(--cream); border-color: var(--teal-800); transform: translateY(-2px); }
.menu-panel { display: none; }
.menu-panel.show { display: block; animation: fadeUp 0.6s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 1rem; }
.gallery-grid figure { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.gallery-grid figure:hover img { transform: scale(1.08); }
.gallery-grid figcaption {
  position: absolute; inset: auto 0 0 0; padding: 1.3rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(8,42,44,0.85));
  color: var(--cream); font-family: var(--display); font-size: 1.05rem;
  transform: translateY(8px); opacity: 0; transition: 0.5s var(--ease);
}
.gallery-grid figure:hover figcaption { transform: none; opacity: 1; }
.g-wide { grid-column: span 2; }
.g-tall { grid-row: span 2; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(8,42,44,0.94); display: none; place-items: center; padding: 5vw; }
.lightbox.open { display: grid; animation: fadeUp 0.3s ease; }
.lightbox img { max-width: 92vw; max-height: 84vh; border-radius: 14px; box-shadow: var(--shadow-lg); }
.lightbox button { position: absolute; top: 4vh; right: 5vw; color: var(--cream); font-size: 2rem; line-height: 1; }
.lightbox .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); color: var(--cream); font-size: 2.4rem; padding: 1rem; opacity: 0.7; transition: 0.3s; }
.lightbox .lb-nav:hover { opacity: 1; }
.lightbox .prev { left: 2vw; } .lightbox .next { right: 2vw; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.quote {
  background: var(--cream); border-radius: var(--radius); padding: 2.2rem 2rem;
  border: 1px solid var(--line); position: relative;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.quote:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.quote .mark { font-family: var(--display); font-size: 4rem; line-height: 0.6; color: var(--brass); opacity: 0.4; height: 1.4rem; }
.quote .stars { color: var(--brass); letter-spacing: 0.15em; margin-bottom: 0.9rem; }
.quote p { font-size: 1.02rem; color: var(--ink); }
.quote footer { display: flex; align-items: center; gap: 0.9rem; margin-top: 1.5rem; }
.quote .av { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.quote .who strong { display: block; font-family: var(--display); color: var(--teal-900); }
.quote .who small { color: var(--ink-soft); font-size: 0.82rem; }

/* ============================================================
   STATS BANNER
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat .num { font-family: var(--display); font-size: clamp(2.4rem, 1.8rem + 2vw, 3.6rem); color: var(--brass); line-height: 1; }
.stat .lbl { font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.72); margin-top: 0.6rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  padding: 1.5rem 0; font-family: var(--display); font-size: 1.2rem; color: var(--teal-900);
}
.faq-q .ico { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--brass); display: grid; place-items: center; color: var(--brass-dk); transition: 0.4s var(--ease); position: relative; }
.faq-q .ico::before, .faq-q .ico::after { content: ""; position: absolute; background: currentColor; border-radius: 2px; }
.faq-q .ico::before { width: 12px; height: 2px; }
.faq-q .ico::after { width: 2px; height: 12px; transition: transform 0.4s var(--ease); }
.faq-item.open .faq-q .ico { background: var(--brass); color: var(--teal-900); }
.faq-item.open .faq-q .ico::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq-a-inner { padding: 0 0 1.5rem; color: var(--ink-soft); max-width: 70ch; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { position: relative; overflow: hidden; background: var(--teal-900); color: var(--cream); text-align: center; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 120% at 50% 0%, rgba(201,138,58,0.22), transparent 60%);
}
.cta-band .shell { position: relative; z-index: 1; }
.cta-band h2 { color: var(--cream); font-size: clamp(2rem, 1.5rem + 2.4vw, 3.4rem); }
.cta-band p { color: rgba(255,255,255,0.82); max-width: 52ch; margin: 1rem auto 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FORMS (contact / reservation)
   ============================================================ */
.form-card { background: var(--cream); border-radius: var(--radius-lg); padding: clamp(1.8rem, 1rem + 3vw, 3rem); box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.field { margin-bottom: 1.3rem; }
.field label { display: block; font-weight: 600; font-size: 0.86rem; margin-bottom: 0.5rem; color: var(--teal-900); letter-spacing: 0.02em; }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.9em 1.1em; border-radius: 12px; border: 1.5px solid var(--line);
  background: var(--sand-100); font-family: inherit; font-size: 0.98rem; color: var(--ink);
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brass); background: var(--cream);
  box-shadow: 0 0 0 4px rgba(201,138,58,0.14);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.form-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 0.6rem; }
.form-success { display: none; background: var(--teal-800); color: var(--cream); padding: 1rem 1.2rem; border-radius: 12px; margin-bottom: 1.4rem; align-items: center; gap: 0.7rem; }
.form-success.show { display: flex; animation: fadeUp 0.5s ease; }

/* info cards (contact) */
.info-list { display: grid; gap: 1.1rem; }
.info-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.3rem; background: var(--cream); border-radius: var(--radius); border: 1px solid var(--line); transition: 0.4s var(--ease); }
.info-item:hover { transform: translateX(5px); box-shadow: var(--shadow-sm); }
.info-item .ico { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--sand-200); color: var(--brass-dk); display: grid; place-items: center; }
.info-item .ico svg { width: 22px; }
.info-item h4 { font-family: var(--body); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.2rem; }
.info-item p, .info-item a { font-family: var(--display); font-size: 1.15rem; color: var(--teal-900); }
.info-item a:hover { color: var(--coral-dk); }

.hours-table { width: 100%; }
.hours-table div { display: flex; justify-content: space-between; padding: 0.7rem 0; border-bottom: 1px dashed var(--line); }
.hours-table .day { font-weight: 600; color: var(--teal-900); }
.hours-table .hrs { color: var(--ink-soft); }
.hours-table .today { color: var(--coral-dk); font-weight: 700; }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 6px solid var(--cream); }
.map-embed iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }

/* ============================================================
   TEAM (about)
   ============================================================ */
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.team-card { text-align: center; }
.team-card .photo { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-sm); margin-bottom: 1.1rem; }
.team-card .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease), filter 0.6s; filter: saturate(0.9); }
.team-card:hover .photo img { transform: scale(1.06); filter: saturate(1.05); }
.team-card h3 { font-size: 1.3rem; }
.team-card .role { color: var(--coral-dk); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.5rem; }
.team-card p { color: var(--ink-soft); font-size: 0.94rem; }

/* timeline */
.timeline { position: relative; max-width: 760px; margin-inline: auto; padding-left: 2.4rem; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--brass), var(--coral)); }
.tl-item { position: relative; padding-bottom: 2.6rem; }
.tl-item::before { content: ""; position: absolute; left: -2.4rem; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--cream); border: 3px solid var(--brass); }
.tl-item:last-child { padding-bottom: 0; }
.tl-year { font-family: var(--display); font-size: 1.5rem; color: var(--brass-dk); }
.tl-item h3 { font-size: 1.2rem; margin: 0.2rem 0 0.4rem; }
.tl-item p { color: var(--ink-soft); }

/* ============================================================
   PROCESS / SERVICES detail
   ============================================================ */
.service-block { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2rem,1rem+4vw,4.5rem); align-items: center; padding: clamp(2.5rem,1.5rem+4vw,5rem) 0; border-bottom: 1px solid var(--line); }
.service-block:last-child { border-bottom: none; }
.service-block.flip .sb-media { order: 2; }
.sb-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; }
.sb-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.service-block:hover .sb-media img { transform: scale(1.05); }
.sb-num { font-family: var(--display); font-size: 1rem; color: var(--brass-dk); letter-spacing: 0.1em; }
.sb-body h3 { font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.3rem); margin: 0.4rem 0 0.9rem; }
.sb-body ul { display: grid; gap: 0.7rem; margin: 1.4rem 0 1.8rem; }
.sb-body li { display: flex; gap: 0.7rem; align-items: flex-start; color: var(--ink-soft); }
.sb-body li svg { flex: none; width: 22px; height: 22px; color: var(--coral); margin-top: 2px; }
.price-pill { display: inline-flex; align-items: baseline; gap: 0.4em; background: var(--sand-200); border-radius: 999px; padding: 0.4em 1em; font-weight: 600; color: var(--teal-900); }
.price-pill b { font-family: var(--display); font-size: 1.2rem; color: var(--brass-dk); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--teal-900); color: rgba(255,255,255,0.78); padding: 5rem 0 2rem; position: relative; overflow: hidden; }
.footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--brass), transparent); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer .brand { color: var(--cream); margin-bottom: 1.1rem; }
.footer-about p { font-size: 0.95rem; max-width: 32ch; }
.footer h5 { font-family: var(--body); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.74rem; color: var(--brass); margin-bottom: 1.2rem; }
.footer-col a, .footer-col p { display: block; padding: 0.35rem 0; font-size: 0.95rem; color: rgba(255,255,255,0.78); transition: color 0.3s, transform 0.3s; }
.footer-col a:hover { color: var(--brass); transform: translateX(4px); }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.4rem; }
.footer-social a { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,0.07); color: var(--cream); transition: 0.4s var(--ease); }
.footer-social a:hover { background: var(--brass); color: var(--teal-900); transform: translateY(-4px); }
.footer-social svg { width: 18px; }
.footer-hours div { display: flex; justify-content: space-between; padding: 0.3rem 0; font-size: 0.9rem; gap: 1rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; padding-top: 2rem; font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--brass); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .hero-visual { justify-self: start; max-width: 380px; }
  .cards, .quotes, .team { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
}
@media (max-width: 760px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .nav-mobile {
    position: fixed; inset: 0; z-index: 105;
    background: var(--teal-900);
    display: flex; flex-direction: column; justify-content: center; gap: 1.4rem;
    padding: 2rem var(--shell-pad, 6vw);
    transform: translateX(100%); transition: transform 0.5s var(--ease);
  }
  body.menu-open .nav-mobile { transform: none; }
  .nav-mobile a { color: var(--cream); font-family: var(--display); font-size: 1.8rem; opacity: 0; transform: translateY(12px); transition: 0.5s var(--ease); }
  body.menu-open .nav-mobile a { opacity: 1; transform: none; }
  body.menu-open .nav-mobile a:nth-child(1) { transition-delay: 0.1s; }
  body.menu-open .nav-mobile a:nth-child(2) { transition-delay: 0.16s; }
  body.menu-open .nav-mobile a:nth-child(3) { transition-delay: 0.22s; }
  body.menu-open .nav-mobile a:nth-child(4) { transition-delay: 0.28s; }
  body.menu-open .nav-mobile a:nth-child(5) { transition-delay: 0.34s; }
  body.menu-open .nav-mobile a:nth-child(6) { transition-delay: 0.4s; }
  .nav-mobile .btn { font-size: 1rem; margin-top: 1rem; align-self: flex-start; }
  .split, .service-block, .service-block.flip { grid-template-columns: 1fr; }
  .split.reverse .split-media, .service-block.flip .sb-media { order: 0; }
  .cards, .quotes, .team, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-auto-rows: 240px; }
  .g-wide, .g-tall { grid-column: auto; grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .hero-meta { gap: 1.4rem 2rem; }
  .story-media .stamp { width: 100px; height: 100px; right: 8px; }
}
@media (max-width: 420px) {
  .hero-badge.tl { left: -8px; } .hero-badge.br { right: -4px; }
}

/* nav mobile hidden by default on desktop */
.nav-mobile { display: none; }
@media (max-width: 760px) { .nav-mobile { display: flex; } }
