/* ═══════════════════════════════════════════════════════════════
   ASK PATRICIA — Car Accident Consultant
   Black + Off-White Color Blocking Design System
   ═══════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ───────────────────────────────────────────── */
:root {
  /* Core Structure */
  --black:          #000000;
  --soft-black:     #111111;
  --charcoal:       #1A1A1A;
  --deep-plum:      #0D0D0D;

  /* Patricia Pink */
  --pink:           #E21F56;
  --pink-dark:      #B91845;
  --pink-dim:       rgba(226,31,86,0.10);

  /* Grays */
  --gray-dark:      #B6B6B6;
  --gray-mid:       #888888;
  --gray-light:     #DDDDDD;

  /* Backwards-compat aliases — existing selectors pick up pink automatically */
  --gold:           #E21F56;
  --gold-light:     #E21F56;
  --gold-dim:       rgba(226,31,86,0.10);

  /* Light section palette */
  --cream-bg:       #F7F7F7;
  --cream-mid:      #EEEEEE;
  --cream-dark:     #111111;
  --cream-muted:    #888888;

  /* Shared */
  --white:          #FFFFFF;
  --cream:          #FFFFFF;
  --muted:          #B6B6B6;
  --danger:         #CC2222;
  --border-gold:    rgba(226,31,86,0.30);
  --border-subtle:  rgba(255,255,255,0.08);
  --border-cream:   rgba(255,255,255,0.12);

  /* Typography */
  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-1: 0.25rem;  --space-2: 0.5rem;   --space-3: 0.75rem;
  --space-4: 1rem;     --space-6: 1.5rem;   --space-8: 2rem;
  --space-12: 3rem;    --space-16: 4rem;    --space-20: 5rem;

  /* Radius */
  --radius-sm: 3px;  --radius-md: 8px;  --radius-lg: 14px;
  --radius-xl: 22px; --radius-full: 9999px;

  /* Easing */
  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out:cubic-bezier(0.65, 0, 0.35, 1);
  --t-fast: 160ms var(--ease-out);
  --t-base: 300ms var(--ease-out);
  --t-slow: 600ms var(--ease-out);

  /* Shadows */
  --shadow-card:  0 4px 28px rgba(0,0,0,0.4), 0 1px 4px rgba(0,0,0,0.2);
  --shadow-modal: 0 24px 80px rgba(0,0,0,0.8);

  --header-h: 70px;

  /* Backwards-compat aliases */
  --transition-fast: var(--t-fast);
  --transition-base: var(--t-base);
  --transition-slow: var(--t-slow);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: env(safe-area-inset-bottom);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

fieldset {
  border: none;
}

/* ──────────────────────────────────────────
   ACCESSIBILITY
────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  background: var(--gold);
  color: var(--black);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.875rem;
  z-index: 10000;
  transition: top var(--t-fast);
}
.skip-link:focus { top: var(--space-4); }

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

/* ──────────────────────────────────────────
   REDUCED MOTION
────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ── LIGHT SECTION MODIFIER ──────────────────────────────────── */
.section--cream,
.section--light {
  background: var(--cream-bg) !important;
  color: var(--cream-dark);
}
.section--cream .section-label,
.section--light .section-label,
.section--cream .section-label-center,
.section--light .section-label-center { color: var(--pink); }
.section--cream .section-heading,
.section--light .section-heading,
.section--cream .section-heading-centered,
.section--light .section-heading-centered { color: var(--cream-dark); }
.section--cream .section-heading em,
.section--light .section-heading em { color: var(--pink); }
.section--cream .section-subtext,
.section--light .section-subtext { color: var(--cream-muted); }
.section--cream .section-divider-line,
.section--light .section-divider-line { background: linear-gradient(90deg, transparent, rgba(226,31,86,0.25), transparent); }


/* ──────────────────────────────────────────
   LAYOUT UTILITIES
────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 3rem);
}

/* ──────────────────────────────────────────
   TYPOGRAPHY SYSTEM
────────────────────────────────────────── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: var(--space-4);
}

.section-heading em {
  font-style: italic;
  color: var(--gold-light);
}

.section-subtext {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--muted);
  max-width: 560px;
  margin-bottom: var(--space-12);
}

/* ──────────────────────────────────────────
   BUTTON SYSTEM
────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  border: 1.5px solid transparent;
  min-height: 48px;
}

.btn-gold,
.btn-pink {
  background: var(--pink);
  color: #FFFFFF;
  border-color: var(--pink);
  box-shadow: 0 2px 16px rgba(226,31,86,0.25);
}

.btn-gold:hover, .btn-gold:focus-visible,
.btn-pink:hover, .btn-pink:focus-visible {
  background: var(--pink-dark);
  border-color: var(--pink-dark);
  box-shadow: 0 4px 24px rgba(226,31,86,0.40);
  transform: translateY(-1px);
}

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

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

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--border-subtle);
}

.btn-ghost:hover, .btn-ghost:focus-visible {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
}

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

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

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

/* ──────────────────────────────────────────
   REVEAL ANIMATIONS
────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
  will-change: opacity, transform;
}

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

/* Stagger delays for grouped children */
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }

/* Slide-in from left for image columns */
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  will-change: opacity, transform;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

/* ──────────────────────────────────────────
   STICKY HEADER
────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--t-base), box-shadow var(--t-base);
}

.site-header.scrolled {
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 var(--border-gold), 0 8px 32px rgba(0,0,0,0.5);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.header-logo img {
  height: 38px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.header-nav {
  display: none;
}

@media (min-width: 1024px) {
  .header-nav {
    display: flex;
  }
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--t-fast);
  padding: var(--space-2) 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.header-cta {
  display: none;
  align-items: center;
  gap: var(--space-4);
}

@media (min-width: 1024px) {
  .header-cta {
    display: flex;
  }
}

.header-cta-btn {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  text-align: center;
  line-height: 1.2;
}
.header-cta-btn small {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  font-weight: 800;
  opacity: 0.75;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: var(--space-2);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  transition: background var(--t-fast);
}

@media (min-width: 1024px) {
  .hamburger { display: none; }
}

.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--cream);
  transition: all var(--t-base);
  border-radius: 2px;
}

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

/* Mobile Menu */
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1100;
}

.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(360px, 100vw);
  height: 100svh;
  background: var(--soft-black);
  border-left: 1px solid var(--border-gold);
  z-index: 1200;
  padding: var(--space-8) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--t-slow);
}

.mobile-menu:not([hidden]) {
  transform: translateX(0);
}

.mobile-menu[hidden] {
  display: flex;
}

.mobile-menu-close {
  position: absolute;
  top: var(--space-4); right: var(--space-4);
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--muted);
  transition: color var(--t-fast), background var(--t-fast);
}
.mobile-menu-close:hover { color: var(--white); background: rgba(255,255,255,0.06); }

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.mobile-nav-link {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  border-radius: var(--radius-sm);
  transition: color var(--t-fast), background var(--t-fast);
}

.mobile-nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.04);
}

.mobile-menu-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: auto;
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--black);
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(201,148,62,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 50% 100%, rgba(0,0,0,0.8) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

/* Patricia's portrait — right half */
.hero-portrait-wrap {
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
}

@media (max-width: 767px) {
  .hero {
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
  }
  .hero-content {
    padding-bottom: var(--space-8);
    flex-shrink: 0;
  }
  .hero-portrait-wrap {
    position: relative;
    top: auto; right: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    max-height: 440px;
    opacity: 1;
    z-index: auto;
    flex-shrink: 0;
  }
  .hero-portrait-img { object-position: 62% 30%; }
  .hero-portrait-fade {
    background: linear-gradient(
      to bottom,
      var(--black) 0%,
      transparent 22%
    );
  }
}

.hero-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 45%;
  display: block;
}

.hero-portrait-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--black) 0%,
    rgba(8,6,4,0.5) 40%,
    transparent 100%
  );
}

.hero-portrait-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--black), transparent);
}

/* Hero text — left side */
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  padding-bottom: 4rem;
}

.hero-text {
  max-width: 560px;
  padding-block: clamp(4rem, 12vh, 8rem);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-6);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}

.hero-accident {
  display: block;
  font-size: clamp(3rem, 10vw, 7.5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--gold-light);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-top: var(--space-1);
  margin-bottom: var(--space-4);
}

.hero-emphasis {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.6rem);
  font-weight: 500;
  font-style: italic;
  color: rgba(242,235,217,0.82);
  margin-bottom: var(--space-6);
}

.hero-copy {
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  color: rgba(168,168,168,0.9);
  max-width: 460px;
  margin-bottom: var(--space-8);
  line-height: 1.72;
}

.hide-mobile { display: none; }
@media (min-width: 600px) { .hide-mobile { display: inline; } }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.btn-dark-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(242,235,217,0.28);
  border-radius: var(--radius-sm);
}
.btn-dark-outline:hover {
  border-color: rgba(242,235,217,0.55);
  background: rgba(242,235,217,0.04);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.3rem 0.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(168,168,168,0.9);
}

/* ── SECTION DIVIDERS + CENTERED HEADINGS ──────────────────── */
.section-divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
  margin-block: var(--space-6);
}
.section-divider-line--dark {
  background: linear-gradient(90deg, transparent, rgba(42,32,23,0.25), transparent);
}
.section-heading-centered {
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 1.4vw, 0.8rem);
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  margin: 0;
}
.section-heading-centered--dark {
  color: var(--cream-dark);
}
.section-label-center {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: var(--space-3);
}

/* ── SERVICES ──────────────────────────────────────────────── */
.services-section {
  padding-block: clamp(4rem, 10vw, 7rem);
  background: var(--soft-black);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px,100%),1fr));
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.service-card {
  background: var(--charcoal);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t-base), transform var(--t-base);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--t-base);
}

.service-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}
.service-card:hover::after { opacity: 1; }

.service-icon {
  width: 56px; height: 56px;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
}

.service-title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: var(--space-3);
  text-transform: uppercase;
}

.service-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.62;
}

/* ── ABOUT / MEET PATRICIA ───────────────────────────────── */
.about-section {
  padding-block: clamp(4rem, 10vw, 7rem);
  background: var(--deep-plum);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}

.about-image-frame {
  position: relative;
  max-width: 440px;
  margin: 0 auto;
}

.about-portrait {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-xl);
  position: relative;
  z-index: 2;
}

.about-keyline {
  position: absolute;
  top: 14px; left: 14px; right: -14px; bottom: -14px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  z-index: 0;
  pointer-events: none;
}

.about-content-col { position: relative; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: var(--space-2);
  display: block;
}

.about-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 0.9;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6);
}

.about-quote {
  border-left: 2px solid var(--gold);
  padding-left: var(--space-6);
  margin-bottom: var(--space-6);
}
.about-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.55;
}

.about-body {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: var(--space-8);
}

.about-stats {
  display: flex;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-1);
}

.stat-icon {
  margin-bottom: var(--space-2);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
/* ── HOW IT WORKS / PROCESS ───────────────────────────────── */
.process-section {
  padding-block: clamp(4rem, 10vw, 7rem);
  background: var(--charcoal);
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-top: var(--space-8);
  justify-items: center;
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 0;
    justify-items: stretch;
  }
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-inline: var(--space-4);
}

.step-icon {
  width: 72px; height: 72px;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  flex-shrink: 0;
}

.step-num {
  width: 56px; height: 56px;
  border: 1.5px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--pink);
  margin-bottom: var(--space-4);
  flex-shrink: 0;
}

.step-body { text-align: center; }

.step-connector {
  display: none;
  font-size: 1.5rem;
  color: var(--border-gold);
  padding-inline: var(--space-2);
  align-self: center;
  padding-bottom: 3.5rem; /* visually aligns with icon row */
}

@media (min-width: 768px) {
  .step-connector { display: flex; align-items: center; }
}

.step-title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-3);
}

.step-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 200px;
}
/* ── URGENCY / COMPENSATION CTA ───────────────────────────── */
.urgency-section {
  padding-block: clamp(3rem, 8vw, 6rem);
  background: var(--black);
}

.urgency-panel {
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  background: var(--soft-black);
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.urgency-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(201,148,62,0.09) 0%, transparent 70%);
  pointer-events: none;
}

.urgency-inner { position: relative; }

.urgency-heading {
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 2vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-6);
}

.urgency-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.urgency-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
}

.urgency-divider {
  color: var(--border-gold);
  font-size: 1.2rem;
  display: none;
}
@media (min-width: 600px) { .urgency-divider { display: inline; } }

.urgency-phones {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
}

.urgency-phone-block {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.urgency-phone-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  transition: color var(--t-fast);
}
.urgency-phone-num:hover { color: var(--white); }

.urgency-phone-sub {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 2px;
}

.urgency-sep {
  width: 1px;
  height: 40px;
  background: var(--border-gold);
}

.urgency-cta { margin-left: var(--space-4); }

.urgency-disclaimer {
  font-size: 0.7rem;
  color: rgba(168,168,168,0.4);
  text-align: center;
  margin-top: var(--space-4);
}
/* ── FORM ────────────────────────────────────────────────── */
.form-section {
  padding-block: clamp(4rem, 10vw, 7rem);
  background: var(--soft-black);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: var(--space-4);
}
.section-heading em {
  font-style: italic;
  color: var(--gold-light);
}
.section-subtext {
  font-size: clamp(0.88rem, 1.5vw, 1rem);
  color: var(--muted);
  max-width: 500px;
  margin-bottom: var(--space-12);
}
.section-subtext-centered {
  font-size: clamp(0.88rem, 1.5vw, 1rem);
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto var(--space-12);
  text-align: center;
}

.form-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.intake-form {
  background: var(--charcoal);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 4vw, 3rem);
}
.hp-field {
  position: absolute;
  top: -9999px;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

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

  .form-row--three {
    grid-template-columns: repeat(3, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-group--full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

label span[aria-hidden] {
  color: var(--gold);
  margin-left: 2px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
select,
textarea {
  width: 100%;
  background: var(--soft-black);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  min-height: 48px;
  appearance: none;
  -webkit-appearance: none;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23B8B8B8' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,148,62,0.12);
}

input.error,
select.error,
textarea.error {
  border-color: var(--danger);
}

input::placeholder,
textarea::placeholder {
  color: rgba(184, 184, 184, 0.35);
}

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

/* Radio groups */
fieldset legend {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--space-2);
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.radio-label {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cream);
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.radio-label:hover {
  border-color: var(--border-gold);
  background: var(--gold-dim);
}

.radio-label input[type="radio"] {
  accent-color: var(--gold);
  min-height: unset;
  width: 16px;
  height: 16px;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}

.field-error {
  font-size: 0.78rem;
  color: var(--danger);
  font-weight: 600;
  min-height: 1.2em;
  display: block;
}

.form-footer {
  margin-top: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.form-legal {
  font-size: 0.72rem;
  color: rgba(184, 184, 184, 0.45);
  text-align: center;
  line-height: 1.5;
}

/* Submit button loading */
.spin {
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Form success state */
.form-success {
  text-align: center;
  padding: var(--space-16) var(--space-8);
}

.success-icon {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-6);
}

.success-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-3);
}

.success-body {
  font-size: 1rem;
  color: var(--muted);
  max-width: 400px;
  margin: 0 auto var(--space-8);
}

.success-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}

/* ── TESTIMONIALS ──────────────────────────────────────────── */
.testimonials-section {
  padding-block: clamp(4rem, 10vw, 7rem);
  background: var(--soft-black);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px,100%),1fr));
  gap: var(--space-6);
  margin-top: var(--space-6);
}

.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(232,222,202,0.6);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}

.section--cream .testimonial-card {
  background: var(--white);
  border-color: var(--border-cream);
  box-shadow: 0 2px 16px rgba(42,32,23,0.06);
}

.section--cream .testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(42,32,23,0.12);
  transform: translateY(-3px);
}

.testimonial-stars { display: flex; gap: 2px; }

.testimonial-card blockquote p {
  font-size: 0.92rem;
  color: var(--cream-dark);
  line-height: 1.72;
  font-style: italic;
}

.testimonial-card cite {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-style: normal;
  margin-top: auto;
}

.cite-name {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--cream-dark);
}

.cite-location {
  font-size: 0.72rem;
  color: var(--cream-muted);
  letter-spacing: 0.04em;
}
/* ── FAQ ──────────────────────────────────────────────────── */
.faq-section {
  padding-block: clamp(4rem, 10vw, 7rem);
  background: var(--charcoal);
}
.faq-section .section-label,
.faq-section .section-heading {
  text-align: center;
}

.faq-list {
  max-width: 760px;
  margin: var(--space-8) auto 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--t-base);
}

.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: var(--border-gold);
}

.faq-question {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--cream);
  background: var(--soft-black);
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast);
  min-height: 56px;
}

.faq-question:hover {
  background: var(--charcoal);
  color: var(--white);
}

.faq-question[aria-expanded="true"] {
  color: var(--gold-light);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform var(--t-base);
}

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

.faq-answer {
  padding: 0 var(--space-6) var(--space-6);
  background: var(--soft-black);
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  padding-top: var(--space-3);
  border-top: 1px solid var(--border-subtle);
}

/* ── SOCIAL / FOLLOW SECTION ──────────────────────────────── */
.social-section {
  padding-block: clamp(4rem, 10vw, 7rem);
  background: var(--deep-plum);
}

.footer-social-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
}
@media (min-width: 900px) {
  .footer-social-split { grid-template-columns: 1.2fr 1fr 1.5fr; gap: var(--space-12); }
}

.social-logo { margin-bottom: var(--space-4); }

.footer-tagline-cream {
  font-size: 0.88rem;
  color: var(--cream-muted);
  line-height: 1.65;
  margin-bottom: var(--space-6);
  max-width: 280px;
}

.footer-social-icons {
  display: flex;
  gap: var(--space-3);
}

.social-icon-btn {
  width: 40px; height: 40px;
  border: 1px solid var(--border-cream);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-muted);
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}
.social-icon-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201,148,62,0.06);
}

.footer-col-heading-dark {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dark);
  margin-bottom: var(--space-4);
  opacity: 0.6;
}

.footer-contact-list-cream {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.footer-contact-list-cream li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}
.contact-link-dark {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--cream-dark);
  transition: color var(--t-fast);
}
.contact-link-dark:hover { color: var(--gold); }
.contact-sub-dark {
  display: block;
  font-size: 0.72rem;
  color: var(--cream-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: var(--space-4);
}

.ig-tile {
  aspect-ratio: 1;
  border-radius: 3px;
  cursor: pointer;
  transition: opacity var(--t-fast);
}
.ig-tile:hover { opacity: 0.8; }

.ig-tile--1 { background: linear-gradient(135deg, #d4c4a0 0%, #c8b48a 100%); }
.ig-tile--2 { background: linear-gradient(135deg, #b8a882 0%, #a89268 100%); }
.ig-tile--3 { background: linear-gradient(135deg, #c8b88a 0%, #b8a070 100%); }
.ig-tile--4 { background: linear-gradient(135deg, #d8c8a8 0%, #c4ae88 100%); }
.ig-tile--5 { background: linear-gradient(135deg, #c0aa80 0%, #ac9464 100%); }
.ig-tile--6 { background: linear-gradient(135deg, #b4a47a 0%, #a08a5a 100%); }
.ig-tile--7 { background: linear-gradient(135deg, #cebb95 0%, #b8a270 100%); }
.ig-tile--8 { background: linear-gradient(135deg, #bfab84 0%, #aa9264 100%); }
.ig-tile--9 { background: linear-gradient(135deg, #d4bf96 0%, #c2a87a 100%); }

.ig-btn {
  width: 100%;
  justify-content: center;
}
/* ── FOOTER ────────────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: clamp(1.5rem, 4vw, 2.5rem);
}
.footer-bottom {
  padding-block: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
  text-align: center;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}

.footer-legal-links a {
  font-size: 0.72rem;
  color: var(--white);
  transition: color var(--t-fast);
}
.footer-legal-links a:hover { color: rgba(255,255,255,0.7); }

.footer-disclaimer {
  font-size: 0.68rem;
  color: var(--white);
  line-height: 1.65;
  max-width: 700px;
  text-align: center;
}

.footer-copy {
  font-size: 0.7rem;
  color: var(--white);
}

/* ── MOBILE BAR ──────────────────────────────────────────── */
.mobile-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(11, 11, 13, 0.96);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-top: 1px solid var(--border-gold);
  padding-bottom: env(safe-area-inset-bottom);
}

@media (min-width: 1024px) {
  .mobile-bar { display: none; }
}

.mobile-bar-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0.6rem 0.25rem;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--t-fast), background var(--t-fast);
  min-height: 56px;
  text-decoration: none;
}

.mobile-bar-btn:hover,
.mobile-bar-btn:focus-visible {
  color: var(--gold);
  background: rgba(216, 168, 79, 0.06);
}

.mobile-bar-btn--primary {
  background: rgba(226,31,86,0.12);
  color: var(--pink);
  border-inline: 1px solid rgba(226,31,86,0.25);
}

/* ── PWA INSTALL PROMPT ───────────────────────────────────── */
.pwa-install-prompt {
  position: fixed;
  bottom: calc(64px + env(safe-area-inset-bottom));
  left: var(--space-4);
  right: var(--space-4);
  z-index: 800;
  max-width: 480px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .pwa-install-prompt {
    bottom: var(--space-6);
    left: auto;
    right: var(--space-6);
    width: 380px;
  }
}

.pwa-prompt-content {
  background: var(--charcoal);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  box-shadow: var(--shadow-modal);
  animation: slideUp 0.4s var(--ease-out);
}

.pwa-prompt-content img {
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.pwa-prompt-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pwa-prompt-text strong {
  font-size: 0.875rem;
  color: var(--white);
}

.pwa-prompt-text span {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.4;
}

.pwa-prompt-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex-shrink: 0;
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ── BODY PADDING FOR MOBILE BAR ─────────────────────────── */
@media (max-width: 1023px) {
  .site-footer {
    padding-bottom: calc(56px + env(safe-area-inset-bottom) + 1rem);
  }
}

/* ──────────────────────────────────────────
   FOOTER GRID / BRAND (was missing)
────────────────────────────────────────── */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  padding-block: clamp(2rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1.5fr; gap: var(--space-12); }
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-heading {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-4);
  opacity: 0.6;
}
.footer-tagline {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-2);
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: border-color var(--t-fast), color var(--t-fast);
}
.footer-social a:hover { border-color: var(--gold); color: var(--white); }
.footer-links a {
  font-size: 0.8rem; color: var(--muted);
  transition: color var(--t-fast);
}
.footer-links a:hover { color: var(--white); }
.footer-contact-list { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-contact-list li {
  display: flex; align-items: flex-start; gap: var(--space-3);
  font-size: 0.82rem; color: var(--muted);
}
.footer-contact-list a {
  color: var(--muted); transition: color var(--t-fast);
}
.footer-contact-list a:hover { color: var(--white); }

/* ──────────────────────────────────────────
   FINAL CTA SECTION (was missing)
────────────────────────────────────────── */
.final-cta-section {
  padding-block: clamp(4rem, 10vw, 7rem);
  background: var(--black);
}
.final-cta-panel {
  background: var(--soft-black);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: clamp(3rem, 7vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,148,62,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-4);
  position: relative;
}
.final-cta-heading em { font-style: italic; color: var(--gold-light); }
.final-cta-sub {
  font-size: 0.88rem; color: var(--muted);
  letter-spacing: 0;
  margin-bottom: var(--space-8); position: relative;
  margin-bottom: var(--space-8); position: relative;
}
.final-cta-buttons {
  display: flex; flex-wrap: wrap; gap: var(--space-4);
  justify-content: center; position: relative;
}

/* ------------------------------------------
   INTAKE PROGRESS BAR
------------------------------------------ */
.intake-bar {
  padding: var(--space-5) var(--space-6) var(--space-4);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: var(--space-6);
}
.intake-bar-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--space-3);
}
.intake-bar-step-name { font-size: 0.8rem; font-weight: 700; color: var(--white); }
.intake-bar-count {
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
}
.intake-bar-track { height: 3px; background: var(--border-subtle); border-radius: 9999px; overflow: hidden; }
.intake-bar-fill {
  height: 100%;
  background: var(--pink);
  border-radius: 9999px;
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ------------------------------------------
   INTAKE STEP PANELS & TRANSITIONS
------------------------------------------ */
.intake-step-panel { display: none; }
.intake-step-panel.active {
  display: block;
  animation: intakeIn 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.intake-step-panel.slide-back.active {
  animation: intakeBack 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes intakeIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes intakeBack {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .intake-step-panel.active,
  .intake-step-panel.slide-back.active { animation: none !important; }
}
.intake-step-heading {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600; color: var(--cream);
  margin-bottom: var(--space-3); letter-spacing: -0.01em;
}
.intake-step-sub {
  font-size: 0.87rem; color: var(--muted);
  margin-bottom: var(--space-6); line-height: 1.6;
}
.intake-field-group { margin-bottom: 1.75rem; }
.intake-field-label {
  display: block; font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: var(--space-3);
}
.intake-date-group { max-width: 260px; margin-bottom: var(--space-6); }
.req-star { color: var(--gold); margin-left: 2px; }
.opt-label {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0;
  text-transform: none; color: rgba(168,168,168,0.55);
  margin-left: var(--space-2);
}

/* ------------------------------------------
   CHOICE CARDS -- Accident Type
------------------------------------------ */
.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
  margin-bottom: var(--space-6);
}
.choice-grid[aria-invalid="true"] { outline: 2px solid var(--pink, #E21F56); border-radius: 8px; }
@media (max-width: 420px) {
  .choice-grid { grid-template-columns: repeat(2, 1fr); }
}
.choice-card {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: var(--space-2); padding: 1rem 0.625rem;
  background: var(--soft-black);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  cursor: pointer; text-align: center;
  transition: border-color var(--t-base), background var(--t-base), transform 0.15s;
  min-height: 88px; position: relative;
  font-family: var(--font-body);
}
.choice-card:hover {
  border-color: var(--border-gold);
  background: rgba(201,148,62,0.06);
  transform: translateY(-2px);
}
.choice-card[aria-pressed="true"] {
  border-color: var(--gold);
  background: rgba(201,148,62,0.13);
}
.choice-card[aria-pressed="true"]::after {
  content: '';
  position: absolute; top: 7px; right: 7px;
  width: 7px; height: 7px;
  background: var(--gold); border-radius: 50%;
}
.choice-card-icon svg { stroke: var(--muted); transition: stroke var(--t-fast); }
.choice-card:hover .choice-card-icon svg { stroke: var(--cream); }
.choice-card[aria-pressed="true"] .choice-card-icon svg { stroke: var(--gold-light); }
.choice-card-label {
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--cream); line-height: 1.25;
  transition: color var(--t-fast);
}
.choice-card[aria-pressed="true"] .choice-card-label { color: var(--gold-light); }

/* ------------------------------------------
   STATUS CARDS -- Yes/No/Not Sure
------------------------------------------ */
.status-cards { display: flex; flex-wrap: wrap; gap: 0.625rem; }
.status-card {
  flex: 1; min-width: min(90px, 100%);
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--space-2); padding: 0.875rem 1rem;
  background: var(--soft-black);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.875rem; font-weight: 700; color: var(--cream);
  cursor: pointer; text-align: center;
  transition: border-color var(--t-base), background var(--t-base), color var(--t-base);
  min-height: 52px;
}
.status-card:hover { border-color: var(--border-gold); background: rgba(201,148,62,0.06); }
.status-card[aria-pressed="true"] {
  border-color: var(--gold);
  background: rgba(201,148,62,0.13);
  color: var(--gold-light);
}
.status-card svg { flex-shrink: 0; opacity: 0.75; }
.status-card[aria-pressed="true"] svg { opacity: 1; }
.status-card--wide { flex-basis: 100%; }
.status-cards--contact .status-card { font-size: 0.82rem; }

/* ------------------------------------------
   INTAKE NAV
------------------------------------------ */
.intake-nav {
  display: flex; gap: var(--space-3);
  justify-content: space-between; align-items: center;
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-subtle);
}
.intake-nav--next { justify-content: flex-end; border-top: none; padding-top: 0; }
.intake-back-btn {
  color: rgba(168,168,168,0.55); font-size: 0.8rem;
  display: inline-flex; align-items: center; gap: var(--space-2);
  transition: color var(--t-fast);
  padding: 0; background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-weight: 700;
}
.intake-back-btn:hover { color: var(--cream); }

/* ------------------------------------------
   SUCCESS STATE ENHANCEMENTS
------------------------------------------ */
.success-next-steps {
  background: var(--charcoal);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-6);
  margin: var(--space-6) auto;
  max-width: 440px; text-align: left;
}
.success-next-heading {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: var(--space-3);
}
.success-next-list { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); }
.success-next-list li {
  font-size: 0.8rem; color: rgba(184,184,184,0.65);
  padding-left: 1rem; position: relative; line-height: 1.55;
}
.success-next-list li::before { content: "-"; position: absolute; left: 0; color: var(--gold); }


/* ──────────────────────────────────────────
   ATTORNEY / PROVIDER DIRECTORY
────────────────────────────────────────── */
.directory-section {
  padding-block: clamp(4rem, 10vw, 7rem);
  background: var(--deep-plum);
}
.directory-categories {
  display: flex; flex-direction: column; gap: var(--space-12);
}
.directory-category-label {
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: var(--space-5); display: block;
}
.directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px,100%), 1fr));
  gap: var(--space-5);
}
.provider-card {
  background: var(--charcoal);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex; flex-direction: column; gap: var(--space-4);
  transition: border-color var(--t-base), transform var(--t-base);
  position: relative; overflow: hidden;
}
.provider-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--t-base);
}
.provider-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}
.provider-card:hover::after { opacity: 1; }
.provider-avatar {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.provider-info { display: flex; flex-direction: column; gap: 3px; }
.provider-name { font-size: 0.9rem; font-weight: 700; color: var(--white); }
.provider-specialty {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--gold);
}
.provider-location {
  font-size: 0.78rem; color: var(--muted);
  display: flex; align-items: center; gap: var(--space-2);
}
.provider-tags { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.provider-tag {
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.04em;
  line-height: 1;
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--cream);
}

/* ──────────────────────────────────────────
   LEGAL DISCLAIMER SECTION
─────────────────────────────────────────── */
.legal-section {
  padding-block: var(--space-20);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.legal-panel {
  background: var(--charcoal);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 3.5rem);
  max-width: 860px; margin: 0 auto;
}
.legal-heading {
  font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--white);
  margin-bottom: var(--space-6); display: flex; align-items: center; gap: var(--space-3);
}
.legal-heading::before {
  content: '';
  display: inline-block; width: 24px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}
.legal-body {
  font-size: 0.8rem; color: rgba(184,184,184,0.55);
  line-height: 1.8;
}
.legal-body p { margin-bottom: var(--space-4); }
.legal-links {
  display: flex; flex-wrap: wrap; justify-content: center; text-align: center;
  gap: var(--space-6);
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border-subtle);
}
.legal-links a {
  font-size: 0.75rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.08em;
  transition: color var(--t-fast);
}
.legal-links a:hover { color: var(--gold); }

/* ───────────────────────────────────────────
   SPACE-10 TOKEN
─────────────────────────────────────────── */
:root { --space-10: 2.5rem; }

/* ───────────────────────────────────────────
   PROVIDER CARD — CONTACT ACTIONS & PHOTO
   (additive — supports click-to-call, click-to-email,
    Google Maps directions, and photo placeholders)
─────────────────────────────────────────── */
.provider-avatar--photo { overflow: hidden; padding: 0; }
.provider-photo {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.provider-card-actions {
  display: flex; flex-wrap: wrap; gap: var(--space-2);
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-subtle);
}
.provider-action {
  display: inline-flex; align-items: center; gap: var(--space-2);
  flex: 1 1 auto; justify-content: center;
  min-height: 40px;
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.02);
  color: var(--cream);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}
.provider-action svg { width: 14px; height: 14px; flex-shrink: 0; }
.provider-action:hover,
.provider-action:focus-visible {
  border-color: var(--border-gold);
  color: var(--gold);
  background: var(--gold-dim);
}
.provider-action span { white-space: nowrap; }
.provider-detail-link {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--gold);
  transition: gap var(--t-fast), color var(--t-fast);
}
.provider-detail-link:hover { gap: var(--space-3); color: var(--gold-light); }

@media (max-width: 420px) {
  .provider-action { flex-basis: 100%; }
}

/* ───────────────────────────────────────────
   PROVIDER DETAIL PAGE (/providers/*.html)
─────────────────────────────────────────── */
.provider-detail-page {
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: 6rem;
  background: var(--black);
  min-height: 100vh;
}
.provider-detail-container {
  max-width: 760px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 3rem);
}
.provider-detail-back {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-size: 0.8rem; font-weight: 700;
  color: var(--muted); margin-bottom: var(--space-8);
  transition: color var(--t-fast);
}
.provider-detail-back:hover { color: var(--gold); }
.provider-detail-head {
  display: flex; align-items: center; gap: var(--space-6);
  flex-wrap: wrap; margin-bottom: var(--space-8);
}
.provider-detail-photo {
  width: 96px; height: 96px; flex-shrink: 0;
  border-radius: var(--radius-lg);
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.provider-detail-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.provider-detail-label {
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: var(--space-2); display: block;
}
.provider-detail-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 700; color: var(--white); line-height: 1.1;
}
.provider-detail-sub {
  font-size: 0.9rem; color: var(--muted); margin-top: var(--space-2);
}
.provider-detail-actions {
  display: flex; flex-wrap: wrap; gap: var(--space-3);
  margin-bottom: var(--space-10);
}
.provider-detail-actions .btn { flex: 1 1 180px; }
.provider-detail-info {
  background: var(--charcoal);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: var(--space-8);
}
.provider-detail-info dl { display: grid; gap: var(--space-5); margin: 0; }
.provider-detail-row {
  display: flex; gap: var(--space-4); align-items: flex-start;
}
.provider-detail-row svg {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  stroke: var(--gold);
}
.provider-detail-row dt {
  font-size: 0.66rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 3px;
}
.provider-detail-row dd { margin: 0; }
.provider-detail-row dd a { color: var(--white); transition: color var(--t-fast); }
.provider-detail-row dd a:hover { color: var(--gold); }
.provider-detail-row dd span { color: rgba(255,255,255,0.92); }
.provider-detail-tags {
  display: flex; flex-wrap: wrap; gap: var(--space-2);
  margin-bottom: var(--space-8);
}
.provider-detail-note {
  font-size: 0.78rem; color: rgba(184,184,184,0.6);
  line-height: 1.7;
  border-top: 1px solid var(--border-subtle);
  padding-top: var(--space-6);
}
@media (max-width: 480px) {
  .provider-detail-actions .btn { flex-basis: 100%; }
}

/* ══════════════════════════════════════════════════════════════
   PHASE 1 NEW SECTION STYLES — brand refresh + official logos
   ══════════════════════════════════════════════════════════════ */

/* ── PROCESS MAIN HEADING ────────────────────────────────────── */
.process-main-heading {
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: var(--space-10);
  letter-spacing: -0.01em;
}

/* ── HERO NEW ELEMENTS ───────────────────────────────────────── */
.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: var(--space-5);
}

.hero-microcopy {
  font-size: 0.8rem;
  color: rgba(184,184,184,0.55);
  margin-bottom: var(--space-3);
}

.hero-safety {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.73rem;
  color: var(--white);
  font-weight: 500;
}
.hero-safety svg { flex-shrink: 0; stroke: var(--white); }

/* ── INTAKE SAFETY NOTE ──────────────────────────────────────── */
.intake-safety-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  color: var(--muted);
  margin-bottom: var(--space-6);
}
.intake-safety-note svg { flex-shrink: 0; stroke: var(--muted); }

/* ── SECTION--LIGHT ──────────────────────────────────────────── */
.section--light {
  background: var(--cream-bg);
  color: var(--cream-dark);
}
.section--light .section-label,
.section--light .section-label-center { color: var(--pink); }
.section--light .section-heading { color: var(--cream-dark); }
.section--light .section-heading em { color: var(--pink); }
.section--light .section-subtext { color: var(--cream-muted); }

/* ── REASSURANCE SECTION ─────────────────────────────────────── */
.reassurance-section {
  padding-block: clamp(3.5rem, 9vw, 6rem);
  background: var(--soft-black);
}
.reassurance-heading {
  font-family: var(--font-body);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-5);
  max-width: 540px;
}
.reassurance-body {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--gray-dark);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: var(--space-10);
}

/* ── ACCIDENT TYPES (now part of combined section) ─────────────────────────────── */
.accident-types-section,
.accident-select-section .accident-types-grid {
  /* same bg when accident-types used standalone */
}
.accident-types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-8);
}
@media (min-width: 600px) {
  .accident-types-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 960px) {
  .accident-types-grid { grid-template-columns: repeat(6, 1fr); }
}
.accident-type-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: var(--space-6) var(--space-4);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  text-align: center;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.accident-type-card:hover,
.accident-type-card:focus-visible {
  background: rgba(226,31,86,0.06);
  border-color: rgba(226,31,86,0.3);
  transform: translateY(-2px);
}
.atype-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.atype-icon svg { stroke: var(--gray-dark); }
.accident-type-card:hover .atype-icon svg,
.accident-type-card:focus-visible .atype-icon svg { stroke: var(--pink); }
.atype-label {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--gray-dark);
  transition: color 0.2s;
}
.accident-type-card:hover .atype-label,
.accident-type-card:focus-visible .atype-label { color: var(--white); }

/* ── WHY ASK PATRICIA ────────────────────────────────────────── */
.why-patricia-section {
  padding-block: clamp(3.5rem, 9vw, 6rem);
}
.why-patricia-heading {
  font-family: var(--font-body);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 700;
  margin-bottom: var(--space-5);
  max-width: 560px;
}
.section--light .why-patricia-heading { color: var(--cream-dark); }
.why-patricia-body {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: var(--space-10);
}
.section--light .why-patricia-body { color: var(--cream-muted); }
.why-patricia-list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 600px) {
  .why-patricia-list { grid-template-columns: 1fr 1fr; }
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}
.why-item-icon {
  width: 28px; height: 28px;
  background: rgba(226,31,86,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.why-item-icon svg { stroke: var(--pink); }
.why-item-text {
  font-size: 0.92rem;
  font-weight: 600;
  padding-top: 4px;
}
.section--light .why-item-text { color: var(--cream-dark); }

/* ── ABOUT SECTION ───────────────────────────────────────────── */
.about-section {
  padding-block: clamp(3.5rem, 9vw, 6rem);
  background: var(--charcoal);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}
@media (min-width: 760px) {
  .about-inner {
    grid-template-columns: 1fr 1fr;
    gap: clamp(var(--space-10), 5vw, var(--space-16));
  }
}
.about-photo-col {
  display: flex;
  justify-content: center;
}
.about-photo-frame {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-md);
  position: relative;
}
.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 38%;
  display: block;
}
.founder-identity {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
  padding: var(--space-4) var(--space-5);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  width: fit-content;
  max-width: 100%;
}
.founder-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
  flex-shrink: 0;
}
.founder-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 2px;
}
.founder-role {
  font-size: 0.72rem;
  color: var(--gray-dark);
  margin: 0;
  letter-spacing: 0.02em;
}
.about-heading {
  font-family: var(--font-body);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-5);
  margin-top: var(--space-3);
}
.about-body {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--gray-dark);
  line-height: 1.75;
  margin-bottom: var(--space-8);
  max-width: 560px;
}

/* ── CONTACT OPTIONS ─────────────────────────────────────────── */
.contact-options-section {
  padding-block: clamp(3.5rem, 9vw, 6rem);
}
.contact-options-heading {
  font-family: var(--font-body);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--space-4);
}
.section--light .contact-options-heading { color: var(--cream-dark); }
.contact-options-body {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  text-align: center;
  max-width: 480px;
  margin: 0 auto var(--space-10);
  line-height: 1.7;
}
.section--light .contact-options-body { color: var(--cream-muted); }
.contact-actions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  max-width: 680px;
  margin: 0 auto;
}
@media (min-width: 560px) {
  .contact-actions-grid { grid-template-columns: repeat(2, 1fr); max-width: 480px; }
}
.contact-action-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-8) var(--space-5);
  border: 1px solid rgba(226,31,86,0.2);
  border-radius: var(--radius-md);
  background: rgba(226,31,86,0.04);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.contact-action-card:hover,
.contact-action-card:focus-visible {
  background: rgba(226,31,86,0.1);
  border-color: rgba(226,31,86,0.4);
  transform: translateY(-2px);
}
.cac-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(226,31,86,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cac-icon svg { stroke: var(--pink); }
.cac-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
}
.cac-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--cream-dark);
  text-align: center;
}

/* ── PROVIDERS SECTION ───────────────────────────────────────── */
.providers-section {
  padding-block: clamp(3.5rem, 9vw, 6rem);
  background: var(--soft-black);
}
.providers-note {
  font-size: 0.76rem;
  color: rgba(184,184,184,0.45);
  text-align: center;
  max-width: 600px;
  margin: var(--space-8) auto 0;
  line-height: 1.7;
}

/* ── SUCCESS STATE ───────────────────────────────────────────── */
.success-check-icon { stroke: var(--pink); }
.success-home-link {
  display: inline-block;
  margin-top: var(--space-6);
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.success-home-link:hover { color: var(--white); }

/* ── FORM ERROR STATE ────────────────────────────────────────── */
.form-error-state {
  padding: var(--space-8);
  border: 1px solid rgba(204,34,34,0.3);
  border-radius: var(--radius-md);
  background: rgba(204,34,34,0.05);
  text-align: center;
}
.form-error-msg {
  font-size: 0.92rem;
  color: var(--white);
  margin-bottom: var(--space-6);
  line-height: 1.65;
}
.form-error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}

/* ── FINAL CTA ───────────────────────────────────────────────── */
.final-cta-section {
  padding-block: clamp(3.5rem, 9vw, 6rem);
  background: var(--black);
}
.final-cta-panel {
  position: relative;
  background: var(--charcoal);
  border: 1px solid rgba(226,31,86,0.2);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 4rem);
  overflow: hidden;
  text-align: center;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 0%, rgba(226,31,86,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta-heading {
  position: relative;
  font-family: var(--font-body);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}
.final-cta-sub {
  position: relative;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--gray-dark);
  max-width: 480px;
  margin: 0 auto var(--space-8);
  line-height: 1.7;
}
.final-cta-buttons {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}

/* ── LEGAL SECTION ───────────────────────────────────────────── */
.legal-section {
  padding-block: clamp(2.5rem, 6vw, 4rem);
  background: var(--soft-black);
}
.legal-panel { max-width: 720px; margin: 0 auto; }
.legal-heading {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--space-5);
}
.legal-body p {
  font-size: 0.78rem;
  color: rgba(184,184,184,0.5);
  line-height: 1.75;
  margin-bottom: var(--space-4);
}
.legal-inline-link {
  color: rgba(184,184,184,0.5);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.legal-inline-link:hover { color: var(--white); }
.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  gap: var(--space-4);
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.legal-links a {
  font-size: 0.75rem;
  color: rgba(184,184,184,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.legal-links a:hover { color: var(--white); }

/* ── INTAKE DATE FIELD ───────────────────────────────────────── */
.intake-date-group { margin-top: var(--space-6); }

/* \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500
   HERO ENTRANCE ANIMATION
\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-eyebrow  { animation: heroIn 0.6s var(--ease-out) 0ms   both; }
  .hero-headline { animation: heroIn 0.65s var(--ease-out) 80ms  both; }
  .hero-copy     { animation: heroIn 0.6s var(--ease-out) 160ms both; }
  .hero-ctas     { animation: heroIn 0.6s var(--ease-out) 220ms both; }
  .hero-microcopy,
  .hero-safety   { animation: heroIn 0.55s var(--ease-out) 290ms both; }
  .hero-portrait-wrap { animation: heroIn 0.8s var(--ease-out) 100ms both; }
}

/* \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500
   PROCESS ROUTE ACCENT
\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 */
@keyframes drawLine {
  from { stroke-dashoffset: 120; }
  to   { stroke-dashoffset: 0; }
}

.step-connector svg {
  stroke: var(--pink);
  opacity: 0.55;
}

/* Thin animated route line on desktop \u2014 drawn when section enters view */
.process-section.visible-section .step-connector svg polyline {
  stroke-dasharray: 120;
  stroke-dashoffset: 0;
  animation: drawLine 0.5s var(--ease-out) both;
}

/* Step numbers \u2014 subtle ring on hover */
.process-step:hover .step-num {
  border-color: var(--pink);
  color: var(--white);
  background: rgba(226,31,86,0.12);
  transition: border-color var(--t-base), color var(--t-fast), background var(--t-fast);
}

/* \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500
   ENHANCED INTERACTION STATES
\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 */

/* Primary CTAs \u2014 lift on hover */
.btn-pink {
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.btn-pink:hover,
.btn-pink:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(226,31,86,0.28);
}
.btn-pink:active { transform: translateY(0); box-shadow: none; }

/* Outline / ghost CTAs */
.btn-outline,
.btn-ghost {
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.btn-outline:hover,
.btn-ghost:hover { transform: translateY(-1px); }
.btn-outline:active,
.btn-ghost:active { transform: translateY(0); }

/* Accident-type cards \u2014 selected state persistence */
.accident-type-card.active-selection {
  background: rgba(226,31,86,0.08);
  border-color: rgba(226,31,86,0.4);
}
.accident-type-card.active-selection .atype-icon svg { stroke: var(--pink); }
.accident-type-card.active-selection .atype-label { color: var(--white); }

/* ────────────────────────────────────────────────────────────────
   WHY PATRICIA — QUESTION BLOCK
──────────────────────────────────────────────────────────────── */
.why-questions {
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.52);
  padding-left: var(--space-5);
  border-left: 2px solid var(--pink);
  line-height: 2;
  margin-block: var(--space-5);
}

/* ────────────────────────────────────────────────────────────────
   RESOURCES SECTION
──────────────────────────────────────────────────────────────── */
.resources-section {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--soft-black);
}
.resources-section .section-label-center,
.resources-section .section-heading,
.resources-section .section-subtext {
  text-align: center;
  margin-inline: auto;
}
.resources-section .section-subtext {
  max-width: 52ch;
  margin-top: var(--space-4);
  margin-bottom: var(--space-0);
}
.resources-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-top: clamp(2rem, 4vw, 3rem);
}
@media (min-width: 540px) {
  .resources-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .resources-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
}
.resource-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3);
  transition: border-color var(--t-base), background var(--t-base), transform var(--t-fast);
}
.resource-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(226,31,86,0.35);
  transform: translateY(-2px);
}
.resource-card-title {
  font-family: var(--font-heading);
  font-size: clamp(0.88rem, 1.5vw, 1rem);
  font-weight: 600;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.2;
  margin: 0;
}
.resource-card-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* end Phase 2 motion additions */

/* ── SMS Consent ─────────────────────────────────────────────────────── */
.sms-consent-group {
  margin-top: 0.75rem;
  margin-bottom: 0.25rem;
}
.sms-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--muted, #6b7280);
}
.sms-consent-label input[type="checkbox"] {
  margin-top: 0.15rem;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  accent-color: var(--pink, #E21F56);
  cursor: pointer;
}
.consent-link {
  color: var(--pink, #E21F56);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.consent-link:hover { color: var(--pink-dark, #B91845); }

/* ══════════════════════════════════════════════════════════════
   LEGAL PAGE DESIGN SYSTEM — shared by /terms and /privacy
   ══════════════════════════════════════════════════════════════ */
.legal-page {
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
  background: var(--soft-black);
  min-height: 100vh;
}
.legal-hero {
  max-width: 900px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  margin-bottom: clamp(2rem, 5vw, 3rem);
}
.legal-back {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-size: 0.8rem; font-weight: 700;
  color: var(--muted); margin-bottom: var(--space-8);
  transition: color var(--t-fast);
}
.legal-back:hover, .legal-back:focus-visible { color: var(--gold); }
.legal-eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: var(--space-3); display: block;
}
.legal-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  font-weight: 700; color: var(--white);
  line-height: 1.05; letter-spacing: -0.01em;
  margin-bottom: var(--space-4);
}
.legal-subhead {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--muted);
  max-width: 560px;
  line-height: 1.65;
}
.legal-content-wrap {
  width: min(100% - 40px, 900px);
  margin-inline: auto;
}
.legal-document {
  background: var(--charcoal);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 5vw, 4rem);
}
.legal-document h2 {
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 800;
  color: var(--white);
  margin-top: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: var(--space-4);
}
.legal-document h2:first-of-type { margin-top: 0; }
.legal-document p {
  font-size: clamp(0.94rem, 1.2vw, 1.05rem);
  color: rgba(214,214,214,0.82);
  line-height: 1.75;
  margin-bottom: var(--space-4);
}
.legal-document ul {
  list-style: disc;
  padding-left: 1.4rem;
  margin-bottom: var(--space-4);
  display: flex; flex-direction: column; gap: var(--space-2);
}
.legal-document li {
  font-size: clamp(0.94rem, 1.2vw, 1.05rem);
  color: rgba(214,214,214,0.82);
  line-height: 1.75;
}
.legal-document strong { color: var(--white); }
.legal-document a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t-fast);
}
.legal-document a:hover, .legal-document a:focus-visible { color: var(--gold-light); }
@media (max-width: 480px) {
  .legal-document { padding: clamp(1.25rem, 6vw, 1.75rem); }
  .legal-document p, .legal-document li { font-size: 0.94rem; }
}
