@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Colors */
  --color-bg:           #f3eeff;
  --color-surface:      #ffffff;
  --color-surface-2:    #faf8ff;
  --color-text:         #1c1917;
  --color-text-muted:   #6b6460;
  --color-text-light:   #9a948f;
  --color-accent:       #7834D4;
  --color-accent-dark:  #5a22a8;
  --color-accent-light: #F0EAFA;
  --color-accent-mid:   #e8d8fb;
  --color-border:       rgba(120, 52, 212, 0.12);
  --color-border-light: rgba(120, 52, 212, 0.07);

  /* Fonts */
  --font-display: 'DM Serif Display', serif;
  --font-sans:    'DM Sans', system-ui, sans-serif;

  /* Spacing scale */
  --space-2xs: 0.25rem;
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 7rem;
  --space-3xl: 10rem;

  /* Layout */
  --max-w:        1280px;
  --max-w-narrow: 760px;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  /* Motion (MOTION_INTENSITY 4 — Fluid CSS) */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.4, 0, 1, 1);
  --transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows (tinted to bg hue) */
  --shadow-sm:  0 1px 4px rgba(120, 52, 212, 0.06);
  --shadow-md:  0 4px 20px rgba(120, 52, 212, 0.08);
  --shadow-lg:  0 12px 40px rgba(120, 52, 212, 0.1);
}

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

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

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style: none;
}

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

input, textarea, select {
  font-family: var(--font-sans);
  font-size: 1rem;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--color-text);
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); }
h4 { font-size: 1.2rem; }

p {
  max-width: 65ch;
  color: var(--color-text);
}

.text-muted {
  color: var(--color-text-muted);
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  display: block;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: var(--max-w-narrow);
}

/* ============================================================
   LOAD-IN ANIMATIONS (MOTION_INTENSITY 4)
   ============================================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes orb-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-18px) scale(1.04); }
}

@keyframes orb-ring-outer {
  0%, 100% { transform: scale(1);    opacity: 0.6; }
  50%       { transform: scale(1.06); opacity: 0.25; }
}

@keyframes orb-ring-inner {
  0%, 100% { transform: scale(1);    opacity: 0.5; }
  50%       { transform: scale(0.94); opacity: 0.9; }
}

@keyframes orb-shockwave {
  0%   { transform: scale(1);   opacity: 0.65; }
  100% { transform: scale(2.8); opacity: 0; }
}

.orb-ripple {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid var(--color-accent);
  pointer-events: none;
  opacity: 0;
  animation: orb-shockwave 1.1s cubic-bezier(0.2, 0.6, 0.4, 1) forwards;
}

@media (prefers-reduced-motion: no-preference) {
  .hero__orb {
    animation: orb-float 7s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  }
  .hero__orb::before {
    animation: orb-ring-outer 7s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  }
  .hero__orb::after {
    animation: orb-ring-inner 7s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite 0.6s;
  }
}


.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

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

/* Stagger delays */
.animate-in:nth-child(2) { transition-delay: 0.08s; }
.animate-in:nth-child(3) { transition-delay: 0.16s; }
.animate-in:nth-child(4) { transition-delay: 0.24s; }
.animate-in:nth-child(5) { transition-delay: 0.32s; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
  transition: transform var(--transition),
              background-color var(--transition),
              box-shadow var(--transition),
              color var(--transition),
              border-color var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

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

.btn:active {
  transform: scale(0.98);
}

/* Primary */
.btn-primary {
  background-color: var(--color-accent);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(120, 52, 212, 0.25);
}

.btn-primary:hover {
  background-color: var(--color-accent-dark);
  box-shadow: 0 4px 16px rgba(120, 52, 212, 0.3);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: scale(0.98) translateY(0);
}

/* Secondary (ghost) */
.btn-secondary {
  background-color: transparent;
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
}

.btn-secondary:hover {
  background-color: var(--color-accent-light);
  transform: translateY(-1px);
}

/* Ghost/text */
.btn-ghost {
  background: transparent;
  color: var(--color-text-muted);
  padding-left: 0;
  padding-right: 0;
}

.btn-ghost:hover {
  color: var(--color-accent);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-bg);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition),
              box-shadow var(--transition),
              background-color var(--transition);
}

.site-header.scrolled {
  background-color: rgba(243, 238, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--color-border-light);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  gap: var(--space-lg);
}

.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav__logo img {
  height: 40px;
  width: auto;
  transition: opacity var(--transition);
}

.nav__logo:hover img {
  opacity: 0.85;
}

.nav__logo-text {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex: 1;
  justify-content: center;
}

.nav__link {
  font-size: 0.9375rem;
  font-weight: 450;
  color: var(--color-text-muted);
  letter-spacing: 0.01em;
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--color-text);
}

.nav__link:hover::after,
.nav__link.active::after {
  transform: scaleX(1);
}

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

.nav__phone {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.nav__phone:hover {
  color: var(--color-accent);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.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;
  transform: scaleX(0);
}
.nav__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile nav drawer */
.nav__mobile {
  display: none;
  flex-direction: column;
  padding: var(--space-md) 0 var(--space-lg);
  gap: var(--space-sm);
  border-top: 1px solid var(--color-border-light);
}

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

.nav__mobile .nav__link {
  font-size: 1.1rem;
  padding: var(--space-xs) 0;
}

.nav__mobile .btn {
  align-self: flex-start;
  margin-top: var(--space-xs);
}

/* ============================================================
   HERO (DESIGN_VARIANCE 6 — asymmetric split, left-aligned)
   ============================================================ */
.hero {
  padding: clamp(5rem, 10vw, 9rem) 0 clamp(4rem, 8vw, 7rem);
  overflow: hidden;
  position: relative;
}

.hero__inner {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: var(--space-2xl);
  align-items: center;
}

.hero__content {
  animation: fadeUp 0.7s var(--ease-out) both;
}

.hero__content h1 {
  margin-bottom: var(--space-md);
}

.hero__content h1 em {
  font-style: italic;
  color: var(--color-accent);
}

.hero__lead {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  max-width: 52ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.9s var(--ease-out) 0.2s both;
}

/* Abstract decorative shape — no photos */
.hero__orb {
  width: clamp(280px, 35vw, 480px);
  height: clamp(280px, 35vw, 480px);
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, var(--color-accent-light) 0%, var(--color-accent-mid) 45%, transparent 70%);
  position: relative;
  flex-shrink: 0;
}

.hero__orb::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  opacity: 0.6;
}

.hero__orb::after {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid var(--color-border-light);
}


.hero__accent-line {
  position: absolute;
  bottom: -var(--space-lg);
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
  margin-top: var(--space-xl);
  display: block;
}

/* ============================================================
   SECTION BASE
   ============================================================ */
.section {
  padding: var(--space-2xl) 0;
}

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

.section--accent-light {
  background-color: var(--color-accent-light);
}

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

.section__header--centered {
  text-align: center;
}

.section__header--centered p {
  margin: var(--space-sm) auto 0;
}

.section__header p {
  margin-top: var(--space-sm);
  color: var(--color-text-muted);
  font-size: 1.0625rem;
}

/* ============================================================
   SERVICES INTRO — 2-col zig-zag (DESIGN_VARIANCE 6)
   ============================================================ */
.services-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

.service-item:nth-child(even) {
  direction: rtl;
}

.service-item:nth-child(even) > * {
  direction: ltr;
}

.service-item__number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--color-accent-mid);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-sm);
  display: block;
}

.service-item__content {
  padding-top: var(--space-xs);
}

.service-item__content h3 {
  margin-bottom: var(--space-sm);
}

.service-item__content p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.service-item__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-accent);
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), opacity var(--transition);
}

.service-item__link:hover {
  gap: 10px;
}

.service-item__panel {
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  min-height: 200px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-item__panel::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--color-accent-light);
  opacity: 0.5;
}

.service-item__duration {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: var(--color-accent-light);
  padding: 4px 12px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.service-item__panel h4 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

/* ============================================================
   PROCESS STEPS — offset stagger
   ============================================================ */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-lg);
  align-items: start;
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-border-light);
  position: relative;
}

.process-step:last-child {
  border-bottom: none;
}

.process-step:nth-child(2) {
  padding-left: clamp(0px, 5vw, 80px);
}

.process-step:nth-child(3) {
  padding-left: clamp(0px, 10vw, 160px);
}

.process-step__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--color-accent-mid);
  flex-shrink: 0;
  padding-top: 4px;
}

.process-step__body h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-xs);
}

.process-step__body p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

/* ============================================================
   INSURANCE STRIP
   ============================================================ */
.insurance-strip {
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.insurance-strip__inner {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.insurance-strip__label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
  flex-shrink: 0;
}

.insurance-list {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.insurance-list__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  background: var(--color-surface);
}

.insurance-list__item img {
  height: 48px;
  max-width: 100px;
  width: auto;
  display: block;
  object-fit: contain;
  mix-blend-mode: multiply;
}

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(2rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--color-border-light);
  position: relative;
  overflow: hidden;
}

.hero-rain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  display: block;
}

.hero__inner,
.page-hero__inner {
  position: relative;
  z-index: 1;
}

.page-hero__inner {
  max-width: 700px;
}

.page-hero h1 {
  margin-bottom: var(--space-md);
}

.page-hero p {
  font-size: 1.125rem;
  color: var(--color-text-muted);
}

/* ============================================================
   SERVICES PAGE — full articles
   ============================================================ */
.services-list {
  display: flex;
  flex-direction: column;
}

.service-article {
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--color-border-light);
}

.service-article:last-child {
  border-bottom: none;
}

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

.service-article:nth-child(even) .service-article__inner {
  direction: rtl;
}

.service-article:nth-child(even) .service-article__inner > * {
  direction: ltr;
}

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

.tag {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--color-accent-light);
  color: var(--color-accent);
  border: 1px solid var(--color-border);
}

.service-article__body h2 {
  margin-bottom: var(--space-md);
}

.service-article__body p + p {
  margin-top: var(--space-sm);
}

.service-article__body p {
  color: var(--color-text-muted);
}

.service-article__aside {
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.section--surface .service-article__aside {
  background: var(--color-bg);
}

.service-article__aside h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  letter-spacing: 0;
}

.aside-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.aside-list li {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  padding-left: var(--space-md);
  position: relative;
}

.aside-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.5;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.about-bio {
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.about-bio__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-xs);
}

.about-bio__credentials {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.about-bio__detail {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.about-bio__item {
  display: flex;
  gap: var(--space-sm);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border-light);
  padding-top: var(--space-sm);
}

.about-bio__item strong {
  color: var(--color-text);
  font-weight: 500;
  min-width: 100px;
  flex-shrink: 0;
}

.about-content p + p {
  margin-top: var(--space-md);
}

.about-content p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

.about-content h2 {
  margin-bottom: var(--space-lg);
}

/* ============================================================
   NEW PATIENTS PAGE
   ============================================================ */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: steps;
}

.step-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-border-light);
  position: relative;
  counter-increment: steps;
}

.step-item:last-child {
  border-bottom: none;
}

.step-item__num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: -0.03em;
  color: var(--color-accent);
  opacity: 0.4;
  line-height: 1;
  padding-top: 4px;
}

.step-item__body h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
}

.step-item__body p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

.insurance-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.insurance-cards .insurance-card {
  grid-column: span 2;
}

.insurance-cards .insurance-card:nth-child(4) {
  grid-column: 2 / 4;
}

.insurance-cards .insurance-card:nth-child(5) {
  grid-column: 4 / 6;
}

.insurance-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.insurance-card__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-border-light);
}

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

.faq-item__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: var(--space-md);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  transition: color var(--transition);
}

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

.faq-item__trigger:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.faq-item__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-accent);
  transition: transform var(--transition);
  position: relative;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item__icon::before {
  width: 12px;
  height: 1.5px;
}

.faq-item__icon::after {
  width: 1.5px;
  height: 12px;
  transition: transform var(--transition), opacity var(--transition);
}

.faq-item[open] .faq-item__icon::after,
.faq-item.is-open .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.faq-item__body p {
  padding-bottom: var(--space-lg);
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

.faq-item.is-open .faq-item__body {
  max-height: 500px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-info__block {
  margin-bottom: var(--space-xl);
}

.contact-info__block h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-detail__item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.contact-detail__label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-light);
  min-width: 60px;
  padding-top: 2px;
  flex-shrink: 0;
}

.contact-detail__value {
  font-size: 0.9375rem;
  color: var(--color-text);
}

.contact-detail__value a {
  color: var(--color-accent);
  transition: opacity var(--transition);
}

.contact-detail__value a:hover {
  opacity: 0.75;
}

.booking-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.booking-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  gap: var(--space-md);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.booking-option:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-border);
}

.booking-option__info h4 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 2px;
}

.booking-option__info p {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  max-width: none;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form-wrap {
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.contact-form-wrap h3 {
  margin-bottom: var(--space-lg);
  font-size: 1.4rem;
}

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

.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.01em;
}

.form__required {
  color: var(--color-accent);
  margin-left: 2px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 0.9375rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(120, 52, 212, 0.1);
}

input.error,
select.error,
textarea.error {
  border-color: #c0392b;
}

.form__error {
  font-size: 0.8125rem;
  color: #c0392b;
  display: none;
}

.form__error.visible {
  display: block;
}

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

.form__radio-group {
  display: flex;
  gap: var(--space-md);
}

.form__radio {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.form__radio input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent);
  cursor: pointer;
}

.form__hint {
  font-size: 0.8125rem;
  color: var(--color-text-light);
}

.form__submit-wrap {
  margin-top: var(--space-xs);
}

.form__submit-wrap .btn {
  width: 100%;
}

.form__trust {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  text-align: center;
  margin-top: var(--space-xs);
}

.form__success {
  display: none;
  text-align: center;
  padding: var(--space-xl);
}

.form__success.visible {
  display: block;
}

.form__success h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: var(--space-sm);
}

.form__success p {
  color: var(--color-text-muted);
  margin: 0 auto;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: var(--space-2xl) 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border-light);
}

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

.cta-section__text h2 {
  margin-bottom: var(--space-sm);
}

.cta-section__text p {
  color: var(--color-text-muted);
  font-size: 1.0625rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.65);
  padding: var(--space-2xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer__logo {
  display: inline-flex;
}

.footer__logo img {
  height: 200px;
  width: auto;
}

.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 28ch;
}

.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: var(--space-md);
}

.footer__col a,
.footer__col span,
.footer__col p {
  display: block;
  font-size: 0.875rem;
  line-height: 1;
  margin-bottom: var(--space-sm);
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}

.footer__col a:hover {
  color: rgba(255, 255, 255, 0.95);
}

.footer__bottom {
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer__copyright {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer__disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  max-width: 50ch;
  text-align: right;
}

/* ============================================================
   INLINE NOTICE / CALLOUT
   ============================================================ */
.notice {
  background: var(--color-accent-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.notice strong {
  color: var(--color-text);
}

/* ============================================================
   RESPONSIVE UTILITY — Two-column split (replaces inline grids)
   ============================================================ */
.two-col-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.two-col-split--asymmetric {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-2xl);
  align-items: start;
}

/* ============================================================
   RESPONSIVE — Mobile-first overrides
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .hero__visual {
    display: none;
  }

  .service-item,
  .service-item:nth-child(even),
  .service-article__inner,
  .service-article:nth-child(even) .service-article__inner,
  .about-split,
  .contact-layout {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .service-item:nth-child(even) > * {
    direction: ltr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .cta-section__inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 768px) {
  :root {
    --space-2xl: 4rem;
    --space-3xl: 6rem;
  }

  .nav__links {
    display: none;
  }

  .nav__phone {
    display: none;
  }

  .nav__actions .btn {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

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

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

  .services-grid .service-item {
    grid-template-columns: 1fr;
  }

  .process-step:nth-child(2),
  .process-step:nth-child(3) {
    padding-left: 0;
  }

  .insurance-strip__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }

  .insurance-cards {
    grid-template-columns: 1fr;
  }

  .insurance-cards .insurance-card,
  .insurance-cards .insurance-card:nth-child(4),
  .insurance-cards .insurance-card:nth-child(5) {
    grid-column: 1;
  }

  .form__row {
    grid-template-columns: 1fr;
  }

  .form__radio-group {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

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

  .footer__disclaimer {
    text-align: left;
  }

  .booking-option {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Collapse inline-grid splits to single column */
  .two-col-split,
  .two-col-split--asymmetric {
    grid-template-columns: 1fr;
  }

  /* Reduce container padding at phone range, not just 480px */
  .container {
    padding: 0 var(--space-md);
  }

  /* 44px minimum touch target on form inputs */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  select {
    min-height: 44px;
  }

  /* Cap footer logo height on mobile */
  .footer__logo img {
    height: auto;
    max-height: 120px;
  }

  /* Nav drawer CTA: full-width for easy tapping */
  .nav__mobile .btn {
    width: 100%;
    justify-content: center;
    align-self: stretch;
  }

  /* Footer legal links: add vertical tap area */
  .footer__legal-links a {
    padding: var(--space-2xs) 0;
    font-size: 0.8125rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h4 { font-size: 1rem; }

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

  /* Reduce info card padding on very small screens */
  .info-card {
    padding: var(--space-md) !important;
  }
}

/* ============================================================
   FOOTER LEGAL LINKS ROW
   ============================================================ */

.footer__legal {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-md) 0;
}

.footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs) var(--space-md);
  justify-content: center;
}

.footer__legal-links a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--transition);
}

.footer__legal-links a:hover,
.footer__legal-links a:focus-visible {
  color: rgba(255, 255, 255, 0.75);
  outline: none;
}

@media (max-width: 480px) {
  .footer__legal-links {
    gap: var(--space-xs) var(--space-sm);
    justify-content: flex-start;
  }
}

/* ============================================================
   POLICY PAGES
   ============================================================ */

.policy-page {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md);
}

.policy-page__header {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
}

.policy-page__eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.policy-page__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--color-text);
  line-height: 1.15;
  margin-bottom: var(--space-xs);
}

.policy-page__date {
  color: var(--color-text-light);
  font-size: 0.875rem;
  margin-top: var(--space-sm);
}

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

.policy-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.policy-section h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
  margin-top: var(--space-md);
}

.policy-section p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
  max-width: 65ch;
}

.policy-section ul,
.policy-section ol {
  padding-left: var(--space-md);
  margin-bottom: var(--space-sm);
}

.policy-section li {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-2xs);
}

.policy-section a {
  color: var(--color-accent);
  text-decoration: none;
  border-bottom: 1px solid var(--color-accent-mid);
  transition: border-color var(--transition), color var(--transition);
}

.policy-section a:hover {
  color: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
}

.policy-notice {
  background: var(--color-accent-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-xl);
}

.policy-notice p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
  max-width: none;
}
