/* =============================================================
   MOVEMENT OPTIMIZATION — STYLES
   Brand: premium kinetic, dark, cinematic
   Inspired by: Apple precision, Nike energy, Porsche engineering
   ============================================================= */

:root {
  --bg-0: oklch(6% 0.008 40);
  --bg-1: oklch(9% 0.01 40);
  --bg-2: oklch(13% 0.012 40);
  --bg-3: oklch(17% 0.014 40);

  --accent: oklch(65% 0.2 25);
  --accent-hover: oklch(72% 0.19 27);
  --accent-soft: oklch(65% 0.2 25 / 0.12);
  --accent-glow: oklch(65% 0.2 25 / 0.25);

  --text-1: oklch(95% 0.006 40);
  --text-2: oklch(72% 0.01 40);
  --text-3: oklch(52% 0.01 40);

  --border: oklch(95% 0.006 40 / 0.08);
  --border-hover: oklch(95% 0.006 40 / 0.16);

  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;

  --container: 1200px;
  --nav-h: 72px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 600ms;
}

/* ─── RESET ─────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: var(--bg-0);
  color: var(--text-1);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-optical-sizing: auto;
}

main { overflow: clip; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; border: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0; color: var(--text-2); text-wrap: pretty; }
h1, h2, h3, h4 {
  margin: 0;
  font-family: 'Antonio', 'Arial Narrow', sans-serif;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-wrap: balance;
  color: var(--text-1);
}
h1 { font-size: clamp(3.8rem, 10vw, 8rem); font-weight: 700; }
h2 { font-size: clamp(2.2rem, 5vw, 4.2rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
strong { color: var(--text-1); font-weight: 700; }
section { position: relative; }

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

/* ─── SKIP LINK ─────────────────────────────────────────────── */

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 700;
  padding: 0.75rem 1rem;
  background: var(--text-1);
  color: var(--bg-0);
  border-radius: var(--radius-sm);
  font-weight: 600;
  transform: translateY(-200%);
  transition: transform 0.2s var(--ease-out);
}
.skip-link:focus { transform: translateY(0); }

/* ─── UTILITY ───────────────────────────────────────────────── */

.kicker {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.reveal[style*="--i:1"] { transition-delay: 80ms; }
.reveal[style*="--i:2"] { transition-delay: 160ms; }
.reveal[style*="--i:3"] { transition-delay: 240ms; }
.reveal[style*="--i:4"] { transition-delay: 320ms; }

/* ─── BUTTONS ───────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: 'Antonio', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    transform 200ms var(--ease-out),
    background 200ms var(--ease-out),
    border-color 200ms var(--ease-out),
    box-shadow 300ms var(--ease-out),
    opacity 200ms;
}

.btn--primary {
  background: var(--accent);
  color: var(--text-1);
  box-shadow: 0 0 0 0 var(--accent-glow);
}

.btn--ghost {
  background: transparent;
  border-color: var(--border-hover);
  color: var(--text-1);
}

.btn--full { width: 100%; }

.btn--large {
  min-height: 56px;
  padding-inline: 2rem;
  font-size: 1rem;
}

.btn__tag {
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: oklch(6% 0.01 40 / 0.4);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
}

.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
}

/* ─── NAVIGATION ────────────────────────────────────────────── */

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: var(--nav-h);
  transition: background 300ms var(--ease-out), backdrop-filter 300ms;
}

.nav.scrolled {
  background: oklch(6% 0.008 40 / 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.nav__logo {
  display: inline-flex;
  align-items: baseline;
  font-family: 'Antonio', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: -0.02em;
}
.nav__logo-mark { color: var(--accent); }
.nav__logo-text { color: var(--text-1); font-size: 0.55em; letter-spacing: 0.08em; }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.2rem);
}

.nav__links li a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-2);
  transition: color 200ms;
}

.nav__cta {
  padding: 0.6rem 1.2rem !important;
  border-radius: 999px !important;
  background: var(--accent) !important;
  color: var(--text-1) !important;
  font-weight: 600 !important;
}

.nav__hamburger {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--border);
}

.nav__hamburger span {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--text-1);
  transition: transform 240ms var(--ease-out), opacity 180ms;
}
.nav__hamburger span:nth-child(1) { top: 15px; }
.nav__hamburger span:nth-child(2) { top: 21px; }
.nav__hamburger span:nth-child(3) { top: 27px; }

.nav__hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ─── HERO ──────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--nav-h) clamp(20px, 5vw, 48px) 64px;
}

.hero__bg { position: absolute; inset: 0; z-index: 0; }

.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: brightness(0.4) saturate(0.8);
}

.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 80%, oklch(6% 0.008 40 / 0.9), transparent 70%),
    linear-gradient(180deg, oklch(6% 0.008 40 / 0.3) 0%, oklch(6% 0.008 40 / 0.7) 100%);
}

.hero__content { position: relative; z-index: 1; text-align: center; max-width: 900px; }

.hero__eyebrow {
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero__headline { margin-bottom: 1.8rem; }
.split-line { display: block; }

.hero__sub {
  max-width: 55ch;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.8;
  color: var(--text-2);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.hero__scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 1; }

.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--text-2), transparent);
  animation: pulse-line 2s var(--ease-out) infinite;
}

@keyframes pulse-line {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* ─── MANIFESTO ─────────────────────────────────────────────── */

.manifesto { padding-block: clamp(100px, 14vw, 180px); background: var(--bg-0); }
.manifesto__content { max-width: 52ch; }

.manifesto__text {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: var(--text-2);
}

.manifesto__text em { color: var(--text-1); font-style: normal; font-weight: 600; }

/* ─── STATS ─────────────────────────────────────────────────── */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-1);
}

.stats__item {
  display: flex; flex-direction: column; align-items: center;
  padding: clamp(32px, 5vw, 56px) 16px;
  border-right: 1px solid var(--border);
}
.stats__item:last-child { border-right: 0; }

.stats__number {
  font-family: 'Antonio', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700; letter-spacing: -0.03em;
  color: var(--text-1); line-height: 1;
}

.stats__plus {
  font-family: 'Antonio', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--accent); font-weight: 600;
}

.stats__label {
  margin-top: 0.5rem;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-3);
}

/* ─── METHOD ────────────────────────────────────────────────── */

.method { padding-block: clamp(80px, 12vw, 140px); background: var(--bg-0); }
.method__header { max-width: 28ch; margin-bottom: clamp(48px, 6vw, 80px); }
.method__header h2 { margin-top: 0.8rem; }

.method__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2vw, 24px); }

.method__card {
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-1);
  transition: border-color 300ms var(--ease-out), transform 300ms var(--ease-out);
}

.method__card--feature { grid-row: span 2; display: flex; flex-direction: column; justify-content: center; }

.method__num {
  display: block; margin-bottom: 1.2rem;
  font-family: 'Antonio', sans-serif; font-size: 0.8rem;
  letter-spacing: 0.12em; color: var(--accent);
}

.method__card h3 { margin-bottom: 0.8rem; }
.method__card p { max-width: 42ch; line-height: 1.75; }

.method__visual { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }

.method__visual img {
  width: 100%; height: 100%; min-height: 300px;
  object-fit: cover; object-position: center 30%;
  filter: brightness(0.85) saturate(0.9);
  transition: transform 400ms var(--ease-out);
}

/* ─── SERVICES ──────────────────────────────────────────────── */

.services { padding-block: clamp(80px, 12vw, 140px); background: var(--bg-1); }
.services__header { max-width: 36ch; margin-bottom: clamp(40px, 6vw, 72px); }
.services__header h2 { margin-top: 0.8rem; margin-bottom: 1rem; }
.services__sub { max-width: 48ch; line-height: 1.75; }

.services__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(16px, 2vw, 24px); }

.service {
  padding: clamp(28px, 3.5vw, 36px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-0);
  transition: border-color 300ms var(--ease-out), transform 300ms var(--ease-out);
}

.service__icon {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent); font-size: 1.1rem;
}

.service h3 { margin-bottom: 0.7rem; }
.service p { line-height: 1.75; }

/* ─── CINEMATIC BREAK ───────────────────────────────────────── */

.cinematic {
  position: relative; min-height: 80svh;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(80px, 12vw, 160px) clamp(20px, 5vw, 48px);
  text-align: center; overflow: hidden;
}

.cinematic__bg { position: absolute; inset: 0; }

.cinematic__bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  filter: brightness(0.3) saturate(0.7);
}

.cinematic__content { position: relative; z-index: 1; max-width: 700px; }
.cinematic__content h2 { margin-bottom: 1.2rem; }
.cinematic__content p { max-width: 50ch; margin-inline: auto; margin-bottom: 2rem; font-size: 1.05rem; line-height: 1.8; }

/* ─── PHOTO STRIP ───────────────────────────────────────────── */

.photo-strip {
  overflow: hidden; padding-block: 12px;
  background: var(--bg-0);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.strip__track { display: flex; gap: 12px; width: max-content; animation: marquee 55s linear infinite; }

.strip__track img {
  width: auto; height: 240px; flex-shrink: 0;
  border-radius: var(--radius-sm); object-fit: cover;
  filter: brightness(0.75) saturate(0.85);
  transition: filter 300ms var(--ease-out), transform 300ms var(--ease-out);
}

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── PROOF / TESTIMONIALS ──────────────────────────────────── */

.proof { padding-block: clamp(80px, 12vw, 140px); background: var(--bg-1); }
.proof__heading { margin-bottom: clamp(40px, 6vw, 64px); }
.proof__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(16px, 2vw, 24px); }

.proof__quote {
  padding: clamp(28px, 3.5vw, 36px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-0);
  transition: border-color 300ms var(--ease-out);
}

.proof__quote p { font-size: 1.05rem; line-height: 1.75; color: var(--text-1); margin-bottom: 1.2rem; }
.proof__quote cite { font-style: normal; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); }

/* ─── PRICING ───────────────────────────────────────────────── */

.pricing { padding-block: clamp(80px, 12vw, 140px); background: var(--bg-0); }
.pricing__header { max-width: 32ch; margin-bottom: clamp(40px, 6vw, 72px); }
.pricing__header h2 { margin-top: 0.8rem; }

.pricing__grid { display: grid; grid-template-columns: 1fr 1fr 0.85fr; gap: clamp(16px, 2vw, 24px); align-items: start; }

.pricing__card {
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-1);
  transition: border-color 300ms var(--ease-out);
}

.pricing__card--highlight {
  border-color: transparent;
  background: radial-gradient(ellipse at top right, oklch(65% 0.2 25 / 0.06), transparent 60%), var(--bg-1);
}

.pricing__badge { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.pricing__card h3 { margin-bottom: 0.8rem; }

.pricing__amount { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 1.2rem; }
.pricing__dollar { font-family: 'Antonio', sans-serif; font-size: clamp(2.8rem, 4vw, 3.8rem); font-weight: 700; letter-spacing: -0.03em; color: var(--text-1); }
.pricing__note { font-size: 0.85rem; color: var(--text-3); }
.pricing__desc { margin-bottom: 1.2rem; line-height: 1.7; }

.pricing__features { display: grid; gap: 0.6rem; margin-bottom: 1.6rem; }
.pricing__features li { position: relative; padding-left: 1.2rem; font-size: 0.9rem; color: var(--text-2); }
.pricing__features li::before { content: ''; position: absolute; top: 0.6rem; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

.pricing__process { padding: clamp(24px, 3vw, 36px); border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-1); }
.pricing__process h4 { font-family: 'Antonio', sans-serif; font-size: 1.1rem; letter-spacing: 0; margin-bottom: 1.2rem; }
.pricing__steps { display: grid; gap: 1rem; }
.pricing__steps li { display: grid; gap: 0.2rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.pricing__steps li:first-child { padding-top: 0; border-top: 0; }
.pricing__steps li strong { color: var(--text-1); }
.pricing__steps li span { font-size: 0.88rem; color: var(--text-2); }

/* ─── SERVICE AREAS ─────────────────────────────────────────── */

.areas { padding-block: clamp(80px, 12vw, 140px); background: var(--bg-1); }
.areas__header { max-width: 32ch; margin-bottom: clamp(40px, 6vw, 64px); }
.areas__header h2 { margin-top: 0.8rem; }

.areas__layout { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: clamp(20px, 4vw, 48px); align-items: start; }

.areas__map { position: relative; min-height: 480px; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--bg-2); }
#service-map { position: relative; min-height: 480px; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--bg-2); }
#service-map-fallback { width: 100%; height: 100%; object-fit: cover; }

.map-fallback-note { position: absolute; inset: auto 12px 12px 12px; padding: 0.8rem 1rem; border-radius: var(--radius-sm); background: oklch(9% 0.01 40 / 0.9); color: var(--text-2); font-size: 0.82rem; }

.leaflet-container { background: var(--bg-2) !important; }
.leaflet-control-attribution { background: oklch(9% 0.01 40 / 0.9) !important; color: var(--text-3) !important; font-size: 10px !important; }
.leaflet-control-attribution a { color: var(--text-2) !important; }

.map-marker { background: none !important; border: 0 !important; }
.map-dot { width: 10px; height: 10px; margin: 0 auto 4px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.map-marker span { display: block; padding: 0.2rem 0.5rem; border-radius: 999px; background: oklch(9% 0.01 40 / 0.92); color: var(--text-1); font-size: 10px; font-weight: 700; text-align: center; white-space: nowrap; }

.areas__list { display: grid; gap: 0; }
.area-item { padding: 1.2rem 0; border-bottom: 1px solid var(--border); }
.area-item:first-child { padding-top: 0; }
.area-item:last-child { border-bottom: 0; }
.area-item h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.area-item p { font-size: 0.88rem; }
.areas__note { margin-top: 1.2rem; padding: 1rem; border-radius: var(--radius-sm); background: var(--accent-soft); font-size: 0.85rem; color: var(--text-2); }

/* ─── BOOKING ───────────────────────────────────────────────── */

.book { padding-block: clamp(80px, 12vw, 140px); background: var(--bg-0); }

.book__layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.book__intro h2 { margin-top: 0.8rem; margin-bottom: 1rem; }
.book__desc { max-width: 42ch; margin-bottom: 2rem; line-height: 1.75; }

.book__steps { display: grid; gap: 0.8rem; margin-bottom: 2rem; }
.book__step { display: flex; align-items: center; gap: 1rem; padding: 0.8rem 1rem; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--bg-1); }
.book__step-num { font-family: 'Antonio', sans-serif; font-size: 0.8rem; letter-spacing: 0.1em; color: var(--accent); flex-shrink: 0; }
.book__step p { color: var(--text-1); font-size: 0.9rem; }
.book__serving { padding: 1rem; border-radius: var(--radius-sm); background: var(--accent-soft); font-size: 0.85rem; color: var(--text-1); }

.book__form-wrap { padding: clamp(24px, 3.5vw, 40px); border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-1); }
.book__form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group--full { grid-column: 1 / -1; }
.form-group label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); }

.form-group input, .form-group select, .form-group textarea {
  width: 100%; min-height: 48px; padding: 0.8rem 1rem;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--bg-0); color: var(--text-1); font-size: 0.95rem;
  transition: border-color 200ms, box-shadow 200ms;
  appearance: none; -webkit-appearance: none;
}

.form-group textarea { min-height: 100px; resize: vertical; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-3); }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 2.5rem;
}
.form-group select option { background: var(--bg-2); color: var(--text-1); }

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft);
}

.form__conflict { min-height: 1rem; margin-top: 1rem; color: oklch(70% 0.15 25); font-size: 0.82rem; }
.form__fine-print { margin-top: 0.8rem; font-size: 0.78rem; text-align: center; color: var(--text-3); }
.form__error { display: none; color: oklch(70% 0.15 25); font-size: 0.72rem; }
.form-group.has-error input, .form-group.has-error select { border-color: oklch(70% 0.15 25 / 0.7); }
.form-group.has-error .form__error { display: block; }

.form__success { display: none; text-align: center; padding: 3rem 2rem; }
.form__success-icon { display: grid; place-items: center; width: 56px; height: 56px; margin: 0 auto 1.2rem; border-radius: 50%; background: var(--accent); font-size: 1.5rem; color: var(--text-1); }
.form__success h3 { margin-bottom: 0.6rem; }
.form__success p { max-width: 30ch; margin-inline: auto; }
.form__success-meta { margin-top: 0.8rem !important; color: var(--accent); font-weight: 600; }

/* ─── FOOTER ────────────────────────────────────────────────── */

.footer { padding-block: 64px 28px; background: var(--bg-0); border-top: 1px solid var(--border); }

.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: clamp(24px, 4vw, 48px); padding-bottom: 2.5rem; margin-bottom: 1.5rem; border-bottom: 1px solid var(--border); }

.footer__logo { display: inline-block; margin-bottom: 0.8rem; font-family: 'Antonio', sans-serif; font-size: 1.4rem; font-weight: 700; letter-spacing: -0.02em; color: var(--text-1); }
.footer__logo span { color: var(--accent); }
.footer__brand p { font-size: 0.88rem; color: var(--text-2); max-width: 36ch; }
.footer__nav { display: grid; gap: 0.6rem; }
.footer__nav a { font-size: 0.85rem; color: var(--text-2); transition: color 200ms; }
.footer__serving p { font-size: 0.85rem; color: var(--text-3); margin-bottom: 0.3rem; }
.footer__bottom { display: flex; justify-content: space-between; }
.footer__bottom p { color: var(--text-3); font-size: 0.75rem; }

/* ─── ABOUT PAGE ────────────────────────────────────────────── */

.about-hero { position: relative; min-height: 85svh; display: flex; align-items: flex-end; padding: var(--nav-h) clamp(20px, 5vw, 48px) 80px; }
.about-hero__bg, .about-hero__overlay { position: absolute; inset: 0; }
.about-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.about-hero__overlay { background: linear-gradient(180deg, oklch(6% 0.008 40 / 0.2) 0%, oklch(6% 0.008 40 / 0.9) 80%); }
.about-hero__content { position: relative; z-index: 1; max-width: 700px; }
.about-hero__content h1 { font-size: clamp(3rem, 8vw, 6rem); }
.about-hero__content h1 span { color: var(--accent); }

.bio { padding-block: clamp(80px, 12vw, 140px); background: var(--bg-1); }
.bio__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.bio__text h2 { margin-bottom: 1.2rem; }
.bio__text p { margin-bottom: 1rem; line-height: 1.75; }
.bio__quote { margin-block: 1.5rem; padding: 1.5rem 1.8rem; border-radius: var(--radius-sm); background: var(--accent-soft); border: 1px solid oklch(65% 0.2 25 / 0.15); }
.bio__quote blockquote { font-family: 'Antonio', sans-serif; font-size: clamp(1.2rem, 2.2vw, 1.6rem); line-height: 1.35; color: var(--text-1); }
.bio__image img { width: 100%; height: 560px; object-fit: cover; object-position: center center; border-radius: var(--radius); }

.disciplines { padding-block: clamp(80px, 12vw, 140px); background: var(--bg-0); }
.disciplines__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.discipline-card { position: relative; height: 380px; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--border); }
.discipline-card img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; filter: brightness(0.6) saturate(0.8); transition: transform 400ms var(--ease-out), filter 400ms var(--ease-out); }
.discipline-card__label { position: absolute; inset: auto 0 0 0; padding: 1.4rem 1.2rem; background: linear-gradient(to top, oklch(6% 0.008 40 / 0.95), transparent); }
.discipline-card__label span { display: block; font-family: 'Antonio', sans-serif; font-size: 0.7rem; letter-spacing: 0.12em; color: var(--accent); margin-bottom: 0.3rem; }
.discipline-card__label h4 { font-size: 1rem; margin-bottom: 0.2rem; }
.discipline-card__label p { font-size: 0.75rem; }

.about-gallery { padding-block: clamp(80px, 12vw, 140px); background: var(--bg-1); }
.about-gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 260px; gap: 8px; margin-top: clamp(32px, 5vw, 56px); }
.about-gallery__grid img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-sm); filter: brightness(0.8); transition: filter 300ms var(--ease-out); }
.about-gallery__grid .span-2 { grid-column: span 2; }

.about-cta { padding-block: clamp(80px, 12vw, 140px); background: var(--bg-0); text-align: center; }
.about-cta h2 { margin-bottom: 1rem; }
.about-cta p { max-width: 48ch; margin: 0 auto 2rem; }
.btn-group { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* ─── ADMIN (preserve existing) ─────────────────────────────── */

.admin-page { min-height: 100svh; padding-top: calc(var(--nav-h) + 28px); padding-bottom: 80px; background: var(--bg-1); }
.admin-header h1 { margin-bottom: 0.8rem; }
.admin-auth, .admin-toolbar, .admin-grid { margin-top: 1.25rem; }
.admin-auth__row { display: grid; grid-template-columns: 180px 1fr auto auto; gap: 0.75rem; align-items: center; }
.admin-auth__row label, .admin-edit label { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-3); }

.admin-auth__row input, .admin-toolbar input, .admin-toolbar select, .admin-edit input, .admin-edit select, .admin-edit textarea {
  width: 100%; min-height: 48px; padding: 0.8rem 1rem;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--bg-0); color: var(--text-1); font-size: 0.95rem;
  transition: border-color 200ms, box-shadow 200ms; appearance: none;
}

.admin-auth__row input:focus, .admin-toolbar input:focus, .admin-toolbar select:focus, .admin-edit input:focus, .admin-edit select:focus, .admin-edit textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft);
}

.admin-edit textarea { min-height: 100px; resize: vertical; }
.admin-note { margin-top: 0.65rem; color: var(--text-3); font-size: 0.86rem; }
.admin-note.is-error { color: oklch(70% 0.15 25); }
.admin-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.admin-toolbar__filters, .admin-toolbar__actions { display: flex; gap: 0.7rem; }
.admin-toolbar__filters { flex: 1; }
.admin-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 1rem; }
.admin-list-wrap, .admin-detail { border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-1); }
.admin-list-wrap { overflow: auto; max-height: 72svh; }
.admin-table { width: 100%; min-width: 680px; border-collapse: collapse; }
.admin-table th, .admin-table td { padding: 0.82rem; border-bottom: 1px solid var(--border); text-align: left; vertical-align: top; font-size: 0.86rem; }
.admin-table th { position: sticky; top: 0; z-index: 1; background: var(--bg-2); color: var(--text-2); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }
.admin-table tbody tr { cursor: pointer; transition: background 180ms; }
.admin-table tbody tr:hover, .admin-table tbody tr.is-selected { background: var(--bg-3); }
.admin-status { display: inline-flex; align-items: center; padding: 0.25rem 0.55rem; border: 1px solid var(--border); border-radius: 999px; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; }
.admin-status--new, .admin-status--rescheduled { color: var(--accent); }
.admin-status--confirmed { color: oklch(77% 0.13 155); }
.admin-status--completed { color: oklch(79% 0.08 250); }
.admin-status--cancelled, .admin-status--no-show { color: oklch(70% 0.15 25); }
.admin-detail { padding: 1rem; max-height: 72svh; overflow: auto; }
.admin-detail h3 { margin-bottom: 0.45rem; }
.admin-detail__meta p { margin: 0.45rem 0; font-size: 0.88rem; }
.admin-edit { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1rem; }
.admin-audit { margin-top: 1.25rem; padding-top: 0.9rem; border-top: 1px solid var(--border); }
.admin-audit h4 { margin-bottom: 0.6rem; }
.admin-audit ul { margin: 0; padding-left: 1rem; }
.admin-audit li { margin-bottom: 0.4rem; color: var(--text-2); font-size: 0.82rem; }

/* ─── HOVER STATES ──────────────────────────────────────────── */

@media (hover: hover) {
  .btn:hover { transform: translateY(-2px); }
  .btn--primary:hover { box-shadow: 0 16px 48px var(--accent-glow); background: var(--accent-hover); }
  .btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
  .nav__links li a:hover { color: var(--text-1); }
  .footer__nav a:hover { color: var(--text-1); }
  .method__card:hover, .service:hover, .proof__quote:hover, .pricing__card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
  .method__visual:hover img, .discipline-card:hover img { transform: scale(1.04); filter: brightness(0.9) saturate(1); }
  .strip__track img:hover { filter: brightness(0.95) saturate(1); transform: scale(1.02); }
  .photo-strip:hover .strip__track { animation-play-state: paused; }
  .about-gallery__grid img:hover { filter: brightness(1); }
}

@media (pointer: coarse) {
  .btn, .nav__cta, .nav__hamburger, .form-group input, .form-group select, .form-group textarea { min-height: 48px; }
  /* Prevent double-tap zoom on interactive elements */
  .btn, a, button { touch-action: manipulation; }
}

/* ─── RESPONSIVE ────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .method__grid { grid-template-columns: 1fr; }
  .method__card--feature { grid-row: auto; }
  .pricing__grid { grid-template-columns: 1fr 1fr; }
  .pricing__process { grid-column: 1 / -1; }
  .areas__layout { grid-template-columns: 1fr; }
  .areas__map, #service-map { min-height: 360px; }
  .book__layout { grid-template-columns: 1fr; }
  .bio__grid { grid-template-columns: 1fr; }
  .disciplines__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  /* ── Navigation ── */
  .nav__hamburger { display: inline-flex; }
  .nav__links {
    position: fixed; top: var(--nav-h); right: 0; left: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 0.8rem 20px calc(1.2rem + env(safe-area-inset-bottom, 0px));
    background: oklch(6% 0.008 40 / 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateY(-120%);
    transition: transform 300ms var(--ease-out);
    border-bottom: 1px solid var(--border);
    max-height: calc(100svh - var(--nav-h));
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links li a {
    display: block;
    padding: 1rem 0;
    color: var(--text-1);
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border);
  }
  .nav__links li:last-child a { border-bottom: 0; }
  .nav__cta { text-align: center; margin-top: 0.75rem; padding: 1rem !important; }

  /* ── Hero ── */
  .hero { padding-bottom: 48px; }
  .hero__headline { font-size: clamp(2.8rem, 13vw, 4.8rem); }
  .hero__sub { font-size: 0.95rem; line-height: 1.7; margin-bottom: 2rem; }
  .hero__actions { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .hero__actions .btn { justify-content: center; }
  .hero__scroll { display: none; }

  /* ── Stats ── */
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(2) { border-right: 0; }
  .stats__item { padding: 24px 12px; }

  /* ── Content sections ── */
  .services__grid, .proof__grid { grid-template-columns: 1fr; }
  .pricing__grid, .book__form-grid, .footer__grid { grid-template-columns: 1fr; }
  .cinematic { min-height: 65svh; }
  .cinematic__content h2 { font-size: clamp(1.6rem, 5vw, 2.4rem); }

  /* ── About / disciplines ── */
  .disciplines__grid { grid-template-columns: 1fr 1fr; }
  .discipline-card { height: 280px; }
  .about-gallery__grid { grid-template-columns: 1fr 1fr; }
  .about-gallery__grid .span-2 { grid-column: auto; }

  /* ── Booking form ── */
  .book__form-wrap { padding: 20px; }
  .form-group input, .form-group select, .form-group textarea {
    font-size: 1rem; /* Prevents iOS zoom on focus */
  }

  /* ── Map ── */
  .areas__map, #service-map { min-height: 300px; }

  /* ── Footer safe area ── */
  .footer { padding-bottom: calc(28px + env(safe-area-inset-bottom, 0px)); }
}

@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .stats__number { font-size: clamp(2.2rem, 10vw, 2.8rem); }
  .stats__label { font-size: 0.65rem; letter-spacing: 0.08em; }
  .disciplines__grid { grid-template-columns: 1fr; }
  .about-gallery__grid { grid-template-columns: 1fr; }
  .strip__track img { height: 160px; }
  .manifesto__text { font-size: clamp(1.2rem, 5vw, 1.6rem); }
  .cinematic { min-height: 55svh; padding-block: 60px; }
  .cinematic__content p { font-size: 0.92rem; }
  .hero__eyebrow { font-size: 0.6rem; letter-spacing: 0.14em; }
  .pricing__dollar { font-size: clamp(2.2rem, 8vw, 3rem); }
  .areas__map, #service-map { min-height: 240px; }
  .container { padding-inline: 16px; }
}

/* ─── CURSOR GLOW ──────────────────────────────────────────── */

.cursor-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  background: radial-gradient(circle, oklch(65% 0.2 25 / 0.06) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 300ms;
  opacity: 0;
  will-change: left, top;
}
.cursor-glow.active { opacity: 1; }

/* ─── SCROLL PROGRESS BAR ──────────────────────────────────── */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), oklch(72% 0.19 27), oklch(65% 0.2 25));
  z-index: 300;
  transition: width 50ms linear;
  will-change: width;
}

/* ─── HERO TEXT CLIP REVEAL ────────────────────────────────── */

.split-line {
  display: block;
  overflow: hidden;
}

.split-line .line-inner {
  display: block;
  transform: translateY(110%);
  transition: transform 0.8s var(--ease-smooth);
}

.split-line.revealed .line-inner {
  transform: translateY(0);
}

/* Stagger each line */
.split-line:nth-child(2) .line-inner { transition-delay: 150ms; }
.split-line:nth-child(3) .line-inner { transition-delay: 300ms; }

/* ─── 3D TILT CARDS ────────────────────────────────────────── */

.tilt-card {
  transform-style: preserve-3d;
  perspective: 800px;
  transition: transform 400ms var(--ease-out);
  will-change: transform;
}

/* ─── ANIMATED GRADIENT BORDER (pricing highlight) ──────────── */

.pricing__card--highlight {
  position: relative;
  overflow: hidden;
}

.pricing__card--highlight::before {
  content: '';
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: inherit;
  background: conic-gradient(
    from var(--gradient-angle, 0deg),
    var(--accent),
    oklch(72% 0.15 50),
    var(--accent),
    oklch(55% 0.2 20),
    var(--accent)
  );
  animation: gradient-rotate 4s linear infinite;
}

.pricing__card--highlight::after {
  content: '';
  position: absolute;
  inset: 2px;
  z-index: -1;
  border-radius: calc(var(--radius) - 2px);
  background: var(--bg-1);
}

@property --gradient-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes gradient-rotate {
  to { --gradient-angle: 360deg; }
}

/* ─── NOISE TEXTURE OVERLAY ────────────────────────────────── */

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 500;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ─── PULSING CTA GLOW ─────────────────────────────────────── */

.btn--primary {
  animation: cta-pulse 3s var(--ease-out) infinite;
}

@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 0 0 0 oklch(65% 0.2 25 / 0.3); }
  50% { box-shadow: 0 0 24px 4px oklch(65% 0.2 25 / 0.15); }
}

.btn--primary:hover {
  animation: none;
}

/* ─── ENHANCED CARD HOVER GLOW ─────────────────────────────── */

.service, .method__card, .proof__quote {
  position: relative;
  overflow: hidden;
}

.service::before, .method__card::before, .proof__quote::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 400ms var(--ease-out);
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), oklch(65% 0.2 25 / 0.08), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

@media (hover: hover) {
  .service:hover::before, .method__card:hover::before, .proof__quote:hover::before {
    opacity: 1;
  }
}

/* ─── DISCIPLINE CARD ENHANCED HOVER ───────────────────────── */

.discipline-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(6% 0.008 40 / 0.95) 0%, oklch(6% 0.008 40 / 0.4) 40%, transparent 100%);
  opacity: 0;
  transition: opacity 400ms var(--ease-out);
  pointer-events: none;
}

@media (hover: hover) {
  .discipline-card:hover::after { opacity: 1; }
  .discipline-card:hover img { transform: scale(1.08); filter: brightness(0.75) saturate(1.1); }
  .discipline-card:hover .discipline-card__label { transform: translateY(-8px); }
}

.discipline-card__label {
  transition: transform 400ms var(--ease-out);
  z-index: 1;
}

/* ─── SMOOTH ENTRANCE FOR STATS NUMBERS ────────────────────── */

.stats__number {
  display: inline-block;
  transition: transform 0.6s var(--ease-smooth);
}

/* ─── HERO EYEBROW ANIMATED UNDERLINE ──────────────────────── */

.hero__eyebrow {
  position: relative;
  display: inline-block;
}

.hero__eyebrow::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--accent);
  transition: width 1.2s var(--ease-smooth) 0.8s;
}

.hero__eyebrow.visible::after {
  width: 100%;
}

/* ─── MANIFESTO GRADIENT TEXT REVEAL ───────────────────────── */

.manifesto__text {
  background-color: var(--text-2);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
}

.manifesto__text.text-revealed {
  animation: text-fill 2s var(--ease-smooth) forwards;
}

@keyframes text-fill {
  to { background-size: 100% 100%; }
}

/* ─── SCROLL MARGIN FOR ANCHOR LINKS ───────────────────────── */

section[id] { scroll-margin-top: calc(var(--nav-h) + 16px); }

/* ─── STICKY MOBILE CTA BAR ────────────────────────────────── */

.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  background: oklch(6% 0.008 40 / 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  transform: translateY(100%);
  transition: transform 350ms var(--ease-out);
  display: none;
}

.mobile-cta.visible { transform: translateY(0); }
.mobile-cta .btn { width: 100%; }

@media (max-width: 768px) {
  .mobile-cta { display: block; }
  /* Add bottom padding to body so content isn't hidden behind sticky CTA */
  .footer { padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px)); }
}

@media (min-width: 769px) {
  .mobile-cta { display: none !important; }
}

/* ─── FOCUS ─────────────────────────────────────────────────── */

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

/* ─── REDUCED MOTION ────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero__scroll { display: none; }
  .strip__track { animation: none; }
  .cursor-glow { display: none; }
  .scroll-progress { display: none; }
  .split-line .line-inner { transform: none !important; }
  .btn--primary { animation: none; }
  .hero__eyebrow::after { width: 100%; transition: none; }
}
