/* ============================================================
   MODERN MASSAGE — Sand & Stone
   Design system + components + craft layer
   Type: Bodoni Moda (display) · Schibsted Grotesk (body)
   ============================================================ */

:root {
  /* Warm-neutral palette */
  --cream:       #F4EFE8;
  --porcelain:   #FAF7F2;
  --sand:        #E3D8C7;
  --sand-deep:   #D8C9B3;
  --taupe:       #B9AA98;
  --clay:        #A8765D;
  --clay-deep:   #8A5A43;
  --ink:         #2B2724;
  --ink-700:     #3A352F;
  --text:        #4A443E;
  --muted:       #6B6055;
  --white:       #FFFFFF;
  --line:        rgba(43,39,36,0.14);
  --line-strong: rgba(43,39,36,0.26);

  --font-serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --font-sans:  'Schibsted Grotesk', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --container: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-y: clamp(68px, 10vw, 150px);
  --header-h: clamp(64px, 8vw, 86px);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.3, 0.5, 1);

  --shadow-card:  0 18px 44px -34px rgba(43,39,36,0.42);
  --shadow-float: 0 34px 80px -44px rgba(43,39,36,0.55);
}

/* ---------- Reset & base ---------- */
* { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }
::selection { background: var(--clay); color: var(--cream); }

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 1000;
  background: var(--ink); color: var(--cream);
  padding: 12px 18px; border-radius: var(--radius-sm);
  font-size: .85rem; letter-spacing: .04em;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }
:focus-visible { outline: 2px solid var(--clay-deep); outline-offset: 3px; border-radius: 2px; }
.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;
}

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); position: relative; }
.container--narrow { max-width: 760px; }
.container--mid { max-width: 980px; }
.section { padding: var(--section-y) 0; position: relative; }
.section--clip { overflow: clip; }
.section--sand { background: var(--sand); }
.section--porcelain { background: var(--porcelain); }
.section--ink { background: var(--ink); color: var(--cream); }
.section--tight { padding: clamp(52px, 7vw, 104px) 0; }

.split { display: grid; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split > *, .grid > * { min-width: 0; }  /* prevent wide content (marquee, long words) from blowing out columns */
@media (min-width: 880px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--40 { grid-template-columns: 0.82fr 1.18fr; }
  .split--60 { grid-template-columns: 1.12fr 0.88fr; }
  .split--reverse > :first-child { order: 2; }
}
.grid { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
@media (min-width: 720px)  { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 720px)  { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }
.stack > * + * { margin-top: 1.15rem; }
.stack-lg > * + * { margin-top: 1.75rem; }
.flow-sm > * + * { margin-top: 0.8rem; }

/* ---------- Typography ---------- */
.display {
  font-family: var(--font-serif); font-weight: 500; color: var(--ink);
  font-size: clamp(2.9rem, 6.6vw, 5.6rem);
  line-height: 1.02; letter-spacing: -0.006em;
  font-optical-sizing: auto;
}
.h1 { font-family: var(--font-serif); font-weight: 600; color: var(--ink); font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.06; letter-spacing: -0.004em; }
.h2 { font-family: var(--font-serif); font-weight: 600; color: var(--ink); font-size: clamp(2rem, 3.9vw, 3.2rem); line-height: 1.08; letter-spacing: -0.003em; }
.h3 { font-family: var(--font-serif); color: var(--ink); font-weight: 600; font-size: clamp(1.35rem, 2.2vw, 1.8rem); line-height: 1.2; }
.section--ink .display, .section--ink .h1, .section--ink .h2, .section--ink .h3 { color: var(--cream); }
.serif-italic { font-style: italic; }

.eyebrow {
  font-family: var(--font-sans); font-weight: 500; font-size: 0.76rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--clay-deep);
  display: inline-flex; align-items: center; gap: 0.7em;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: currentColor; opacity: 0.6;
}
.eyebrow--plain::before { display: none; }
.section--ink .eyebrow { color: #CBA286; }
.eyebrow--muted { color: var(--muted); }

.lead { font-size: clamp(1.12rem, 1.6vw, 1.34rem); line-height: 1.55; color: var(--ink); font-weight: 400; }
.section--ink .lead { color: rgba(244,239,232,0.86); }
.muted { color: var(--muted); }
.prose p { color: var(--text); }
.prose--muted p, p.prose--muted { color: var(--muted); }
.section--ink .prose p, .section--ink p.prose--muted { color: rgba(244,239,232,0.78); }
.measure { max-width: 60ch; }
.measure-sm { max-width: 46ch; }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.index-num {
  font-family: var(--font-serif); font-weight: 500; color: var(--clay); font-style: italic;
  font-size: clamp(2rem, 3vw, 2.6rem); line-height: 1;
}

/* ---------- Buttons & links ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  font-family: var(--font-sans); font-weight: 500; font-size: 0.92rem;
  letter-spacing: 0.02em; line-height: 1; text-align: center;
  padding: 1.05em 1.7em; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease-spring), background .25s var(--ease), color .25s, border-color .25s, box-shadow .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--ink); color: var(--cream); }
.btn--primary:hover { background: var(--ink-700); box-shadow: var(--shadow-card); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { background: var(--sand); border-color: var(--ink); }
.btn--light { background: var(--cream); color: var(--ink); }
.btn--light:hover { background: #fff; box-shadow: var(--shadow-float); }
.section--ink .btn--ghost { color: var(--cream); border-color: rgba(244,239,232,0.35); }
.section--ink .btn--ghost:hover { background: rgba(244,239,232,0.1); border-color: var(--cream); }
.btn--sm { padding: 0.72em 1.2em; font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; }
.btn .ico { width: 1.05em; height: 1.05em; transition: transform .25s var(--ease); }
.btn:hover .ico { transform: translateX(3px); }
.btn-group { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-family: var(--font-sans); font-weight: 500; font-size: 0.95rem;
  letter-spacing: 0.01em; color: var(--ink); padding-bottom: 2px;
  border-bottom: 1px solid var(--line-strong); transition: border-color .25s, color .25s;
}
.link-arrow .ico { width: 1em; height: 1em; transition: transform .25s var(--ease); }
.link-arrow:hover { border-color: var(--ink); }
.link-arrow:hover .ico { transform: translateX(4px); }
.link-arrow--accent { color: var(--clay-deep); border-color: rgba(138,90,67,0.4); }
.link-arrow--bare { border: 0; padding: 0; display: inline-flex; }
.section--ink .link-arrow { color: var(--cream); border-color: rgba(244,239,232,0.4); }

.btn-round {
  width: 64px; height: 64px; flex: none; border-radius: 50%;
  border: 1px solid var(--line-strong); display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink); transition: background .3s var(--ease), color .3s, border-color .3s, transform .3s var(--ease-spring);
}
.btn-round .ico { width: 1.25rem; height: 1.25rem; transition: transform .3s var(--ease); }
.btn-round:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); transform: rotate(-8deg); }
.btn-round:hover .ico { transform: translateX(2px); }

/* ======================================================
   CRAFT LAYER — geometry, decorative motifs, depth
   ====================================================== */

/* concentric ring marks */
.ring { border: 1px solid var(--line-strong); border-radius: 50%; }
.ring--soft { border-color: var(--line); }
.ring--accent { border-color: rgba(168,118,93,0.45); }
.ring--light { border-color: rgba(244,239,232,0.28); }

/* dot-grid accent */
.dotgrid {
  --dot: rgba(43,39,36,0.24);
  width: 84px; height: 84px;
  background-image: radial-gradient(var(--dot) 1.4px, transparent 1.5px);
  background-size: 15px 15px; background-position: 0 0;
}
.dotgrid--sm { width: 54px; height: 54px; }
.dotgrid--lg { width: 120px; height: 108px; }
.dotgrid--light { --dot: rgba(244,239,232,0.4); }
.dotgrid--accent { --dot: rgba(168,118,93,0.45); }

/* organic / soft blobs that bleed off edges */
.blob { position: absolute; border-radius: 50%; background: var(--sand); pointer-events: none; z-index: 0; }
.blob--organic { border-radius: 47% 53% 57% 43% / 46% 44% 56% 54%; }
.blob--porcelain { background: var(--porcelain); }
.blob--sand-deep { background: var(--sand-deep); }
.blob--ring { background: transparent; border: 1px solid var(--line); }

/* circular numbered / monogram badge */
.badge-num {
  width: 52px; height: 52px; flex: none; border-radius: 50%;
  border: 1px solid var(--line-strong); background: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-weight: 600; font-style: italic;
  font-size: 1.2rem; color: var(--clay-deep);
}
.section--sand .badge-num { background: var(--porcelain); }

/* floating card (straddles seams / overlaps imagery) */
.float-card {
  position: relative; background: var(--porcelain); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-float); z-index: 4;
}
.float-card--ink { background: var(--ink); color: var(--cream); border-color: transparent; }
.float-card--ink .h3, .float-card--ink .quote { color: var(--cream); }

/* overlap / pull utilities */
.pull-up   { margin-top: calc(-1 * clamp(40px, 8vw, 120px)); }
.pull-up-sm{ margin-top: calc(-1 * clamp(28px, 5vw, 70px)); }
.z-top { position: relative; z-index: 5; }

/* ---------- Photo frames ---------- */
.ph { position: relative; overflow: hidden; background: var(--sand); }
.ph img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .8s var(--ease); }
.ph--circle { aspect-ratio: 1 / 1; border-radius: 50%; }
.ph--arch   { aspect-ratio: 4 / 5; border-radius: 999px 999px var(--radius-md) var(--radius-md); }
.ph--arch-soft { aspect-ratio: 4 / 5; border-radius: var(--radius-xl) var(--radius-xl) var(--radius-lg) var(--radius-lg); }
.ph--soft   { border-radius: var(--radius-lg); }
.ph--tall   { aspect-ratio: 4 / 5; }
.ph--portrait { aspect-ratio: 3 / 4; }
.ph--wide   { aspect-ratio: 3 / 2; }
.ph--square { aspect-ratio: 1 / 1; }
.ph-hover:hover img, .path:hover .ph img { transform: scale(1.045); }

/* art-directed tonal swap-slot (now richer: duotone + ring + dots) */
.ph--slot {
  background: radial-gradient(130% 130% at 30% 22%, var(--porcelain), var(--sand) 58%, var(--sand-deep) 120%);
  box-shadow: inset 0 0 0 1px var(--line);
}
.ph--slot::before {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 60%; height: 60%; transform: translate(-50%, -50%);
  border: 1px solid rgba(244,239,232,0.55); border-radius: 50%;
}
.ph--slot::after {
  content: ""; position: absolute; right: 13%; bottom: 13%;
  width: 46px; height: 46px;
  background-image: radial-gradient(rgba(43,39,36,0.2) 1.3px, transparent 1.4px);
  background-size: 12px 12px;
}
.ph__label {
  position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 1.5rem;
  font-family: var(--font-serif); font-style: italic; font-size: 1.1rem;
  color: var(--clay-deep); opacity: 0.9;
}
.ph:has(img) .ph__label { display: none; }
.ph:has(img)::before, .ph:has(img)::after { display: none; }
.ph.is-broken .ph__label { display: flex; }
.ph.is-broken::before, .ph.is-broken::after { display: block; }

/* photo tone treatments */
.tone-warm img  { filter: saturate(0.9) contrast(1.02) brightness(1.01) sepia(0.06); }
.tone-sepia img { filter: grayscale(0.85) sepia(0.34) saturate(0.85) contrast(1.04) brightness(1.05); }
.tone-duo img   { filter: grayscale(0.4) sepia(0.18) saturate(0.82) contrast(1.03) brightness(1.02); }
.tone-sepia::after, .tone-duo::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: var(--clay); mix-blend-mode: color;
}
.tone-sepia::after { opacity: 0.16; }
.tone-duo::after   { opacity: 0.12; }

/* layered hero media cluster */
.hero-media { position: relative; }
.hero-media__main { position: relative; z-index: 2; }
.hero-media__inset {
  position: absolute; width: 44%; z-index: 3;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-float);
  border: 4px solid var(--cream);
}
.hero-media__ring { position: absolute; z-index: 1; }
.hero-media__dots { position: absolute; z-index: 1; }

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s var(--ease), border-color .4s, box-shadow .4s;
  border-bottom: 1px solid transparent;
}
.site-header__inner {
  max-width: var(--container); margin: 0 auto; height: var(--header-h);
  padding: 0 var(--gutter); display: flex; align-items: center; gap: 1.5rem;
}
.site-header.is-scrolled {
  background: rgba(244,239,232,0.82);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.brand {
  font-family: var(--font-serif); font-weight: 600; color: var(--ink);
  text-transform: uppercase; letter-spacing: 0.16em; font-size: 1.02rem;
  white-space: nowrap;
}
.brand:hover { color: var(--clay-deep); }
.nav { display: flex; align-items: center; gap: clamp(1.25rem, 2.4vw, 2.4rem); margin-left: auto; }
.nav__link {
  font-family: var(--font-sans); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink);
  position: relative; padding: 0.4em 0;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--clay-deep); transition: width .3s var(--ease);
}
.nav__link:hover::after, .nav__link[aria-current="page"]::after { width: 100%; }
.nav__link[aria-current="page"] { color: var(--clay-deep); }

.nav-toggle { display: none; margin-left: auto; width: 46px; height: 46px; background: transparent; border: 0; cursor: pointer; position: relative; z-index: 120; }
.nav-toggle span { position: absolute; left: 11px; right: 11px; height: 1.5px; background: var(--ink); transition: transform .3s var(--ease), opacity .2s var(--ease); }
.nav-toggle span:nth-child(1) { top: 18px; }
.nav-toggle span:nth-child(2) { top: 24px; }
.nav-toggle span:nth-child(3) { top: 30px; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 0; margin: 0;
    flex-direction: column; align-items: center; justify-content: center;
    gap: 1.6rem; background: var(--cream);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
  }
  body.nav-open .nav { opacity: 1; visibility: visible; transform: none; }
  .nav__link { font-size: 1.15rem; letter-spacing: 0.12em; }
  .nav__cta { margin-top: 0.5rem; }
}

/* ---------- Hero ---------- */
.hero { padding-top: calc(var(--header-h) + clamp(2rem, 6vw, 5rem)); position: relative; }
.hero__inner { padding-bottom: var(--section-y); position: relative; z-index: 1; }
.scroll-cue { display: inline-flex; align-items: center; gap: 0.7em; font-family: var(--font-sans); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.scroll-cue .ico { width: 1rem; height: 1.4rem; animation: bob 2.4s var(--ease) infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* ---------- Aurora — subtle warm ambient light (hero backgrounds) ----------
   Pure-CSS adaptation of the aurora-background effect, recolored to the
   Sand & Stone palette and dialed way down. No React / Tailwind / framer-motion. */
.aurora {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden; pointer-events: none;
  -webkit-mask-image: radial-gradient(125% 95% at 86% -12%, #000 4%, transparent 60%);
  mask-image: radial-gradient(125% 95% at 86% -12%, #000 4%, transparent 60%);
}
.aurora::after {
  content: ""; position: absolute; inset: -160px;
  background-image:
    repeating-linear-gradient(100deg, var(--cream) 0%, var(--cream) 9%, transparent 12%, transparent 15%, var(--cream) 19%),
    repeating-linear-gradient(100deg, var(--clay) 8%, var(--sand) 16%, var(--taupe) 24%, var(--sand-deep) 32%, var(--clay) 40%);
  background-size: 300% 300%, 200% 200%;
  background-position: 50% 50%, 50% 50%;
  filter: blur(52px);
  opacity: 0.38;
  mix-blend-mode: multiply;
  animation: aurora 64s linear infinite;
  will-change: background-position;
}
@keyframes aurora {
  from { background-position: 50% 50%, 50% 50%; }
  to   { background-position: 320% 50%, 320% 50%; }
}
.section--ink .aurora::after { mix-blend-mode: screen; opacity: 0.22; }
@media (prefers-reduced-motion: reduce) { .aurora::after { animation: none; } }

/* ---------- Cards & paths ---------- */
.card {
  background: var(--porcelain); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.5rem);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.card--hover:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); border-color: var(--line-strong); }
.section--ink .card { background: rgba(244,239,232,0.05); border-color: rgba(244,239,232,0.16); }
.section--sand .card { background: var(--porcelain); }

.path {
  display: block; position: relative;
  border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.4rem);
  background: var(--porcelain); border: 1px solid var(--line);
  transition: transform .45s var(--ease), border-color .45s, box-shadow .45s;
}
.path:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--shadow-card); }
.path__media { margin-bottom: 1.6rem; max-width: 240px; }
.path .h3 { margin-bottom: 0.5rem; }

/* feature / number blocks */
.feature .h3 { margin-bottom: 0.6rem; }
.feature__head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }

/* divider list */
.rows { border-top: 1px solid var(--line); }
.row { display: grid; gap: 0.5rem 2rem; padding: clamp(1.3rem,2.4vw,1.9rem) 0; border-bottom: 1px solid var(--line); align-items: baseline; }
@media (min-width: 720px) { .row { grid-template-columns: 0.9fr 1.1fr; } }
.row__title { font-family: var(--font-serif); font-weight: 600; font-size: clamp(1.2rem,1.8vw,1.5rem); color: var(--ink); display: flex; gap: 1rem; align-items: baseline; }
.row__title .index-num { font-size: 1rem; }
.row__desc { color: var(--muted); margin: 0; }

/* pill tags */
.tags { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.tag { font-family: var(--font-sans); font-size: 0.8rem; letter-spacing: 0.02em; color: var(--ink); background: transparent; border: 1px solid var(--line-strong); border-radius: 999px; padding: 0.5em 1.1em; }

/* quote */
.quote { font-family: var(--font-serif); font-weight: 600; color: var(--ink); font-size: clamp(1.6rem, 3.3vw, 2.6rem); line-height: 1.22; letter-spacing: -0.004em; }
.section--ink .quote { color: var(--cream); }
.quote__cite { display: block; margin-top: 1.5rem; font-family: var(--font-sans); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.section--ink .quote__cite { color: rgba(244,239,232,0.6); }
.quote-mark { font-family: var(--font-serif); font-style: italic; font-size: 3.5rem; line-height: 0; color: var(--clay); opacity: 0.5; }

/* proof / marquee */
.proof-row { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(1.5rem,4vw,3.5rem); }
.proof-mark { font-family: var(--font-serif); font-weight: 500; font-size: 1.1rem; letter-spacing: 0.03em; color: var(--muted); white-space: nowrap; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 3rem; width: max-content; animation: marquee 34s linear infinite; }
.marquee__track .proof-mark { color: var(--taupe); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* stat */
.stat__num { font-family: var(--font-serif); font-weight: 600; color: var(--ink); font-size: clamp(2.6rem,4.4vw,3.8rem); line-height: 1; letter-spacing: -0.01em; }
.section--ink .stat__num { color: var(--cream); }
.stat__label { font-family: var(--font-sans); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 0.6rem; }
.section--ink .stat__label { color: rgba(244,239,232,0.6); }

/* ---------- Forms ---------- */
.form { display: grid; gap: 1.3rem; }
.form-row { display: grid; gap: 1.3rem; }
@media (min-width: 640px) { .form-row--2 { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 0.45rem; }
.field > label { font-family: var(--font-sans); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); }
.req { color: var(--clay-deep); }
.field input, .field select, .field textarea {
  font-family: var(--font-sans); font-size: 1rem; color: var(--ink);
  background: var(--white); border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm); padding: 0.85rem 1rem; width: 100%;
  min-height: 50px; transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.field input::placeholder, .field textarea::placeholder { color: #9a9086; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--clay); box-shadow: 0 0 0 3px rgba(168,118,93,0.18); }
.field__help { font-size: 0.8rem; color: var(--muted); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236B6055' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.6rem; }
fieldset { border: 0; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
fieldset legend { font-family: var(--font-sans); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); padding: 0; margin-bottom: 0.2rem; }
.choice-group { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.choice { display: inline-flex; align-items: center; gap: 0.55rem; cursor: pointer; border: 1px solid var(--line-strong); border-radius: 999px; padding: 0.6rem 1.1rem; font-size: 0.92rem; color: var(--ink); transition: border-color .2s, background .2s; }
.choice input { accent-color: var(--clay); width: 1rem; height: 1rem; min-height: auto; }
.choice:has(input:checked) { border-color: var(--ink); background: var(--sand); }
.choice:has(input:focus-visible) { box-shadow: 0 0 0 3px rgba(168,118,93,0.18); }
.form-status { margin-top: 0.4rem; padding: 1rem 1.2rem; border-radius: var(--radius-sm); font-size: 0.95rem; display: none; }
.form-status.is-success { display: block; background: rgba(120,110,80,0.1); border: 1px solid var(--line-strong); color: var(--ink); }
.form-status.is-error { display: block; background: rgba(168,90,70,0.1); border: 1px solid rgba(168,90,70,0.4); color: #7a3a2a; }

/* embed slot */
.embed-slot { position: relative; border: 1px dashed var(--line-strong); border-radius: var(--radius-lg); background: var(--porcelain); padding: clamp(2rem, 5vw, 3.5rem); text-align: center; display: grid; gap: 1rem; place-items: center; overflow: hidden; }
.embed-slot__tag { font-family: var(--font-sans); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--clay-deep); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--cream); padding: clamp(3.5rem,7vw,6rem) 0 2.2rem; position: relative; overflow: clip; }
.footer-top { display: grid; gap: clamp(2.5rem,5vw,4rem); position: relative; z-index: 1; }
@media (min-width: 860px) { .footer-top { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand { font-family: var(--font-serif); font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em; font-size: 1.5rem; color: var(--cream); }
.footer-tag { font-family: var(--font-serif); font-style: italic; font-size: 1.3rem; color: rgba(244,239,232,0.8); margin-top: 1.1rem; max-width: 24ch; }
.footer-col h4 { font-family: var(--font-sans); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(244,239,232,0.55); margin-bottom: 1.1rem; }
.footer-col a, .footer-col p { display: block; color: rgba(244,239,232,0.82); margin: 0 0 0.7rem; font-size: 0.98rem; }
.footer-col a { transition: color .2s; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom { margin-top: clamp(2.5rem,5vw,4rem); padding-top: 1.6rem; border-top: 1px solid rgba(244,239,232,0.16); display: flex; flex-wrap: wrap; gap: 0.8rem 1.5rem; justify-content: space-between; font-size: 0.82rem; color: rgba(244,239,232,0.55); position: relative; z-index: 1; }

/* ---------- Reveal & motion (progressive enhancement) ---------- */
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
html.js .reveal--scale { transform: translateY(22px) scale(0.985); }
html.js .reveal.is-in { opacity: 1; transform: none; }
html.js .reveal--d1 { transition-delay: .09s; }
html.js .reveal--d2 { transition-delay: .18s; }
html.js .reveal--d3 { transition-delay: .27s; }
html.js .reveal--d4 { transition-delay: .36s; }

[data-parallax] { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html.js .reveal { opacity: 1; transform: none; }
  html.js .rows.reveal .row { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
  .scroll-cue .ico { animation: none; }
  [data-parallax] { transform: none !important; }
}

/* ---------- Utilities ---------- */
.mt-1 { margin-top: 0.8rem; } .mt-2 { margin-top: 1.6rem; } .mt-3 { margin-top: 2.4rem; }
.mt-4 { margin-top: clamp(2.4rem, 4vw, 3.5rem); }
.eyebrow + .h2, .eyebrow + .h1, .eyebrow + .display { margin-top: 1.2rem; }
.relative { position: relative; }

/* ---------- Section life — subtle hover highlights & staggered reveals ---------- */
/* numbered features lift and their badge fills on hover */
.feature { transition: transform .45s var(--ease); }
.feature:hover { transform: translateY(-4px); }
.feature .badge-num,
.card--hover .badge-num { transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease), transform .5s var(--ease-spring); }
.feature:hover .badge-num,
.card--hover:hover .badge-num { background: var(--ink); color: var(--cream); border-color: var(--ink); transform: rotate(-6deg); }
.section--sand .feature:hover .badge-num { background: var(--clay-deep); border-color: var(--clay-deep); }

/* divider lists: warm highlight + accent bar on hover */
.row { transition: background .35s var(--ease), box-shadow .35s var(--ease); }
.row:hover { background: rgba(168,118,93,0.06); box-shadow: inset 3px 0 0 0 var(--clay); }
.row:hover .index-num { color: var(--clay); }

/* filled buttons: a soft light-sweep on hover */
.btn--primary, .btn--light { position: relative; overflow: hidden; }
.btn--primary::before, .btn--light::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(110deg, transparent 35%, rgba(244,239,232,0.18) 50%, transparent 65%);
  transform: translateX(-130%); transition: transform .7s var(--ease);
}
.btn--light::before { background: linear-gradient(110deg, transparent 35%, rgba(43,39,36,0.08) 50%, transparent 65%); }
.btn--primary:hover::before, .btn--light:hover::before { transform: translateX(130%); }

/* divider lists cascade in when scrolled into view */
html.js .rows.reveal { opacity: 1; transform: none; }
html.js .rows.reveal .row { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
html.js .rows.reveal.is-in .row { opacity: 1; transform: none; }
html.js .rows.reveal.is-in .row:nth-child(1) { transition-delay: .04s; }
html.js .rows.reveal.is-in .row:nth-child(2) { transition-delay: .10s; }
html.js .rows.reveal.is-in .row:nth-child(3) { transition-delay: .16s; }
html.js .rows.reveal.is-in .row:nth-child(4) { transition-delay: .22s; }
html.js .rows.reveal.is-in .row:nth-child(5) { transition-delay: .28s; }
html.js .rows.reveal.is-in .row:nth-child(6) { transition-delay: .34s; }

/* ---------- Card action alignment ---------- */
/* pin path-card links to the bottom so they line up across the row */
.path { display: flex; flex-direction: column; }
.path .link-arrow { margin-top: auto; padding-top: 1.4rem; align-self: flex-start; }
/* stack contact email / phone on their own lines */
.contact-list { display: flex; flex-direction: column; gap: 0.55rem; align-items: flex-start; }

/* ---------- Booking embed (YouCanBook.me) ---------- */
.booking-embed { width: 100%; min-height: 480px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.booking-embed iframe { width: 100% !important; max-width: 100%; border: 0; display: block; }
@media (max-width: 600px) { .booking-embed { border-radius: var(--radius-md); min-height: 540px; } }
