/* ============================================================
   Regenerative Performance — Design System
   Version: 1.0.0

   Brand kit source: Projects/Business/Brand Kit/brand-kit.html
   Plan source: ~/.claude/plans/parallel-napping-finch.md
   ============================================================ */

/* ---- CSS Custom Properties ---- */
:root {
  /* Brand Colors
     RULE: Never use #000000. Darkest value is --color-dark: #1A1A2E */
  --rp-blue: #27475E;
  --rp-purple: #45234C;
  --rp-orange: #DC962D;
  --rp-gray: #4A4A4A;
  --rp-light: #F7F6F3;
  --rp-white: #FFFFFF;
  --rp-dark: #1A1A2E;

  /* Opacity variants */
  --rp-blue-10: rgba(39, 71, 94, 0.1);
  --rp-orange-10: rgba(220, 150, 45, 0.1);
  --rp-purple-text: #7B4E87;
  --rp-purple-10: rgba(69, 35, 76, 0.1);

  /* White opacity tokens */
  --rp-white-10: rgba(255, 255, 255, 0.1);
  --rp-white-15: rgba(255, 255, 255, 0.15);
  --rp-white-50: rgba(255, 255, 255, 0.5);
  --rp-white-70: rgba(255, 255, 255, 0.7);

  /* Tints */
  --rp-blue-tint-10: #E8ECF0;
  --rp-blue-tint-25: #C9D3DB;
  --rp-blue-tint-50: #93A3AF;
  --rp-blue-tint-75: #5D7587;
  --rp-purple-tint-10: #ECDFED;
  --rp-purple-tint-25: #D0A8D2;
  --rp-orange-tint-10: #FBF0E0;
  --rp-orange-tint-25: #F2D8A9;
  --rp-gray-tint-10: #EDEDEC;
  --rp-gray-tint-25: #C4C4C4;

  /* Semantic */
  --rp-success: #2D8A4E;
  --rp-error: #C53030;
  --rp-warning: #D69E2E;
  --rp-info: rgba(39, 71, 94, 0.8);

  /* Typography */
  --font-display: 'Adam CG Pro', 'Outfit', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;

  /* Font Sizes — Major Third scale (1.25 ratio) */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;           /* 16px — body */
  --text-md: 1.125rem;
  --text-lg: 1.25rem;          /* 20px — scale step 1 */
  --text-xl: 1.5625rem;        /* 25px — scale step 2 */
  --text-2xl: 1.9375rem;       /* 31px — scale step 3 */
  --text-3xl: 2.4375rem;       /* 39px — scale step 4 */
  --text-4xl: 3.0625rem;       /* 49px — scale step 5 */
  --text-5xl: 3.8125rem;       /* 61px — scale step 6 */

  /* Line Heights */
  --leading-tight: 1.2;        /* headings */
  --leading-normal: 1.6;       /* body */
  --leading-relaxed: 1.7;      /* small text */

  /* Spacing — 8pt grid (4·8·12·16·20·24·32·40·48) */
  --space-xs: 0.25rem;         /*  4px */
  --space-sm: 0.5rem;          /*  8px */
  --space-md: 1rem;            /* 16px */
  --space-lg: 1.5rem;          /* 24px */
  --space-xl: 2rem;            /* 32px */
  --space-2xl: 2.5rem;         /* 40px */
  --space-3xl: 3rem;           /* 48px */
  --space-4xl: 5rem;           /* 80px */
  --space-5xl: 6rem;           /* 96px */
  --space-0-75: 0.75rem;       /* 12px */
  --space-1-25: 1.25rem;       /* 20px */

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 800px;
  --container-wide: 1400px;
  --gutter: 2rem;

  /* Borders & Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --ease-default: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-spring-bouncy: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;

  /* Z-index layers */
  --z-base: 1;
  --z-dropdown: 10;
  --z-sticky: 50;
  --z-overlay: 100;
  --z-modal: 200;
}


/* ---- Reset ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--rp-gray);
  background: var(--rp-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--rp-blue);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-default);
}

a:hover {
  color: var(--rp-orange);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}


/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  color: var(--rp-blue);
  line-height: var(--leading-tight);
  font-weight: 700;
}

h1 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  letter-spacing: 0.02em;
}

h2 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  letter-spacing: 0.02em;
}

h3 {
  font-family: var(--font-body);
  font-size: var(--text-2xl);
  font-weight: 600;
}

.subhead-italic {
  font-style: italic;
  font-weight: 400;
  margin-top: var(--space-sm);
  margin-bottom: var(--space-lg);
}

@media (max-width: 768px) {
  h2 {
    margin-bottom: var(--space-md);
  }
  .subhead-italic {
    margin-bottom: var(--space-xl);
  }
}

h4 {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-weight: 600;
}

p {
  margin-bottom: var(--space-md);
  max-width: 72ch;
}

.text-center p,
.cta-banner p,
.section-cta-centered p,
.steps-banner p {
  margin-left: auto;
  margin-right: auto;
}

.text-accent {
  font-family: var(--font-accent);
  font-style: italic;
}

.text-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rp-orange);
}

.text-lead {
  font-size: var(--text-md);
  line-height: var(--leading-relaxed);
  color: var(--rp-gray);
}


/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

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

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

.section-alt {
  background: var(--rp-light);
}

.section-dark {
  background: var(--rp-blue);
  color: var(--rp-white);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--rp-white);
}

.section-dark p,
.section-dark li {
  color: rgba(255, 255, 255, 0.9);
}


/* ---- Grid ---- */
.grid {
  display: grid;
  gap: var(--space-xl);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; }
}


/* ---- Flexbox Utilities ---- */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-xs { gap: var(--space-xs); }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }
.gap-2xl { gap: var(--space-2xl); }


/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  letter-spacing: 0.025em;
  border-radius: var(--radius-md);
  transition: all var(--duration-normal) var(--ease-default);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}

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

.btn-primary {
  background: var(--rp-orange);
  color: var(--rp-white);
  border-color: var(--rp-orange);
  box-shadow:
    0 2px 4px rgba(220, 150, 45, 0.25),
    0 4px 12px rgba(220, 150, 45, 0.15);
}

.btn-primary:hover {
  background: #E8A94A;
  border-color: #E8A94A;
  color: var(--rp-white);
  transform: translateY(-2px);
  box-shadow:
    0 4px 8px rgba(220, 150, 45, 0.35),
    0 8px 28px rgba(220, 150, 45, 0.25),
    0 0 30px rgba(232, 169, 74, 0.35),
    0 0 60px rgba(220, 150, 45, 0.15);
}

.btn-secondary {
  background: var(--rp-blue);
  color: var(--rp-white);
  border-color: var(--rp-blue);
  box-shadow:
    0 2px 4px rgba(39, 71, 94, 0.12),
    0 4px 12px rgba(39, 71, 94, 0.08);
}

.btn-secondary:hover {
  background: #3a5f78;
  border-color: #3a5f78;
  color: var(--rp-white);
  transform: translateY(-2px);
  box-shadow:
    0 4px 8px rgba(39, 71, 94, 0.2),
    0 8px 24px rgba(39, 71, 94, 0.15),
    0 0 20px rgba(39, 71, 94, 0.1);
}

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

.btn-outline:hover {
  background: var(--rp-blue);
  color: var(--rp-white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--rp-orange);
  border-color: transparent;
  padding: 0.5rem 1.5rem;
}

.btn-ghost:hover {
  background: var(--rp-orange-10);
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: var(--text-sm);
  min-height: 44px;
}

.btn-lg {
  padding: 1.125rem 2.5rem;
  font-size: var(--text-md);
}

.btn-icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: var(--radius-full);
}

.btn-icon:hover {
  transform: scale(1.08);
}

/* Phone CTA button (always visible) */
.btn-phone {
  background: var(--rp-blue);
  color: var(--rp-white);
  border-color: var(--rp-blue);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.btn-phone:hover {
  background: #3a5f78;
  border-color: #3a5f78;
  color: var(--rp-white);
  box-shadow:
    0 4px 8px rgba(39, 71, 94, 0.2),
    0 8px 24px rgba(39, 71, 94, 0.15),
    0 0 20px rgba(39, 71, 94, 0.1);
}


/* ---- Cards ---- */
.card {
  background: var(--rp-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-normal) var(--ease-default),
              box-shadow var(--duration-normal) var(--ease-default);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-flat {
  box-shadow: none;
  border: 1px solid var(--rp-gray-tint-10);
}

.card-flat:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--rp-blue-tint-25);
}


/* ---- Key Facts Box (GEO snippet target) ---- */
.key-facts {
  background: var(--rp-light);
  border-left: 4px solid var(--rp-orange);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-xl) var(--space-2xl);
  margin: var(--space-2xl) 0;
}

.key-facts h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--rp-blue);
  margin-bottom: var(--space-lg);
}

.key-facts ul {
  display: grid;
  gap: var(--space-md);
}

.key-facts li {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  line-height: 1.6;
}

.key-facts li strong {
  color: var(--rp-blue);
  min-width: 100px;
  flex-shrink: 0;
}


/* ---- Trust Bar ---- */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  padding: var(--space-lg) 0;
  flex-wrap: wrap;
}

.trust-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  text-align: center;
}

.trust-bar-number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--rp-orange);
  line-height: 1;
}

.trust-bar-label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.section-alt .trust-bar-label {
  color: var(--rp-gray);
}


/* ---- Social Proof Bar ---- */
.social-proof {
  background: var(--rp-light);
  padding: var(--space-3xl) 0;
}

.social-proof-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-3xl);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.social-proof-stat {
  text-align: center;
}

.social-proof-stat .number {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--rp-blue);
  line-height: 1;
}

.social-proof-stat .label {
  font-size: var(--text-sm);
  color: var(--rp-gray);
  margin-top: var(--space-xs);
}


/* ---- Credential Badges ---- */
.badge-section {
  text-align: center;
}

.badge-group-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rp-gray);
  margin-bottom: var(--space-sm);
  margin-top: var(--space-xl);
}

.badge-section .badge-group-label:first-child {
  margin-top: 0;
}

.badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  padding: var(--space-sm) 0;
}

.badge-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  background: transparent;
  cursor: default;
  transition: background var(--duration-normal) var(--ease-default);
}

.badge-item:hover {
  background: rgba(0, 0, 0, 0.04);
}

.badge-row img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: grayscale(20%);
  opacity: 0.85;
  transition: all var(--duration-normal) var(--ease-default);
}

.badge-row img:hover {
  filter: grayscale(0);
  opacity: 1;
}


/* ---- Testimonial Quotes ---- */
.testimonial {
  position: relative;
  padding: var(--space-xl);
  background: var(--rp-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--duration-normal) var(--ease-spring),
              box-shadow var(--duration-normal) var(--ease-spring);
}

.testimonial:hover {
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-md) !important;
}

.testimonial::before {
  content: '\201C';
  font-family: var(--font-accent);
  font-size: 4rem;
  color: var(--rp-orange-tint-25);
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  line-height: 1;
}

.testimonial-text {
  flex: 1;
  font-size: var(--text-md);
  line-height: 1.7;
  color: var(--rp-gray);
  padding-left: var(--space-md);
  font-style: italic;
}

.testimonial-author {
  margin-top: var(--space-md);
  padding-left: var(--space-md);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--rp-blue);
}

.testimonial-source {
  font-weight: 400;
  color: var(--rp-orange);
  transition: text-shadow var(--duration-normal) var(--ease-default);
}

.testimonial:hover .testimonial-source {
  text-shadow: 0 0 4px rgba(220, 150, 45, 0.3), 0 0 8px rgba(220, 150, 45, 0.15);
}


/* ---- FAQ Accordion ---- */
.faq-section {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--rp-gray-tint-10);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) 0;
  font-family: var(--font-body);
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--rp-blue);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--duration-fast) var(--ease-default);
}

.faq-question:hover {
  color: var(--rp-orange);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform var(--duration-normal) var(--ease-default);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-normal) var(--ease-default),
              padding var(--duration-normal) var(--ease-default);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: var(--space-lg);
}

.faq-answer p {
  color: var(--rp-gray);
  line-height: 1.7;
}


/* ---- Process Steps ---- */
.process-steps {
  display: grid;
  gap: var(--space-xl);
  counter-reset: step;
}

.process-step {
  display: flex;
  gap: var(--space-xl);
  align-items: flex-start;
  counter-increment: step;
}

.process-step::before {
  content: counter(step);
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--rp-orange);
  line-height: 1;
  min-width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rp-orange-10);
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

.process-step h4 {
  margin-bottom: var(--space-sm);
}

.process-step p {
  color: var(--rp-gray);
}


/* ---- Differentiator Section ---- */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.diff-card {
  text-align: center;
  padding: var(--space-2xl) var(--space-xl);
}

.diff-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rp-orange-10);
  border-radius: var(--radius-full);
  color: var(--rp-orange);
}

.diff-card h3 {
  margin-bottom: var(--space-md);
  font-size: var(--text-lg);
}

.diff-card p {
  margin: 0 auto;
  font-size: var(--text-sm);
  color: var(--rp-gray);
}

@media (max-width: 768px) {
  .diff-grid { grid-template-columns: 1fr; }
}


/* ---- CTA Blocks ---- */
.cta-block {
  text-align: center;
  padding: var(--space-4xl) var(--space-xl);
}

.cta-block h2 {
  margin-bottom: var(--space-md);
}

.cta-block p {
  margin: 0 auto var(--space-2xl);
  max-width: 600px;
  font-size: var(--text-md);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}


/* ---- Divider ---- */
.divider {
  width: 60px;
  height: 3px;
  background: var(--rp-orange);
  margin-bottom: var(--space-xl);
}

.divider-center {
  margin-left: auto;
  margin-right: auto;
}


/* ---- Hero ---- */
.hero {
  position: relative;
  overflow: hidden;
  padding: var(--space-5xl) 0 var(--space-4xl);
  background: linear-gradient(135deg, var(--rp-blue) 0%, #1a3a5c 50%, #2a4a6a 100%);
  color: var(--rp-white);
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(69, 35, 76, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(220, 150, 45, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: var(--z-base);
}

.hero h1 {
  color: var(--rp-white);
  margin-bottom: var(--space-lg);
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-md);
  max-width: 640px;
}

.hero-border {
  height: 4px;
  background: linear-gradient(90deg, var(--rp-orange), var(--rp-purple), var(--rp-blue));
}


/* ---- Sticky Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: var(--rp-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.header-logo img {
  height: 44px;
  width: auto;
}

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

.header-nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--rp-gray);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--duration-fast) var(--ease-default);
}

.header-nav a:hover {
  color: var(--rp-blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* Mobile header actions — hidden on desktop, shown on mobile via media query */
.mobile-header-actions {
  display: none;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  font-weight: 600;
  color: var(--rp-blue);
  font-size: var(--text-sm);
}

.header-phone:hover {
  color: var(--rp-orange);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px 0;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--rp-blue);
  border-radius: 2px;
  transition: all var(--duration-normal) var(--ease-default);
}

/* Services dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  cursor: pointer;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -1rem;
  width: max-content;
  min-width: 300px;
  background: var(--rp-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-sm) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--duration-normal) var(--ease-default);
  z-index: var(--z-dropdown);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.active .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--text-sm);
  color: var(--rp-gray);
}

.nav-dropdown-menu a:hover {
  background: var(--rp-light);
  color: var(--rp-blue);
}


/* ---- Footer ---- */
.site-footer {
  background: var(--rp-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand img {
  height: 40px;
  margin-bottom: var(--space-lg);
}

.footer-brand p {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 300px;
}

.footer-heading,
.footer-col-title {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rp-white);
  margin-bottom: var(--space-lg);
}

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

.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}

.footer-links a:hover {
  color: var(--rp-orange);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration-fast) var(--ease-default);
}

.footer-social a:hover {
  background: var(--rp-orange);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: var(--rp-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
  color: var(--rp-orange);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
}


/* ---- Provider/Founder Photo Positioning ---- */
.founder-photo img,
.provider-photo img {
  object-position: center 20%;
}


/* ---- Secondary Button on Dark Backgrounds ---- */
.hero .btn-secondary,
.cta-block .btn-secondary {
  border: 2px solid var(--rp-white);
}


/* ---- Skip Link ---- */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--rp-orange);
  color: var(--rp-white);
  padding: var(--space-sm) var(--space-md);
  z-index: var(--z-modal);
  font-weight: 600;
  transition: top var(--duration-fast) var(--ease-default);
}

.skip-link:focus {
  top: 0;
  color: var(--rp-white);
}


/* ---- Reveal Animation: Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ---- Inline Citations (PubMed) ---- */
.citation {
  font-size: var(--text-xs);
  color: var(--rp-blue-tint-50);
  vertical-align: super;
  text-decoration: none;
  font-weight: 600;
}

.citation:hover {
  color: var(--rp-orange);
}

.references {
  margin-top: var(--space-3xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--rp-gray-tint-10);
}

.references h3 {
  font-size: var(--text-base);
  margin-bottom: var(--space-md);
}

.references ol {
  list-style: decimal;
  padding-left: var(--space-xl);
}

.references li {
  font-size: var(--text-sm);
  color: var(--rp-gray);
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}


/* ---- Animations (spring easing from UI kit) ---- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-default),
              transform 0.5s var(--ease-spring);
}

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

/* Hover effects are handled by specific interactive element classes
   (cards, buttons, links, condition tags), not by the reveal class. */

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- Section Gradient Utilities ---- */
.section-gradient {
  background: linear-gradient(180deg, var(--rp-light) 0%, var(--rp-white) 100%);
}

.section-gradient-reverse {
  background: linear-gradient(180deg, var(--rp-white) 0%, var(--rp-light) 100%);
}


/* ============================================================
   Service Page Components
   Reusable patterns for all service pages
   ============================================================ */

/* ---- Hero (two-column service page) ---- */
.hero-service {
  padding: var(--space-5xl) 0 var(--space-4xl);
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero-service .container {
  display: flex;
  align-items: center;
  gap: var(--space-3xl);
}

.hero-service .hero-content {
  max-width: 680px;
  flex: 1;
}

.hero-service .hero-image {
  flex: 0 0 475px;
  max-width: 475px;
}

.hero-service .hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-position: center 20%;
}

.hero-service h1 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-lg);
  line-height: 1.12;
}

/* ---- Callout Box ---- */
.callout-box {
  background: var(--rp-orange-tint-10);
  border-left: 4px solid var(--rp-orange);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-xl) var(--space-2xl);
  margin-top: var(--space-2xl);
  max-width: 100%;
  width: 100%;
}

.callout-box h3 {
  color: var(--rp-blue);
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

/* ---- Evidence Cards ---- */
.evidence-card {
  background: var(--rp-white);
  border-left: 4px solid var(--rp-blue);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-lg) var(--space-xl);
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-normal) var(--ease-default),
              box-shadow var(--duration-normal) var(--ease-default);
}

.evidence-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.evidence-card .study-category {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rp-orange);
  margin-bottom: var(--space-xs);
}

.evidence-card h3 {
  font-size: var(--text-base);
  margin-bottom: var(--space-xs);
}

.evidence-card .study-meta {
  font-size: var(--text-xs);
  color: var(--rp-gray-tint-25);
  font-style: italic;
  margin-bottom: var(--space-sm);
}

.evidence-card .key-finding {
  font-size: var(--text-sm);
  color: var(--rp-gray);
  line-height: 1.6;
}

/* ---- Timeline ---- */
.timeline {
  position: relative;
  padding-left: var(--space-3xl);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--rp-orange-tint-25);
}

.timeline-step {
  position: relative;
  padding-bottom: var(--space-2xl);
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-step::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-3xl) + 8px);
  top: 4px;
  width: 16px;
  height: 16px;
  background: var(--rp-orange);
  border-radius: var(--radius-full);
  border: 3px solid var(--rp-white);
  box-shadow: 0 0 0 2px var(--rp-orange-tint-25);
}

.timeline-step h4 {
  margin-bottom: var(--space-sm);
}

.timeline-step p {
  font-size: var(--text-sm);
  color: var(--rp-gray);
}

/* ---- CTA Strip ---- */
.cta-strip {
  text-align: center;
  padding: var(--space-4xl) var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-strip h2 {
  margin-bottom: var(--space-md);
}

.cta-strip > p {
  margin: 0 auto var(--space-xl);
  max-width: 600px;
  font-size: var(--text-md);
}

.cta-strip .trust-line {
  margin-top: var(--space-xl);
  font-size: var(--text-sm);
  opacity: 0.7;
}

/* ---- Outcome Grid ---- */
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin: var(--space-2xl) 0;
}

.outcome-stat {
  text-align: center;
  padding: var(--space-xl);
  background: var(--rp-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-normal) var(--ease-spring),
              box-shadow var(--duration-normal) var(--ease-spring);
}

.outcome-stat:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.outcome-stat .number {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--rp-orange);
  line-height: 1;
}

.outcome-stat .label {
  font-size: var(--text-sm);
  color: var(--rp-gray);
  margin-top: var(--space-sm);
}

/* ---- Agitation Cards ---- */
.agitation-card {
  background: var(--rp-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--rp-error);
  transition: transform var(--duration-normal) var(--ease-default),
              box-shadow var(--duration-normal) var(--ease-default);
}

.agitation-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.agitation-card .card-label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rp-error);
  margin-bottom: var(--space-sm);
}

.agitation-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
}

.agitation-card .comparison-row {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-size: var(--text-sm);
  margin-top: var(--space-lg);
  border-top: 1px solid var(--rp-gray-tint-10);
  padding-top: var(--space-md);
}

.agitation-card .them,
.agitation-card .us {
  padding: var(--space-sm) 0;
}

.agitation-card .them {
  color: var(--rp-gray-tint-25);
}

.agitation-card .us {
  color: var(--rp-blue);
  font-weight: 600;
}

/* ---- Condition Tags ---- */
.condition-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin: var(--space-xl) 0;
}

.condition-tag {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--rp-blue-10, var(--rp-blue-tint-10));
  color: var(--rp-blue);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: all var(--duration-normal) var(--ease-spring);
}

.condition-tag:hover {
  background: var(--rp-orange-10, var(--rp-orange-tint-10));
  color: var(--rp-orange);
  text-decoration: none;
  transform: translateY(-2px);
}

/* ---- Comparison Table (extended) ---- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-2xl) 0;
  font-size: var(--text-sm);
}

.comparison-table th {
  background: var(--rp-blue);
  color: var(--rp-white);
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}

.comparison-table th.highlight {
  background: var(--rp-purple, #45234c);
  color: var(--rp-white);
}

.comparison-table td {
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--rp-gray-tint-10);
  vertical-align: top;
}

.comparison-table tr:nth-child(even) {
  background: var(--rp-light);
}

.comparison-table .highlight {
  background: var(--rp-orange-tint-10);
  font-weight: 600;
}

/* ---- Service Page Responsive ---- */
@media (max-width: 1024px) {
  .hero-service .hero-image {
    flex: 0 0 300px;
    max-width: 300px;
  }

  .outcome-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-service .container {
    flex-direction: column;
  }

  .hero-service .hero-image {
    flex: none;
    max-width: 100%;
    order: -1;
  }

  .outcome-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .comparison-table {
    font-size: var(--text-xs);
  }

  .comparison-table th,
  .comparison-table td {
    padding: var(--space-sm);
  }

  .agitation-card .comparison-row {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .outcome-grid {
    grid-template-columns: 1fr;
  }
}


/* ---- Responsive ---- */
@media (max-width: 1024px) {
  :root {
    --text-4xl: 2.4375rem;
    --text-3xl: 1.9375rem;
    --text-2xl: 1.5625rem;
  }

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

@media (max-width: 768px) {
  :root {
    --text-4xl: 1.9375rem;
    --text-3xl: 1.5625rem;
    --text-2xl: 1.25rem;
    --text-xl: 1.125rem;
    --gutter: 1.25rem;
  }

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

  .hero {
    padding: var(--space-3xl) 0 var(--space-2xl);
  }

  /* Mobile header actions */
  .mobile-header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-left: auto;
    margin-right: var(--space-sm);
  }

  .mobile-header-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: var(--rp-blue-10);
    color: var(--rp-blue);
    border: 1px solid var(--rp-blue-tint-25);
  }

  .mobile-header-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.875rem;
    background: var(--rp-orange);
    color: var(--rp-white);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    white-space: nowrap;
  }

  /* Header mobile */
  .header-nav {
    display: none;
  }

  .header-nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--rp-white);
    padding: var(--space-lg) var(--gutter);
    border-top: 1px solid var(--rp-gray-tint-10);
    box-shadow: var(--shadow-lg);
  }

  .hamburger {
    display: flex;
  }

  .trust-bar {
    gap: var(--space-lg);
  }

  .trust-bar-number {
    font-size: var(--text-xl);
  }

  .social-proof-stats {
    gap: var(--space-xl);
  }

  .badge-row img {
    height: 36px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  :root {
    --text-4xl: 1.5625rem;
    --text-3xl: 1.25rem;
    --gutter: 1rem;
  }

  .btn {
    width: 100%;
  }

  .trust-bar {
    flex-direction: column;
    gap: var(--space-md);
  }
}


/* ---- Utility Classes ---- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.hidden { display: none; }

/* Fix #1: Mobile horizontal overflow safety net */
@media (max-width: 768px) {
  *, *::before, *::after {
    max-width: 100%;
  }
  .footer-grid {
    overflow-x: hidden;
    max-width: 100%;
  }
  .footer-grid > * {
    max-width: 100%;
    box-sizing: border-box;
  }
  .container {
    max-width: calc(100vw - 2rem);
  }
}

/* ---- Section CTA Centered ---- */
.section-cta-centered {
  text-align: center;
  padding-top: var(--space-3xl);
}

.section-cta-centered .hero-subtitle {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--rp-white);
  margin-bottom: var(--space-md);
}

.section-cta-centered .hero-body {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-md);
  margin-bottom: var(--space-xl);
}

.section-cta-centered .hero-disclaimer {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  margin-top: var(--space-lg);
}

/* ---- Check List ---- */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-xl) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-0-75);
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  line-height: var(--leading-normal);
  max-width: 72ch;
}

.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--rp-orange);
  font-weight: 700;
}

.check-list--2col {
  display: grid;
  grid-template-columns: max-content max-content;
  gap: var(--space-xs) var(--space-4xl);
}

.check-list--2col li {
  break-inside: avoid;
}

@media (max-width: 768px) {
  .check-list--2col {
    grid-template-columns: 1fr;
  }
}


/* ---- Recovered Components ---- */

/* ====== .text-center p ====== */
.text-center p {
  margin-left: auto;
  margin-right: auto;
}

/* ====== .card h3 ====== */
.card h3 {
  min-height: 3.2em;
  font-size: var(--text-lg);
  line-height: 1.35;
}

/* ====== .card .btn:last-child, .card a:last-child ====== */
.card .btn:last-child,
.card a:last-child {
  margin-top: auto;
}

/* ====== .faq-question::-webkit-details-marker, .faq-question::marker ====== */
.faq-question::-webkit-details-marker,
.faq-question::marker {
  display: none;
  content: "";
}

/* ====== .faq-question::after ====== */
.faq-question::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-left: var(--space-md);
  transition: transform var(--duration-normal) var(--ease-default);
}

/* ====== details[open] > .faq-question::after ====== */
details[open] > .faq-question::after {
  transform: rotate(-135deg);
}

/* ====== .reveal.visible.card:hover ====== */
.reveal.visible.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ====== .callout-box h2, .callout-box h3 ====== */
.callout-box h2,
.callout-box h3 {
  color: var(--rp-blue);
  font-size: var(--text-lg);
  margin-bottom: var(--space-lg);
}

/* ====== .callout-box h2 ====== */
.callout-box h2 {
  font-size: var(--text-xl);
}

/* ====== .icon-card ====== */
.icon-card {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  padding: var(--space-xl);
  background: var(--rp-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-normal) var(--ease-default),
              box-shadow var(--duration-normal) var(--ease-default);
}

/* ====== .icon-card:hover ====== */
.icon-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ====== .icon-card-icon ====== */
.icon-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--rp-orange);
  color: var(--rp-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-md);
}

/* ====== .icon-card-content h3 ====== */
.icon-card-content h3 {
  color: var(--rp-blue);
  font-size: var(--text-md);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

/* ====== .icon-card-content p ====== */
.icon-card-content p {
  color: var(--rp-gray);
  line-height: 1.7;
  margin: 0;
}

/* ====== .icon-card-grid ====== */
.icon-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

/* ====== .nav-sticky ====== */
.nav-sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-lg);
  background: var(--rp-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

/* ====== .nav-logo img ====== */
.nav-logo img {
  height: 44px;
  width: auto;
}

/* ====== .nav-desktop-links ====== */
.nav-desktop-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ====== .nav-item ====== */
.nav-item {
  position: relative;
  list-style: none;
}

/* ====== .nav-item > a ====== */
.nav-item > a {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--rp-gray);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
}

/* ====== .nav-item > a:hover ====== */
.nav-item > a:hover {
  color: var(--rp-orange);
}

/* ====== .nav-dropdown-trigger:hover ====== */
.nav-dropdown-trigger:hover {
  color: var(--rp-orange);
}

/* ====== .nav-dropdown-trigger svg ====== */
.nav-dropdown-trigger svg {
  transition: transform 0.25s ease;
}

/* ====== .nav-item--has-dropdown .nav-dropdown ====== */
.nav-item--has-dropdown .nav-dropdown {
  position: absolute;
  top: 100%;
  left: -1rem;
  width: max-content;
  min-width: 280px;
  background: var(--rp-white);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  z-index: 1001;
  list-style: none;
  margin: 0;
}

/* ====== .nav-item--has-dropdown:hover .nav-dropdown, .nav-item--has-dropdown.dropdown-op ====== */
.nav-item--has-dropdown:hover .nav-dropdown,
.nav-item--has-dropdown.dropdown-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ====== .nav-item--has-dropdown:hover .nav-dropdown-trigger svg, .nav-item--has-dropdown ====== */
.nav-item--has-dropdown:hover .nav-dropdown-trigger svg,
.nav-item--has-dropdown.dropdown-open .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

/* ====== .nav-item--has-dropdown .nav-dropdown a ====== */
.nav-item--has-dropdown .nav-dropdown a {
  display: block;
  padding: 0.5rem 1.5rem;
  font-size: var(--text-sm);
  color: var(--rp-gray);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

/* ====== .nav-item--has-dropdown .nav-dropdown a:hover ====== */
.nav-item--has-dropdown .nav-dropdown a:hover {
  background: var(--rp-light);
  color: var(--rp-blue);
}

/* ====== .nav-actions ====== */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* ====== .nav-phone ====== */
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

/* ====== .nav-hamburger ====== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px 0;
  z-index: 1002;
}

/* ====== .nav-hamburger__line ====== */
.nav-hamburger__line {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--rp-blue);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ====== .nav-hamburger.active .nav-hamburger__line:nth-child(1) ====== */
.nav-hamburger.active .nav-hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

/* ====== .nav-hamburger.active .nav-hamburger__line:nth-child(2) ====== */
.nav-hamburger.active .nav-hamburger__line:nth-child(2) {
  opacity: 0;
}

/* ====== .nav-hamburger.active .nav-hamburger__line:nth-child(3) ====== */
.nav-hamburger.active .nav-hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ====== .nav-mobile-overlay ====== */
.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

/* ====== .nav-mobile-overlay.active ====== */
.nav-mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ====== .nav-mobile-menu ====== */
.nav-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: var(--rp-white);
  z-index: 999;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transition: right 0.3s ease;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
}

/* ====== .nav-mobile-menu.active ====== */
.nav-mobile-menu.active {
  right: 0;
}

/* ====== .nav-mobile-menu a ====== */
.nav-mobile-menu a {
  display: block;
  padding: 0.6rem 0;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--rp-gray);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

/* ====== .nav-mobile-menu a:hover ====== */
.nav-mobile-menu a:hover {
  color: var(--rp-orange);
}

/* ====== .nav-mobile-section-label ====== */
.nav-mobile-section-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rp-orange);
  padding: 0.75rem 0 0.25rem;
  margin-bottom: 0;
  border-bottom: none;
}

/* ====== .nav-mobile-close ====== */
.nav-mobile-close {
  display: flex;
  align-self: flex-end;
  margin-bottom: 1rem;
}

/* ====== @media (min-width: 1025px) ====== */
@media (min-width: 1025px) {
  .nav-mobile-menu {
    display: none;
  }

  .nav-mobile-overlay {
    display: none;
  }

  .nav-hamburger {
    display: none;
  }
}

/* ====== .hero-stat-bar ====== */
.hero-stat-bar {
  display: flex;
  gap: var(--space-2xl);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--rp-white-15);
}

/* ====== .hero-stat-item ====== */
.hero-stat-item {
  text-align: center;
}

/* ====== .hero-stat-bar .stat-number ====== */
.hero-stat-bar .stat-number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--rp-orange);
  line-height: 1;
}

/* ====== .hero-stat-bar .stat-label ====== */
.hero-stat-bar .stat-label {
  font-size: var(--text-xs);
  color: var(--rp-white-70);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: var(--space-xs);
}

/* ====== .cta-strip p ====== */
.cta-strip p {
  color: var(--rp-white-70);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

/* ====== .icon-pillars ====== */
.icon-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

/* ====== .icon-pillar ====== */
.icon-pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  background: var(--rp-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform var(--duration-normal) var(--ease-spring),
              box-shadow var(--duration-normal) var(--ease-spring);
}

/* ====== .icon-pillar:hover ====== */
.icon-pillar:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ====== .icon-pillar:active ====== */
.icon-pillar:active {
  transform: scale(0.97);
  transition-duration: var(--duration-fast);
}

/* ====== .icon-pillar__icon ====== */
.icon-pillar__icon {
  width: 64px;
  height: 64px;
  margin-bottom: var(--space-md);
}

/* ====== .icon-pillar__icon img ====== */
.icon-pillar__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ====== .icon-pillar__label ====== */
.icon-pillar__label {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--rp-blue);
}

/* ====== .service-card-grid ====== */
.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

/* ====== .service-card ====== */
.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  background: var(--rp-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-normal) var(--ease-spring),
              box-shadow var(--duration-normal) var(--ease-spring);
}

/* ====== .service-card:hover ====== */
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ====== .service-card__icon ====== */
.service-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: var(--space-md);
}

/* ====== .service-card__icon img ====== */
.service-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ====== .service-card__title ====== */
.service-card__title {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--rp-blue);
  margin-bottom: var(--space-sm);
}

/* ====== .service-card__description ====== */
.service-card__description {
  font-size: var(--text-sm);
  color: var(--rp-gray);
  line-height: var(--leading-normal);
}

/* ====== .provider-card-grid ====== */
.provider-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-xl);
}

/* ====== .provider-card ====== */
.provider-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-xl);
  background: var(--rp-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-normal) var(--ease-spring),
              box-shadow var(--duration-normal) var(--ease-spring);
}

/* ====== .provider-card:hover ====== */
.provider-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ====== .provider-card__photo ====== */
.provider-card__photo {
  width: 180px;
  height: 180px;
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-md);
}

/* ====== .provider-card__photo img ====== */
.provider-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

/* ====== .provider-card__name ====== */
.provider-card__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--rp-blue);
  margin-bottom: var(--space-xs);
}

/* ====== .provider-card__role ====== */
.provider-card__role {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--rp-orange);
  margin-bottom: var(--space-sm);
}

/* ====== .provider-card__specialties ====== */
.provider-card__specialties {
  font-size: var(--text-sm);
  color: var(--rp-gray);
  line-height: var(--leading-normal);
  margin-bottom: var(--space-lg);
}

/* ====== .steps-banner ====== */
.steps-banner {
  background: var(--rp-blue);
  color: var(--rp-white);
  padding: var(--space-5xl) 0;
}

/* ====== .steps-banner h2 ====== */
.steps-banner h2 {
  color: var(--rp-white);
  text-align: center;
  margin-bottom: var(--space-3xl);
}

/* ====== .steps-grid ====== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

/* ====== .step-item ====== */
.step-item {
  text-align: center;
  background: var(--rp-white);
  border-radius: var(--radius-md);
  padding: var(--space-2xl) var(--space-xl);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* ====== .step-item:hover ====== */
.step-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.25), 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* ====== .step-item__number ====== */
.step-item__number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--rp-orange);
  line-height: 1;
  margin-bottom: var(--space-md);
}

/* ====== .step-item__title ====== */
.step-item__title {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--rp-blue);
  margin-bottom: var(--space-sm);
}

/* ====== .step-item__description ====== */
.step-item__description {
  font-size: var(--text-sm);
  color: var(--rp-gray);
  line-height: var(--leading-normal);
  max-width: 340px;
  margin: 0 auto;
}

/* ====== .step-item__description ul ====== */
.step-item__description ul {
  list-style: none;
  text-align: left;
  margin-top: var(--space-sm);
}

/* ====== .step-item__description li ====== */
.step-item__description li {
  position: relative;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-xs);
  color: var(--rp-gray);
}

/* ====== .step-item__description li::before ====== */
.step-item__description li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  background: var(--rp-orange);
  border-radius: var(--radius-full);
}

@media (max-width: 768px) {
  .steps-banner {
    padding: var(--space-3xl) 0;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .step-item {
    padding: var(--space-xl) var(--space-lg);
  }
}

/* ====== .divider-spaced ====== */
.divider-spaced {
  width: 60px;
  height: 3px;
  background: var(--rp-orange);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-xl);
}

/* ====== .content-card ====== */
.content-card {
  display: flex;
  flex-direction: column;
  background: var(--rp-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-normal) var(--ease-spring),
              box-shadow var(--duration-normal) var(--ease-spring);
}

/* ====== .content-card:hover ====== */
.content-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ====== .content-card h3 ====== */
.content-card h3 {
  color: var(--rp-blue);
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
}

/* ====== .content-card p ====== */
.content-card p {
  font-size: var(--text-sm);
  color: var(--rp-gray);
  line-height: var(--leading-normal);
}

/* ====== .treatment-card-grid ====== */
.treatment-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
}

/* ====== .treatment-card ====== */
.treatment-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-lg);
  background: var(--rp-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--duration-normal) var(--ease-spring),
              box-shadow var(--duration-normal) var(--ease-spring);
}

/* ====== .treatment-card:hover ====== */
.treatment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ====== .treatment-card__image ====== */
.treatment-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

/* ====== .treatment-card__image img ====== */
.treatment-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ====== .treatment-card__title ====== */
.treatment-card__title {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--rp-blue);
}

/* ====== .list-disc ====== */
.list-disc {
  list-style: disc;
  padding-left: var(--space-xl);
  display: grid;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

/* ====== .hero-provider .grid ====== */
.hero-provider .grid {
  align-items: center;
  gap: var(--space-3xl);
}

/* ====== .hero-provider h1 ====== */
.hero-provider h1 {
  font-size: var(--text-3xl);
}

/* ====== .hero-provider .text-accent ====== */
.hero-provider .text-accent {
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-xl);
}

/* ====== .hero-provider .cta-buttons ====== */
.hero-provider .cta-buttons {
  margin-top: var(--space-xl);
  justify-content: flex-start;
}

/* ====== .provider-avatar ====== */
.provider-avatar {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  max-width: 85%;
  margin: 0 auto;
}

/* ====== .provider-avatar img ====== */
.provider-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ====== .text-sm ====== */
.text-sm {
  font-size: var(--text-sm);
}

/* ====== .text-xs ====== */
.text-xs {
  font-size: var(--text-xs);
}

/* ====== .legal-content ====== */
.legal-content {
  font-size: var(--text-base);
  line-height: 1.75;
}

/* ====== .legal-content h2 ====== */
.legal-content h2 {
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-lg);
}

/* ====== .legal-content p ====== */
.legal-content p {
  margin-bottom: var(--space-md);
}

/* ====== .legal-content ul ====== */
.legal-content ul {
  list-style: disc;
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
}

/* ====== .legal-content ol ====== */
.legal-content ol {
  list-style: decimal;
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
}

/* ====== .legal-content li ====== */
.legal-content li {
  margin-bottom: var(--space-sm);
}

/* ====== .hero-minimal ====== */
.hero-minimal {
  padding: var(--space-4xl) 0 var(--space-3xl);
}

/* ====== .contact-info-card .icon ====== */
.contact-info-card .icon {
  flex-shrink: 0;
}

/* ====== .provider-option .specialty ====== */
.provider-option .specialty {
  font-size: var(--text-sm);
  color: var(--rp-gray);
}

/* ====== .numbered-list ====== */
.numbered-list {
  list-style: none;
}

/* ====== .numbered-list li ====== */
.numbered-list li {
  margin-bottom: var(--space-lg);
  display: flex;
  gap: var(--space-md);
}

/* ====== .numbered-list li:last-child ====== */
.numbered-list li:last-child {
  margin-bottom: 0;
}

/* ====== .numbered-list .num ====== */
.numbered-list .num {
  color: var(--rp-orange);
  font-weight: 700;
  flex-shrink: 0;
}

/* ====== .numbered-list .title ====== */
.numbered-list .title {
  font-weight: 600;
}

/* ====== .numbered-list .desc ====== */
.numbered-list .desc {
  font-size: var(--text-sm);
  color: var(--rp-gray);
}

/* ====== .hero-homepage .hero-image ====== */
.hero-homepage .hero-image {
  flex: 0 0 480px;
  max-width: 480px;
}

/* ---- Treatment Icon Grid ---- */
.treatment-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.treatment-icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: transform var(--duration-normal) var(--ease-default),
              box-shadow var(--duration-normal) var(--ease-default),
              background var(--duration-normal) var(--ease-default);
}

.treatment-icon-card:hover {
  transform: translateY(-4px);
  background: var(--rp-white);
  box-shadow: var(--shadow-md);
}

.treatment-icon-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--rp-blue-10);
  color: var(--rp-blue);
  margin-bottom: var(--space-md);
  transition: background var(--duration-normal) var(--ease-default),
              color var(--duration-normal) var(--ease-default);
}

.treatment-icon-card:hover .treatment-icon-card__icon {
  background: var(--rp-orange-10);
  color: var(--rp-orange);
}

.treatment-icon-card__title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--rp-blue);
  line-height: var(--leading-snug);
}

@media (max-width: 1024px) {
  .treatment-icon-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .treatment-icon-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: var(--rp-blue);
  color: var(--rp-white);
  padding: var(--space-5xl) 0;
  text-align: center;
}

.cta-banner__heading {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--rp-white);
  margin-bottom: var(--space-md);
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner__body {
  font-size: var(--text-md);
  color: rgba(255, 255, 255, 0.85);
  max-width: 50ch;
  margin: 0 auto var(--space-2xl);
  line-height: var(--leading-relaxed);
}

.cta-banner__buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.cta-banner .btn-ghost {
  color: var(--rp-white);
  border: 2px solid var(--rp-white);
}

.cta-banner .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--rp-white);
  border-color: var(--rp-white);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.cta-banner__stat {
  font-size: var(--text-sm);
  color: var(--rp-orange);
  font-weight: 600;
  margin-top: var(--space-md);
}

.cta-banner__note {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  margin-top: var(--space-sm);
}

@media (max-width: 768px) {
  .cta-banner__heading {
    font-size: var(--text-2xl);
  }

  .cta-banner__buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ---- Resources Lead ---- */
.resources-lead {
  font-size: var(--text-md);
  color: rgba(255, 255, 255, 0.85);
  line-height: var(--leading-relaxed);
  max-width: 70ch;
  margin: 0 auto var(--space-2xl);
  text-align: center;
}

/* ---- Provider Portrait ---- */
.provider-portrait {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  max-width: 85%;
}

.provider-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ---- Discovery Cards ---- */
.discovery-card + .discovery-card {
  margin-top: var(--space-3xl);
}

.discovery-card h3 {
  margin-bottom: var(--space-xs);
}

.discovery-card p {
  margin-bottom: 0;
}

.booking-iframe {
  width: 100%;
  max-width: 100%;
  min-height: 650px;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .booking-iframe {
    min-height: 900px;
  }
}

.discovery-card iframe {
  margin-top: -20px;
  width: 100%;
  max-width: 100%;
}

/* ---- Supplement Product Grid ---- */
.supplement-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.supplement-product-grid .treatment-card {
  padding: var(--space-lg);
  text-align: center;
  text-decoration: none;
  color: inherit;
}

.supplement-product-grid .treatment-card-full-width {
  grid-column: 1 / -1;
  max-width: 66%;
  margin: 0 auto;
}

.supplement-logo {
  max-height: 60px;
  width: auto;
  margin: 0 auto var(--space-md);
  display: block;
  object-fit: contain;
}

.text-center-margin-reset {
  text-align: center;
  margin: 0;
  font-size: var(--text-sm);
}

@media (max-width: 768px) {
  .supplement-product-grid {
    grid-template-columns: 1fr;
  }
  .supplement-product-grid .treatment-card-full-width {
    max-width: 100%;
  }
}

/* ---- Print ---- */
@media print {
  .site-header,
  .site-footer,
  .btn,
  .hamburger { display: none; }

  .hero { background: none; color: var(--rp-gray); padding: var(--space-xl) 0; }
  .hero h1 { color: var(--rp-blue); }
  .section { padding: var(--space-xl) 0; }
  body { font-size: 12pt; }
}


/* Accessibility: keyboard focus rings (WCAG 2.1 SC 2.4.7) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--rp-orange);
  outline-offset: 2px;
  border-radius: 2px;
}


/* Mobile tap targets (WCAG 2.5.5): ensure 44x44 minimum on touch devices */
@media (max-width: 768px) {
  .footer-links a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 4px 0;
    white-space: normal;
  }
  .check-list--2col li a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 6px 0;
  }
}


/* Utility: force uppercase display for headings */
.heading-uppercase { text-transform: uppercase; }


/* Split row pattern: text + media side-by-side (used on service pages) */
.split-row {
  display: flex;
  gap: var(--space-2xl);
  align-items: flex-start;
  margin-bottom: var(--space-xl);
}
.split-row--stretch {
  align-items: stretch;
}
.split-row__text {
  flex: 1;
  min-width: 0;
  max-width: 60ch;
}
.split-row__media {
  flex: 0 0 460px;
}
.split-row__media--stretch {
  align-self: stretch;
}
.split-row__img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
}
.split-row__img--fill {
  height: 100%;
}
.split-row__img--capped {
  max-height: 400px;
}
@media (max-width: 768px) {
  .split-row {
    flex-direction: column;
  }
  .split-row__media {
    flex: 0 0 auto;
    width: 100%;
  }
}


/* ====== 2026-04-10 Audit Fixes (tap targets) ====== */
/* Raise sub-44px tap targets to meet WCAG minimum. */
.nav-logo {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.footer-phone {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.footer-links a {
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
}
/* ====== End 2026-04-10 Audit Fixes ====== */

/* 2026-04-10 audit: move repeated inline flex-icon pattern off .btn-phone */
.btn-phone { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; }

/* 2026-04-10 audit: tighten check-list bullet spacing */
.check-list { row-gap: var(--space-sm); }
.check-list li { margin-bottom: 0; }
