/* Hallmark · genre: atmospheric · macrostructure: Split Studio · theme: studied-DNA (source: Enlightenment LLC — enlightenmentllc.net) · enrichment: labeled-photo-placeholders · nav: N10 · footer: Ft5 · studied: yes
 * tokens: paper(ivory default) oklch(96% 0.012 85) / paper(dark) oklch(13% 0 0) · accent gold oklch(74% 0.105 88) · type Plus Jakarta Sans (unified display + body)
 * a11y: ivory-default for elderly/low-vision audience; AA+ both themes; body >=18px; reduced-motion supported
 * pre-emit critique: P5 H4 E4 S5 R4 V5 */

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: clip;
  background-color: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.6;
  transition: background-color var(--dur-mid) var(--ease-in-out),
              color var(--dur-mid) var(--ease-in-out);
}

/* Bottom padding on mobile so sticky bar doesn't overlap content */
@media (max-width: 59.99rem) {
  body {
    padding-bottom: 5rem;
  }
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: anywhere;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-style: normal; /* HARD RULE: NO italic headers */
  font-weight: 600;   /* confident sans weight — replaces the lighter serif look */
  letter-spacing: -0.01em; /* tight, modern app-headline tracking for the geometric sans */
  line-height: 1.1;
  color: var(--ink);
  min-width: 0;
  overflow-wrap: anywhere;
}

a {
  color: var(--gold-ink);
  text-decoration-skip-ink: auto;
}

a:hover {
  text-decoration: underline;
}

/* ============================================================
   FOCUS STYLES — universal, never animated
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--focus-ring-color);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  transform-origin: left center;
  transform: scaleX(0);
  z-index: 1000;
  pointer-events: none;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  margin-bottom: var(--space-sm);
}

.eyebrow--gold {
  color: var(--gold-ink);
}

.section-head {
  margin-bottom: var(--space-xl);
}

.section-head .section-heading {
  font-size: var(--text-display-s);
  font-weight: 500;
  line-height: 1.08;
  color: var(--ink);
}

/* ============================================================
   REVEAL ANIMATIONS (IntersectionObserver controlled)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--dur-slow) var(--ease-expo),
              transform var(--dur-slow) var(--ease-expo);
}

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

/* Stagger utility — JS adds inline transition-delay */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xs);
  min-height: 44px;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              background-position var(--dur-mid) var(--ease-out);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold-gradient);
  background-size: 200% 200%;
  background-position: 0% 0%;
  color: var(--btn-ink);
  border-color: transparent;
  position: relative;
  overflow: hidden;
}

.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, oklch(100% 0 0 / 0.15) 50%, transparent 60%);
  background-size: 200% 200%;
  background-position: 200% 0%;
  transition: background-position var(--dur-mid) var(--ease-out);
}

.btn--primary:hover::after {
  background-position: -50% 0%;
}

@media (prefers-reduced-motion: reduce) {
  .btn--primary::after {
    display: none;
  }
}

.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px oklch(74% 0.105 88 / 0.35);
}

.btn--secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--hairline);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  border-color: var(--gold-1);
  color: var(--gold-ink);
  transform: translateY(-1px);
}

.btn--outline-gold {
  background: transparent;
  color: var(--gold-ink);
  border-color: var(--gold-1);
}

.btn--outline-gold:hover,
.btn--outline-gold:focus-visible {
  background: oklch(74% 0.105 88 / 0.08);
  transform: translateY(-1px);
}

.btn--sm {
  min-height: 36px;
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
}

/* ============================================================
   NAV — N10 Floating-on-scroll morph
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  /* default bar state */
  padding-block: 0;
  background: oklch(96% 0.012 85 / 0.62);
  border-block-end: 1px solid var(--hairline);
  border-block-end-color: var(--hairline);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  box-shadow: none;
  /* LAW 4: ONE timing curve for all morph properties */
  transition:
    padding-block var(--dur-mid) var(--ease-expo),
    background var(--dur-mid) var(--ease-expo),
    border-block-end-color var(--dur-mid) var(--ease-expo),
    backdrop-filter var(--dur-mid) var(--ease-expo),
    -webkit-backdrop-filter var(--dur-mid) var(--ease-expo),
    box-shadow var(--dur-mid) var(--ease-expo);
}

:root[data-theme="dark"] .nav {
  background: oklch(13% 0 0 / 0.62);
}

.nav.is-floating {
  /* LAW 3: neutralise every outer property */
  padding-block: var(--space-2xs);
  background: transparent;
  border-block-end-color: transparent;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  box-shadow: none;
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
  /* LAW 1: total height constant. default min-height 60px */
  min-height: 60px;
  padding-block: 12px;
  border-radius: 0;
  background: transparent;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  box-shadow: none;
  transform: translateY(0);
  /* LAW 4: same single curve */
  transition:
    max-width var(--dur-mid) var(--ease-expo),
    min-height var(--dur-mid) var(--ease-expo),
    padding-block var(--dur-mid) var(--ease-expo),
    border-radius var(--dur-mid) var(--ease-expo),
    background var(--dur-mid) var(--ease-expo),
    backdrop-filter var(--dur-mid) var(--ease-expo),
    -webkit-backdrop-filter var(--dur-mid) var(--ease-expo),
    box-shadow var(--dur-mid) var(--ease-expo),
    transform var(--dur-mid) var(--ease-expo);
}

.nav.is-floating .nav__inner {
  max-width: 58rem;
  /* LAW 1: shrink inner, compensate via outer padding-block */
  min-height: 52px;
  padding-block: 4px;
  border-radius: var(--radius-pill);
  background: oklch(96% 0.012 85 / 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 4px 24px oklch(0% 0 0 / 0.10),
    0 0 0 1px var(--hairline) inset,
    0 2px 8px oklch(74% 0.105 88 / 0.08);
  /* LAW 2: floating offset via transform ONLY */
  transform: translateY(12px);
}

:root[data-theme="dark"] .nav.is-floating .nav__inner {
  background: oklch(20% 0 0 / 0.82);
  box-shadow:
    0 4px 24px oklch(0% 0 0 / 0.40),
    0 0 0 1px var(--hairline) inset,
    0 2px 8px oklch(74% 0.105 88 / 0.10);
}

@media (prefers-reduced-motion: reduce) {
  .nav,
  .nav__inner {
    transition: none;
  }
}

.nav__wordmark {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  font-style: normal;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.01em;
}

.nav__wordmark:hover {
  text-decoration: none;
  color: var(--gold-ink);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  list-style: none;
  margin-left: auto;
}

.nav__links a {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--ink-soft);
  text-decoration: none;
  padding: var(--space-2xs) var(--space-xs);
  position: relative;
  transition: color var(--dur-fast) var(--ease-out);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* Animated gold underline — expands from left */
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: var(--space-xs);
  right: var(--space-xs);
  height: 1.5px;
  background: var(--gold-1);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform var(--dur-fast) var(--ease-expo);
}

.nav__links a:hover,
.nav__links a:focus-visible {
  color: var(--ink);
  text-decoration: none;
}

.nav__links a:hover::after,
.nav__links a:focus-visible::after,
.nav__links a[aria-current="page"]::after {
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
  .nav__links a::after {
    transition: none;
  }
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  flex-shrink: 0;
}

/* Theme toggle button */
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: var(--space-2xs);
  border-radius: var(--radius-pill);
  color: var(--ink-soft);
  transition: color var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out);
}

.theme-toggle:hover {
  color: var(--gold-ink);
  background: oklch(74% 0.105 88 / 0.08);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Show/hide sun vs moon based on theme */
.theme-toggle .icon-sun  { display: none; }
.theme-toggle .icon-moon { display: block; }

:root[data-theme="dark"] .theme-toggle .icon-sun  { display: block; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

/* Mobile hamburger */
.nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  padding: var(--space-2xs);
  border-radius: var(--space-2xs);
  color: var(--ink);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: transform var(--dur-fast) var(--ease-expo),
              opacity var(--dur-fast) var(--ease-expo);
}

.nav__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav__hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile nav */
@media (max-width: 59.99rem) {
  .nav__links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: var(--page-gutter);
    right: var(--page-gutter);
    background: var(--paper-2);
    border: 1px solid var(--hairline);
    border-radius: var(--radius-card);
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-sm);
    gap: 0;
    box-shadow: 0 8px 32px oklch(0% 0 0 / 0.12);
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links a {
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--space-2xs);
    justify-content: flex-start;
  }

  .nav__links a::after {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  /* Hide desktop nav links text, keep Request button */
  .nav__links-desktop {
    display: none;
  }
}

@media (min-width: 60rem) {
  .nav__hamburger {
    display: none;
  }
  .nav__links {
    display: flex;
  }
}

/* ============================================================
   SECTIONS — general rhythm
   ============================================================ */
section {
  padding-block: clamp(var(--space-2xl), 10vw, var(--space-3xl));
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  padding-top: calc(60px + clamp(var(--space-xl), 10vw, var(--space-3xl)));
  background-color: var(--paper);
  position: relative;
  overflow: clip;
}

:root[data-theme="dark"] .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero-bloom);
  pointer-events: none;
  z-index: 0;
}

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

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 60rem) {
  .hero__grid {
    grid-template-columns: 6fr 5fr;
    gap: var(--space-2xl);
  }
}

.hero__text {
  max-width: 38rem;
}

.hero__headline {
  font-size: var(--text-display);
  font-weight: 700;
  font-style: normal;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: var(--space-md);
}

/* Gold underline draw animation on "dignified" */
.hero__underline-word {
  display: inline;
  position: relative;
  white-space: nowrap;
}

.hero__underline-word::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2.5px;
  background: var(--gold-1);
  transform-origin: left center;
  transform: scaleX(0);
  animation: underline-draw var(--dur-slow) var(--ease-expo) 0.6s forwards;
}

@keyframes underline-draw {
  to { transform: scaleX(1); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__underline-word::after {
    animation: none;
    transform: scaleX(1);
  }
}

.hero__lede {
  font-size: var(--text-lg);
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.hero__trust {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  align-items: center;
}

.hero__trust-sep {
  color: var(--gold-1);
  font-size: 0.75rem;
}

/* Photo placeholder */
.photo-placeholder {
  border: 1.5px dashed var(--hairline);
  border-radius: var(--radius-card);
  background: var(--paper-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  gap: var(--space-md);
  text-align: center;
  min-height: 280px;
}

.photo-placeholder__icon {
  color: var(--gold-1);
}

.photo-placeholder__icon svg {
  width: 40px;
  height: 40px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.photo-placeholder__label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--ink-soft);
  font-style: italic;
  max-width: 24rem;
  line-height: 1.5;
}

.photo-placeholder__aspect {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  border: 1.5px dashed var(--hairline);
  border-radius: var(--radius-card);
  background: var(--paper-2);
  text-align: center;
}

/* ============================================================
   SERVICE GRID SECTION
   ============================================================ */
.services {
  background: var(--paper-2);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 20rem), 1fr));
  gap: var(--space-md);
}

@media (min-width: 40rem) {
  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 60rem) {
  .services__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.service-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out);
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px oklch(0% 0 0 / 0.10);
  border-color: var(--gold-1);
  text-decoration: none;
  color: inherit;
}

.service-card__icon {
  width: 40px;
  height: 40px;
  color: var(--gold-1);
  flex-shrink: 0;
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  font-style: normal;
  color: var(--ink);
  line-height: 1.2;
}

.service-card__benefit {
  font-size: var(--text-base);
  color: var(--ink-soft);
  line-height: 1.5;
  flex: 1;
}

.service-card__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gold-ink);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: auto;
  text-decoration: none;
}

.service-card__link:hover {
  text-decoration: underline;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  background: var(--paper);
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  position: relative;
}

@media (min-width: 60rem) {
  .steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-md);
  }

  /* Connector line between steps */
  .steps::before {
    content: '';
    position: absolute;
    top: 1.75rem;
    left: calc(12.5% + 1.5rem);
    right: calc(12.5% + 1.5rem);
    height: 1.5px;
    background: linear-gradient(to right, var(--gold-1), var(--gold-3), var(--gold-1));
    opacity: 0.4;
    z-index: 0;
  }
}

.step {
  position: relative;
  z-index: 1;
}

.step__number {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--gold-ink);
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.step__number::before {
  content: '';
  display: block;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1.5px solid var(--gold-1);
  background: var(--paper);
  flex-shrink: 0;
}

@media (min-width: 60rem) {
  .step__number {
    flex-direction: column;
    align-items: flex-start;
  }
}

.step__num-label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold-ink);
}

.step__icon-wrapper {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1.5px solid var(--gold-1);
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: var(--space-sm);
}

.step__icon-wrapper svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold-1);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step__label {
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-ink);
  margin-bottom: var(--space-2xs);
}

.step__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  font-style: normal;
  color: var(--ink);
  margin-bottom: var(--space-xs);
  line-height: 1.2;
}

.step__desc {
  font-size: var(--text-base);
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ============================================================
   TRUST / WHY US
   ============================================================ */
.trust {
  background: var(--paper-2);
}

.trust__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 60rem) {
  .trust__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

.trust__heading {
  font-size: var(--text-display-s);
  font-weight: 500;
  font-style: normal;
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

.trust__lede {
  font-size: var(--text-lg);
  color: var(--ink-soft);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: var(--text-base);
  color: var(--ink);
  line-height: 1.5;
}

.checklist__icon {
  flex-shrink: 0;
  margin-top: 0.1em;
  color: var(--gold-1);
}

.checklist__icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Numbers strip */
.numbers-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-sm);
  border-top: 1px solid var(--hairline);
  padding-top: var(--space-lg);
}

.number-item {
  text-align: center;
  padding: var(--space-sm);
  background: var(--paper-3);
  border-radius: var(--radius-card);
  border: 1.5px dashed var(--hairline);
}

.number-item__value {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--ink-soft);
  display: block;
  margin-bottom: var(--space-2xs);
}

.number-item__label {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  font-style: italic;
  line-height: 1.4;
}

.number-item__confirm {
  font-size: 0.75rem;
  color: var(--ink-soft);
  font-style: italic;
  opacity: 0.7;
}

/* ============================================================
   SERVICE AREA
   ============================================================ */
.service-area {
  background: var(--paper);
}

.service-area__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 60rem) {
  .service-area__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  /* Reverse diptych direction */
  .service-area__grid .service-area__text {
    order: 2;
  }
  .service-area__grid .service-area__visual {
    order: 1;
  }
}

.service-area__heading {
  font-size: var(--text-display-s);
  font-weight: 500;
  font-style: normal;
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
  list-style: none;
}

.area-list li {
  font-size: var(--text-base);
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.area-list li::before {
  content: '·';
  color: var(--gold-1);
  font-size: 1.2em;
  line-height: 1;
  display: block;
}

.area-list li:first-child::before {
  display: none;
}

.service-area__note {
  font-size: var(--text-base);
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: var(--space-md);
}

/* Service-area map — embedded Google Map of the coverage region */
.svc-map {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--paper-2);
  box-shadow: var(--shadow-tile);
}

.svc-map__embed {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Gold inner frame + soft edge tint — ties the map into the palette
   without obscuring it. pointer-events:none keeps the map draggable. */
.svc-map__frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px oklch(74% 0.105 88 / 0.40);
  background: radial-gradient(125% 95% at 50% 50%, transparent 68%, oklch(74% 0.105 88 / 0.12));
}

.svc-map__badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  z-index: 2;
  pointer-events: none;
  background: var(--gold-1);
  color: var(--btn-ink);
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-tile);
}

.svc-map__caption {
  margin-top: var(--space-xs);
  font-size: 0.875rem;
  color: var(--ink-soft);
  font-style: italic;
  text-align: center;
}

/* ============================================================
   RIDE REQUEST FORM — #ride-request
   ============================================================ */
.ride-request {
  background: var(--paper);
}

.form-panel {
  background: var(--paper-2);
  border-radius: var(--radius-card);
  padding: clamp(var(--space-lg), 5vw, var(--space-2xl));
  max-width: 52rem;
  margin-inline: auto;
}

.form-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.form-header__heading {
  font-size: var(--text-display-s);
  font-weight: 500;
  font-style: normal;
  margin-bottom: var(--space-sm);
}

.form-header__reassurance {
  font-size: var(--text-base);
  color: var(--ink-soft);
  margin-bottom: var(--space-sm);
}

.form-safety {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  background: oklch(74% 0.105 88 / 0.06);
  border: 1px solid var(--gold-1);
  border-radius: var(--space-2xs);
  padding: var(--space-xs) var(--space-sm);
  display: inline-block;
}

.form-safety strong {
  color: var(--ink);
}

/* Step progress */
.step-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.step-progress__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--hairline);
  transition: background var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}

.step-progress__dot.is-active {
  background: var(--gold-1);
  transform: scale(1.3);
}

.step-progress__dot.is-complete {
  background: var(--gold-ink);
}

.step-progress__label {
  font-size: 0.875rem;
  color: var(--ink-soft);
  font-weight: 500;
  margin-left: var(--space-sm);
}

/* Form steps */
.form-step {
  display: none;
}

.form-step.is-active {
  display: block;
}

.form-step__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  font-style: normal;
  color: var(--ink);
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

/* Service radio cards */
.service-radio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 14rem), 1fr));
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

@media (min-width: 40rem) {
  .service-radio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 52rem) {
  .service-radio-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.service-radio-card {
  position: relative;
}

.service-radio-card input[type="radio"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  margin: 0;
  z-index: 1;
}

.service-radio-card label {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  padding: var(--space-md);
  border-radius: var(--radius-card);
  background: var(--paper);
  box-shadow: var(--shadow-tile);
  cursor: pointer;
  transition: box-shadow var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out);
  min-height: 44px;
}

.service-radio-card input[type="radio"]:checked + label {
  background: oklch(74% 0.105 88 / 0.10);
  box-shadow: 0 0 0 2px var(--gold-1), var(--shadow-tile);
}

.service-radio-card input[type="radio"]:focus-visible + label {
  outline: 2px solid var(--focus-ring-color);
  outline-offset: 2px;
}

.service-radio-card:hover label {
  background: oklch(74% 0.105 88 / 0.06);
  box-shadow: var(--shadow-tile-hover);
}

.service-radio-card__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  font-style: normal;
  color: var(--ink);
  line-height: 1.2;
}

.service-radio-card__desc {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

/* Form fields */
.form-field {
  margin-bottom: var(--space-md);
}

.form-field label {
  display: block;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--space-xs);
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="date"],
.form-field input[type="time"],
.form-field textarea,
.form-field select {
  width: 100%;
  min-height: 52px;
  padding: 0.875rem var(--space-sm);
  background: var(--paper-3);
  color: var(--ink);
  border-radius: var(--space-2xs);
  font-size: var(--text-base);
  line-height: 1.4;
  transition: background var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out);
  appearance: none;
  -webkit-appearance: none;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  background-color: var(--paper);
  box-shadow: 0 0 0 3px oklch(74% 0.105 88 / 0.25);
}

.form-field input:focus-visible,
.form-field textarea:focus-visible,
.form-field select:focus-visible {
  outline: 2px solid var(--focus-ring-color);
  outline-offset: 2px;
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='%23666' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
}

.form-field__error {
  display: none;
  font-size: 0.875rem;
  color: oklch(55% 0.15 25); /* accessible red */
  margin-top: var(--space-2xs);
}

.form-field.has-error .form-field__error {
  display: block;
}

.form-field.has-error input,
.form-field.has-error textarea,
.form-field.has-error select {
  box-shadow: 0 0 0 2px oklch(55% 0.15 25);
}

/* Two-col layout for date/time */
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 40rem) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* Round-trip toggle */
.round-trip-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.round-trip-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--gold-1);
  cursor: pointer;
  flex-shrink: 0;
}

.round-trip-toggle label {
  font-size: var(--text-base);
  color: var(--ink);
  cursor: pointer;
  margin-bottom: 0;
}

/* Checkboxes for rider needs */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  min-height: 44px;
}

.checkbox-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--gold-1);
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-item label {
  font-size: var(--text-base);
  color: var(--ink);
  cursor: pointer;
  margin-bottom: 0;
}

/* Form navigation */
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--hairline);
  flex-wrap: wrap;
}

.form-nav--end {
  justify-content: flex-end;
}

/* Review summary */
.review-summary {
  background: var(--paper);
  border-radius: var(--radius-card);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.review-summary h3 {
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--space-md);
}

.review-summary dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-xs) var(--space-md);
}

.review-summary dt {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--ink-soft);
}

.review-summary dd {
  font-size: 0.9375rem;
  color: var(--ink);
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-xl);
}

.form-success.is-visible {
  display: block;
}

.form-success__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: oklch(74% 0.105 88 / 0.12);
  margin: 0 auto var(--space-md);
}

.form-success__icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold-1);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-success__heading {
  font-size: var(--text-xl);
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.form-success__message {
  font-size: var(--text-base);
  color: var(--ink-soft);
  margin-bottom: var(--space-lg);
  max-width: 36rem;
  margin-inline: auto;
  line-height: 1.6;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--paper-2);
}

.testimonials__note {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--ink-soft);
  font-style: italic;
  background: var(--paper-3);
  border: 1.5px dashed var(--hairline);
  border-radius: var(--space-2xs);
  padding: var(--space-xs) var(--space-sm);
  margin-bottom: var(--space-xl);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 48rem) {
  .testimonials__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.testimonial-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  padding: var(--space-lg);
  border-top: 2px solid var(--gold-1);
}

.testimonial-card__quote {
  font-size: var(--text-base);
  color: var(--ink-soft);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: var(--space-md);
  position: relative;
  padding-top: var(--space-sm);
}

.testimonial-card__quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold-1);
  line-height: 0.8;
  display: block;
  margin-bottom: var(--space-xs);
}

.testimonial-card__attribution {
  font-size: 0.875rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.testimonial-card__placeholder-tag {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--ink-soft);
  background: var(--paper-3);
  border: 1px dashed var(--hairline);
  border-radius: var(--space-2xs);
  padding: 0.125rem 0.5rem;
  margin-top: var(--space-2xs);
  font-style: normal;
}

/* ============================================================
   FAQ — ACCORDION
   ============================================================ */
.faq {
  background: var(--paper);
}

.faq__list {
  max-width: 52rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--hairline);
}

.faq-item {
  border-bottom: 1px solid var(--hairline);
}

.faq-item__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  width: 100%;
  background: none;
  border: none;
  padding: var(--space-md) 0;
  cursor: pointer;
  text-align: left;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
  min-height: 44px;
  font-family: var(--font-body);
  transition: color var(--dur-fast) var(--ease-out);
}

.faq-item__trigger:hover {
  color: var(--gold-ink);
}

.faq-item__chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  stroke: var(--gold-1);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--dur-fast) var(--ease-expo);
}

.faq-item__trigger[aria-expanded="true"] .faq-item__chevron {
  transform: rotate(180deg);
}

.faq-item__panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--dur-mid) var(--ease-expo);
}

.faq-item__panel[aria-hidden="false"] {
  max-height: 600px;
}

.faq-item__answer {
  font-size: var(--text-base);
  color: var(--ink-soft);
  line-height: 1.7;
  padding-bottom: var(--space-md);
}

@media (prefers-reduced-motion: reduce) {
  .faq-item__panel {
    transition: none;
  }
  .faq-item__chevron {
    transition: none;
  }
}

/* ============================================================
   FOOTER — Ft5 Statement
   ============================================================ */
.footer {
  background: var(--paper-2);
  border-top: 1px solid var(--hairline);
  padding-block: var(--space-2xl);
}

.footer__statement {
  font-family: var(--font-display);
  font-size: var(--text-display-s);
  font-weight: 400;
  font-style: normal;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: var(--space-2xl);
  max-width: 32rem;
}

.footer__meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--hairline);
}

@media (min-width: 48rem) {
  .footer__meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 60rem) {
  .footer__meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.footer__meta-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer__meta-label {
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-ink);
}

.footer__meta-content {
  font-size: var(--text-base);
  color: var(--ink-soft);
  line-height: 1.6;
}

.footer__meta-content a {
  color: var(--ink-soft);
  text-decoration: none;
}

.footer__meta-content a:hover {
  color: var(--gold-ink);
  text-decoration: underline;
}

.footer__safety {
  font-weight: 600;
  color: var(--ink);
}

.footer__bottom {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.footer__wordmark {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  font-style: normal;
  color: var(--ink-soft);
}

.footer__copy {
  font-size: 0.875rem;
  color: var(--ink-soft);
}

/* ============================================================
   MOBILE STICKY CTA BAR (C4) — below 60rem only
   ============================================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: var(--paper-2);
  border-top: 1px solid var(--hairline);
  padding: var(--space-sm) var(--page-gutter);
  padding-bottom: max(var(--space-sm), env(safe-area-inset-bottom, 0));
  gap: var(--space-sm);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

@media (max-width: 59.99rem) {
  .sticky-cta {
    display: flex;
  }
}

.sticky-cta .btn {
  flex: 1;
  min-height: 48px;
  font-size: 0.9375rem;
}

/* ============================================================
   BACK TO TOP FAB
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: calc(5rem + var(--space-sm));
  right: var(--space-md);
  z-index: 700;
  min-width: 44px;
  min-height: 44px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--paper-2);
  border: 1px solid var(--hairline);
  color: var(--gold-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 12px oklch(0% 0 0 / 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--paper-3);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (min-width: 60rem) {
  .back-to-top {
    bottom: var(--space-lg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition: opacity var(--dur-fast) var(--ease-out);
    transform: none;
  }
  .back-to-top.is-visible {
    transform: none;
  }
}

/* ============================================================
   CONFIRM PLACEHOLDER STYLES
   ============================================================ */
.confirm-placeholder {
  display: inline;
  font-style: italic;
  color: var(--ink-soft);
  opacity: 0.75;
  border-bottom: 1.5px dashed var(--hairline);
}

/* ============================================================
   SECTION DIVIDERS / SHARED
   ============================================================ */
.gold-rule {
  width: 3rem;
  height: 2px;
  background: var(--gold-gradient);
  border: none;
  margin: var(--space-sm) 0 var(--space-lg);
  display: block;
}

/* ============================================================
   SITE PHOTOS — replace labeled placeholders with real imagery
   (stock placeholders until client supplies final photos)
   ============================================================ */
.photo-figure {
  margin: 0;
  width: 100%;
}

.photo-figure .site-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-card);
  box-shadow: 0 12px 32px oklch(20% 0.02 88 / 0.18);
  background: var(--paper-2);
}

.photo-figure .photo-figure__credit {
  display: block;
  margin-top: var(--space-xs);
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--ink-soft);
  font-style: italic;
  opacity: 0.8;
}

/* ============================================================
   GRAB-UX ENHANCEMENTS — A through E + energy layer
   Hallmark · pre-emit critique: P5 H4 E5 S5 R5 V5
   Motion: transform/opacity only · --ease-out · prefers-reduced-motion paths
   ============================================================ */

/* ============================================================
   A · APP-TILE SERVICE CARDS — icon chip
   ============================================================ */

/* Icon wrapped in a gold-tinted rounded-square chip */
.service-card__icon-chip {
  width: var(--chip-size);
  height: var(--chip-size);
  border-radius: var(--radius-chip);
  background: var(--gold-tint-bg);
  border: 1px solid oklch(74% 0.105 88 / 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out);
}

:root[data-theme="dark"] .service-card__icon-chip {
  background: oklch(20% 0 0 / 0.80);
  border-color: oklch(74% 0.105 88 / 0.22);
}

.service-card__icon-chip svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold-1);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Lift + hairline on hover (card already has translateY(-3px); chip gets border brightened) */
.service-card:hover .service-card__icon-chip,
.service-card:focus-visible .service-card__icon-chip {
  background: oklch(91% 0.022 86);
  border-color: var(--gold-1);
}

:root[data-theme="dark"] .service-card:hover .service-card__icon-chip,
:root[data-theme="dark"] .service-card:focus-visible .service-card__icon-chip {
  background: oklch(26% 0.01 86);
  border-color: var(--gold-2);
}

/* Press-down — :active state */
.service-card:active {
  transform: translateY(1px) scale(0.99);
  box-shadow: var(--shadow-tile);
  border-color: var(--gold-1);
}

/* Tap-cue link — clearer affordance */
.service-card__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gold-ink);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: auto;
  text-decoration: none;
  /* arrow shifts slightly on hover to signal tappability */
  transition: gap var(--dur-fast) var(--ease-out);
}

.service-card:hover .service-card__link,
.service-card:focus-visible .service-card__link {
  gap: 0.5rem;
  text-decoration: underline;
  text-decoration-color: oklch(44% 0.085 75 / 0.5);
}

/* Shared shadow upgrade on hover */
.service-card:hover,
.service-card:focus-visible {
  box-shadow: var(--shadow-tile-hover);
}

@media (prefers-reduced-motion: reduce) {
  .service-card {
    transition: border-color var(--dur-fast) var(--ease-out);
  }
  .service-card:active {
    transform: none;
  }
  .service-card__link {
    transition: none;
  }
}

/* ============================================================
   RATES — base fee cards + per-mile ledger
   Hallmark · extend · pre-emit critique: P5 H4 E4 S5 R5 V4
   Reuses existing tokens; two structurally-different treatments
   (multi-col cards vs. single ledger panel) for variety.
   ============================================================ */
.rates {
  background: var(--paper-2);
}

.rates__lede {
  margin-top: var(--space-md);
  max-width: 46rem;
  font-size: var(--text-lg);
  color: var(--ink-soft);
  line-height: 1.6;
}

.rates__subhead {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: normal;
  font-size: var(--text-xl);
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

/* A · base-fee cards — mirrors the services grid */
.rates__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 18rem), 1fr));
  gap: var(--space-md);
}

@media (min-width: 40rem) {
  .rates__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 60rem) {
  .rates__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.rate-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
  box-shadow: var(--shadow-tile);
  transition: transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out);
}

.rate-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-tile-hover);
  border-color: var(--gold-1);
}

.rate-card__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  font-style: normal;
  color: var(--ink);
  line-height: 1.2;
}

.rate-card__meta {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

.rate-card__price {
  margin-top: var(--space-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-2xl);
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--gold-ink);
  white-space: nowrap;
}

/* gold-ink is a light-surface-only token; lift the price on dark paper */
:root[data-theme="dark"] .rate-card__price {
  color: var(--gold-2);
}

/* B · per-mile ledger — a single panel of rows, deliberately not cards */
.rates__permile {
  margin-top: var(--space-xl);
  max-width: 42rem;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  padding: clamp(var(--space-md), 4vw, var(--space-lg));
  box-shadow: var(--shadow-tile);
}

.rates__permile .rates__subhead {
  font-size: var(--text-lg);
}

.permile-list {
  margin: 0;
}

.permile-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-xs);
  padding-block: var(--space-sm);
  border-bottom: 1px solid var(--hairline);
}

.permile-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.permile-row__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--ink);
}

.permile-row__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--gold-ink);
  white-space: nowrap;
}

:root[data-theme="dark"] .permile-row__value {
  color: var(--gold-2);
}

.permile-row__unit {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--ink-soft);
}

.rates__note {
  margin-top: var(--space-lg);
  max-width: 42rem;
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
  .rate-card {
    transition: border-color var(--dur-fast) var(--ease-out);
  }
  .rate-card:hover {
    transform: none;
  }
}

/* ============================================================
   ORB STAGE — Enlightenment family "orb" hero centerpiece
   Ported from the sister site (enlightenmentllc.net HeroE):
   rotating rings, orbiting particles, ambient glow, the 3D "E"
   emblem (verbatim tilt + glow, sized in its native range), and
   floating fact chips — re-themed with ET's own real claims.
   Purely decorative reinforcement (aria-hidden; the facts it
   shows are also plain text elsewhere) — fully static under
   prefers-reduced-motion.
   ============================================================ */
.hero__orb {
  display: flex;
  justify-content: center;
}

.orb-stage {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  max-width: 27rem;
  margin-inline: auto;
  perspective: 1400px;
  transform-style: preserve-3d;
}

/* Rotating hairline rings */
.orb-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid oklch(74% 0.105 88 / 0.18);
  transform: rotateX(78deg);
  animation: orb-spin 30s linear infinite;
}
.orb-ring--2 {
  inset: -6%;
  border-color: oklch(74% 0.105 88 / 0.12);
  transform: rotateX(70deg) rotateZ(30deg);
  animation: orb-spin-rev 50s linear infinite;
}
.orb-ring--3 {
  inset: -14%;
  border-color: oklch(60% 0.08 230 / 0.10);
  transform: rotateX(82deg) rotateZ(-15deg);
  animation: orb-spin 75s linear infinite;
}

/* Orbiting particles — 12 fixed positions via the --i custom property */
.orb-particles {
  position: absolute;
  inset: 0;
}
.orb-particle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: oklch(80% 0.1 78);
  box-shadow: 0 0 12px oklch(74% 0.105 88 / 0.8);
  opacity: 0.55;
  transform-origin: center;
  transform: translate(-50%, -50%) rotate(calc(var(--i) * 30deg)) translateX(46%);
  animation: orb-spin calc(20s + var(--i) * 1.5s) linear infinite;
}

/* Ambient glow behind the emblem */
.orb-glow {
  position: absolute;
  inset: 20%;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, oklch(74% 0.105 88 / 0.28), oklch(70% 0.1 70 / 0.16) 45%, transparent 72%);
  filter: blur(28px);
  animation: hero-emblem-float 8s var(--ease-in-out) infinite;
}

/* The 3D E — verbatim tilt + glow from the sister site, sized in
   its own native range (170-320px there) rather than the smaller
   corner-accent size the earlier port used. */
.orb-emblem {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
  animation: hero-emblem-float 8s var(--ease-in-out) infinite;
}
.orb-emblem__img {
  display: block;
  width: clamp(120px, 46%, 220px);
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
  transform: perspective(1200px) rotateX(7deg) rotateY(-13deg) rotateZ(-1.5deg);
  filter:
    drop-shadow(0 2px 1px rgba(255, 240, 205, 0.35))
    drop-shadow(-9px 0 2px rgba(92, 50, 6, 0.45))
    drop-shadow(0 0 60px rgba(215, 150, 30, 0.5))
    drop-shadow(0 0 24px rgba(195, 125, 20, 0.4))
    drop-shadow(0 30px 45px rgba(0, 0, 0, 0.35));
  transition: transform 0.55s cubic-bezier(.2, .7, .2, 1), filter 0.55s;
}

/* Floating fact chips */
.orb-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: var(--space-2xs);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-chip);
  background: oklch(96% 0.012 85 / 0.85);
  border: 1px solid var(--hairline);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-tile);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ink-soft);
  z-index: 3;
  white-space: nowrap;
}
:root[data-theme="dark"] .orb-chip {
  background: oklch(20% 0 0 / 0.75);
}
.orb-chip__icon {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: oklch(74% 0.105 88 / 0.16);
  flex-shrink: 0;
}
.orb-chip__icon svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: var(--gold-ink);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* --gold-ink is light-surface-only (tokens.css); dark chip bg needs
   the light gold instead, or the icon reads low-contrast on near-black. */
:root[data-theme="dark"] .orb-chip__icon svg {
  stroke: var(--gold-2);
}
.orb-chip--1 { top: 2%;   left: -4%;  animation: hero-emblem-float 7s var(--ease-in-out) infinite; }
.orb-chip--2 { top: 30%;  right: -6%; animation: orb-float-b 8s var(--ease-in-out) infinite; }
.orb-chip--3 { bottom: 16%; left: 0%; animation: orb-float-b 6.5s var(--ease-in-out) infinite; }
.orb-chip--4 { bottom: 0%; right: 6%; animation: hero-emblem-float 9s var(--ease-in-out) infinite; }

/* Mobile: pull chips in and drop the outermost ring so nothing
   crowds the smaller stage; hero section's overflow:clip is the
   safety net against any residual edge overhang. */
@media (max-width: 40rem) {
  .orb-stage { max-width: 19rem; }
  .orb-ring--3 { display: none; }
  .orb-chip { font-size: 0.6875rem; padding: 0.4rem 0.625rem; }
  .orb-chip--1 { left: 0%; }
  .orb-chip--2 { right: 0%; }
  .orb-chip--4 { right: 2%; }
}

@keyframes orb-spin     { to { transform: rotate(360deg); } }
@keyframes orb-spin-rev { to { transform: rotate(-360deg); } }
@keyframes hero-emblem-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50%      { transform: translate3d(0, -18px, 0); }
}
@keyframes orb-float-b {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50%      { transform: translate3d(0, 14px, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .orb-ring,
  .orb-ring--2,
  .orb-ring--3,
  .orb-particle,
  .orb-glow,
  .orb-emblem,
  .orb-chip--1,
  .orb-chip--2,
  .orb-chip--3,
  .orb-chip--4 {
    animation: none;
  }
}

/* ============================================================
   B · BOOKING PILL — tap-to-book continuity
   ============================================================ */
.booking-pill {
  /* Uses visibility+opacity+transform for animatable show/hide.
     Height collapses via max-height so it doesn't leave a gap when hidden. */
  display: flex;
  flex-wrap: wrap; /* narrow screens: wrap so the "Change" button is never clipped */
  align-items: center;
  gap: var(--space-xs);
  padding: 0 var(--space-sm);
  background: oklch(74% 0.105 88 / 0.14);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--ink);
  margin-bottom: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out),
              max-height var(--dur-fast) var(--ease-out),
              margin-bottom var(--dur-fast) var(--ease-out),
              padding var(--dur-fast) var(--ease-out);
}

.booking-pill.is-visible {
  max-height: 8rem; /* room for a wrapped 2nd line on narrow screens */
  padding: var(--space-2xs) var(--space-sm);
  margin-bottom: var(--space-md);
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Two-step: first set display:flex, then next frame add is-animating for the fade */
.booking-pill__label {
  color: var(--ink-soft);
  font-size: 0.875rem;
  white-space: nowrap;
}

.booking-pill__service {
  font-weight: 500;
  color: var(--ink);
}

.booking-pill__check {
  color: var(--gold-1);
  font-size: 1rem;
  flex-shrink: 0;
}

.booking-pill__change {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold-ink);
  padding: 0 var(--space-2xs);
  text-decoration: underline;
  text-underline-offset: 2px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-left: auto;
  transition: color var(--dur-fast) var(--ease-out);
}

.booking-pill__change:hover {
  color: var(--ink);
}

@media (prefers-reduced-motion: reduce) {
  .booking-pill {
    transition: none;
  }
  .booking-pill.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   C · APP-SCREEN STEP POLISH
   ============================================================ */

/* Sticky step header inside form-panel */
.form-step-header {
  position: sticky;
  top: 4.5rem; /* clear the fixed N10 nav (z-900) so the header isn't hidden behind it */
  z-index: 10;
  background: var(--paper-2);
  border-bottom: 1px solid var(--hairline);
  margin-bottom: var(--space-md);
  padding: var(--space-xs) 0;
  /* Negative margin to bleed to panel edges */
  margin-inline: calc(-1 * clamp(var(--space-lg), 5vw, var(--space-2xl)));
  padding-inline: clamp(var(--space-lg), 5vw, var(--space-2xl));
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.form-step-header__label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

.form-step-header__label strong {
  color: var(--ink);
}

/* Back chevron button — sits in sticky header on steps 2–5 */
.form-step-header__back {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: var(--space-2xs);
  border-radius: var(--space-2xs);
  color: var(--ink-soft);
  flex-shrink: 0;
  transition: color var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out);
}

.form-step-header__back:hover {
  color: var(--ink);
  background: oklch(74% 0.105 88 / 0.08);
}

.form-step-header__back svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Step crossfade transition — incoming step fades IN while the outgoing step fades OUT
   at the same time (overlapping, ~150ms total — not exit-then-enter).
   The form is the positioning context; the exiting step is lifted out of flow so the
   incoming step alone drives panel height (no stacked steps / layout jump). */
#ride-request-form {
  position: relative;
}

.form-step {
  display: none;
  opacity: 0;
  transform: translateY(6px);
}

.form-step.is-active {
  display: block;
  animation: step-enter var(--dur-step) var(--ease-out) forwards;
}

.form-step.is-exiting {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none; /* overlay is non-interactive while fading out */
  animation: step-exit var(--dur-step) var(--ease-out) forwards;
}

@keyframes step-enter {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes step-exit {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .form-step.is-active {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .form-step.is-exiting {
    animation: none;
  }
  .form-step-header {
    position: relative; /* don't sticky on reduced motion — less jarring */
    top: auto;          /* reset the sticky offset so relative flow isn't pushed down */
  }
}

/* Full-width primary button on mobile */
@media (max-width: 39.99rem) {
  .form-nav .btn--primary {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   D · RECEIPT / CONFIRMATION CARD
   ============================================================ */

/* Receipt panel — replaces .review-summary dl default grid */
.review-summary {
  background: var(--paper);
  border-radius: var(--radius-card);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
  box-shadow: var(--shadow-tile);
}

.review-summary h3 {
  font-size: var(--text-base);
  font-weight: 500;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  margin-bottom: var(--space-md);
  font-size: 0.8125rem;
}

/* Receipt rows: label left / value right, hairline between each row.
   Use a 2-col grid; each dt/dd pair shares a row via subgrid-like approach.
   We wrap each pair in a div (JS-generated pairs are adjacent dt+dd siblings,
   so we use the adjacent-sibling approach with display:grid on the dl itself). */
.review-summary dl {
  display: grid;
  grid-template-columns: minmax(0, 38%) minmax(0, 1fr);
  gap: 0; /* hairlines via border-bottom on each row */
}

.review-summary dt,
.review-summary dd {
  padding: var(--space-xs) 0;
  border-bottom: 1px solid var(--hairline);
  align-self: start;
}

.review-summary dt {
  font-size: 0.8125rem;
  font-weight: 500;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  padding-right: var(--space-sm);
}

.review-summary dd {
  font-size: var(--text-base);
  color: var(--ink);
  overflow-wrap: anywhere;
}

/* Remove bottom border from last pair */
.review-summary dt:last-of-type,
.review-summary dd:last-child {
  border-bottom: none;
}

/* ---- Confirmation card (#form-success) ---- */
.form-success {
  display: none;
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
}

.form-success.is-visible {
  display: block;
}

/* Animated check — stroke-draw via stroke-dashoffset */
.form-success__check-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-lg);
  position: relative;
}

.form-success__check-circle {
  width: 72px;
  height: 72px;
  stroke: var(--gold-1);
  fill: none;
  stroke-width: 1.5;
  /* circle circumference ~214 */
  stroke-dasharray: 214;
  stroke-dashoffset: 214;
  stroke-linecap: round;
  transform-origin: center;
  transform: rotate(-90deg);
  animation: check-circle-draw 500ms var(--ease-out) 100ms forwards;
}

.form-success__check-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  stroke: var(--gold-ink);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  /* polyline path approx length ~40 */
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: check-mark-draw 300ms var(--ease-out) 550ms forwards;
}

@keyframes check-circle-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes check-mark-draw {
  to { stroke-dashoffset: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .form-success__check-circle,
  .form-success__check-mark {
    animation: none;
    stroke-dashoffset: 0;
  }
}

.form-success__heading {
  font-family: var(--font-display);
  font-size: var(--text-display-s);
  font-weight: 500;
  font-style: normal;
  color: var(--ink);
  margin-bottom: var(--space-sm);
  line-height: 1.1;
}

.form-success__message {
  font-size: var(--text-base);
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  max-width: 30rem;
  margin-inline: auto;
}

.form-success__next-steps {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.form-success__phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.form-success__email-note {
  font-size: 0.875rem;
  color: var(--ink-soft);
  margin-bottom: var(--space-sm);
}

/* ============================================================
   E · NUMBERED HOW-IT-WORKS TILES
   ============================================================ */

/* Tile card — same rounded panel + hover lift as service cards */
.step {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  position: relative;
  z-index: 1;
  transition: transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out);
}

.step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-tile-hover);
  border-color: var(--gold-1);
}

.step:active {
  transform: translateY(1px) scale(0.99);
  box-shadow: var(--shadow-tile);
}

/* Gold number chip */
.step__num-chip {
  width: var(--chip-size);
  height: var(--chip-size);
  border-radius: var(--radius-chip);
  background: var(--gold-tint-bg);
  border: 1px solid oklch(74% 0.105 88 / 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: var(--space-2xs);
}

:root[data-theme="dark"] .step__num-chip {
  background: oklch(20% 0 0 / 0.80);
  border-color: oklch(74% 0.105 88 / 0.22);
}

.step__num-chip-text {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  font-style: normal;
  color: var(--gold-ink);
  line-height: 1;
}

/* Icon sits below chip — smaller, no border circle */
.step__icon-wrapper {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  /* remove old circle border — now card handles elevation */
  border: none;
  border-radius: 0;
  background: transparent;
  margin-bottom: 0;
}

.step__icon-wrapper svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold-1);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Remove old ::before circle from step__number since we now use chip */
.step__number {
  display: none; /* replaced by step__num-chip in HTML */
}

/* Connector line needs to align to chip center now */
@media (min-width: 60rem) {
  .steps::before {
    top: calc(var(--space-lg) + var(--chip-size) / 2);
  }
}

@media (prefers-reduced-motion: reduce) {
  .step {
    transition: border-color var(--dur-fast) var(--ease-out);
  }
  .step:hover {
    transform: none;
  }
  .step:active {
    transform: none;
  }
}

/* ============================================================
   ENERGY LAYER — shared press/hover micro-spring on buttons
   ============================================================ */

/* Active press on all .btn surfaces */
.btn:active {
  transform: translateY(1px) scale(0.99);
  transition: transform 80ms var(--ease-out),
              box-shadow 80ms var(--ease-out);
}

/* --primary already has translateY(-1px) on hover; :active overrides to press */
.btn--primary:active {
  transform: translateY(1px) scale(0.99);
  box-shadow: 0 2px 8px oklch(74% 0.105 88 / 0.20);
}

.btn--secondary:active,
.btn--outline-gold:active {
  transform: translateY(1px) scale(0.99);
}

@media (prefers-reduced-motion: reduce) {
  .btn:active,
  .btn--primary:active,
  .btn--secondary:active,
  .btn--outline-gold:active {
    transform: none;
  }
}
