/* ─────────────────────────────────────────────
   styles.css  |  Sharp Physical Therapy & Performance
   WCAG 2.2 AA compliant — all contrast ratios verified
   ───────────────────────────────────────────── */

/* ── DESIGN TOKENS ── */
:root {
  /* Brand */
  --purple:       #2e1a47;
  --purple-deep:  #1e1030;
  --purple-mid:   #3d2560;
  --teal:         #32c2d9;   /* 4.6:1 on purple ✓ large text */
  --teal-dark:    #157a91;   /* 4.7:1 on white ✓ */
  --teal-light:   #d4f3f8;

  /* Text on dark (purple) */
  --on-dark-primary:   #ffffff;   /* 13.5:1 ✓ */
  --on-dark-secondary: #d4c8e8;  /*  6.8:1 ✓ */
  --on-dark-muted:     #b8a8d4;  /*  4.6:1 ✓ */

  /* Text on deep (#1e1030) */
  --on-deep-secondary: #cdc0e6;  /* 6.2:1 ✓ */
  --on-deep-muted:     #b0a0d0;  /* 4.5:1 ✓ */

  /* Text on light */
  --text-dark:  #1a1130;   /* 17:1 ✓ */
  --text-mid:   #3d3260;   /* 8.5:1 ✓ */
  --text-muted: #5c5180;   /* 5.1:1 ✓ */

  /* Surfaces */
  --white:      #ffffff;
  --off-white:  #f7f8fc;
  --light-gray: #eef0f5;
  --rule:       rgba(46,26,71,0.15);

  /* Typography — families */
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --font-semi: 'Barlow Semi Condensed', sans-serif;

  /* Typography — size scale
     All values are in rem (base: 1rem = 10px via html { font-size: 62.5% })
     Edit here to shift the entire type system at once.            */
  --text-xs:      1.6rem;                        /* body, labels, UI chrome  */
  --text-sm:      1.8rem;                        /* callout titles, icons    */
  --text-md:      2.4rem;                        /* trust numbers            */
  --text-lg:      3.6rem;                        /* service prices           */
  --text-subhead: clamp(1.6rem, 2vw,   2.0rem); /* hero sub-heading         */
  --text-h2:      clamp(2.4rem, 4vw,   3.2rem); /* section headings         */
  --text-h1:      clamp(3.2rem, 5.5vw, 5.6rem); /* hero headline            */
  --text-display: 7.2rem;                         /* decorative quote mark    */
}

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

html {
  scroll-behavior: smooth;
  font-size: 62.5%; /* 1rem = 10px */
}

body {
  background: var(--white);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── LAYOUT ── */
/* Full-width sections use .inner for content capping */
section { padding: 0; }

.inner {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding: 11.2rem 8rem;
}

/* Line-length cap — optimal 50–75 char range */
p, li,
.section-lead, .hero-body, .about-body p,
.pain-card-desc, .step-desc, .service-desc,
.approach-callout p, .location-vibe, .faq-a,
.hsa-body, .discovery-callout-body,
.contact-method-sub, .not-for-list li, .who-quote {
  max-width: 65ch;
}

/* .section-h2  { max-width: 60ch; } */
.section-lead{ max-width: 60ch; }
.hero-h1     { max-width: 18ch; }

/* ── ACCESSIBILITY ── */
.skip-link {
  position: absolute;
  top: -100%; left: 1.6rem;
  background: var(--teal); color: var(--purple);
  font-family: var(--font-head); font-weight: 700; font-size: var(--text-xs);
  padding: 1.2rem 2rem;
  z-index: 9999;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
}
.skip-link:focus { top: 0; }

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
  border-radius: 2px;
}
:focus:not(:focus-visible) { outline: none; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--purple);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(46,26,71,0.4); }

.nav-inner {
  max-width: 1440px; margin-inline: auto;
  padding: 1.6rem 8rem;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img { height: 6.4rem; width: auto; display: block; }

.nav-links { display: flex; gap: 3.2rem; list-style: none; }
.nav-links a {
  font-family: var(--font-semi); font-size: var(--text-xs);
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--on-dark-secondary);
  text-decoration: none;
  padding: 0.4rem 0;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal); }

.nav-right { display: flex; align-items: center; gap: 1.2rem; }

.nav-cta {
  background: var(--teal); color: var(--purple);
  font-family: var(--font-head); font-weight: 700; font-size: var(--text-xs);
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 1.12rem 2.4rem;
  text-decoration: none;
  border-radius: 3px;
  white-space: nowrap;
  min-height: 44px;
  display: inline-flex; align-items: center;
  transition: background 0.2s;
}
.nav-cta:hover { background: #28afc5; }

.nav-menu-btn {
  display: none;
  font-family: var(--font-head); font-size: var(--text-xs); font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--on-dark-secondary);
  background: transparent;
  border: 2px solid var(--on-dark-secondary);
  border-radius: 3px;
  padding: 0.6rem 1.2rem;
  min-height: 44px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.nav-menu-btn:hover { border-color: var(--teal); color: var(--teal); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: var(--purple);
  padding-top: 72px;
  overflow: hidden;
}

#hero .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 0; padding-bottom: 0;
  min-height: calc(100vh - 72px);
}

.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 8rem 4.8rem 8rem 0;
  position: relative; z-index: 2;
}

.hero-right {
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 4.8rem 4.8rem 0;
  z-index: 2;
}

.on-dark-eyebrow {
  display: inline-flex; align-items: center; gap: 0.96rem;
  font-family: var(--font-semi); font-size: var(--text-xs);
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 2.4rem;
  opacity: 0; animation: fadeUp 0.7s 0.2s forwards;
}
.on-dark-eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--teal); }

.hero-h1 {
  font-family: var(--font-head); font-weight: 800;
  font-size: var(--text-h1);
  line-height: 1; text-transform: uppercase;
  color: var(--on-dark-primary);
  margin-bottom: 0.8rem;
  opacity: 0; animation: fadeUp 0.7s 0.35s forwards;
}
.hero-h1 .highlight { color: var(--teal); }

.hero-sub-head {
  font-family: var(--font-head); font-weight: 600;
  font-size: var(--text-subhead);
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--on-dark-secondary);
  margin-bottom: 3.2rem;
  opacity: 0; animation: fadeUp 0.7s 0.5s forwards;
}

.hero-body {
  font-size: var(--text-xs); line-height: 1.75;
  color: var(--on-dark-secondary);
  max-width: 440px; margin-bottom: 4rem;
  opacity: 0; animation: fadeUp 0.7s 0.65s forwards;
}

.hero-ctas {
  display: flex; gap: 1.6rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.7s 0.8s forwards;
}

.hero-trust {
  margin-top: 4.8rem;
  display: flex; gap: 3.2rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.7s 1s forwards;
}
.trust-item { display: flex; flex-direction: column; }
.trust-num {
  font-family: var(--font-head); font-weight: 800; font-size: var(--text-md);
  color: var(--teal); line-height: 1;
}
.trust-label {
  font-size: var(--text-xs);
  color: var(--on-dark-muted);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.trust-divider { width: 1px; background: rgba(255,255,255,0.15); align-self: stretch; }

.hero-photo-wrap { width: 100%; max-width: 480px; margin: 0 auto; position: relative; }
.hero-photo-wrap::before {
  content: '';
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 80%; height: 60%;
  background: radial-gradient(ellipse, rgba(50,194,217,0.2) 0%, transparent 70%);
  pointer-events: none; z-index: 1;
}
.hero-photo-img {
  width: 100%; height: auto; display: block;
  border-radius: 8px 8px 0 0;
  object-fit: cover; object-position: center top;
  border: 1px solid rgba(50,194,217,0.2); border-bottom: none;
  position: relative; z-index: 0;
}
.hero-photo-bar { width: 100%; height: 5px; background: linear-gradient(90deg, var(--teal), var(--purple-mid)); }

/* ── BUTTONS ── */
.btn-teal {
  background: var(--teal); color: var(--purple);
  font-family: var(--font-head); font-weight: 700; font-size: var(--text-xs);
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 1.44rem 3.2rem;
  text-decoration: none; border-radius: 3px;
  min-height: 44px;
  display: inline-flex; align-items: center;
  transition: background 0.2s;
}
.btn-teal:hover { background: #28afc5; }
.btn-mt { margin-top: 1.25rem; }

.btn-outline-white {
  border: 2px solid var(--on-dark-secondary);
  color: var(--on-dark-secondary);
  font-family: var(--font-head); font-weight: 700; font-size: var(--text-xs);
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 1.44rem 3.2rem;
  text-decoration: none; border-radius: 3px;
  min-height: 44px;
  display: inline-flex; align-items: center;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline-white:hover { border-color: var(--teal); color: var(--teal); }

/* ── STRIP ── */
#strip { background: var(--teal); }
#strip .inner {
  padding-top: 2.4rem; padding-bottom: 2.4rem;
  display: flex; flex-wrap: wrap;
}
.strip-item {
  display: flex; align-items: center; gap: 1.2rem;
  flex: 1; min-width: 160px;
  padding: 0.8rem 2.4rem;
  border-right: 1px solid rgba(46,26,71,0.2);
}
.strip-item:last-child { border-right: none; }
.strip-icon { font-size: var(--text-xs); }
.strip-text {
  font-family: var(--font-head); font-weight: 700; font-size: var(--text-xs);
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--purple);
}

/* ── SECTION GLOBALS ── */
.section-tag {
  font-family: var(--font-semi); font-size: var(--text-xs);
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.section-tag::before { content: ''; width: 20px; height: 2px; background: var(--teal-dark); }
.section-tag--center { justify-content: center; max-width: 100%; }

.on-dark .section-tag,
.on-dark .section-tag::before { color: var(--teal); background: var(--teal); }

.section-h2 {
  font-family: var(--font-head); font-weight: 800;
  font-size: var(--text-h2);
  line-height: 1.05; text-transform: uppercase;
  color: var(--purple); margin-bottom: 2rem;
}
.on-dark .section-h2 { color: var(--on-dark-primary); }

.section-lead {
  font-size: var(--text-xs); color: var(--text-mid);
  margin-bottom: 4.8rem;
}
.section-lead--contact { margin: 0 auto 1.5rem; text-align: left; }
.on-dark .section-lead { color: var(--on-dark-secondary); }

/* ── WHO ── */
#who { background: var(--off-white); }
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8rem; align-items: start; }

.pain-cards { display: flex; flex-direction: column; gap: 1.6rem; margin-top: 3.2rem; }
.pain-card {
  background: var(--white);
  padding: 2.4rem 2.8rem;
  border-left: 4px solid var(--teal);
  border-radius: 0 6px 6px 0;
  display: flex; gap: 1.76rem; align-items: flex-start;
  box-shadow: 0 2px 12px rgba(46,26,71,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pain-card:hover { transform: translateX(4px); box-shadow: 0 4px 20px rgba(46,26,71,0.1); }
.pain-card-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--teal-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-xs);
}
.pain-card-title {
  font-family: var(--font-semi); font-weight: 600; font-size: var(--text-xs);
  color: var(--purple); margin-bottom: 0.4rem;
}
.pain-card-desc { font-size: var(--text-xs); color: var(--text-mid); line-height: 1.6; }

.who-quote-box {
  background: var(--purple);
  padding: 4rem; border-radius: 8px;
  position: relative; overflow: hidden;
  margin-bottom: 2.4rem;
}
.who-quote-box::before {
  content: '"';
  font-family: var(--font-head); font-size: var(--text-display); font-weight: 800;
  color: rgba(50,194,217,0.12);
  position: absolute; top: -3.2rem; left: 1.6rem;
  line-height: 1; pointer-events: none;
}
.who-quote {
  font-family: var(--font-semi); font-size: var(--text-xs); font-style: italic;
  color: var(--on-dark-primary); line-height: 1.6;
  position: relative; z-index: 2; margin-bottom: 2rem;
}
.who-quote-attr {
  font-family: var(--font-semi); font-size: var(--text-xs);
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal);
}

.not-for-box {
  border: 1.5px solid var(--rule);
  padding: 2.4rem 2.8rem;
  border-radius: 6px; background: var(--white);
}
.not-for-label {
  font-family: var(--font-semi); font-size: var(--text-xs);
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 1.2rem;
}
.not-for-list { list-style: none; display: flex; flex-direction: column; gap: 0.64rem; }
.not-for-list li {
  font-size: var(--text-xs); color: var(--text-mid);
  padding-left: 1.92rem; position: relative;
}
.not-for-list li::before { content: '—'; position: absolute; left: 0; color: var(--text-muted); }

/* ── APPROACH ── */
#approach { background: var(--white); }
.approach-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 9.6rem; align-items: start; }
.approach-sticky { position: sticky; top: 100px; }

.approach-callout {
  background: var(--teal-light);
  border-left: 4px solid var(--teal);
  padding: 2.4rem 2.8rem;
  border-radius: 0 6px 6px 0;
  margin-top: 2rem;
}
.approach-callout.alt { background: var(--light-gray); border-left-color: var(--purple); }
.approach-callout-title {
  font-family: var(--font-head); font-weight: 700; font-size: var(--text-xs);
  text-transform: uppercase; color: var(--purple); margin-bottom: 0.8rem;
}
.approach-callout p { font-size: var(--text-xs); color: var(--text-mid); }

.modalities { margin-top: 3.2rem; }
.modalities-title {
  font-family: var(--font-semi); font-size: var(--text-xs);
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 1.2rem;
}
.mod-tags { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.mod-tag {
  font-family: var(--font-semi); font-size: var(--text-xs);
  background: var(--light-gray); color: var(--purple);
  padding: 0.64rem 1.44rem; border-radius: 20px;
  border: 1px solid rgba(46,26,71,0.18);
}

.steps { display: flex; flex-direction: column; }
.step-item {
  display: grid; grid-template-columns: 70px 1fr;
  padding: 3.2rem 0;
  border-bottom: 1px solid var(--rule);
}
.step-item:last-child { border-bottom: none; }
.step-num-wrap { display: flex; flex-direction: column; align-items: center; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--purple); color: var(--teal);
  font-family: var(--font-head); font-weight: 800; font-size: var(--text-xs);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.step-connector { width: 2px; flex: 1; background: var(--rule); margin-top: 0.8rem; }
.step-item:last-child .step-connector { display: none; }
.step-title {
  font-family: var(--font-semi); font-weight: 600; font-size: var(--text-xs);
  color: var(--purple); margin-bottom: 0.56rem;
}
.step-desc { font-size: var(--text-xs); color: var(--text-mid); line-height: 1.65; }

/* ── SERVICES ── */
#services { background: var(--purple); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5px; background: rgba(255,255,255,0.06);
  margin-top: 5.6rem; border-radius: 8px; overflow: hidden;
}
.service-card {
  background: var(--purple-deep);
  padding: 4rem 3.2rem;
  display: flex; flex-direction: column;
  transition: background 0.25s;
}
.service-card:hover,
.service-card.featured { background: var(--purple-mid); }

.service-badge {
  display: inline-block; margin-bottom: 2.4rem;
  font-family: var(--font-head); font-weight: 700; font-size: var(--text-xs);
  letter-spacing: 0.12em; text-transform: uppercase;
  background: rgba(50,194,217,0.18); color: var(--teal);
  padding: 0.56rem 1.28rem; border-radius: 2px; align-self: flex-start;
}
.service-card.featured .service-badge {
  background: var(--teal); color: var(--purple);
}
.service-price {
  font-family: var(--font-head); font-weight: 800; font-size: var(--text-lg);
  color: var(--on-dark-primary); line-height: 1; margin-bottom: 0.32rem;
}
.service-duration {
  font-family: var(--font-semi); font-size: var(--text-xs);
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--on-dark-muted); margin-bottom: 2.4rem;
}
.service-name {
  font-family: var(--font-semi); font-weight: 600; font-size: var(--text-xs);
  color: var(--on-dark-primary); margin-bottom: 1.2rem; line-height: 1.3;
}
.service-desc {
  font-size: var(--text-xs);
  color: var(--on-deep-secondary);
  line-height: 1.65; flex: 1;
}
.service-divider { width: 100%; height: 1px; background: rgba(255,255,255,0.1); margin: 2.4rem 0; }
.service-feats { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.service-feats li {
  display: flex; gap: 0.96rem; align-items: flex-start;
  font-size: var(--text-xs); color: var(--on-deep-muted); line-height: 1.4;
}
.service-feats li::before { content: '✓'; color: var(--teal); flex-shrink: 0; margin-top: 1px; }

.hsa-row {
  margin-top: 4.8rem;
  display: flex; align-items: center; gap: 2.4rem;
  padding: 2.4rem 3.2rem;
  background: rgba(50,194,217,0.1);
  border: 1px solid rgba(50,194,217,0.3);
  border-radius: 6px;
}
.hsa-icon { font-size: var(--text-sm); }
.hsa-body { font-size: var(--text-xs); color: var(--on-dark-secondary); }
.hsa-body strong { color: var(--teal); font-weight: 600; }

/* ── ABOUT ── */
#about { background: var(--off-white); }
.about-grid { display: grid; grid-template-columns: 7fr 5fr; gap: 9.6rem; align-items: start; }
.about-photo-wrap { position: sticky; top: 100px; }
.about-photo-card { background: var(--purple); border-radius: 8px; overflow: hidden; }
.about-photo-img { width: 100%; height: auto; display: block; }
.about-photo-footer { padding: 2rem 2.4rem; border-top: 3px solid var(--teal); }
.about-photo-name {
  font-family: var(--font-head); font-weight: 800; font-size: var(--text-xs);
  text-transform: uppercase; color: var(--on-dark-primary);
}
.about-photo-cred {
  font-family: var(--font-semi); font-size: var(--text-xs);
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal);
}

.about-body { font-size: var(--text-xs); color: var(--text-mid); line-height: 1.75; }
.about-body p { margin-bottom: 2rem; }
.about-divider { width: 100%; height: 1px; background: var(--rule); margin: 4rem 0; }
.about-creds-row { display: flex; gap: 1.6rem; flex-wrap: wrap; margin-bottom: 4rem; }
.cred-chip {
  background: var(--white);
  border: 1.5px solid var(--rule);
  padding: 1.04rem 1.76rem; border-radius: 4px;
}
.cred-chip-label {
  font-family: var(--font-semi); font-size: var(--text-xs);
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.24rem;
}
.cred-chip-value { font-weight: 600; font-size: var(--text-xs); color: var(--purple); }

.personal-box {
  background: var(--white);
  padding: 2.8rem; border-radius: 6px; border: 1px solid var(--rule);
}
.personal-box-title {
  font-family: var(--font-semi); font-size: var(--text-xs);
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 1.6rem;
}
.personal-items { display: flex; flex-direction: column; gap: 1.04rem; }
.personal-item { display: flex; gap: 0.75rem; align-items: flex-start; font-size: var(--text-xs); color: var(--text-mid); }
.personal-item-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--teal-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: var(--text-xs);
}

/* ── LOCATIONS ── */
#locations { background: var(--white); }
.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.2rem; margin-top: 5.6rem; }
.location-card {
  border: 1.5px solid var(--rule); border-radius: 8px; overflow: hidden;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.location-card:hover { box-shadow: 0 8px 32px rgba(46,26,71,0.1); border-color: var(--teal); }
.location-card-header {
  background: var(--purple); padding: 2.4rem 2.8rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.6rem;
}
.location-card-name {
  font-family: var(--font-head); font-weight: 800; font-size: var(--text-xs);
  text-transform: uppercase; color: var(--on-dark-primary); line-height: 1;
}
.location-type {
  font-family: var(--font-semi); font-size: var(--text-xs);
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--teal); color: var(--purple);
  padding: 0.48rem 1.12rem; border-radius: 2px; white-space: nowrap;
}
.location-card-body { padding: 2.8rem; }
.location-vibe {
  font-size: var(--text-xs); color: var(--text-mid); font-style: italic;
  margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--rule);
}
.location-detail {
  display: flex; gap: 1.04rem; align-items: flex-start;
  margin-bottom: 1.04rem; font-size: var(--text-xs); color: var(--text-mid);
}
.location-detail-icon { flex-shrink: 0; }
.location-tip {
  margin-top: 2rem; padding: 1.44rem 1.76rem;
  background: var(--teal-light); border-left: 3px solid var(--teal);
  font-size: var(--text-xs); color: var(--text-mid); border-radius: 0 4px 4px 0;
}
.location-no-mem {
  margin-top: 1.6rem; padding: 1.04rem;
  font-family: var(--font-semi); font-size: var(--text-xs);
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--teal-dark);
  background: rgba(21,122,145,0.07); border-radius: 4px;
}
.location-link {
  color: var(--purple);
  font-weight: 700; font-size: var(--text-xs);
  text-decoration: underline; text-underline-offset: 0.2em;
  transition: color 0.2s;
}
.location-link:hover { color: var(--teal); }

/* ── FAQ ── */
#faq { background: var(--off-white); }
.faq-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 9.6rem; align-items: start; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item:first-child { border-top: 1px solid var(--rule); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 2.24rem 0; gap: 1.6rem; cursor: pointer;
  font-family: var(--font-semi); font-weight: 600; font-size: var(--text-xs); color: var(--purple);
  user-select: none;
}
.faq-a {
  font-size: var(--text-xs); color: var(--text-mid);
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-a { max-height: 220px; padding-bottom: 2rem; }

/* ── CONTACT ── */
#contact {
  background: var(--purple);
  position: relative; overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute; top: -300px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(50,194,217,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.contact-inner {
  padding-top: 12.8rem; padding-bottom: 12.8rem;
  text-align: center;
}

.contact-methods {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5px; background: rgba(255,255,255,0.06);
  max-width: 900px; margin: 0 auto 6.4rem;
  border-radius: 8px; overflow: hidden;
}
.contact-method {
  background: var(--purple-deep); padding: 4rem 3.2rem;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  transition: background 0.2s;
}
.contact-method:hover { background: var(--purple-mid); }
.contact-method-icon {
  width: 56px; height: 56px;
  background: rgba(50,194,217,0.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-sm); margin-bottom: 2rem;
}
.contact-method-label {
  font-family: var(--font-semi); font-size: var(--text-xs);
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--on-dark-muted); margin-bottom: 0.8rem;
}
.contact-method-value {
  color: var(--white);
  font-weight: 700; font-size: var(--text-xs);
  text-decoration: underline; text-underline-offset: 0.2em;
  transition: color 0.2s;
}
.contact-method-value:hover { color: var(--teal); }
.contact-method-sub { font-size: var(--text-xs); color: var(--on-dark-muted); margin-top: 0.64rem; }

.contact-preferred {
  display: inline-flex; align-items: center; gap: 0.96rem;
  background: rgba(50,194,217,0.12); border: 1px solid rgba(50,194,217,0.25);
  padding: 1.6rem 3.2rem; border-radius: 6px;
  max-width: 600px; margin: 0 auto 3.5rem;
  font-size: var(--text-xs); color: var(--on-dark-secondary);
}
.contact-preferred strong { color: var(--teal); }

.discovery-callout {
  margin: 6.4rem auto 0;
  padding-top: 5.6rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 560px;
}
.discovery-callout-title {
  font-family: var(--font-head); font-weight: 800; font-size: var(--text-sm);
  text-transform: uppercase; color: var(--on-dark-primary); margin-bottom: 1.2rem;
}
.discovery-callout-body {
  font-size: var(--text-xs); color: var(--on-dark-secondary); line-height: 1.7; margin-bottom: 2.4rem;
}
.discovery-steps { display: flex; justify-content: center; gap: 3.2rem; flex-wrap: wrap; }
.discovery-step { display: flex; flex-direction: column; align-items: center; gap: 0.64rem; }
.discovery-step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--teal); color: var(--purple);
  font-family: var(--font-head); font-weight: 800; font-size: var(--text-xs);
  display: flex; align-items: center; justify-content: center;
}
.discovery-step-text { font-size: var(--text-xs); color: var(--on-dark-muted); text-align: center; max-width: 100px; }

/* ── FOOTER ── */
footer { background: var(--purple-deep); }
.footer-inner {
  padding-top: 3.2rem; padding-bottom: 3.2rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.6rem;
}
.footer-logo { display: flex; align-items: center; text-decoration: none; }
.footer-logo-img {
  height: 6.4rem; width: auto; display: block;
  opacity: 0.65; transition: opacity 0.2s;
}
.footer-logo:hover .footer-logo-img { opacity: 1; }
.footer-copy {
  font-family: var(--font-semi); font-size: var(--text-xs);
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--on-dark-muted);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible       { opacity: 1; transform: none; }
.reveal-delay-1       { transition-delay: 0.1s; }
.reveal-delay-2       { transition-delay: 0.2s; }

/* Reduced motion (WCAG 2.3.3) */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html    { scroll-behavior: auto; }
}

/* ── RESPONSIVE ── */
@media (max-width: 920px) {
  .nav-logo-img { height: 4.8rem; width: auto; display: block; }
  .nav-inner  { padding: 1.6rem 2.4rem; }
  .nav-links  { display: none; }
  .nav-menu-btn { display: inline-flex; align-items: center; }

  .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--purple);
    padding: 1.2rem 1.5rem 2rem;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 24px rgba(46,26,71,0.35);
    max-height: 0; overflow: hidden;
    opacity: 0; pointer-events: none;
    transition: max-height 0.35s ease, opacity 0.25s ease;
  }
  .nav-links.is-open { max-height: 400px; opacity: 1; pointer-events: auto; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { display: block; padding: 1.2rem 0; font-size: var(--text-sm); }

  .inner {
    padding: 7.2rem 2.4rem;
  }
  #strip .inner  { padding-top: 2rem; padding-bottom: 2rem; }
  #hero .inner   { grid-template-columns: 1fr; min-height: auto;}
  .hero-right    { padding: 6.4rem 0 3.2rem; }
  .hero-left     { padding: 6.4rem 0 3.2rem; }

  .who-grid,
  .approach-grid,
  .about-grid,
  .faq-layout         { grid-template-columns: 1fr; gap: 4.8rem; }
  .approach-sticky,
  .about-photo-wrap   { position: static; }

  .services-grid,
  .locations-grid,
  .contact-methods    { grid-template-columns: 1fr; }

  #contact .inner     { padding-top: 8rem; padding-bottom: 8rem; }
  .discovery-steps    { gap: 2.4rem; }

  footer .inner { flex-direction: column; text-align: center; }

  p, li,
  .section-lead, .hero-body, .about-body p,
  .pain-card-desc, .step-desc, .service-desc,
  .approach-callout p, .location-vibe, .faq-a,
  .hsa-body, .discovery-callout-body,
  .contact-method-sub, .not-for-list li, .who-quote {
    max-width: 100%;
  }
}