/* ==========================================================================
   SCULPTAGE — Global Styles
   Mobile-first · Vanilla CSS · Brand system
   ========================================================================== */

/* --- Licensed brand fonts (place files in assets/fonts/ to override Google stand-ins) --- */
@font-face {
  font-family: 'Afterglow';
  src:
    local('Afterglow Regular'),
    local('Afterglow'),
    url('../assets/fonts/Afterglow-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Arpona Sans';
  src:
    local('Arpona Sans Extra Light'),
    local('Arpona Sans ExtraLight'),
    local('ArponaSans-ExtraLight'),
    url('../assets/fonts/ArponaSans-ExtraLight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
  /* Trial font lacks digits and symbols; letters only so Work Sans covers phone, email, hours. */
  unicode-range: U+0041-005A, U+0061-007A, U+00C0-00FF, U+0100-017F;
}

/* --- Design tokens --- */
:root {
  --sand: #DABB9C;
  --olive: #524A2E;
  --terracotta: #B17253;
  --terracotta-dark: #9A6349;
  --terracotta-soft: rgba(177, 114, 83, 0.12);
  --terracotta-tint: rgba(177, 114, 83, 0.22);
  --glow-border: rgba(177, 114, 83, 0.38);
  --glow-soft: 0 0 0 1px rgba(177, 114, 83, 0.2), 0 4px 18px rgba(177, 114, 83, 0.12);
  --glow-hover: 0 0 0 1px rgba(177, 114, 83, 0.42), 0 6px 24px rgba(177, 114, 83, 0.2);
  --glow-active: 0 0 0 2px rgba(218, 187, 156, 0.55), 0 4px 20px rgba(177, 114, 83, 0.28);
  --glow-sand: 0 0 20px rgba(218, 187, 156, 0.35);
  --umber: #5C3828;
  --charcoal: #2A2521;
  --muted: #4F473C;
  --white: #FFFFFF;
  --surface: #F6F5F2;
  --surface-warm: #F7F1E9;
  --card: #FFFFFF;
  --card-border: #D8D2C8;
  --gold: #C8A96E;

  --font-display: 'Afterglow', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-serif: 'Afterglow', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Arpona Sans', 'Work Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-weight-body: 200;
  --font-weight-heading: 400;
  --font-weight-ui: 500;

  --shadow-soft: 0 2px 24px rgba(42, 37, 33, 0.05);
  --shadow-lift: 0 8px 32px rgba(42, 37, 33, 0.08);
  --border-card: 1px solid var(--card-border);
  --border-subtle: 1px solid rgba(232, 228, 220, 0.9);
  --radius: 2px;
  --radius-lg: 14px;
  --transition: 0.6s ease-out;
  --transition-fast: 0.4s ease-out;

  --nav-height: 80px;
  --nav-height-scrolled: 64px;
  --header-height: 0px;
  --sidebar-width: 300px;
  --nav-text: #F0EAE0;
  --container: 1080px;
  --text-measure: 36rem;
  --section-pad: clamp(4rem, 11vw, 7rem);
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .service-category-card::after {
    display: none;
  }

  .btn--shimmer::before {
    display: none;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: var(--font-weight-body);
  line-height: 1.75;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--olive); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--terracotta); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: var(--font-weight-heading);
  line-height: 1.15;
  color: var(--umber);
  margin: 0 0 0.85em;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.75rem, 7.5vw, 4.5rem); letter-spacing: 0.025em; }
h2 { font-size: clamp(1.85rem, 4.5vw, 2.75rem); letter-spacing: 0.02em; }
h3 { font-size: clamp(1.3rem, 3vw, 1.65rem); }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.section {
  padding: var(--section-pad) 0;
}

.section--tint {
  background: var(--surface);
}

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--umber);
  margin-bottom: 1rem;
}

.eyebrow::after {
  content: '';
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--terracotta);
  margin-top: 0.65rem;
  opacity: 0.9;
}

.text-center .eyebrow::after {
  margin-left: auto;
  margin-right: auto;
}

.text-italic { font-style: italic; }
.text-terracotta { color: var(--terracotta); }
.text-olive { color: var(--olive); }
.text-center { text-align: center; }

.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;
}

/* --- Contour motif --- */
.contour-divider {
  width: 100%;
  height: 48px;
  opacity: 0.35;
  pointer-events: none;
}

.contour-divider svg { width: 100%; height: 100%; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: var(--font-weight-ui);
  letter-spacing: 0.02em;
  text-transform: none;
  padding: 0.95rem 1.85rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
  box-shadow: 0 0 0 1px rgba(177, 114, 83, 0.15);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  color: var(--white);
  box-shadow: var(--glow-hover);
}

.btn--primary:active {
  transform: scale(0.985);
  box-shadow: var(--glow-active);
}

.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--olive);
  box-shadow: 0 0 0 0 transparent;
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background: var(--terracotta-soft);
  color: var(--terracotta-dark);
  border-color: var(--terracotta);
  box-shadow: var(--glow-soft);
}

.btn--outline:active {
  transform: scale(0.985);
  box-shadow: var(--glow-active);
}

.btn:focus-visible {
  outline: none;
}

.btn--link {
  background: none;
  border: none;
  border-bottom: 1px solid var(--olive);
  border-radius: 0;
  padding: 0 0 0.15rem;
  font-size: 0.9rem;
  font-weight: var(--font-weight-ui);
  letter-spacing: 0.02em;
  color: var(--umber);
  overflow: visible;
}

.btn--link:hover {
  color: var(--terracotta);
  border-bottom-color: var(--terracotta);
  background: none;
}

.btn--book.btn--shimmer::before,
.service-card__book.btn--shimmer::before,
.nav__book.btn--shimmer::before,
.service-detail-panel__book.btn--shimmer::before {
  display: none;
}

.btn--shimmer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 25%, rgba(255, 255, 255, 0.45) 50%, transparent 75%);
  transform: translateX(-120%);
  opacity: 0;
  pointer-events: none;
}

.btn--shimmer:hover::before,
.btn--shimmer:focus-visible::before,
.btn--shimmer:active::before {
  opacity: 0.35;
  animation: shimmer 0.65s ease-out forwards;
}

@keyframes shimmer {
  to { transform: translateX(120%); }
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}

/* --- Cards --- */
.card {
  background: var(--card);
  border: var(--border-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 2rem;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

@media (hover: hover) and (pointer: fine) {
  .card:hover,
  .card.is-hovered {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lift), var(--glow-soft);
    border-color: rgba(177, 114, 83, 0.22);
  }
}

.card-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .card-grid--2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .card-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.card--journey {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card--journey .card__body { flex: 1; }

.card--journey .card__cta {
  margin-top: auto;
  padding-top: 1.5rem;
}

.card--journey .card__cta .btn {
  font-size: 0.85rem;
}

.card__tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 0.65rem;
}

.card__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--olive);
  margin: 0.5rem 0;
}

.card__save {
  font-size: 0.85rem;
  color: var(--olive);
  font-weight: 500;
  opacity: 0.85;
}

/* Section heading accent */
.section h2::after {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--olive);
  margin-top: 0.85rem;
  opacity: 0.35;
}

.text-center h2::after {
  margin-left: auto;
  margin-right: auto;
}

/* --- Navigation — site-wide sidebar (see LineSidebar.css) --- */
.site-sidebar .nav__lang {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--olive);
  background: transparent;
  border: 1px solid rgba(82, 74, 46, 0.28);
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.site-sidebar .nav__lang:hover,
.site-sidebar .nav__lang:focus-visible {
  color: var(--umber);
  border-color: var(--olive);
  background: rgba(82, 74, 46, 0.06);
}

.nav__lang {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.55);
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.nav__lang:hover {
  color: var(--white);
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav__book.btn {
  font-size: 0.88rem;
  padding: 0.7rem 1.2rem;
  white-space: nowrap;
}

.site-sidebar .nav__book.btn {
  font-size: 0.92rem;
  padding: 0.75rem 1.25rem;
}

.site-sidebar .nav__book.btn--book {
  background: var(--olive);
  color: var(--white);
  border-color: var(--olive);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

.site-sidebar .nav__book.btn--book:hover,
.site-sidebar .nav__book.btn--book:focus-visible {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
  box-shadow: var(--shadow-lift);
}

.site-sidebar .nav__book.btn--book:active {
  transform: scale(0.985);
  box-shadow: none;
}

.btn--book {
  background: transparent;
  color: var(--sand);
  border-color: var(--terracotta);
  box-shadow: 0 0 12px rgba(177, 114, 83, 0.12);
}

.btn--book:hover,
.btn--book:focus-visible {
  background: var(--terracotta-tint);
  border-color: var(--sand);
  color: var(--white);
  box-shadow: var(--glow-soft), var(--glow-sand);
}

.btn--book:active {
  transform: scale(0.985);
  box-shadow: var(--glow-active);
}

body.sidebar-open {
  overflow: hidden;
}

/* --- Footer --- */
.site-footer {
  background:
    radial-gradient(ellipse 110% 70% at 18% 0%, rgba(177, 114, 83, 0.06) 0%, transparent 52%),
    radial-gradient(ellipse 85% 55% at 88% 100%, rgba(82, 74, 46, 0.04) 0%, transparent 48%),
    linear-gradient(180deg, var(--white) 0%, var(--surface-warm) 58%, var(--surface) 100%);
  color: var(--olive);
  border-top: 1px solid rgba(82, 74, 46, 0.08);
  padding: clamp(2rem, 5vw, 3rem) 0 clamp(1.25rem, 3vw, 1.75rem);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35) 50%, transparent);
  pointer-events: none;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.site-footer a {
  color: var(--olive);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.site-footer a:hover { color: var(--terracotta); }

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.85fr) minmax(0, 0.95fr) minmax(0, 0.85fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
  padding-bottom: clamp(1.5rem, 3vw, 2rem);
}

.footer__brand {
  padding-right: clamp(0.5rem, 2vw, 1.5rem);
}

.footer__brand-head {
  margin-bottom: 0.85rem;
}

.footer__logo {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  opacity: 0.95;
  transition: opacity 0.2s ease;
}

.footer__logo:hover { opacity: 1; }

.footer__logo-img {
  display: block;
  width: 100%;
  max-width: 11.5rem;
  height: auto;
}

.footer__logo-text {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.6vw, 2.1rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--charcoal);
}

.footer__brand-line {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  color: var(--olive);
}

.footer__tagline {
  margin: 0;
  max-width: 22rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(82, 74, 46, 0.68);
}

.footer__legal-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.85rem;
  margin: 1rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: rgba(82, 74, 46, 0.45);
}

.footer__col,
.footer__visit {
  min-width: 0;
}

.footer__eyebrow {
  margin: 0 0 1rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive);
}

.footer__eyebrow::after {
  content: '';
  display: block;
  width: 1.35rem;
  height: 2px;
  margin-top: 0.55rem;
  background: var(--terracotta-tint);
}

.footer__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
}

.footer__nav a {
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: rgba(82, 74, 46, 0.78);
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer__nav a:hover {
  color: var(--terracotta);
  transform: translateX(2px);
}

.footer__studio-name {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--olive);
}

.footer__address,
.footer__hours {
  margin: 0 0 0.65rem;
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(82, 74, 46, 0.68);
}

.footer__map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  color: var(--terracotta-dark);
  border-bottom: 1px solid rgba(177, 114, 83, 0.35);
  padding-bottom: 0.1rem;
}

.footer__map-link:hover {
  color: var(--terracotta);
  border-bottom-color: rgba(177, 114, 83, 0.55);
}

.footer__visit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__book {
  min-height: 2.75rem;
  padding-inline: 1.35rem;
  margin-bottom: 1.35rem;
  box-shadow: 0 4px 16px rgba(177, 114, 83, 0.18);
}

.footer__book:hover,
.footer__book:focus-visible {
  box-shadow: 0 6px 20px rgba(177, 114, 83, 0.24), var(--glow-hover);
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.footer__social-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(82, 74, 46, 0.55);
  margin-right: 0.15rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  color: var(--olive);
  border: 1px solid rgba(82, 74, 46, 0.16);
  background: rgba(255, 255, 255, 0.5);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.footer__social-link:hover {
  color: var(--terracotta);
  border-color: rgba(177, 114, 83, 0.4);
  background: var(--terracotta-soft);
  transform: translateY(-1px);
}

.footer__social-link svg {
  width: 1.05rem;
  height: 1.05rem;
}

.footer__bottom {
  border-top: 1px solid rgba(82, 74, 46, 0.1);
  margin-top: 1.75rem;
  padding-top: 1.1rem;
  text-align: center;
}

.footer__credit {
  display: inline-block;
  color: rgba(82, 74, 46, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.footer__credit:hover {
  color: var(--terracotta);
}

.footer__legal {
  display: none;
}

.footer__legal a,
.footer__credit--legacy {
  color: rgba(82, 74, 46, 0.55);
  font-size: 0.72rem;
}

.footer__legal a:hover,
.footer__credit--legacy:hover {
  color: var(--terracotta);
}

.footer__dot {
  color: rgba(82, 74, 46, 0.22);
  user-select: none;
}

.footer__copy,
.footer__location {
  white-space: nowrap;
}

.page-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: clamp(3rem, 10vw, 6rem) 0;
}

.page-404__hero {
  width: 100%;
}

.page-404__title {
  margin: 0.75rem 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 400;
  color: var(--olive);
}

.page-404__text {
  max-width: 32rem;
  margin: 0 auto 1.75rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(82, 74, 46, 0.72);
}

.page-404__actions {
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Homepage sections --- */
.home-trust {
  background: var(--cream);
  border-bottom: 1px solid rgba(74, 67, 48, 0.08);
  padding: 1.15rem 0;
}

.home-announcement {
  padding: clamp(1.25rem, 3.5vw, 1.75rem) 0 0;
  background: var(--cream);
}

.home-announcement__card {
  display: flex;
  align-items: center;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
  padding: clamp(1.1rem, 2.5vw, 1.35rem) clamp(1.15rem, 3vw, 1.6rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 241, 232, 0.96) 55%, rgba(241, 228, 214, 0.92) 100%);
  border: 1px solid rgba(177, 114, 83, 0.22);
  border-radius: calc(var(--radius-lg) + 2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 14px 36px rgba(74, 67, 48, 0.07);
}

.home-announcement__copy {
  flex: 1 1 14rem;
  min-width: 0;
}

.home-announcement__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.55rem;
}

.home-announcement__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
  background: rgba(102, 92, 57, 0.08);
  border: 1px solid rgba(102, 92, 57, 0.14);
}

.home-announcement__badge--new {
  color: #8f4f36;
  background: rgba(177, 114, 83, 0.12);
  border-color: rgba(177, 114, 83, 0.22);
}

.home-announcement__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
  flex-shrink: 0;
  margin-left: auto;
}

.home-announcement__title {
  margin: 0 0 0.4rem;
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.8vw, 1.65rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--olive);
}

.home-announcement__text {
  margin: 0;
  max-width: 40rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
}

.home-announcement__cta {
  flex-shrink: 0;
  margin-left: auto;
  min-height: 2.65rem;
  padding-inline: 1.35rem;
  border-color: rgba(102, 92, 57, 0.35);
  color: var(--olive);
}

.home-announcement__cta:hover {
  border-color: var(--olive);
  background: rgba(102, 92, 57, 0.05);
}

.home-trust__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.home-trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 7.5rem;
}

.home-trust__value {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: var(--olive);
  line-height: 1.2;
}

.home-trust__label {
  margin-top: 0.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: var(--muted);
}

.home-trust__divider {
  width: 1px;
  height: 2rem;
  background: rgba(74, 67, 48, 0.12);
  flex-shrink: 0;
}

.home-founder {
  padding: clamp(3rem, 8vw, 5rem) 0;
  background: var(--white);
}

.home-founder--minimal {
  padding: clamp(2.25rem, 5vw, 3.5rem) 0;
}

.home-founder__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.home-founder__media {
  position: relative;
}

.home-founder__photo {
  display: block;
  width: 100%;
  max-width: 26rem;
  margin: 0 auto;
  border-radius: 1.25rem;
  box-shadow: 0 18px 50px rgba(74, 67, 48, 0.12);
}

.home-founder__content h2 {
  margin: 0.35rem 0 0.65rem;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 400;
  color: var(--olive);
}

.home-founder--minimal .home-founder__content h2 {
  margin-bottom: 0.5rem;
}

.home-founder__credentials {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.home-founder__text {
  margin: 0 0 1.35rem;
  max-width: 34rem;
  line-height: 1.7;
  color: var(--muted);
}

.home-founder--minimal .home-founder__text {
  margin-bottom: 1rem;
  max-width: 30rem;
  font-size: 0.98rem;
  line-height: 1.65;
}

.home-results {
  padding: clamp(3rem, 8vw, 5rem) 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.home-results__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.home-results__image {
  display: block;
  width: 100%;
  border-radius: 1.25rem;
  box-shadow: 0 18px 50px rgba(74, 67, 48, 0.1);
}

.home-results__content h2 {
  margin: 0.35rem 0 0.85rem;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 400;
  color: var(--olive);
}

.home-results__content p {
  margin: 0 0 1.35rem;
  max-width: 30rem;
  line-height: 1.7;
  color: var(--muted);
}

.home-reviews {
  padding: clamp(2rem, 4vw, 2.75rem) 0;
  background: var(--cream);
  border-top: 1px solid rgba(74, 67, 48, 0.06);
}

.home-reviews__inner {
  max-width: 38rem;
  margin-inline: auto;
  text-align: center;
}

.home-reviews__featured {
  margin: 0 0 1.15rem;
  padding: 0;
  border: none;
}

.home-reviews__featured .review-card__stars {
  display: inline-flex;
  justify-content: center;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--sand);
}

.home-reviews__featured .review-card__star.is-filled {
  color: var(--olive);
}

.home-reviews__quote {
  margin: 0.7rem 0 0.45rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  line-height: 1.6;
  color: var(--umber);
}

.home-reviews__author {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.home-reviews__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.home-reviews__rating {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.home-reviews__rating .reviews__score {
  font-size: 0.82rem;
}

.home-reviews__cta {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--olive);
  text-decoration: none;
  transition: color 0.2s ease;
}

.home-reviews__cta:hover,
.home-reviews__cta:focus-visible {
  color: var(--umber);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.home-newsletter {
  padding: clamp(2.5rem, 6vw, 3.5rem) 0;
  background: var(--surface-warm);
  border-top: 1px solid rgba(74, 67, 48, 0.08);
}

.home-newsletter__inner {
  max-width: 28rem;
  margin-inline: auto;
  text-align: center;
}

.home-newsletter__eyebrow {
  margin-bottom: 0.85rem;
}

.home-newsletter__eyebrow::after {
  margin-inline: auto;
}

.home-newsletter__inner h2 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.65rem, 3.5vw, 2rem);
}

.home-newsletter__text {
  margin: 0 auto 1.35rem;
  max-width: 24rem;
  line-height: 1.6;
  font-size: 0.98rem;
  color: var(--muted);
}

.home-newsletter__btn {
  min-height: 2.75rem;
  padding-inline: 1.75rem;
}

.home-cta {
  padding-bottom: clamp(3.5rem, 8vw, 5rem);
}

.home-cta__faq {
  margin: 1.25rem 0 0;
}

.home-cta__faq-link {
  font-size: 0.95rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.home-cta__faq-link:hover {
  color: var(--olive);
}

/* --- Hero --- */
.hero {
  padding: clamp(4.5rem, 14vw, 9rem) 0 clamp(3.5rem, 10vw, 6rem);
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.hero--video {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 36rem;
  padding: 0;
  overflow: hidden;
  background: #2a2521;
}

.hero--video .hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #2a2521;
}

.hero--video .hero__video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  object-fit: cover;
  object-position: center;
}

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

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero--video .hero__scrim {
  background: linear-gradient(
    to top,
    rgba(42, 37, 33, 0.78) 0%,
    rgba(42, 37, 33, 0.45) 38%,
    transparent 68%
  );
}

.hero--video .hero__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2.5rem, 6vw, 5rem);
}

.hero--video .hero__content.container {
  max-width: none;
}

.hero--video .hero__headline {
  font-size: clamp(2.25rem, 3.8vw, 3.25rem);
  margin-bottom: 0.85rem;
}

.hero--video .hero__subhead {
  max-width: 32rem;
  margin-bottom: 2rem;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.hero--video .hero__eyebrow {
  color: var(--sand);
}

.hero--video .hero__headline,
.hero--video .hero__headline .text-italic {
  color: var(--white);
  text-shadow: 0 1px 14px rgba(42, 37, 33, 0.4);
}

.hero--video .hero__subhead {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 10px rgba(42, 37, 33, 0.35);
}

.hero--video .btn--outline {
  border-color: rgba(255, 255, 255, 0.85);
  color: var(--white);
  background: transparent;
}

.hero--video .btn--outline:hover,
.hero--video .btn--outline:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
}

.hero--compact {
  padding: clamp(3rem, 8vw, 5rem) 0;
  background: var(--white);
}

.page-hero {
  padding: clamp(2.5rem, 6vw, 3.5rem) 0 clamp(1.5rem, 4vw, 2rem);
  background: linear-gradient(180deg, var(--surface-warm) 0%, var(--surface) 100%);
  border-bottom: 1px solid rgba(74, 67, 48, 0.08);
  text-align: center;
}

.page-hero__inner {
  max-width: 34rem;
  margin-inline: auto;
}

.page-hero .eyebrow::after {
  margin-inline: auto;
}

.page-hero__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--charcoal);
}

.page-hero__lede {
  margin: 0 auto;
  max-width: 32ch;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
}

.page-hero__note {
  margin: 1rem 0 0;
  font-size: 0.92rem;
}

.hero__contour {
  position: absolute;
  right: -5%;
  top: 10%;
  width: 45%;
  max-width: 400px;
  opacity: 0.12;
  pointer-events: none;
}

.hero__content { position: relative; z-index: 1; max-width: var(--text-measure); }

.hero__headline {
  color: var(--umber);
  margin-bottom: 1rem;
}

.hero__headline .text-italic {
  font-family: var(--font-display);
  color: var(--olive);
  font-weight: 400;
  opacity: 0.9;
}

.hero__subhead {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.8;
  max-width: 28rem;
  margin-bottom: 2.5rem;
  color: var(--charcoal);
}

/* Hero reveal animation */
.hero__eyebrow,
.hero__headline,
.hero__subhead,
.hero__cta {
  opacity: 0;
  transform: translateY(16px);
}

.hero.is-loaded .hero__eyebrow { animation: heroReveal 0.7s ease-out 0.1s forwards; }
.hero.is-loaded .hero__headline { animation: heroReveal 0.7s ease-out 0.25s forwards; }
.hero.is-loaded .hero__subhead { animation: heroReveal 0.7s ease-out 0.45s forwards; }
.hero.is-loaded .hero__cta { animation: heroReveal 0.7s ease-out 0.65s forwards; }

@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__eyebrow, .hero__headline, .hero__subhead, .hero__cta {
    opacity: 1;
    transform: none;
  }
}

/* --- Scroll reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.85s ease-out, transform 0.85s ease-out;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .treatments-reveal-1,
  .treatments-reveal-2,
  .treatments-reveal-3,
  .treatments-reveal-4 { transition-delay: 0ms; }
}

/* --- Our Treatments (homepage) --- */
.treatments {
  background: var(--white);
}

.treatments__layout {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
}

.treatments__intro {
  max-width: 26rem;
}

.treatments__headline {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: var(--font-weight-heading);
  line-height: 1.15;
  color: var(--olive);
  margin: 0 0 1.25rem;
  letter-spacing: 0.02em;
}

.treatments__headline .text-italic {
  font-family: var(--font-display);
  color: var(--olive);
  font-weight: 400;
}

.treatments__cta {
  border-color: var(--olive);
  color: var(--olive);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.treatments__cta:hover {
  color: var(--terracotta);
  border-color: var(--terracotta);
  background: transparent;
}

.treatments__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.875rem;
}

.treatment-card {
  position: relative;
  display: block;
  aspect-ratio: 1 / 0.9;
  overflow: hidden;
  border-radius: var(--radius-lg);
  text-decoration: none;
  background: var(--surface);
}

.treatment-card__img,
.treatment-card__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease-out;
}

.treatment-card__video {
  display: block;
  pointer-events: none;
}

.treatment-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(42, 37, 33, 0.92) 0%,
    rgba(46, 41, 30, 0.78) 30%,
    rgba(42, 37, 33, 0.38) 55%,
    rgba(42, 37, 33, 0) 78%
  );
  transition: background 0.6s ease-out;
  pointer-events: none;
}

.treatment-card__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 1rem 1rem 1.1rem;
}

.treatment-card__name {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.4;
}

.treatments-reveal-1 { transition-delay: 0.08s; }
.treatments-reveal-2 { transition-delay: 0.16s; }
.treatments-reveal-3 { transition-delay: 0.24s; }
.treatments-reveal-4 { transition-delay: 0.32s; }

@media (hover: hover) and (pointer: fine) {
  .treatment-card:hover .treatment-card__img,
  .treatment-card:hover .treatment-card__video,
  .treatment-card:focus-visible .treatment-card__img,
  .treatment-card:focus-visible .treatment-card__video {
    transform: scale(1.03);
  }

  .treatment-card:hover .treatment-card__overlay,
  .treatment-card:focus-visible .treatment-card__overlay {
    background: linear-gradient(
      to top,
      rgba(42, 37, 33, 0.96) 0%,
      rgba(46, 41, 30, 0.85) 32%,
      rgba(42, 37, 33, 0.45) 58%,
      rgba(42, 37, 33, 0.08) 82%
    );
  }
}

.treatment-card:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 3px;
}

@media (min-width: 900px) {
  .treatments__layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(2.5rem, 5vw, 4.5rem);
  }
}

@media (min-width: 900px) and (max-width: 1140px) {
  .treatments__layout {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 899px) {
  .treatments__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .treatment-card {
    aspect-ratio: 1 / 0.95;
  }

  .treatment-card__content {
    padding: 0.7rem 0.6rem 0.75rem;
  }

  .treatment-card__name {
    font-size: 0.64rem;
    letter-spacing: 0.1em;
    line-height: 1.35;
  }

  .treatments__intro {
    max-width: none;
    text-align: center;
  }

  .treatments__intro .eyebrow::after {
    margin-left: auto;
    margin-right: auto;
  }

  .treatments__cta {
    width: 100%;
    max-width: 20rem;
    margin: 0 auto;
  }
}

/* --- Journey section (swipe stack) --- */
.journey-section {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(2rem, 5vw, 3rem);
  background:
    radial-gradient(ellipse 65% 50% at 88% 10%, rgba(177, 114, 83, 0.07), transparent 62%),
    radial-gradient(ellipse 55% 45% at 6% 92%, rgba(218, 187, 156, 0.45), transparent 65%),
    linear-gradient(180deg, var(--surface-warm) 0%, var(--surface) 100%);
}

.journey-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.journey-section__bg-accent {
  position: absolute;
  right: -4%;
  bottom: -10%;
  width: min(40vw, 400px);
  height: min(40vw, 400px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(218, 187, 156, 0.35) 0%, rgba(177, 114, 83, 0.08) 42%, transparent 68%);
}

.journey-section__container {
  position: relative;
  z-index: 1;
}

.journey-section__layout {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 280px);
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
}

.journey-section__copy {
  max-width: 28rem;
}

.journey-section__copy .eyebrow::after {
  margin-left: 0;
}

.journey-section__title-wrap {
  position: relative;
  display: inline-block;
  margin: 0.15rem 0 0.65rem;
  padding: 0.35rem 0;
  max-width: 100%;
}

.journey-section__title-wrap::before {
  content: '';
  position: absolute;
  inset: -1.25rem -1.75rem;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 58% 52% at 28% 48%, rgba(218, 187, 156, 0.42), transparent 72%),
    radial-gradient(ellipse 48% 44% at 72% 38%, rgba(177, 114, 83, 0.16), transparent 68%),
    radial-gradient(ellipse 54% 48% at 52% 62%, rgba(82, 74, 46, 0.1), transparent 70%);
  filter: blur(18px);
  opacity: 0.85;
  animation: journey-aurora 14s ease-in-out infinite alternate;
}

.journey-section__title {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  line-height: 1.12;
}

.journey-section__title::after {
  display: none;
}

.journey-section__subtitle {
  margin: 0;
  max-width: 34ch;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
}

.journey-section__explore {
  margin-top: 1.35rem;
}

@keyframes journey-aurora {
  0% {
    opacity: 0.65;
    transform: scale(0.98) translate3d(-2%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: scale(1.04) translate3d(2%, -1%, 0);
  }
}

.journey-swipe {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 280px;
  margin: 0 0 0 auto;
  justify-self: end;
  perspective: 1000px;
}

.journey-swipe__stage {
  position: relative;
  width: min(100%, 270px);
  height: clamp(248px, 34vw, 292px);
  transform-style: preserve-3d;
}

.journey-swipe__card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.45rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-lg);
  color: var(--white);
  box-shadow: 0 24px 56px rgba(42, 37, 33, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: grab;
  user-select: none;
  touch-action: none;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  overflow: hidden;
  margin: 0;
  text-decoration: none;
}

.journey-swipe__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(42, 37, 33, 0.05) 0%, rgba(42, 37, 33, 0.72) 72%),
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.16), transparent 42%);
  pointer-events: none;
}

.journey-swipe__card > * {
  position: relative;
  z-index: 1;
}

.journey-swipe__card.is-dragging,
.journey-swipe.is-dragging .journey-swipe__card.is-top {
  cursor: grabbing;
}

.journey-swipe__card--buccal {
  background: linear-gradient(145deg, #b17253 0%, #665c39 48%, #2a2521 100%);
}

.journey-swipe__card--jaw {
  background: linear-gradient(145deg, #6b7a6e 0%, #4a5248 50%, #2a2521 100%);
}

.journey-swipe__card--hair-targeted {
  background: linear-gradient(145deg, #7a5c45 0%, #4a3a2e 52%, #2a2521 100%);
}

.journey-swipe__card--hair-full {
  background: linear-gradient(145deg, #8a6848 0%, #5c4530 48%, #2a2521 100%);
}

.journey-swipe__card--procell {
  background: linear-gradient(145deg, #8a7358 0%, #524a2e 52%, #2a2521 100%);
}

.journey-swipe__badge {
  align-self: flex-start;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.95);
}

.journey-swipe__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 1.75rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--white);
}

.journey-swipe__text {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  max-width: 28ch;
}

.journey-swipe__cta {
  margin-top: 0.2rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
}

.journey-swipe__hint {
  margin: 0.85rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

@media (min-width: 900px) {
  .journey-swipe__stage {
    width: 270px;
    height: 292px;
  }

  .journey-section__bg-accent {
    right: 2%;
    bottom: -6%;
    width: min(34vw, 380px);
    height: min(34vw, 380px);
  }
}

@media (max-width: 899px) {
  .journey-section__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .journey-section__copy {
    max-width: none;
    text-align: center;
  }

  .journey-section__copy .eyebrow::after {
    margin-left: auto;
    margin-right: auto;
  }

  .journey-section__title-wrap {
    margin-left: auto;
    margin-right: auto;
  }

  .journey-section__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .journey-section__explore {
    width: 100%;
    max-width: 20rem;
    margin-left: auto;
    margin-right: auto;
  }

  .journey-swipe {
    margin: 0 auto;
    justify-self: center;
    padding-top: 0;
  }

  .journey-swipe__stage {
    height: clamp(252px, 64vw, 300px);
  }

  .journey-section__bg-accent {
    right: -18%;
    bottom: -8%;
    width: min(62vw, 300px);
    height: min(62vw, 300px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .journey-section__title-wrap::before {
    animation: none;
  }

  .journey-swipe__card {
    cursor: pointer;
    transition: none !important;
  }

  .journey-swipe__hint {
    display: none;
  }
}

/* --- Before/After video cards --- */
.result-card { overflow: hidden; }

.result-video {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--surface);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  cursor: pointer;
}

.result-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.result-video__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.result-video--photo .result-video__poster {
  object-fit: cover;
  object-position: center 18%;
  z-index: 1;
}

.result-video--photo-wide .result-video__layer--before .result-video__poster {
  object-position: center 22%;
}

.result-video__layer {
  position: absolute;
  inset: 0;
  transition: opacity 0.35s ease-out;
}

.result-video__layer--after { opacity: 0; }

.result-video.is-after .result-video__layer--before { opacity: 0; }
.result-video.is-after .result-video__layer--after { opacity: 1; }

.result-video__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(254, 253, 251, 0.92);
  color: var(--umber);
  padding: 0.35rem 0.6rem;
  border-radius: var(--radius);
  z-index: 2;
}

.result-video__hint {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: calc(100% - 2rem);
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(102, 92, 57, 0.82);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  pointer-events: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.result-video__hint-icon {
  display: inline-block;
  animation: pulseHint 2s ease-in-out infinite;
}

@keyframes pulseHint {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

@media (prefers-reduced-motion: reduce) {
  .result-video__hint-icon { animation: none; }
}

.result-card__meta {
  padding: 1rem 1.25rem 0.25rem;
  font-weight: 600;
  color: var(--olive);
}

.result-card__caption {
  padding: 0 1.25rem 1.25rem;
}

.result-card__desc {
  font-size: 0.9rem;
  color: var(--umber);
  opacity: 0.85;
  margin: 0;
  line-height: 1.55;
}

.results-grid {
  max-width: 22rem;
  margin: 0 auto;
}

@media (min-width: 700px) {
  .results-grid:has(.result-card:nth-child(2)) {
    max-width: 52rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Results page Instagram */
.results-video-section__intro {
  max-width: 32rem;
  margin: 0 auto 2.5rem;
}

.results-instagram-section {
  padding-top: clamp(2rem, 5vw, 3rem);
}

.results-instagram-follow {
  max-width: 34rem;
  margin: 0 auto;
}

.results-instagram-follow__eyebrow {
  margin-bottom: 1rem;
}

.results-instagram-follow__eyebrow::after {
  margin-left: auto;
  margin-right: auto;
}

.results-instagram-follow__title {
  margin: 0 0 0.75rem;
}

.results-instagram-follow__text {
  max-width: 28rem;
  margin: 0 auto 1.5rem;
  color: var(--muted);
  line-height: 1.6;
}

.results-instagram-follow__cta {
  margin-bottom: 0.5rem;
}

.results-instagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 34rem;
  margin: clamp(2.5rem, 6vw, 4rem) auto 0;
}

.results-instagram__eyebrow {
  margin-bottom: 1.5rem;
}

.results-instagram__eyebrow::after {
  margin-left: auto;
  margin-right: auto;
}

.results-instagram__embed {
  width: 100%;
  max-width: 32rem;
}

.results-instagram__embed .instagram-media {
  margin: 0 auto !important;
  max-width: 100% !important;
  min-width: 0 !important;
  width: 100% !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-lift) !important;
  border: var(--border-card) !important;
}

.results-instagram__embed iframe {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.section > .container > .reveal > p.text-center,
.section > .container > p.text-center.reveal {
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  font-weight: var(--font-weight-body);
  line-height: 1.8;
}

.result-card__quote {
  padding: 0 1.25rem 1.25rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--umber);
  position: relative;
  padding-left: 2rem;
}

.result-card__quote::before {
  content: '\201C';
  position: absolute;
  left: 1rem;
  top: -0.1rem;
  font-size: 1.75rem;
  color: var(--olive);
  line-height: 1;
}

/* --- Reviews (results page) --- */
.reviews {
  max-width: 40rem;
  margin: 0 auto;
}

.reviews__intro {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 3.5rem);
}

.reviews__title {
  margin: 0 0 1rem;
}

.reviews__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem 0.6rem;
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.reviews__score {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--olive);
  line-height: 1;
}

.reviews__source {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.reviews__count {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  color: var(--muted);
}

.reviews__carousel {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2rem);
}

.reviews__viewport {
  position: relative;
  min-height: clamp(10rem, 28vw, 14rem);
}

.reviews__list {
  position: relative;
}

.review-item {
  margin: 0;
  padding: 0;
  border: none;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  inset: 0;
  transition: opacity 0.45s ease-out, visibility 0.45s ease-out;
}

.review-item.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.review-item__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--charcoal);
  margin: 0 0 0.85rem;
}

.review-item__author {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--olive);
}

.reviews__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
}

.reviews__counter {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 3.5rem;
  text-align: center;
}

.reviews__btn {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--olive);
  background: transparent;
  border: 1px solid rgba(102, 92, 57, 0.35);
  border-radius: var(--radius);
  padding: 0.65rem 1.1rem;
  cursor: pointer;
  transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.reviews__btn:hover,
.reviews__btn:focus-visible {
  color: var(--terracotta);
  border-color: var(--terracotta);
  background: rgba(177, 114, 83, 0.06);
}

.reviews__btn--next {
  border-color: var(--olive);
  color: var(--olive);
}

.reviews__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin: clamp(2rem, 5vw, 2.75rem) 0 0;
  text-align: center;
}

.reviews__link--write {
  color: var(--muted);
  border-bottom-color: rgba(111, 101, 89, 0.35);
}

.reviews__link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--olive);
  text-decoration: none;
  border-bottom: 1px solid rgba(102, 92, 57, 0.35);
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.reviews__link:hover,
.reviews__link:focus-visible {
  color: var(--terracotta);
  border-color: var(--terracotta);
}

.review-card__stars {
  display: flex;
  gap: 0.1rem;
}

.review-card__star {
  font-size: 0.85rem;
  color: rgba(102, 92, 57, 0.2);
  line-height: 1;
}

.review-card__star.is-filled {
  color: #FBBC05;
}

/* --- Quiz modal --- */
.quiz-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42, 37, 33, 0.25);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-fast), visibility var(--transition-fast);
}

.quiz-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.quiz-modal {
  position: relative;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background-color: #F7F1E9;
  background-image:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.55) 0%,
      rgba(247, 241, 233, 0.62) 45%,
      rgba(255, 255, 255, 0.7) 100%
    ),
    url('../assets/quiz-modal-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.quiz-modal__header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(102, 92, 57, 0.12);
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.quiz-modal__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0;
  color: var(--olive);
}

.quiz-modal__close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--umber);
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
}

.quiz-modal__body {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  overflow-y: auto;
  min-height: 280px;
}

.quiz-progress {
  height: 3px;
  background: var(--surface);
  margin-bottom: 1.5rem;
  border-radius: 2px;
  overflow: hidden;
}

.quiz-progress__bar {
  height: 100%;
  background: var(--olive);
  transition: width 0.5s ease-out;
  width: 0%;
}

.quiz-step {
  position: absolute;
  inset: 1.5rem;
  opacity: 0;
  transform: translateX(40px);
  pointer-events: none;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.quiz-step.is-active {
  position: relative;
  inset: auto;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.quiz-step.is-exit {
  opacity: 0;
  transform: translateX(-40px);
}

.quiz-step__question {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}

.quiz-options { display: flex; flex-direction: column; gap: 0.6rem; }

.quiz-option {
  display: block;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  background: var(--card);
  border: var(--border-card);
  border-radius: var(--radius);
  color: var(--umber);
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.quiz-option:hover {
  border-color: var(--olive);
  background: var(--surface);
}

.quiz-results { display: flex; flex-direction: column; gap: 1rem; }

.quiz-results-screenshot {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--olive);
  margin: -0.35rem 0 0.25rem;
  padding: 0.65rem 0.85rem;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(102, 92, 57, 0.1);
  border-radius: var(--radius);
  text-align: center;
}

.quiz-result-item {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  border-left: 3px solid var(--olive);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.quiz-result-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.quiz-result-item p {
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
}

.quiz-result-item__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.quiz-result-btn {
  font-size: 0.72rem;
  padding: 0.45rem 0.85rem;
  letter-spacing: 0.03em;
  min-height: 0;
  line-height: 1.3;
}

.quiz-result-btn--learn {
  border-color: var(--olive);
  color: var(--olive);
}

.quiz-result-btn--learn:hover {
  border-color: var(--olive);
  color: var(--olive);
  background: rgba(102, 92, 57, 0.05);
}

.quiz-result-btn--book {
  flex-shrink: 0;
  color: var(--terracotta-dark);
  border-color: var(--terracotta);
}

.quiz-result-btn--book:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
}

.quiz-results-send {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(102, 92, 57, 0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.quiz-results-send__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--olive);
  margin: 0 0 0.35rem;
}

.quiz-results-send__sub {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 1rem;
}

.quiz-results-send__field {
  display: block;
  margin-bottom: 0.75rem;
}

.quiz-results-send__field span {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 0.35rem;
}

.quiz-results-send__field input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.88rem;
  padding: 0.55rem 0.7rem;
  border: var(--border-card);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.85);
  color: var(--umber);
}

.quiz-results-send__field input:focus {
  outline: none;
  border-color: var(--olive);
}

.quiz-results-send__actions {
  margin-top: 0.25rem;
}

.quiz-results-send__actions .btn {
  width: 100%;
  justify-content: center;
}

.quiz-results-send__privacy {
  margin: 0.85rem 0 0;
  font-size: 0.72rem;
  line-height: 1.55;
  color: var(--muted);
}

.quiz-results-send__privacy a {
  color: var(--olive);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.quiz-results-send__status {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--muted);
}

.quiz-results-send__status.is-success {
  color: var(--olive);
}

.quiz-results-send__status.is-error {
  color: var(--terracotta);
}

.quiz-results-send__status.is-pending {
  color: var(--muted);
  font-style: italic;
}

/* --- Quiz email gate (before results) --- */
.quiz-gate__back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: none;
  padding: 0;
  margin: 0 0 1rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--olive);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.quiz-gate__back::before {
  content: '←';
  font-size: 0.95rem;
  line-height: 1;
}

.quiz-gate__back:hover {
  color: var(--umber);
}

.quiz-gate__sub {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
  margin: -0.5rem 0 1.25rem;
}

.quiz-gate__form {
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(102, 92, 57, 0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.quiz-gate__field {
  display: block;
  margin-bottom: 0.75rem;
}

.quiz-gate__field:last-of-type {
  margin-bottom: 0;
}

.quiz-gate__field span:first-child {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 0.35rem;
}

.quiz-gate__field input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.88rem;
  padding: 0.55rem 0.7rem;
  border: var(--border-card);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.85);
  color: var(--umber);
}

.quiz-gate__field input:focus {
  outline: none;
  border-color: var(--olive);
}

.quiz-gate__field input[aria-invalid="true"],
.quiz-gate__field:has(.quiz-gate__error:not(:empty)) input {
  border-color: var(--terracotta);
}

.quiz-gate__error {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--terracotta);
  min-height: 0;
}

.quiz-gate__actions {
  margin-top: 1rem;
}

.quiz-gate__actions .btn {
  width: 100%;
  justify-content: center;
}

.quiz-gate__privacy {
  margin: 0.85rem 0 0;
  font-size: 0.72rem;
  line-height: 1.55;
  color: var(--muted);
}

.quiz-gate__privacy a {
  color: var(--olive);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.quiz-gate__status {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--muted);
}

.quiz-gate__status.is-error {
  color: var(--terracotta);
}

.quiz-gate__status.is-pending {
  color: var(--muted);
  font-style: italic;
}

.quiz-results-sent {
  margin-top: 1.25rem;
  padding: 0.85rem 1rem;
  background: rgba(102, 92, 57, 0.06);
  border: 1px solid rgba(102, 92, 57, 0.12);
  border-radius: var(--radius);
}

.quiz-results-sent__message {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--olive);
  text-align: center;
}

/* --- Journeys page tabs --- */
.jump-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 3rem;
  margin-left: calc(-1 * clamp(1.25rem, 4vw, 2.5rem));
  margin-right: calc(-1 * clamp(1.25rem, 4vw, 2.5rem));
  padding: 0.7rem clamp(1rem, 3vw, 1.35rem);
  position: sticky;
  top: 0.75rem;
  background: rgba(247, 241, 233, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  z-index: 10;
}

.jump-nav__link {
  font-family: var(--font-body);
  font-size: clamp(0.82rem, 2vw, 0.92rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  padding: 0.6rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--charcoal);
  text-decoration: none;
  transition:
    color var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
  position: relative;
  line-height: 1.2;
  text-align: center;
}

.jump-nav__link::after {
  display: none;
}

.jump-nav__link:hover {
  color: var(--terracotta-dark);
  background: var(--terracotta-soft);
  border-color: rgba(177, 114, 83, 0.12);
}

.jump-nav__link.is-active {
  color: var(--terracotta);
  background: var(--white);
  border-color: var(--card-border);
  box-shadow: 0 2px 12px rgba(42, 37, 33, 0.06);
}

.jump-nav__link.is-active::after {
  display: none;
}

@media (min-width: 900px) {
  .jump-nav {
    gap: 0.5rem;
    padding: 0.8rem 1.25rem;
  }

  .jump-nav__link {
    padding: 0.65rem 1.25rem;
  }
}

.service-category { margin-bottom: 3rem; scroll-margin-top: calc(var(--header-height) + 80px); }

.service-item {
  display: grid;
  gap: 0.5rem;
  padding: 1.25rem 0;
  border-bottom: var(--border-subtle);
}

@media (min-width: 640px) {
  .service-item {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
}

.service-item__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0;
}

.service-item__meta {
  font-size: 0.85rem;
  color: var(--olive);
  font-weight: 500;
  white-space: nowrap;
}

.service-item__best {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--muted);
  grid-column: 1 / -1;
}

/* --- Journeys page --- */
.journeys-page {
  padding-top: clamp(2.5rem, 6vw, 3.5rem);
}

.journeys-quiz {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.35rem, 4vw, 1.75rem);
  margin-bottom: 3rem;
  background: var(--surface-warm);
  border: var(--border-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

@media (min-width: 640px) {
  .journeys-quiz {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}

.journeys-quiz__copy {
  flex: 1;
  min-width: 0;
}

.journeys-quiz__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.8vw, 1.45rem);
  font-weight: var(--font-weight-heading);
  color: var(--olive);
  margin: 0.35rem 0 0.5rem;
}

.journeys-quiz__sub {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--umber);
  max-width: 32rem;
}

.journeys-quiz__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.65rem;
  flex-shrink: 0;
}

.journeys-quiz__meta {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--olive);
  text-align: center;
  letter-spacing: 0.02em;
}

@media (min-width: 640px) {
  .journeys-quiz__actions {
    align-items: flex-end;
  }

  .journeys-quiz__meta {
    text-align: right;
  }
}

.journey-category {
  margin-bottom: 4.5rem;
  scroll-margin-top: calc(var(--header-height) + 80px);
}

.journey-category--warm {
  margin-left: calc(-1 * clamp(1.25rem, 4vw, 2.5rem));
  margin-right: calc(-1 * clamp(1.25rem, 4vw, 2.5rem));
  padding: clamp(2.5rem, 6vw, 3.5rem) clamp(1.25rem, 4vw, 2.5rem);
  background: var(--surface-warm);
}

.journey-category__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: var(--font-weight-heading);
  color: var(--umber);
  margin: 0 0 1.5rem;
}

.journey-category__intro {
  max-width: var(--text-measure);
  margin-bottom: 2rem;
}

.journey-category__intro p {
  margin-bottom: 0;
  font-weight: var(--font-weight-body);
  line-height: 1.8;
  max-width: 32rem;
  color: var(--umber);
}

.journey-category__proof {
  margin: -0.75rem 0 1.5rem;
  font-size: 0.9rem;
}

.journey-category__proof a {
  color: var(--terracotta);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.journey-category__proof a:hover {
  color: var(--terracotta-dark);
}

/* --- Services page --- */
.services-page {
  --service-text-weight: 500;
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 2rem);
  min-height: calc(100dvh - 2rem);
  padding-top: clamp(3rem, 8vw, 5.5rem);
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

.services-page__inner {
  position: relative;
  z-index: 1;
  max-width: 72rem;
}

.services-page__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 85% 55% at 8% -5%, rgba(218, 187, 156, 0.22), transparent 58%),
    radial-gradient(ellipse 70% 45% at 95% 105%, rgba(177, 114, 83, 0.1), transparent 52%),
    linear-gradient(180deg, var(--surface-warm) 0%, var(--white) 42%, var(--surface) 100%);
}

.services-page__ambient::before,
.services-page__ambient::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  animation: services-glow-drift 14s ease-in-out infinite;
}

.services-page__ambient::before {
  width: min(42vw, 22rem);
  height: min(42vw, 22rem);
  top: 12%;
  right: -6%;
  background: rgba(218, 187, 156, 0.28);
}

.services-page__ambient::after {
  width: min(36vw, 18rem);
  height: min(36vw, 18rem);
  bottom: 8%;
  left: -4%;
  background: rgba(177, 114, 83, 0.14);
  animation-delay: -7s;
}

@keyframes services-glow-drift {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.85; }
  50% { transform: translate(12px, -16px) scale(1.06); opacity: 1; }
}

/* Services search */
.services-search {
  position: relative;
  z-index: 30;
  margin-bottom: clamp(2rem, 5vw, 2.5rem);
  max-width: 40rem;
}

.services-search__label {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--terracotta-dark);
}

.services-search__field {
  position: relative;
}

.services-search__input {
  width: 100%;
  padding: 1rem 3rem 1rem 1.15rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(177, 114, 83, 0.06);
  transition:
    border-color 0.35s ease-out,
    box-shadow 0.35s ease-out;
}

.services-search__input::placeholder {
  color: var(--muted);
  opacity: 0.85;
}

.services-search__input:hover {
  border-color: rgba(177, 114, 83, 0.28);
}

.services-search__input:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: var(--glow-hover);
}

.services-search__icon {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  color: var(--terracotta);
  pointer-events: none;
  display: flex;
}

.services-search__results {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  right: 0;
  max-height: min(22rem, 50vh);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--white);
  border: 1px solid rgba(177, 114, 83, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift), var(--glow-soft);
}

.services-search__result {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  width: 100%;
  padding: 0.9rem 1.1rem;
  text-align: left;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(216, 210, 200, 0.65);
  cursor: pointer;
  text-decoration: none;
  font: inherit;
  color: inherit;
  transition: background 0.25s ease-out;
}

.services-search__result:last-child {
  border-bottom: none;
}

.services-search__result:hover,
.services-search__result:focus-visible {
  background: var(--terracotta-soft);
  outline: none;
}

.services-search__result-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--umber);
  line-height: 1.25;
}

.services-search__result-meta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--terracotta-dark);
}

.services-search__empty {
  margin: 0;
  padding: 1rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--muted);
}

.services-page__consult {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--terracotta);
  text-decoration: none;
  border-bottom: 1px solid rgba(177, 114, 83, 0.35);
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.services-page__consult:hover {
  color: var(--terracotta-dark);
  border-bottom-color: var(--terracotta-dark);
}

.service-category-grid {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 720px) {
  .service-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .service-category-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc(50% - 0.625rem);
    justify-self: center;
    width: 100%;
  }
}

.service-category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  width: 100%;
  min-height: 11.5rem;
  padding: clamp(1.5rem, 3vw, 1.85rem) clamp(1.45rem, 3vw, 1.75rem);
  text-align: left;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: var(--border-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(177, 114, 83, 0.07);
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.45s ease-out,
    box-shadow 0.45s ease-out,
    border-color 0.45s ease-out;
}

.service-category-card--featured {
  border-color: rgba(177, 114, 83, 0.32);
  box-shadow: var(--shadow-soft), var(--glow-soft);
}

.service-category-card__index {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.65rem);
  font-weight: 400;
  line-height: 1;
  color: rgba(177, 114, 83, 0.12);
  pointer-events: none;
  transition: color 0.45s ease-out, transform 0.45s ease-out;
}

.service-category-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--terracotta);
  color: var(--white);
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  line-height: 1.2;
}

.service-category-card--featured .service-category-card__index {
  top: 2.5rem;
}

.service-category-card__desc {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--charcoal);
  margin: 0.15rem 0 0.35rem;
  max-width: 26rem;
}

.service-category-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.5) 45%,
    rgba(218, 187, 156, 0.25) 55%,
    transparent 100%
  );
  transform: skewX(-18deg);
  pointer-events: none;
  transition: left 0.7s ease;
  z-index: 0;
}

.service-category-card > * {
  position: relative;
  z-index: 1;
}

.service-category-card:hover,
.service-category-card:focus-visible {
  transform: translateY(-5px);
  border-color: var(--glow-border);
  box-shadow: var(--shadow-lift), var(--glow-hover);
  outline: none;
}

.service-category-card:hover .service-category-card__index,
.service-category-card:focus-visible .service-category-card__index {
  color: rgba(177, 114, 83, 0.22);
  transform: scale(1.05);
}

.service-category-card:hover::after,
.service-category-card:focus-visible::after {
  left: 130%;
}

.service-category-card:active {
  transform: translateY(-1px);
  box-shadow: var(--glow-active);
}

.service-category-card__eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.service-category-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.65rem);
  font-weight: 600;
  color: var(--umber);
  line-height: 1.2;
}

.service-category-card__meta {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--terracotta-dark);
}

.service-category-card__cta {
  margin-top: auto;
  padding-top: 0.5rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--olive);
}

/* Services page — quick help */
.services-quick-help {
  display: grid;
  gap: 0.85rem;
  margin-top: clamp(2rem, 5vw, 2.75rem);
}

@media (min-width: 768px) {
  .services-quick-help {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

.services-quick-help__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  width: 100%;
  padding: 1.15rem 1.25rem;
  text-align: left;
  text-decoration: none;
  background: var(--white);
  border: var(--border-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  font: inherit;
  color: inherit;
  transition:
    transform 0.4s ease-out,
    box-shadow 0.4s ease-out,
    border-color 0.4s ease-out;
}

.services-quick-help__card:hover,
.services-quick-help__card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--glow-border);
  box-shadow: var(--glow-soft);
  outline: none;
}

.services-quick-help__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--umber);
}

.services-quick-help__sub {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.45;
}

/* Staggered reveal — services page */
.services-reveal-1 { transition-delay: 0.05s; }
.services-reveal-2 { transition-delay: 0.12s; }
.services-reveal-3 { transition-delay: 0.19s; }
.services-reveal-4 { transition-delay: 0.26s; }
.services-reveal-5 { transition-delay: 0.33s; }
.services-reveal-6 { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  .services-page__ambient::before,
  .services-page__ambient::after {
    animation: none;
  }

  .services-reveal-1,
  .services-reveal-2,
  .services-reveal-3,
  .services-reveal-4,
  .services-reveal-5,
  .services-reveal-6 {
    transition-delay: 0ms;
  }
}

.service-category-panel__body .journey-transform-cta {
  margin-top: 1.5rem;
  text-align: center;
}

.transform-series-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.transform-series-list__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--umber);
  text-decoration: none;
  background: var(--surface);
  border: var(--border-card);
  border-radius: var(--radius-lg);
  transition:
    transform 0.35s ease-out,
    box-shadow 0.35s ease-out,
    border-color 0.35s ease-out,
    color 0.35s ease-out;
}

.transform-series-list__link::after {
  content: '→';
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--terracotta);
  flex-shrink: 0;
}

.transform-series-list__link:hover,
.transform-series-list__link:focus-visible {
  border-color: var(--glow-border);
  box-shadow: var(--glow-soft);
  color: var(--terracotta-dark);
  transform: translateX(3px);
  outline: none;
}

button.jump-nav__link {
  font: inherit;
  background: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

/* Service category panel */
.service-category-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 1.75rem);
  background: rgba(42, 38, 34, 0.52);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.service-category-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

body.service-category-open {
  overflow: hidden;
}

.service-category-panel {
  width: min(100%, 56rem);
  max-height: min(90vh, 52rem);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(177, 114, 83, 0.28);
  box-shadow:
    0 24px 64px rgba(42, 37, 33, 0.18),
    var(--glow-hover),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.service-category-overlay.is-open .service-category-panel {
  transform: translateY(0) scale(1);
}

.service-category-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.5rem 1.1rem;
  border-bottom: 2px solid var(--terracotta-soft);
  flex-shrink: 0;
  background: var(--surface-warm);
}

.service-category-panel__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 600;
  margin: 0;
  color: var(--umber);
  line-height: 1.2;
}

.service-category-panel__subtitle {
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--charcoal);
}

.service-category-panel__close {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 999px;
  background: var(--white);
  color: var(--charcoal);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.service-category-panel__close:hover {
  background: var(--terracotta-soft);
  color: var(--terracotta-dark);
  box-shadow: var(--glow-soft);
}

.service-category-panel__close:active {
  box-shadow: var(--glow-active);
}

.service-category-panel__body {
  padding: 1.35rem 1.5rem 1.5rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.service-category-panel__body .journey-category--warm {
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  background: transparent;
}

.service-category-panel__body .journey-category__proof {
  margin-top: 0;
}

.services-page .journey-category__title {
  font-weight: 600;
  color: var(--umber);
}

.services-page .journey-category__subtitle {
  font-weight: 500;
  color: var(--charcoal);
  opacity: 1;
}

.services-page .journey-category {
  scroll-margin-top: 3.25rem;
}

/* --- Service cards --- */
.service-cards {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .service-cards:not(.service-cards--addons) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.service-card {
  padding: 1.25rem 1.35rem;
  scroll-margin-top: calc(var(--header-height, 0px) + 4rem);
}

.service-card__main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card__info {
  display: grid;
  gap: 0.4rem;
}

.service-card__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  color: var(--umber);
  line-height: 1.25;
  padding-right: 4.5rem;
}

.service-card__summary {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--charcoal);
  margin: 0;
}

.service-card__meta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--terracotta-dark);
  margin: 0;
  letter-spacing: 0.02em;
}

.service-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.service-card__details,
.service-card__book {
  font-size: 0.78rem;
  padding: 0.65rem 1.1rem;
  flex: 1;
  justify-content: center;
  min-width: 6.5rem;
}

.service-card__book {
  flex: 1.2;
  color: var(--terracotta-dark);
  border-color: var(--terracotta);
  box-shadow: 0 0 0 0 transparent;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast);
}

.service-card__book:hover,
.service-card__book:focus-visible {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
  box-shadow: var(--glow-soft);
}

.service-card__book:active {
  transform: scale(0.98);
  box-shadow: var(--glow-active);
}

.service-card__details {
  color: var(--charcoal);
  border-color: var(--card-border);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast);
}

.service-card__details:hover,
.service-card__details:focus-visible {
  border-color: var(--terracotta);
  color: var(--terracotta-dark);
  background: var(--terracotta-soft);
  box-shadow: var(--glow-soft);
}

.service-card__details:active {
  transform: scale(0.98);
  box-shadow: var(--glow-active);
}

.service-card--addon {
  background: var(--surface);
  padding: 1rem 1.15rem;
}

.service-card--addon .service-card__name {
  font-size: 1.05rem;
  padding-right: 0;
}

.service-cards--addons {
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .service-cards--addons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.journey-category--enhancements {
  padding-top: 0.5rem;
}

.service-card__body,
.service-detail__body {
  display: grid;
  gap: 0.85rem;
}

.service-detail__body .service-card__plain,
.service-detail__body .service-card__desc {
  font-weight: 500;
  color: var(--umber);
}

.service-card__plain {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--olive);
  margin: 0;
  line-height: 1.55;
}

.service-card__desc {
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.65;
  color: var(--umber);
}

.service-card__section-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--olive);
  margin: 0.75rem 0 0.35rem;
}

.service-card__list {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.4rem;
}

.service-card__list li {
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--umber);
}

.service-card--signature,
.service-card--new {
  position: relative;
}

.service-card__badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--olive);
  color: var(--white);
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  line-height: 1.2;
}

.service-card__badge--new {
  background: var(--terracotta-dark);
}

/* Service detail panel */
.service-detail-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(42, 38, 34, 0.45);
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.service-detail-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.service-detail-overlay[hidden] {
  display: none !important;
}

body.service-detail-open {
  overflow: hidden;
}

.service-detail-panel {
  width: min(100%, 32rem);
  height: 100%;
  background: var(--cream, #faf8f5);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(42, 38, 34, 0.12);
  transform: translateX(100%);
  transition: transform 0.32s ease;
}

.service-detail-overlay.is-open .service-detail-panel {
  transform: translateX(0);
}

.service-detail-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.35rem 1rem;
  border-bottom: var(--border-subtle);
  flex-shrink: 0;
}

.service-detail-panel__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  margin: 0;
  color: var(--olive);
  line-height: 1.2;
}

.service-detail-panel__meta {
  margin: 0.4rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--umber);
}

.service-detail-panel__close {
  background: none;
  border: none;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  padding: 0.15rem 0.35rem;
}

.service-detail-panel__close:hover {
  color: var(--olive);
}

.service-detail-panel__body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1.35rem 1.5rem;
  -webkit-overflow-scrolling: touch;
}

.service-detail-panel__footer {
  padding: 1rem 1.35rem 1.35rem;
  border-top: var(--border-subtle);
  flex-shrink: 0;
}

.service-detail-panel__book {
  width: 100%;
  justify-content: center;
  color: var(--terracotta-dark);
  border-color: var(--terracotta);
}

.service-detail-panel__book:hover,
.service-detail-panel__book:focus-visible {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
  box-shadow: var(--glow-hover);
}

.service-detail-panel__book:active {
  transform: scale(0.985);
  box-shadow: var(--glow-active);
}

@media (max-width: 767px) {
  .service-detail-overlay {
    justify-content: center;
    align-items: flex-end;
  }

  .service-detail-panel {
    width: 100%;
    max-height: 92vh;
    height: auto;
    border-radius: 1.25rem 1.25rem 0 0;
    transform: translateY(100%);
  }

  .service-detail-overlay.is-open .service-detail-panel {
    transform: translateY(0);
  }

  .service-category-overlay {
    align-items: flex-end;
    padding: 0;
  }

  .service-category-panel {
    width: 100%;
    max-height: 92vh;
    border-radius: 1.25rem 1.25rem 0 0;
    transform: translateY(100%);
  }

  .service-category-overlay.is-open .service-category-panel {
    transform: translateY(0);
  }
}

.journey-category__subtitle {
  font-size: 0.95rem;
  color: var(--charcoal);
  margin: -0.35rem 0 1.5rem;
  max-width: 36rem;
}

.journey-enhancements {
  display: grid;
  gap: 2.5rem;
}

.journey-enhancements__heading {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--olive);
  margin: 0 0 1rem;
}

.service-card--featured {
  background: var(--surface);
  box-shadow: none;
}

.journey-transform-preview {
  margin-bottom: 1.5rem;
}

.journey-transform-cta {
  text-align: center;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.journey-transform-cta p {
  max-width: 28rem;
  margin: 0 auto 1.75rem;
  font-weight: var(--font-weight-body);
  line-height: 1.8;
  color: var(--umber);
}

.journey-beyond {
  padding-top: 0;
  border-top: none;
}

.journeys-cta {
  background: var(--surface-warm);
}

/* --- Packages --- */
.package-section {
  margin-bottom: 3rem;
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.package-highlight {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .package-highlight { grid-template-columns: 1fr 2fr; }
}

.package-price-box {
  background: var(--card);
  border: var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.package-price-box .card__price { font-size: 2.25rem; }

.package-includes li {
  list-style: none;
  margin-left: 0;
  padding-left: 1rem;
  margin-bottom: 0.5rem;
  font-weight: var(--font-weight-body);
  color: var(--umber);
  position: relative;
}

.package-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--olive);
  opacity: 0.5;
}

/* --- Split hero (packages + journeys) --- */
.split-hero,
.package-hero,
.journeys-hero {
  position: relative;
  min-height: clamp(28rem, 72vh, 40rem);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 5rem) 0;
  background: var(--surface-warm);
}

.split-hero__media,
.package-hero__media,
.journeys-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.split-hero__image,
.package-hero__image,
.journeys-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.split-hero__scrim,
.package-hero__scrim,
.journeys-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(255, 255, 255, 0.82) 28%,
    rgba(255, 255, 255, 0.45) 42%,
    rgba(255, 255, 255, 0.08) 58%,
    rgba(255, 255, 255, 0) 68%
  );
}

.split-hero__inner,
.package-hero__inner,
.journeys-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: min(36rem, 52%);
  padding-right: clamp(1rem, 3vw, 2rem);
}

.split-hero__headline,
.package-hero__headline,
.journeys-hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: var(--font-weight-heading);
  line-height: 1.15;
  color: var(--olive);
  margin: 0 0 0.85rem;
}

.split-hero__sub,
.package-hero__sub,
.journeys-hero__sub {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.7;
  color: var(--umber);
  margin: 0 0 1.25rem;
  max-width: 30rem;
}

.split-hero__body,
.package-hero__body,
.journeys-hero__body {
  margin-bottom: 1.5rem;
}

.split-hero__lead,
.package-hero__lead,
.journeys-hero__lead {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 500;
  line-height: 1.55;
  color: var(--olive);
  margin: 0 0 0.85rem;
}

.split-hero__body p,
.package-hero__body p,
.journeys-hero__body p {
  font-size: clamp(0.86rem, 1.8vw, 0.92rem);
  line-height: 1.7;
  color: var(--umber);
  margin: 0 0 0.75rem;
}

.split-hero__body p:last-child,
.package-hero__body p:last-child,
.journeys-hero__body p:last-child {
  margin-bottom: 0;
}

.split-hero__close,
.package-hero__close,
.journeys-hero__close {
  font-weight: 500;
  color: var(--olive);
}

.split-hero__cta,
.package-hero__cta,
.journeys-hero__cta {
  border-color: var(--olive);
  color: var(--olive);
  font-size: 0.82rem;
}

.split-hero__cta:hover,
.package-hero__cta:hover,
.journeys-hero__cta:hover {
  border-color: var(--olive);
  color: var(--olive);
  background: rgba(102, 92, 57, 0.05);
}

@media (max-width: 899px) {
  .split-hero,
  .package-hero,
  .journeys-hero {
    display: block;
    --split-hero-image-h: min(calc(100vw / (1024 / 682)), 72svh);
    height: var(--split-hero-image-h);
    min-height: 14rem;
    padding: 0;
    overflow: hidden;
    background: var(--surface-warm);
  }

  .split-hero__image,
  .package-hero__image,
  .journeys-hero__image {
    object-fit: cover;
    object-position: center 28%;
  }

  .split-hero__scrim,
  .package-hero__scrim,
  .journeys-hero__scrim {
    display: none;
  }

  .split-hero .split-hero__inner.container,
  .package-hero .split-hero__inner.container,
  .journeys-hero .split-hero__inner.container {
    position: absolute;
    left: clamp(0.85rem, 3.5vw, 1.15rem);
    right: clamp(0.85rem, 3.5vw, 1.15rem);
    bottom: clamp(0.65rem, 2.5vw, 0.9rem);
    width: auto;
    max-width: none;
    margin: 0;
    padding: clamp(1.15rem, 4.5vw, 1.45rem);
    background: var(--surface-warm);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: var(--radius);
    border: var(--border-subtle);
    box-shadow: var(--shadow-lift);
    z-index: 2;
  }

  .split-hero__headline,
  .package-hero__headline,
  .journeys-hero__headline {
    font-size: clamp(1.55rem, 6.5vw, 2rem);
    margin-bottom: 0.65rem;
  }

  .split-hero__sub,
  .package-hero__sub,
  .journeys-hero__sub {
    margin-bottom: 1rem;
  }

  .split-hero__body,
  .package-hero__body,
  .journeys-hero__body {
    margin-bottom: 1.25rem;
  }

  .split-hero__cta,
  .package-hero__cta,
  .journeys-hero__cta {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

.package-chooser {
  background: var(--surface-warm);
  padding-top: clamp(3rem, 8vw, 4.5rem);
  padding-bottom: clamp(3rem, 8vw, 4.5rem);
  scroll-margin-top: 1.5rem;
}

.package-chooser__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .package-chooser__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .package-chooser__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.package-chooser-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
}

.package-chooser-card--featured {
  border-color: rgba(177, 114, 83, 0.35);
}

.package-chooser-card__badge {
  display: inline-block;
  align-self: flex-start;
  margin: 0 0 0.75rem;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--terracotta);
  color: var(--white);
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  line-height: 1.2;
}

.package-chooser-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: var(--font-weight-heading);
  color: var(--umber);
  margin: 0 0 0.65rem;
}

.package-chooser-card__for {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--charcoal);
  margin: 0 0 1rem;
  flex: 1;
}

.package-chooser-card__meta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--terracotta-dark);
  margin: 0 0 1rem;
  line-height: 1.5;
}

.package-chooser-card__link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--olive);
  text-decoration: none;
  border-bottom: 1px solid rgba(102, 92, 57, 0.35);
  align-self: flex-start;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.package-chooser-card__link:hover {
  color: var(--terracotta);
  border-bottom-color: var(--terracotta);
}

.package-series {
  padding-top: clamp(3rem, 8vw, 5rem);
}

.package-section {
  margin-bottom: 0;
  padding: clamp(3rem, 8vw, 5rem) 0;
  scroll-margin-top: 1.5rem;
}

.package-section--alt {
  background: var(--surface-warm);
}

.package-section__badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--terracotta);
  color: var(--white);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.package-price-box__sessions,
.package-price-box__compare,
.package-price-box__value {
  font-size: 0.9rem;
  margin: 0.35rem 0 0;
  color: var(--umber);
  line-height: 1.5;
}

.package-price-box__compare {
  font-size: 0.85rem;
  color: var(--muted);
}

.package-price-box__value {
  font-weight: 400;
  opacity: 0.85;
}

.card__price--text {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  line-height: 1.2;
}

.package-section__why {
  margin-top: 1.5rem;
}

.package-section__why h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
}

.package-section__downtime {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--umber);
}

.package-cta {
  padding: clamp(2rem, 5vw, 3rem) 0 clamp(2.5rem, 6vw, 3.5rem);
  background: var(--white);
}

.package-cta__strip {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  padding: clamp(1.35rem, 3vw, 1.75rem) 0;
  border-top: 2px solid var(--terracotta-soft);
  border-bottom: 2px solid var(--terracotta-soft);
}

@media (min-width: 768px) {
  .package-cta__strip {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}

.package-cta__copy {
  flex: 1;
  min-width: 0;
}

.package-cta__copy .eyebrow {
  display: block;
  margin-bottom: 0.5rem;
}

.package-cta__headline {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.4rem);
  font-weight: var(--font-weight-heading);
  color: var(--olive);
  line-height: 1.3;
  margin: 0;
}

.package-cta__sub {
  margin: 0.4rem 0 0;
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 26rem;
}

.package-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 0.85rem;
  flex-shrink: 0;
}

.package-cta__btn {
  font-size: 0.76rem;
  padding: 0.58rem 1rem;
  white-space: nowrap;
}

.package-cta__or {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-style: italic;
  color: var(--muted);
  opacity: 0.75;
}

.package-cta__quiz-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--terracotta);
  cursor: pointer;
  text-decoration: none;
  border-bottom: 1px solid rgba(177, 114, 83, 0.45);
  transition: color var(--transition-fast), border-color var(--transition-fast), gap var(--transition-fast);
}

.package-cta__quiz-link:hover {
  color: var(--terracotta);
  border-bottom-color: var(--terracotta);
  gap: 0.5rem;
}

.package-cta__quiz-arrow {
  display: inline-block;
  transition: transform var(--transition-fast);
}

.package-cta__quiz-link:hover .package-cta__quiz-arrow {
  transform: translateX(2px);
}

@media (max-width: 767px) {
  .package-cta__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .package-cta__or {
    display: none;
  }
}

.package-sticky-bar {
  position: fixed;
  bottom: 0;
  left: var(--sidebar-width);
  right: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.96);
  border-top: var(--border-subtle);
  box-shadow: 0 -4px 20px rgba(42, 37, 33, 0.06);
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
}

.package-sticky-bar.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.package-sticky-bar__link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--olive);
  text-decoration: none;
  border-bottom: 1px solid rgba(102, 92, 57, 0.35);
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.package-sticky-bar__link:hover {
  color: var(--terracotta);
  border-bottom-color: var(--terracotta);
}

.package-sticky-bar__close {
  position: absolute;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  padding: 0.25rem;
}

.package-sticky-bar__close:hover {
  color: var(--olive);
}

@media (max-width: 899px) {
  .package-sticky-bar {
    left: 0;
  }
}

@media (min-width: 900px) {
  .package-sticky-bar {
    display: flex;
  }
}

@media (max-width: 899px) {
  .package-sticky-bar {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .package-sticky-bar {
    transition: none;
  }
}

/* --- About page --- */
.page-about {
  background: var(--surface);
}

.about-main {
  background: var(--surface);
}

.about-hero {
  padding: clamp(2.5rem, 6vw, 3.5rem) 0 clamp(2rem, 5vw, 3rem);
  background: linear-gradient(180deg, var(--surface-warm) 0%, var(--surface) 100%);
  border-bottom: 1px solid rgba(74, 67, 48, 0.08);
}

.about-hero__grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  align-items: center;
}

@media (min-width: 900px) {
  .about-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
    gap: clamp(2.5rem, 5vw, 4rem);
  }
}

.about-hero__eyebrow::after {
  margin-left: 0;
}

.about-hero__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--charcoal);
}

.about-hero__lede {
  margin: 0;
  max-width: 28ch;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--muted);
}

.about-hero__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}

.about-hero__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
}

.about-story {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.about-story__inner {
  max-width: 40rem;
  margin-inline: auto;
}

.about-story__lead {
  margin: 0 0 clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.8vw, 1.55rem);
  line-height: 1.55;
  color: var(--charcoal);
}

.about-story__cols {
  display: grid;
  gap: 1.25rem;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

@media (min-width: 640px) {
  .about-story__cols {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.about-story__col {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
}

.about-story__quote {
  margin: 0;
  padding: clamp(1.5rem, 4vw, 2rem) 0 0;
  border: none;
  border-top: 1px solid rgba(82, 74, 46, 0.12);
  text-align: center;
}

.about-story__quote p {
  margin: 0 auto;
  max-width: 24rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--olive);
}

.about-founder {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background: var(--surface-warm);
  border-top: 1px solid rgba(74, 67, 48, 0.08);
}

.about-founder__grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  align-items: center;
}

@media (min-width: 768px) {
  .about-founder__grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
    gap: clamp(2.5rem, 5vw, 4rem);
  }
}

.about-founder__photo {
  display: block;
  width: 100%;
  max-width: 22rem;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.about-founder__eyebrow {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive);
}

.about-founder__name {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--charcoal);
}

.about-founder__credentials {
  margin: 0 0 1.15rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.6;
  color: var(--muted);
}

.about-founder__bio {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--muted);
}

.about-founder__bio:last-child {
  margin-bottom: 0;
}

.about-studio {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-top: 1px solid rgba(74, 67, 48, 0.08);
}

.about-studio__grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  align-items: center;
}

@media (min-width: 900px) {
  .about-studio__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(2.5rem, 5vw, 4rem);
  }
}

.about-studio__eyebrow::after {
  margin-left: 0;
}

.about-studio__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
}

.about-studio__text {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
}

.about-studio__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--terracotta-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(177, 114, 83, 0.35);
  padding-bottom: 0.1rem;
}

.about-studio__link:hover {
  color: var(--umber);
}

.about-studio__figure {
  margin: 0;
}

.about-studio__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.about-studio__caption {
  margin-top: 0.65rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: var(--muted);
}

.about-cta {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3rem, 7vw, 4.5rem);
  background: var(--surface-warm);
  border-top: 1px solid rgba(74, 67, 48, 0.08);
}

.about-cta__inner {
  text-align: center;
  max-width: 32rem;
  margin-inline: auto;
}

.about-cta__line {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 400;
  line-height: 1.35;
  color: var(--olive);
}

.about-cta__actions {
  justify-content: center;
}

/* --- Contact --- */

.contact-main {
  background: var(--surface);
}

.contact-hero {
  padding: clamp(2.5rem, 6vw, 3.5rem) 0 clamp(1.5rem, 4vw, 2rem);
  background: linear-gradient(180deg, var(--surface-warm) 0%, var(--surface) 100%);
  border-bottom: 1px solid rgba(74, 67, 48, 0.08);
}

.contact-hero__inner {
  max-width: 34rem;
}

.contact-hero__eyebrow::after {
  margin-left: 0;
}

.contact-hero__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--charcoal);
}

.contact-hero__lede {
  margin: 0;
  max-width: 32ch;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
}

.contact-actions {
  padding: clamp(1.25rem, 3vw, 1.75rem) 0;
  border-bottom: 1px solid rgba(74, 67, 48, 0.08);
}

.contact-actions__grid {
  display: grid;
  gap: 0.65rem;
}

@media (min-width: 640px) {
  .contact-actions__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
  }
}

.contact-actions__item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.85rem 1rem;
  text-decoration: none;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(82, 74, 46, 0.12);
  background: var(--card);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.contact-actions__item:hover,
.contact-actions__item:focus-visible {
  border-color: rgba(177, 114, 83, 0.35);
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
  outline: none;
}

.contact-actions__item--primary {
  background: var(--terracotta-soft);
  border-color: rgba(177, 114, 83, 0.22);
}

.contact-actions__label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
}

.contact-actions__value {
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--charcoal);
}

.contact-actions__item--primary .contact-actions__value {
  font-family: var(--font-body);
  color: var(--umber);
}

.contact-body {
  padding: clamp(2rem, 5vw, 3.25rem) 0;
}

.contact-body__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: start;
}

@media (min-width: 900px) {
  .contact-body__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(2.5rem, 5vw, 4rem);
  }
}

.contact-form__title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 400;
  color: var(--charcoal);
  margin: 0 0 0.45rem;
}

.contact-form__intro {
  margin: 0 0 1.35rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 30rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.contact-form__field {
  display: grid;
  gap: 0.4rem;
}

.contact-form__field span {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.contact-form__field span em {
  font-style: normal;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted);
  opacity: 0.85;
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid rgba(82, 74, 46, 0.16);
  border-radius: var(--radius-lg);
  padding: 0.85rem 1rem;
  transition: border-color 0.35s ease-out, box-shadow 0.35s ease-out;
  resize: vertical;
  min-height: 0;
}

.contact-form__field textarea {
  min-height: 8rem;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: var(--glow-soft);
}

.contact-form__submit {
  justify-self: start;
  margin-top: 0.25rem;
}

.contact-form__status {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--muted);
}

.contact-form__status.is-pending {
  color: var(--olive);
  font-style: italic;
}

.contact-form__status.is-success {
  color: var(--olive);
}

.contact-form__status.is-error {
  color: var(--terracotta-dark);
}

.contact-package-notice {
  margin-bottom: 1.25rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  background: var(--terracotta-soft);
  border: 1px solid rgba(177, 114, 83, 0.18);
}

.contact-package-notice__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--charcoal);
}

.contact-studio {
  display: grid;
  gap: 1rem;
}

.contact-studio__card {
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius-lg);
  background: var(--surface-warm);
  border: 1px solid rgba(82, 74, 46, 0.1);
}

.contact-studio__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--charcoal);
}

.contact-studio__address,
.contact-studio__hours {
  margin: 0 0 0.85rem;
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
}

.contact-studio__hours {
  margin-bottom: 1rem;
}

.contact-studio__directions {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--terracotta-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(177, 114, 83, 0.35);
  padding-bottom: 0.1rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-studio__directions:hover,
.contact-studio__directions:focus-visible {
  color: var(--umber);
  border-color: var(--umber);
}

.contact-map {
  display: grid;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(82, 74, 46, 0.12);
  overflow: hidden;
  background: var(--card);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-map:hover,
.contact-map:focus-visible {
  border-color: rgba(177, 114, 83, 0.3);
  box-shadow: var(--shadow-soft);
  outline: none;
}

.contact-map__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--surface-warm);
}

.contact-map__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
  filter: saturate(0.75) sepia(0.12);
}

.contact-map__cta {
  padding: 0 1rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--olive);
}

.contact-studio__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  padding-top: 0.15rem;
}

.contact-studio__social a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-studio__social a:hover,
.contact-studio__social a:focus-visible {
  color: var(--terracotta-dark);
  border-bottom-color: rgba(177, 114, 83, 0.35);
}

.contact-notes {
  padding: clamp(1.75rem, 4vw, 2.5rem) 0 clamp(2.5rem, 6vw, 3.5rem);
  border-top: 1px solid rgba(74, 67, 48, 0.08);
}

.contact-notes__inner {
  display: grid;
  gap: 0.5rem;
  max-width: 36rem;
  text-align: center;
  margin-inline: auto;
}

.contact-notes__faq,
.contact-notes__policy {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
}

.contact-notes__faq a,
.contact-notes__policy a {
  color: var(--terracotta-dark);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(177, 114, 83, 0.3);
}

.contact-notes__faq a:hover,
.contact-notes__policy a:hover {
  color: var(--umber);
}

/* --- Prose / measure --- */
.text-measure {
  max-width: var(--text-measure);
}

.section > .container > .text-center > p {
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  font-weight: var(--font-weight-body);
  line-height: 1.8;
  color: var(--umber);
}

.card--journey p:not(.card__tag) {
  font-weight: var(--font-weight-body);
  line-height: 1.75;
  color: var(--umber);
}

/* --- Policy --- */
.policy-list li {
  list-style: disc;
  margin-left: 1.25rem;
  margin-bottom: 0.5rem;
}

.privacy-content {
  max-width: 720px;
}

.privacy-effective {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--umber-muted, #6b5b52);
}

.privacy-section {
  margin-bottom: 2.5rem;
}

.privacy-section h2 {
  margin-bottom: 0.75rem;
}

.privacy-section p + p,
.privacy-section ul + p {
  margin-top: 1rem;
}

.privacy-crosslink {
  margin-top: 1.25rem;
  font-style: italic;
}

/* --- Sparkle particles --- */
.sparkle-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
}

.sparkle-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  pointer-events: none;
  animation: sparkleFloat 0.7s ease-out forwards;
}

@keyframes sparkleFloat {
  0% { opacity: 1; transform: translate(0, 0) scale(1); }
  100% { opacity: 0; transform: translate(var(--sx), var(--sy)) scale(0); }
}

/* --- FAQ --- */
.faq__header {
  max-width: 640px;
  margin: 0 auto 2rem;
}

.faq__intro {
  margin: 0.75rem auto 0;
  max-width: 520px;
  color: var(--muted);
}

.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__item {
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--card);
  overflow: hidden;
}

.faq__question {
  padding: 1.1rem 1.25rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::marker {
  content: '';
}

.faq__question::after {
  content: '+';
  font-size: 1.25rem;
  line-height: 1;
  color: var(--olive);
  flex-shrink: 0;
}

.faq__item[open] .faq__question::after {
  content: '−';
}

.faq__answer {
  padding: 0 1.25rem 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq__answer p {
  margin: 0;
}

.faq__answer a,
.faq__inline-link {
  color: var(--olive);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.faq__inline-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.faq__inline-link:hover,
.faq__answer a:hover {
  color: var(--terracotta);
}

.faq__more {
  margin: 1.75rem auto 0;
  text-align: center;
}

.faq-page__inner {
  max-width: 760px;
  margin: 0 auto;
}

.faq-page__sections {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.faq-page__section-title {
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  margin: 0 0 1rem;
  color: var(--olive);
}

.faq-page-cta .btn-group {
  margin-top: 0.25rem;
}


/* --- Mobile book bar --- */
.mobile-book-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  padding: 0.65rem max(1rem, var(--safe-left)) max(0.65rem, var(--safe-bottom)) max(1rem, var(--safe-right));
  background: rgba(250, 247, 242, 0.97);
  border-top: var(--border-subtle);
  box-shadow: 0 -4px 24px rgba(42, 37, 33, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateY(110%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-book-bar.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-book-bar__btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 899px) {
  .mobile-book-bar {
    display: block;
  }

  body.has-mobile-book-bar {
    padding-bottom: calc(4.35rem + var(--safe-bottom, 0px));
  }
}

@media (min-width: 900px) {
  .mobile-book-bar {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-book-bar {
    transition: none;
  }
}

/* --- Cookie consent stub --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--card);
  border-top: var(--border-subtle);
  padding: 1rem 1.25rem;
  z-index: 150;
  display: none;
  box-shadow: 0 -4px 20px rgba(42, 37, 33, 0.06);
}

.cookie-banner.is-visible { display: block; }

.cookie-banner__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.cookie-banner p {
  font-size: 0.85rem;
  margin: 0;
  flex: 1;
  min-width: 200px;
}

/* ==========================================================================
   Mobile optimizations
   ========================================================================== */

@media (max-width: 899px) {
  :root {
    --nav-height: 68px;
    --nav-height-scrolled: 60px;
    --section-pad: clamp(3rem, 8vw, 5rem);
  }

  body {
    font-size: 1rem;
  }

  .hero:not(.hero--video) {
    padding-top: clamp(3rem, 10vw, 5rem);
  }

  .hero--video {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 9 / 16;
    min-height: auto;
    height: auto;
    padding: 0;
    overflow: hidden;
    background: #2a2521;
  }

  .hero--video .hero__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #2a2521;
  }

  .hero--video .hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    margin: 0;
    object-fit: cover;
    object-position: center;
  }

  .hero--video .hero__scrim {
    display: block;
    background: linear-gradient(
      to top,
      rgba(42, 37, 33, 0.72) 0%,
      rgba(42, 37, 33, 0.4) 40%,
      transparent 70%
    );
  }

  .hero--video .hero__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: clamp(1.5rem, 5vw, 2rem) clamp(1.25rem, 5vw, 1.5rem) clamp(1.75rem, 6vw, 2.25rem);
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero--video .hero__eyebrow {
    color: var(--sand);
  }

  .hero--video .hero__headline,
  .hero--video .hero__headline .text-italic {
    color: var(--white);
    text-shadow: 0 1px 12px rgba(42, 37, 33, 0.35);
  }

  .hero--video .hero__subhead {
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 8px rgba(42, 37, 33, 0.3);
  }

  .hero--video .btn--outline {
    border-color: rgba(255, 255, 255, 0.85);
    color: var(--white);
    background: transparent;
  }

  .hero--video .btn--outline:hover,
  .hero--video .btn--outline:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--white);
    color: var(--white);
  }

  .hero--video .hero__headline {
    font-size: clamp(1.55rem, 6.5vw, 2rem);
    margin-bottom: 0.65rem;
  }

  .hero--video .hero__subhead {
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .hero--video .hero__cta {
    width: 100%;
  }

  .hero--video .btn-group .btn {
    font-size: 0.82rem;
    padding: 0.85rem 1.25rem;
  }

  .hero__contour {
    width: 55%;
    right: -15%;
    opacity: 0.08;
  }

  .hero__subhead {
    max-width: 100%;
    font-size: 1.05rem;
    margin-bottom: 2rem;
  }

  .btn {
    min-height: 48px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.85rem;
  }

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

  .card,
  .service-card {
    padding: 1.5rem;
  }

  .card-grid {
    gap: 1.5rem;
  }

  .jump-nav {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0.35rem;
    margin-bottom: 2rem;
    padding: 0.65rem clamp(0.85rem, 3.5vw, 1.15rem);
    scrollbar-width: none;
    scroll-snap-type: x proximity;
    scroll-padding-inline: clamp(0.85rem, 3.5vw, 1.15rem);
  }

  .jump-nav::-webkit-scrollbar {
    display: none;
  }

  .jump-nav__link {
    flex-shrink: 0;
    white-space: nowrap;
    scroll-snap-align: start;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1rem;
  }

  .service-category,
  .journey-category {
    scroll-margin-top: calc(var(--header-height) + 60px);
  }

  .service-card__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .service-card__details,
  .service-card__book {
    width: 100%;
    flex: none;
  }

  .service-card__meta {
    white-space: normal;
  }

  .package-price-box .btn {
    width: 100%;
    justify-content: center;
  }

  .package-price-box .card__price {
    font-size: 1.85rem;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem 1.5rem;
  }

  .footer__brand {
    grid-column: 1 / -1;
    padding-right: 0;
    text-align: center;
  }

  .footer__brand-head {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer__logo {
    flex: 0 1 auto;
  }

  .footer__tagline {
    margin-left: auto;
    margin-right: auto;
  }

  .footer__legal-meta {
    justify-content: center;
  }

  .footer__visit {
    grid-column: 1 / -1;
    align-items: center;
    text-align: center;
  }

  .footer__visit .footer__eyebrow::after {
    margin-left: auto;
    margin-right: auto;
  }

  .footer__social {
    justify-content: center;
  }

  .home-trust__divider {
    display: none;
  }

  .home-trust__inner {
    gap: 0.85rem 1.25rem;
  }

  .home-founder__grid,
  .home-results__grid {
    grid-template-columns: 1fr;
  }

  .home-founder__content,
  .home-results__content {
    text-align: center;
  }

  .home-founder__text,
  .home-results__content p {
    margin-left: auto;
    margin-right: auto;
  }

  .home-founder .btn,
  .home-results .btn {
    width: 100%;
    justify-content: center;
  }

  .home-newsletter__btn {
    width: 100%;
    justify-content: center;
  }

  .home-announcement {
    padding: 0.85rem 0 0;
  }

  .home-announcement__card {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    padding: 1rem 1.05rem;
  }

  .home-announcement__copy {
    flex: 0 0 auto;
  }

  .home-announcement__actions {
    width: 100%;
    margin-left: 0;
    flex-direction: column;
    align-items: stretch;
  }

  .home-announcement__cta {
    width: 100%;
    margin-left: 0;
    justify-content: center;
    text-align: center;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer__col,
  .footer__visit {
    text-align: center;
  }

  .footer__eyebrow::after {
    margin-left: auto;
    margin-right: auto;
  }

  .footer__nav {
    align-items: center;
  }

  .footer__nav a:hover {
    transform: none;
  }

  .footer__bottom {
    margin-top: 1.5rem;
    padding-top: 1rem;
  }

  .footer__copy,
  .footer__location {
    white-space: normal;
  }

  .cookie-banner {
    padding: 1rem max(1.25rem, var(--safe-right)) max(1rem, var(--safe-bottom)) max(1.25rem, var(--safe-left));
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .quiz-overlay {
    padding: 0;
    align-items: flex-end;
  }

  .quiz-modal {
    max-width: 100%;
    max-height: min(92vh, 100dvh - var(--safe-top));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  .quiz-modal__body {
    min-height: 240px;
  }

  .result-video__hint {
    font-size: 0.65rem;
    padding: 0.4rem 0.7rem;
  }

  .about-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .about-cta__actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: clamp(2.15rem, 9vw, 2.75rem);
  }

  .journeys-quiz__actions .btn,
  .journey-transform-cta .btn {
    width: 100%;
  }
}

