/* =============================================================
   1. Tokens
   ============================================================= */
@property --mesh-angle { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
@property --mesh-x     { syntax: "<percentage>"; inherits: false; initial-value: 50%; }
@property --mesh-y     { syntax: "<percentage>"; inherits: false; initial-value: 50%; }

:root {
  --bg:        #0c0a08;   /* warm near-black, matches logo backdrop */
  --bg-2:      #15120d;
  --bg-3:      #1e1912;   /* card */
  --bg-4:      #262019;
  --cream:     #f2ece0;   /* text on dark, never pure white */
  --cream-2:   #ddd0b8;
  --cream-3:   #948a78;   /* metadata / muted */
  --accent:    #c9a961;   /* champagne gold — "brille" motif */
  --accent-2:  #a9843f;
  --accent-soft: rgba(201,169,97,0.16);
  --line:      rgba(242,236,224,.12);
  --line-2:    rgba(242,236,224,.22);

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:     cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 84px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  background: var(--bg);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.01em; font-family: var(--serif); font-weight: 500; }
ul { list-style: none; padding: 0; }
::selection { background: var(--accent); color: var(--bg); }

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

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .7rem 1.2rem; background: var(--accent); color: var(--bg);
  border-radius: 6px; font-weight: 600; font-size: .9rem;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 720px)  { .container { padding-inline: 2.5rem; } }
@media (min-width: 1280px) { .container { padding-inline: 3rem; } }

.eyebrow {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: .6em;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--accent);
  display: inline-block;
}

.section {
  padding-block: clamp(4rem, 9vw, 8rem);
  position: relative;
}
.section-head {
  max-width: 42rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); font-style: italic; margin-top: .6rem; }
.section-head p { color: var(--cream-3); font-size: 1.05rem; margin-top: 1rem; max-width: 38rem; }

/* =============================================================
   4. Typography
   ============================================================= */
em, i { font-style: italic; color: var(--accent); font-family: inherit; }

/* =============================================================
   5. Components
   ============================================================= */

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 1rem 1.9rem;
  font-size: .92rem; font-weight: 600; letter-spacing: .02em;
  border-radius: 999px;
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), background .3s var(--ease-out), color .3s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1a1509;
  box-shadow: 0 4px 20px rgba(201,169,97,0.25), 0 1px 3px rgba(0,0,0,0.2);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(201,169,97,0.32), 0 10px 20px rgba(0,0,0,0.28);
}
.btn-primary:active { transform: translateY(-1px); transition-duration: .12s; }
.btn-ghost {
  border: 1px solid var(--line-2);
  color: var(--cream);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }
.btn svg { width: 1.1em; height: 1.1em; flex-shrink: 0; }

.has-magnetic { display: inline-flex; position: relative; isolation: isolate; }
.magnetic-inner {
  display: inline-flex; align-items: center; justify-content: center; gap: inherit;
  will-change: transform;
  transition: transform .8s var(--ease-soft);
}

/* Cards */
.card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 2rem;
  position: relative;
  isolation: isolate;
}
.has-tilt {
  --rx: 0deg; --ry: 0deg;
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform .55s var(--ease-soft), border-color .4s, box-shadow .4s;
}
.has-tilt:hover { transition-duration: .15s; border-color: var(--line-2); }
.has-halo::before {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%), var(--accent-soft), transparent 65%);
  opacity: 0; transition: opacity .4s;
}
.has-halo:hover::before { opacity: 1; }

/* =============================================================
   6. Sections
   ============================================================= */

/* --- Splash --- */
.splash {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg);
  display: grid; place-items: center;
  pointer-events: auto;
  transition: opacity .9s var(--ease-out), clip-path 1.1s var(--ease-soft);
  animation: splashSafety .01s 4.5s forwards;
}
.splash.is-out { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
@keyframes splashSafety { to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); } }
.splash-mark {
  width: 84px; height: 84px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  animation: splashPulse 1.8s ease-in-out infinite;
}
.splash-mark img { width: 46px; height: 46px; object-fit: contain; }
@keyframes splashPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,169,97,0.25); }
  50% { box-shadow: 0 0 0 14px rgba(201,169,97,0); }
}

/* --- Nav --- */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background-color .4s var(--ease-out), backdrop-filter .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(12,10,8,0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-brand { display: flex; align-items: center; gap: .7rem; }
.nav-brand img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-brand-text strong { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; letter-spacing: .02em; }
.nav-brand-text span { font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--cream-3); }

.nav-links { display: none; align-items: center; gap: 2.1rem; }
@media (min-width: 960px) { .nav-links { display: flex; } }
.nav-link { position: relative; font-size: .88rem; font-weight: 500; padding: .3rem 0; color: var(--cream-2); }
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease-out);
}
.nav-link:hover { color: var(--cream); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-cta { display: none; }
@media (min-width: 720px) { .nav-cta { display: inline-flex; padding: .75rem 1.4rem; font-size: .82rem; } }

.nav-burger {
  display: grid; place-items: center; width: 42px; height: 42px;
  border: 1px solid var(--line-2); border-radius: 50%;
}
@media (min-width: 960px) { .nav-burger { display: none; } }
.nav-burger span { display: block; width: 16px; height: 1px; background: var(--cream); position: relative; }
.nav-burger span::before, .nav-burger span::after {
  content: ""; position: absolute; left: 0; width: 16px; height: 1px; background: var(--cream);
  transition: transform .35s var(--ease-soft), opacity .35s;
}
.nav-burger span::before { top: -5px; }
.nav-burger span::after { top: 5px; }
.nav.is-menu-open .nav-burger span { background: transparent; }
.nav.is-menu-open .nav-burger span::before { transform: translateY(5px) rotate(45deg); }
.nav.is-menu-open .nav-burger span::after { transform: translateY(-5px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 90;
  background: var(--bg);
  display: grid; place-items: center;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .6s var(--ease-soft);
}
.nav-mobile[data-open="true"] { clip-path: inset(0); }
.nav-mobile-links { display: flex; flex-direction: column; gap: 1.6rem; text-align: center; }
.nav-mobile-links a { font-family: var(--serif); font-size: 2rem; font-style: italic; }
.nav-mobile-cta { margin-top: 2.4rem; }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: 70% 30%;
  filter: saturate(1.02) contrast(1.04);
}
.hero-bg-tint {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(12,10,8,.55) 0%, rgba(12,10,8,.45) 38%, rgba(12,10,8,.88) 88%, var(--bg) 100%),
    linear-gradient(90deg, rgba(12,10,8,.75) 0%, rgba(12,10,8,.25) 55%, rgba(12,10,8,.55) 100%);
}
.hero-mesh {
  position: absolute; inset: -10%; z-index: -1; pointer-events: none;
  background:
    radial-gradient(50% 45% at var(--mesh-x) var(--mesh-y), rgba(201,169,97,.28), transparent 62%),
    conic-gradient(from var(--mesh-angle), rgba(201,169,97,.14), rgba(221,208,184,.05), rgba(201,169,97,.14));
  filter: blur(90px) saturate(120%);
  opacity: .8;
  mix-blend-mode: screen;
  animation: meshShift 24s linear infinite;
}
@keyframes meshShift {
  0%   { --mesh-angle: 0deg;   --mesh-x: 25%; --mesh-y: 30%; }
  50%  { --mesh-angle: 180deg; --mesh-x: 65%; --mesh-y: 55%; }
  100% { --mesh-angle: 360deg; --mesh-x: 25%; --mesh-y: 30%; }
}
.hero-grain {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  opacity: .12; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}
.hero-inner { position: relative; width: 100%; padding-block: clamp(6rem, 14vw, 9rem) clamp(3rem, 6vw, 4.5rem); }
.hero-content { max-width: 42rem; }
.hero-title {
  font-size: clamp(2.6rem, 6.4vw, 5.2rem);
  font-weight: 500;
  margin-top: 1.1rem;
  text-wrap: balance;
}
.hero-sub {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: var(--cream-2);
  max-width: 34rem;
  margin-top: 1.4rem;
  font-weight: 300;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }

.hero-stats {
  display: grid; grid-template-columns: repeat(3, auto);
  gap: clamp(1.6rem, 4vw, 3.2rem);
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  width: fit-content;
}
.hero-stat-value {
  font-family: var(--serif); font-style: italic; color: var(--accent);
  font-size: clamp(1.8rem, 3vw, 2.4rem); display: block;
}
.hero-stat-label { font-size: .76rem; color: var(--cream-3); letter-spacing: .03em; margin-top: .3rem; max-width: 12ch; }

/* --- Reveal --- */
[data-reveal] {
  opacity: 0; transform: translateY(36px);
  transition: opacity .85s var(--ease-soft), transform .85s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal][data-split] { opacity: 1; transform: none; } /* defensive: never let split-text hide parent */

/* --- About --- */
.about { background: var(--bg); }
.about-grid { display: grid; gap: 3rem; }
@media (min-width: 960px) { .about-grid { grid-template-columns: .82fr 1fr; gap: 5rem; align-items: center; } }
.about-figure {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-figure img { width: 100%; height: 100%; object-fit: cover; }
.about-figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(12,10,8,.55) 100%);
}
.about-figure-cap {
  position: absolute; left: 1.4rem; bottom: 1.3rem; right: 1.4rem; z-index: 1;
  font-size: .78rem; color: var(--cream-2); letter-spacing: .02em;
}
.about-body h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-style: italic; margin-top: .7rem; }
.about-bio { color: var(--cream-2); font-size: 1.08rem; margin-top: 1.3rem; max-width: 36rem; font-weight: 300; line-height: 1.75; }
.about-credentials {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.6rem;
  margin-top: 2.6rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.about-credential-value { font-family: var(--serif); font-style: italic; color: var(--accent); font-size: 2rem; }
.about-credential-label { font-size: .78rem; color: var(--cream-3); margin-top: .25rem; }

/* --- Services --- */
.services { background: var(--bg-2); }
.service-group + .service-group { margin-top: clamp(3.5rem, 7vw, 5.5rem); }
.service-group-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 2.4rem; }
.service-group-head h3 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); font-style: italic; }
.service-group-head p { color: var(--cream-3); font-size: .95rem; max-width: 32rem; }

.service-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
.service-grid[data-count="6"] { }
@media (min-width: 960px) { .service-grid[data-count="6"] { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-4);
}
.service-card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease-soft), filter .6s;
}
.service-card:hover .service-card-media img { transform: scale(1.08); filter: saturate(1.08) brightness(1.02); }
.service-card-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(12,10,8,.35) 70%, rgba(12,10,8,.88) 100%);
  transition: opacity .4s;
}
.service-card-body { padding: 1.4rem 1.6rem 1.6rem; }
.service-card-name {
  font-family: var(--serif); font-size: 1.22rem; font-style: italic;
  text-shadow: 0 2px 14px rgba(0,0,0,.4);
}
.service-card-desc {
  color: var(--cream-3); font-size: .9rem; margin-top: .6rem; line-height: 1.6;
  transition: opacity .45s var(--ease-soft), transform .45s var(--ease-soft);
}

/* Enhance: on fine-pointer hover devices, the image fills the card and the
   description reveals as an overlay caption on hover/focus. Mobile and touch
   devices always show name + description below the image (content-first). */
@media (hover: hover) and (pointer: fine) {
  .service-card { aspect-ratio: 4 / 3; }
  .service-card-media { position: absolute; inset: 0; }
  .service-card-body { position: absolute; inset: auto 0 0 0; z-index: 1; }
  .service-card-name { color: var(--cream); }
  .service-card-scrim { opacity: .68; }
  .service-card-desc { opacity: 0; transform: translateY(10px); }
  .service-card:hover .service-card-scrim,
  .service-card:focus-within .service-card-scrim,
  .service-card:focus .service-card-scrim { opacity: .94; }
  .service-card:hover .service-card-desc,
  .service-card:focus-within .service-card-desc,
  .service-card:focus .service-card-desc { opacity: 1; transform: none; }
}

/* --- Gallery --- */
.gallery { background: var(--bg); }
.gallery-mosaic {
  display: grid; gap: .9rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .gallery-mosaic { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 160px; }
  .gallery-mosaic .g-item:nth-child(1) { grid-column: span 4; grid-row: span 3; }
  .gallery-mosaic .g-item:nth-child(2) { grid-column: span 2; grid-row: span 2; }
  .gallery-mosaic .g-item:nth-child(3) { grid-column: span 2; grid-row: span 3; }
  .gallery-mosaic .g-item:nth-child(4) { grid-column: span 4; grid-row: span 2; }
}
.g-item { position: relative; border-radius: 16px; overflow: hidden; isolation: isolate; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-soft), filter .6s; }
.g-item:hover img { transform: scale(1.07); filter: saturate(1.1) brightness(1.03); }

/* --- CTA banner --- */
.cta-banner {
  position: relative;
  background: var(--bg-3);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
}
.cta-banner::before {
  content: ""; position: absolute; inset: -60% -10% -80% -10%; z-index: -1;
  background: radial-gradient(45% 40% at 50% 30%, var(--accent-soft), transparent 72%);
  filter: blur(90px);
}
.cta-banner-inner { text-align: center; max-width: 42rem; margin-inline: auto; padding-block: clamp(4rem, 9vw, 6.5rem); }
.cta-banner h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-style: italic; }

/* --- Offer card --- */
.offer-card {
  margin-top: clamp(2.4rem, 5vw, 3.2rem);
  padding: clamp(1.8rem, 4vw, 2.6rem) clamp(1.6rem, 5vw, 3rem);
  border: 1px solid var(--line-2);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(201,169,97,0.08), rgba(201,169,97,0.02));
  position: relative;
  isolation: isolate;
}
.offer-eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent);
}
.offer-eyebrow::before {
  content: "●"; font-size: .5em; transform: translateY(-2px);
}
.offer-stat {
  display: flex; align-items: baseline; justify-content: center; gap: .3rem;
  margin-top: .9rem;
}
.offer-stat-num {
  font-family: var(--serif); font-style: italic; font-weight: 600; color: var(--accent);
  font-size: clamp(3.4rem, 9vw, 5rem); line-height: 1;
}
.offer-stat-unit {
  font-family: var(--serif); font-style: italic; color: var(--accent);
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
}
.offer-stat-label {
  font-size: 1rem; color: var(--cream-2); margin-top: .5rem;
}
.offer-desc {
  font-size: .96rem; color: var(--cream-3); max-width: 34rem; margin: 1.1rem auto 0;
  line-height: 1.65;
}
.offer-code-row {
  display: flex; align-items: center; justify-content: center; gap: .7rem;
  margin-top: 1.6rem; flex-wrap: wrap;
}
.offer-code-label { font-size: .78rem; color: var(--cream-3); letter-spacing: .04em; }
.offer-code-chip {
  font-family: var(--sans); font-weight: 700; letter-spacing: .08em;
  font-size: .9rem; color: var(--accent);
  border: 1px dashed var(--accent);
  border-radius: 999px;
  padding: .45rem 1.1rem;
}
.offer-card .btn { margin-top: 1.8rem; }

/* --- Location --- */
.location { background: var(--bg-2); }
.location-grid { display: grid; gap: 2.8rem; }
@media (min-width: 960px) { .location-grid { grid-template-columns: .85fr 1fr; gap: 4rem; align-items: stretch; } }
.location-list { display: flex; flex-direction: column; gap: 1.8rem; }
.location-item { display: flex; gap: 1rem; align-items: flex-start; }
.location-item svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: .2rem; color: var(--accent); }
.location-item h4 { font-family: var(--sans); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--cream-3); font-weight: 600; }
.location-item p, .location-item a { font-size: 1rem; margin-top: .3rem; color: var(--cream); }
.location-item a:hover { color: var(--accent); }
.location-hours-row { display: flex; justify-content: space-between; gap: 1rem; font-size: .95rem; }
.location-hours-row + .location-hours-row { margin-top: .5rem; }
.location-hours-row span:first-child { color: var(--cream-2); }
.location-hours-row span:last-child { color: var(--cream-3); }

.map-frame {
  border-radius: 18px; overflow: hidden; border: 1px solid var(--line);
  min-height: 320px; filter: grayscale(.3) contrast(1.05) brightness(.9);
}
.map-frame iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* --- Footer --- */
.footer { background: var(--bg); border-top: 1px solid var(--line); padding-block: 3.5rem 2.4rem; }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2.4rem; }
.footer-brand { display: flex; align-items: center; gap: .8rem; }
.footer-brand img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.footer-brand-text strong { font-family: var(--serif); font-size: 1.2rem; }
.footer-brand-text span { display: block; font-size: .76rem; color: var(--cream-3); margin-top: .15rem; }
.footer-links { display: flex; gap: 2.4rem; flex-wrap: wrap; }
.footer-col h5 { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--cream-3); margin-bottom: .8rem; }
.footer-col a, .footer-col p { display: block; font-size: .92rem; color: var(--cream-2); margin-bottom: .5rem; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  font-size: .78rem; color: var(--cream-3);
}

/* --- Legal pages --- */
.legal-hero { padding-block: clamp(7rem, 14vw, 9rem) 2rem; }
.legal-hero .eyebrow { margin-bottom: .8rem; }
.legal-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); font-style: italic; }
.legal-updated { color: var(--cream-3); font-size: .85rem; margin-top: .9rem; }
.legal-content { max-width: 68ch; padding-block: 1rem clamp(4rem, 8vw, 6rem); }
.legal-content h2 {
  font-size: 1.35rem; font-style: italic; margin-top: 2.6rem; margin-bottom: .9rem;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--cream-2); font-size: .98rem; line-height: 1.75; margin-bottom: 1rem; }
.legal-content ul { margin: 0 0 1rem; padding-left: 1.3rem; }
.legal-content li {
  color: var(--cream-2); font-size: .98rem; line-height: 1.75; margin-bottom: .5rem;
  list-style: disc;
}
.legal-content li::marker { color: var(--accent); }
.legal-content a { color: var(--accent); text-decoration: underline; text-underline-offset: .2em; }
.legal-back { display: inline-flex; align-items: center; gap: .5em; font-size: .88rem; color: var(--cream-3); margin-top: .5rem; }
.legal-back:hover { color: var(--accent); }

/* =============================================================
   7. Effects
   ============================================================= */
@keyframes spin { to { transform: rotate(360deg); } }

/* =============================================================
   8. Responsive
   ============================================================= */
@media (min-width: 540px)  { }
@media (min-width: 720px)  { }
@media (min-width: 960px)  { }
@media (min-width: 1280px) { }

/* =============================================================
   9. Reduced-motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-mesh { animation: none; }
  .splash-mark { animation: none; }
}
