/*
Theme Name: 360therapy.care
Theme URI: https://360therapy.care
Author: Christian Gambardella
Description: Custom theme for 360therapy.care — Melanie Rosemberg, Miami telehealth therapy practice. EN-first (ES Phase 2). Ported from the delivered static design.
Version: 0.1.0
Requires PHP: 8.2
Text Domain: t360therapy
*/

/* ============================================================================
   Ported from the designer's static build (briefing/.../Melfiles). Single shared
   stylesheet (enqueued via get_stylesheet_uri). Do not introduce new colors.
   ============================================================================ */

:root {
  --bg: #F6F1E8;
  --bg-warm: #EFE6D6;
  --ink: #0F2E2C;
  --ink-soft: #2A4A47;
  --muted: #626F6C; /* darkened from #6B7A77 to meet WCAG AA (4.5:1) for small secondary text on cream */
  --teal: #1F4F4A;
  --teal-deep: #0F2E2C;
  --coral: #D97757;
  --coral-text: #B0461E; /* WCAG-AA accent text on light (cream) bgs; --coral stays for fills/icons/dark */
  --coral-soft: #E8A88A;
  --cream: #FBF7EE;
  --line: #D9CFBD;
  --font-heading: 'Hedvig Letters Serif', Georgia, serif;
  --font-body: 'Hanken Grotesk', system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.display {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.02;
}
.display em {
  font-style: normal;
  color: var(--coral-text);
}
/* On dark (teal) sections the darker accent text would lose contrast — use the soft coral. */
.block.difference em, .cta-final em { color: var(--coral-soft); }
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* NAV */
nav.site-nav {
  padding: 28px 0;
  border-bottom: 1px solid rgba(15,46,44,0.08);
  position: sticky; top: 0; background: rgba(246,241,232,0.92);
  backdrop-filter: blur(12px); z-index: 100;
}
/* Sticky nav is ~113px tall (desktop) / ~84px (mobile): give every in-page anchor
   target enough scroll offset that the nav doesn't cover the section heading. */
:where([id]) { scroll-margin-top: 130px; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo {
  display: flex; align-items: center;
  text-decoration: none;
}
.logo-img { height: 56px; width: auto; display: block; }
.nav-links { display: flex; gap: 36px; align-items: center; font-size: 15px; }
.nav-links a { color: var(--ink-soft); text-decoration: none; transition: color .2s; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--coral-text); }
/* the Call CTA is an <a class="btn"> inside .nav-links — keep its label cream on the dark/coral fill
   (otherwise .nav-links a's dark color wins on specificity → dark-on-dark) */
.nav-links a.btn, .nav-links a.btn:hover, .nav-links a.btn[aria-current="page"] { color: var(--cream); }

.btn {
  display: inline-block; padding: 14px 26px;
  background: var(--teal-deep); color: var(--cream);
  border-radius: 999px; font-size: 15px; font-weight: 500;
  text-decoration: none; transition: all .25s ease;
  border: none; cursor: pointer;
}
.btn:hover { background: var(--coral-text); transform: translateY(-1px); }
.btn-secondary {
  background: transparent; color: var(--teal-deep);
  border: 1px solid var(--teal-deep);
}
.btn-secondary:hover { background: var(--teal-deep); color: var(--cream); }

/* MOBILE NAV TOGGLE */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  padding: 0;
}
.nav-toggle span {
  display: block; width: 18px; height: 1.5px;
  background: var(--teal-deep); border-radius: 2px;
  transition: all .25s ease;
}
.mobile-menu { display: none; }
.mobile-brand { display: none; }

/* HERO (page-level) */
.page-hero {
  padding: 80px 0 60px;
  position: relative;
}
.page-hero .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--coral-text); font-weight: 500; margin-bottom: 24px;
}
.page-hero .eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--coral);
}
.page-hero h1 {
  font-size: clamp(40px, 5.5vw, 68px);
  margin-bottom: 24px; max-width: 880px;
}
.page-hero p.lede {
  font-size: 19px; line-height: 1.55; color: var(--ink-soft);
  margin-bottom: 36px; max-width: 640px;
}
.page-hero .hero-quote {
  font-family: var(--font-heading); font-size: 19px; line-height: 1.4;
  letter-spacing: -0.01em; color: var(--teal-deep);
  max-width: 640px; margin: -10px 0 32px;
}
.page-hero .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* BREADCRUMBS */
.breadcrumb {
  padding: 24px 0 0;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.breadcrumb li { display: flex; align-items: center; gap: 6px; }
.breadcrumb li::after { content: "/"; color: var(--line); margin-left: 6px; }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--coral-text); }
.breadcrumb li[aria-current="page"] { color: var(--ink); }

/* SECTIONS */
section.block { padding: 100px 0; }
/* Pull-quote blocks comment on the section above — no own top padding, so the gap is one
   section rhythm, not two. Outranks the shorthand resets in the media queries. */
section.block.block-quote { padding-top: 0; }
.section-eyebrow {
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--coral-text); font-weight: 500; margin-bottom: 20px;
}
.section-title {
  font-size: clamp(32px, 4.2vw, 48px);
  max-width: 800px;
  margin-bottom: 22px;
}
.section-lede {
  font-size: 18px; color: var(--ink-soft); max-width: 640px;
  line-height: 1.55;
}
/* Multi-sentence titles: one sentence per line, all devices (t360_title_lines).
   balance keeps sentences that still wrap from orphaning their last word. */
.title-line { display: block; text-wrap: balance; }

/* CARDS */
.card-grid {
  display: grid; gap: 28px; margin-top: 56px;
}
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px 32px;
  transition: all .3s ease;
  text-decoration: none;
  color: var(--ink);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(15,46,44,0.08); }
.card h3 {
  font-family: var(--font-heading);
  font-size: 26px; font-weight: 400;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.card p { font-size: 15px; color: var(--ink-soft); line-height: 1.55; flex: 1; }
.card .card-link {
  margin-top: 22px; font-size: 14px; color: var(--coral-text);
  font-weight: 500; letter-spacing: 0.02em;
  display: inline-flex; align-items: center; gap: 6px;
}

/* CONTENT BLOCK (prose) */
.prose {
  max-width: 720px;
}
.prose p {
  font-size: 17px; line-height: 1.7;
  color: var(--ink-soft); margin-bottom: 22px;
}
.prose h2, .prose h3 {
  font-family: var(--font-heading);
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-top: 40px; margin-bottom: 16px;
  line-height: 1.15;
}
.prose h2 { font-size: 32px; font-weight: 400; }
.prose h3 { font-size: 24px; font-weight: 500; }
.prose ul { margin: 16px 0 22px 24px; }
.prose li { font-size: 17px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 8px; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { color: var(--coral-text); }

/* TWO-COL LAYOUT */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
/* Flip variant: swap columns visually on desktop only — DOM order stays text-first,
   so the stacked tablet/mobile layout keeps the photo below the text. */
@media (min-width: 961px) {
  .two-col-flip > :first-child { order: 2; }
}

/* PULL QUOTE */
.pull-quote {
  font-family: var(--font-heading);
  font-style: normal;
  font-size: 22px;
  line-height: 1.4;
  color: var(--teal-deep);
  border-left: 2px solid var(--coral);
  padding-left: 24px;
  margin: 32px 0;
}

/* PRICING / FEES */
.price-grid {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.price-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px 32px;
  position: relative;
  display: flex; flex-direction: column;
}
.price-card.featured {
  background: var(--teal-deep);
  color: var(--cream);
  border-color: var(--teal-deep);
  transform: translateY(-10px);
}
.price-card.featured .price-label { color: var(--coral-soft); }
.price-card.featured .price-desc { color: rgba(251,247,238,0.75); }
.price-card.featured li { color: rgba(251,247,238,0.9); border-bottom-color: rgba(251,247,238,0.1); }
.price-card.featured .check-mark { background: var(--coral); }
.featured-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--coral-text); color: var(--cream);
  padding: 6px 16px; border-radius: 999px;
  white-space: nowrap; /* abs+left:50% halves the shrink-to-fit width — without this the badge wraps on phones and overlaps the tier label */
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 500;
}
.price-label {
  font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--coral-text);
  margin-bottom: 12px;
}
.price-amount {
  font-family: var(--font-heading);
  font-size: 52px; font-weight: 400;
  line-height: 1; margin-bottom: 6px;
}
.price-amount sup { font-size: 22px; vertical-align: top; margin-right: 2px; }
.price-amount sub { font-size: 15px; color: var(--muted); font-family: var(--font-body); font-weight: 400; }
.price-card.featured .price-amount sub { color: rgba(251,247,238,0.6); }
.price-desc { font-size: 14px; color: var(--ink-soft); margin-bottom: 24px; line-height: 1.5; }
.price-card ul { list-style: none; flex: 1; margin-bottom: 24px; }
.price-card li {
  padding: 11px 0; font-size: 14px; line-height: 1.5;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: flex-start; gap: 10px;
}
.price-card li:last-child { border-bottom: none; }
.check-mark {
  flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%;
  background: var(--teal); color: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; margin-top: 2px;
}
.price-card.waitlist {
  background: linear-gradient(135deg, #FBF7EE 0%, #F0E5D2 100%);
  border: 1px solid var(--coral);
}
.waitlist-badge {
  position: absolute; top: -14px; right: 24px;
  background: var(--teal-deep); color: var(--cream);
  padding: 6px 14px; border-radius: 999px;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 500;
}

/* FAQ */
.faq-list { margin-top: 56px; max-width: 880px; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
  cursor: pointer;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-heading);
  font-size: 21px; font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.faq-toggle {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-left: 24px;
  transition: all .3s ease;
  color: var(--teal-deep);
}
.faq-item.open .faq-toggle {
  background: var(--coral-text); color: var(--cream); border-color: var(--coral);
  transform: rotate(45deg);
}
.faq-a {
  font-size: 16px; color: var(--ink-soft); line-height: 1.65;
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding-top .4s ease;
}
.faq-item.open .faq-a {
  max-height: 600px; padding-top: 18px;
}

/* CTA FINAL */
.cta-final {
  padding: 120px 0;
  background: var(--teal-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: ""; position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,119,87,0.25) 0%, transparent 70%);
  top: -200px; right: -200px;
}
.cta-content {
  max-width: 820px; margin: 0 auto; text-align: center;
  position: relative; z-index: 2;
}
.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400; line-height: 1.05;
  margin-bottom: 24px; letter-spacing: -0.02em;
}
.cta-content h2 em { font-style: normal; color: var(--coral-soft); }
.cta-content p {
  font-size: 18px; color: rgba(251,247,238,0.8);
  margin-bottom: 36px; line-height: 1.55;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; align-items: center; flex-wrap: wrap; }
.cta-final .btn { background: var(--cream); color: var(--teal-deep); }
.cta-final .btn:hover { background: var(--coral-text); color: var(--cream); }
.cta-final .btn-secondary { background: transparent; color: var(--cream); border-color: var(--cream); }
.cta-final .btn-secondary:hover { background: var(--cream); color: var(--teal-deep); }

/* FOOTER */
footer.site-footer {
  padding: 64px 0 32px;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-grid h2 {
  font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 16px; font-weight: 600;
}
.footer-grid a, .footer-grid p {
  color: var(--ink-soft); text-decoration: none;
  font-size: 15px; line-height: 1.9; display: block;
}
.footer-grid a:hover { color: var(--coral-text); }
.footer-tagline {
  font-family: var(--font-heading);
  font-size: 18px; color: var(--ink-soft); line-height: 1.4;
  margin: 16px 0; max-width: 320px;
}
.footer-bottom {
  padding-top: 32px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--muted);
}
.social-icons { display: flex; gap: 14px; margin-top: 16px; }
.social-icons a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--line); border-radius: 50%;
  color: var(--ink-soft);
}
.social-icons a:hover { color: var(--coral-text); border-color: var(--coral-text); }

/* Subtle entrance animations */
.fade-up { opacity: 0; transform: translateY(30px); transition: all .9s cubic-bezier(.2,.7,.3,1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Decorative grain */
body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
  opacity: 0.07; z-index: 9999; mix-blend-mode: multiply;
}

/* SR-only & skip link */
.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;
}
.skip-link {
  position: absolute; top: -100px; left: 0;
  background: var(--teal-deep); color: var(--cream);
  padding: 12px 20px; text-decoration: none;
  border-radius: 0 0 8px 0; z-index: 9999; font-size: 14px;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }
a:focus-visible, button:focus-visible, .faq-q:focus-visible {
  outline: 2px solid var(--coral); outline-offset: 3px; border-radius: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .card-grid.cols-3, .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 48px; } /* 2-up on tablets; phones (768px) stack */
  .two-col { grid-template-columns: 1fr; gap: 56px; }
  .price-card.featured { transform: none; }
  section.block, .cta-final { padding: 80px 0; }
  .page-hero { padding: 60px 0 48px; }
}
@media (max-width: 768px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  nav.site-nav { padding: 18px 0; }
  .logo-img { height: 46px; }
  .mobile-menu {
    display: block; position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg); z-index: 200;
    padding: 80px 24px 32px;
    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto;
  }
  .mobile-menu.open { transform: translateX(0); }
  .mobile-menu a {
    display: block; padding: 18px 0;
    font-family: var(--font-heading);
    font-size: 24px; color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--line);
  }
  .mobile-menu .btn {
    margin-top: 28px; display: block; text-align: center;
    color: var(--cream);
    font-size: 16px; padding: 16px 26px;
    color: var(--cream); border-bottom: 0;
  }
  .mobile-menu .btn:hover { color: var(--cream); }
  .mobile-menu-close {
    position: absolute; top: 22px; right: 20px;
    width: 40px; height: 40px;
    background: transparent; border: 1px solid var(--line);
    border-radius: 50%; font-size: 22px; color: var(--ink);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
  }
  /* Brand mirror: pinned (fixed, not in the sliding panel) over the header
     logo's exact position, faded in while the menu is open. Because it never
     moves, the logo doesn't slide/jump when the overlay opens. left tracks the
     container padding per breakpoint (20px here, 16px ≤480 below). */
  .mobile-brand {
    display: flex; align-items: center;
    position: fixed; top: 18px; left: 20px; z-index: 201;
    opacity: 0; pointer-events: none;
    transition: opacity .15s ease;
  }
  #mobile-menu.open ~ .mobile-brand { opacity: 1; }
  .page-hero { padding: 40px 0 48px; }
  .page-hero h1 { font-size: clamp(32px, 8vw, 44px); margin-bottom: 20px; }
  .page-hero p.lede { font-size: 16px; margin-bottom: 28px; }
  .page-hero .hero-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .page-hero .hero-actions .btn { text-align: center; width: 100%; }
  section.block { padding: 64px 0; }
  .section-title { font-size: clamp(26px, 6vw, 36px); }
  .section-lede { font-size: 16px; }
  .card-grid.cols-2, .card-grid.cols-3, .card-grid.cols-4 { grid-template-columns: 1fr; }
  .card { padding: 28px 24px; }
  .card h3 { font-size: 22px; }
  .price-grid { gap: 24px; }
  .price-card { padding: 28px 24px; }
  .price-amount { font-size: 40px; }
  .faq-q { font-size: 17px; line-height: 1.3; }
  .faq-toggle { width: 28px; height: 28px; margin-left: 14px; }
  .faq-a { font-size: 15px; }
  .cta-final { padding: 64px 0; }
  .cta-final::before { width: 360px; height: 360px; top: -120px; right: -120px; }
  .cta-content h2 { font-size: clamp(26px, 6vw, 38px); margin-bottom: 18px; }
  .cta-content p { font-size: 15px; margin-bottom: 24px; }
  .cta-actions { flex-direction: column; gap: 12px; width: 100%; }
  .cta-actions .btn { width: 100%; text-align: center; }
  footer.site-footer { padding: 48px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; text-align: left; font-size: 12px; }
  .footer-tagline { font-size: 16px; }
  .breadcrumb { font-size: 12px; padding: 18px 0 0; }
  .pull-quote { font-size: 18px; padding-left: 18px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .mobile-brand { left: 16px; }  /* track the 16px container padding at this breakpoint */
  nav.site-nav .btn { font-size: 13px; padding: 10px 16px; }
  .page-hero h1 { font-size: 30px; }
  .price-amount { font-size: 36px; }
  .card { padding: 24px 20px; }
}
@media (hover: none) and (pointer: coarse) {
  .btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; }
  .faq-item { padding: 22px 0; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-up { opacity: 1; transform: none; }
}

/* ============ SERVICES HUB / SERVICE PAGES (from the per-page shared CSS) ============ */

/* Dark "clinical philosophy" section */
.block.difference { background: var(--teal-deep); color: var(--cream); }
.block.difference .section-title  { color: var(--cream); }
.block.difference .section-eyebrow { color: var(--coral-soft); }
.block.difference .section-lede   { color: rgba(251,247,238,0.8); }
.approach-grid { margin-top: 64px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* Service cards (richer than .card — icon + animated top border) */
.services-grid { margin-top: 64px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  display: block; text-decoration: none; color: inherit;
  background: var(--cream); border: 1px solid var(--line); border-radius: 18px;
  padding: 36px 32px; transition: all .3s ease; position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--coral); transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(15,46,44,0.1); border-color: var(--coral); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-family: var(--font-heading); font-size: 36px; color: var(--coral-text); margin-bottom: 18px; line-height: 1; }
.service-card h3 { font-family: var(--font-heading); font-size: 26px; font-weight: 400; line-height: 1.15; margin-bottom: 14px; letter-spacing: -0.01em; color: var(--ink); }
.service-card p { font-size: 15px; line-height: 1.55; color: var(--ink-soft); margin-bottom: 20px; }
.service-link { font-size: 14px; font-weight: 500; color: var(--coral-text); letter-spacing: 0.02em; }
.service-card-cta { background: var(--teal-deep); color: var(--cream); border-color: var(--teal-deep); }
.service-card-cta h3 { color: var(--cream); }
.service-card-cta p { color: rgba(251,247,238,0.8); }
.service-card-cta .service-icon { color: var(--coral-soft); }
.service-card-cta .service-link { color: var(--coral-soft); }

@media (max-width: 960px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) { .approach-grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; gap: 18px; } .service-card { padding: 28px 24px; } }

/* ============ SERVICE DETAIL PAGES (shared components) ============ */

/* Hero trust badges */
.hero-trust { margin-top: 56px; display: flex; gap: 14px 40px; align-items: center; font-size: 14px; color: var(--muted); flex-wrap: wrap; } /* row-gap 14px: wrapped badge rows sit close */
.hero-trust > div { display: flex; align-items: center; gap: 10px; }
.check {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--teal); display: inline-flex; align-items: center; justify-content: center;
  color: var(--cream); font-size: 11px; flex-shrink: 0;
}

/* "What it feels like" stat cards */
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 64px; }
.stat-card { padding: 40px 32px; background: var(--cream); border-radius: 16px; border: 1px solid var(--line); position: relative; overflow: hidden; }
.stat-num { font-family: var(--font-heading); font-size: 72px; font-weight: 400; color: var(--teal-deep); line-height: 1; margin-bottom: 8px; font-variation-settings: "opsz" 144, "SOFT" 50; }
.stat-num em { color: var(--coral-text); font-style: normal; }
.stat-label { font-size: 16px; color: var(--ink-soft); line-height: 1.5; }
.stat-source { font-size: 12px; color: var(--muted); margin-top: 16px; font-style: normal; }

/* Clinical-method grid (4 cards, dark section) — distinct from the hub's 3-card .approach-grid */
.method-grid { margin-top: 72px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.method-card { padding: 36px 32px; background: rgba(251,247,238,0.04); border: 1px solid rgba(251,247,238,0.1); border-radius: 16px; }
.method-num { font-family: var(--font-heading); font-size: 14px; color: var(--coral-soft); letter-spacing: 0.08em; margin-bottom: 18px; }
.method-card h3 { font-family: var(--font-heading); font-size: 24px; font-weight: 400; color: var(--cream); margin-bottom: 14px; line-height: 1.2; }
.method-card p { font-size: 15px; line-height: 1.6; color: rgba(251,247,238,0.82); }

/* "Who we work with" grid */
.who-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.who-card { padding: 32px 28px; background: var(--cream); border: 1px solid var(--line); border-radius: 14px; }
.who-card h3 { font-family: var(--font-heading); font-size: 22px; font-weight: 400; color: var(--ink); margin-bottom: 12px; letter-spacing: -0.01em; }
.who-card p { font-size: 14px; line-height: 1.55; color: var(--ink-soft); }

/* Centered testimonial band */
.testimonial { padding: 140px 0; }
.testimonial-content { max-width: 880px; margin: 0 auto; text-align: center; }
.testimonial blockquote { font-family: var(--font-heading); font-size: clamp(28px, 3.5vw, 42px); font-weight: 400; line-height: 1.25; color: var(--ink); margin-bottom: 40px; letter-spacing: -0.01em; }
.testimonial blockquote::before { content: "\201C"; color: var(--coral); }
.testimonial blockquote::after { content: "\201D"; color: var(--coral); }
.testimonial-attr { font-size: 14px; color: var(--muted); letter-spacing: 0.04em; display: flex; align-items: center; justify-content: center; gap: 14px; }
.testimonial-attr::before, .testimonial-attr::after { content: ""; width: 32px; height: 1px; background: var(--line); }

@media (max-width: 960px) { .who-grid { grid-template-columns: repeat(2, 1fr); } .problem-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) {
  .hero-trust { flex-direction: column; gap: 14px; align-items: flex-start; margin-top: 40px; }
  .problem-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 40px; }
  .stat-card { padding: 28px 24px; }
  .method-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 48px; }
  .method-card { padding: 28px 24px; }
  .testimonial { padding: 64px 0; }
}
@media (max-width: 540px) { .who-grid { grid-template-columns: 1fr; gap: 16px; } }

/* ============ FEES PAGE ============ */
.pricing { background: var(--bg-warm); }
/* COLLEGE — campus-vs-founder comparison */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 980px; margin: 0 auto; }
.compare-col { border-radius: 16px; padding: 36px 32px; border: 1px solid var(--line); }
.compare-con { background: var(--cream); }
.compare-pro { background: var(--teal-deep); border-color: var(--teal-deep); }
.compare-col h3 { font-family: var(--font-heading); font-weight: 400; font-size: 22px; letter-spacing: -0.01em; margin-bottom: 20px; line-height: 1.2; }
.compare-con h3 { color: var(--ink); }
.compare-pro h3 { color: var(--cream); }
.compare-col ul { list-style: none; }
.compare-col li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; line-height: 1.5; padding: 13px 0; border-bottom: 1px solid; }
.compare-con li { color: var(--ink-soft); border-bottom-color: var(--line); }
.compare-pro li { color: rgba(251,247,238,0.92); border-bottom-color: rgba(251,247,238,0.12); }
.compare-col li:last-child { border-bottom: none; }
.compare-x { color: var(--muted); font-size: 19px; line-height: 1.3; flex-shrink: 0; }
.compare-check { color: var(--coral-soft); font-size: 15px; line-height: 1.5; flex-shrink: 0; }
@media (max-width: 760px) { .compare { grid-template-columns: 1fr; gap: 16px; } }

.steps { margin-top: 80px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.step { position: relative; padding-top: 32px; }
.step-num { font-family: var(--font-heading); font-size: 14px; color: var(--coral-text); letter-spacing: 0.08em; margin-bottom: 16px; font-weight: 500; }
.step h3 { font-family: var(--font-heading); font-size: 24px; font-weight: 400; line-height: 1.15; margin-bottom: 14px; letter-spacing: -0.01em; }
.step p { font-size: 15px; color: var(--ink-soft); line-height: 1.55; }
/* Boxed variant (college page): give each step the same card treatment as the panels below */
/* Desktop: label/title/body share row heights across the whole steps row
   (subgrid), so every paragraph starts at the same height even when one
   title wraps to two lines. */
@media (min-width: 961px) {
  .step { display: grid; grid-template-rows: subgrid; grid-row: span 3; align-content: start; }
}
.steps-boxed .step { padding: 32px 28px; background: var(--cream); border: 1px solid var(--line); border-radius: 16px; transition: transform .3s ease, box-shadow .3s ease; }
.steps-boxed .step:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(15,46,44,0.08); }
.ins-logo { font-family: var(--font-heading); font-size: 14px; color: var(--teal-deep); text-align: center; padding: 24px 12px; background: var(--bg); border-radius: 10px; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; min-height: 78px; line-height: 1.2; font-weight: 500; }
@media (max-width: 960px) {
  .steps { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .insurance-logos { grid-template-columns: repeat(4, 1fr) !important; }
}
@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr; gap: 32px; margin-top: 56px; }
  .pricing-extras { grid-template-columns: 1fr !important; gap: 16px; margin-top: 40px !important; }
  .insurance-logos { grid-template-columns: repeat(3, 1fr) !important; }
  .insurance-options { grid-template-columns: 1fr !important; }
}

/* ============ CONTACT PAGE ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 80px; align-items: start; }
.contact-method { padding: 22px 0; border-bottom: 1px solid var(--line); }
.contact-method-label { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; font-weight: 500; }
.contact-method-value { display: block; font-family: var(--font-heading); font-size: 28px; font-weight: 400; color: var(--ink); text-decoration: none; letter-spacing: -0.01em; line-height: 1.2; }
a.contact-method-value:hover { color: var(--coral-text); }
.contact-method-desc { font-size: 14px; color: var(--ink-soft); line-height: 1.55; margin-top: 6px; }
.contact-form-card { background: var(--cream); border: 1px solid var(--line); border-radius: 18px; padding: 44px 40px; box-shadow: 0 20px 60px rgba(15,46,44,0.06); }
/* Contact: mailto/tel buttons (on-site form removed 2026-06-20 — phone/email only) */
.contact-cta-actions { display: flex; flex-direction: column; gap: 12px; }
.contact-cta-actions .btn { width: 100%; text-align: center; }
.crisis-lines a { color: var(--coral-text); text-decoration: none; }
.crisis-lines a:hover { text-decoration: underline; }
@media (max-width: 960px) { .contact-grid { grid-template-columns: 1fr; gap: 60px; } }
@media (max-width: 540px) { .contact-form-card { padding: 32px 24px; } .contact-method-value { font-size: 24px; } }

/* ============ ABOUT-US PAGE ============ */
.team-tiers { margin-top: 72px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.tier-card { background: rgba(251,247,238,0.04); border: 1px solid rgba(251,247,238,0.12); border-radius: 18px; padding: 38px 32px; display: flex; flex-direction: column; }
.tier-card.tier-featured { background: var(--cream); color: var(--ink); border: none; box-shadow: 0 30px 80px rgba(0,0,0,0.2); transform: translateY(-12px); }
.tier-label { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral-soft); margin-bottom: 14px; font-weight: 500; }
.tier-card.tier-featured .tier-label { color: var(--coral-text); }
.tier-card h3 { font-family: var(--font-heading); font-size: 24px; font-weight: 400; color: var(--cream); margin-bottom: 14px; line-height: 1.2; letter-spacing: -0.01em; }
.tier-card.tier-featured h3 { color: var(--ink); }
.tier-desc { font-size: 14px; line-height: 1.55; color: rgba(251,247,238,0.78); margin-bottom: 22px; }
.tier-card.tier-featured .tier-desc { color: var(--ink-soft); }
.tier-list { list-style: none; padding: 0; margin-bottom: 24px; flex: 1; }
.tier-list li { font-size: 14px; line-height: 1.5; color: rgba(251,247,238,0.9); padding: 8px 0 8px 22px; border-bottom: 1px solid rgba(251,247,238,0.08); position: relative; }
.tier-card.tier-featured .tier-list li { color: var(--ink); border-bottom-color: var(--line); }
.tier-list li::before { content: "\2713"; position: absolute; left: 0; top: 8px; color: var(--coral-soft); font-size: 13px; }
.tier-card.tier-featured .tier-list li::before { color: var(--coral); }
.tier-list li:last-child { border-bottom: none; }
.tier-link { font-size: 14px; font-weight: 500; color: var(--coral-soft); text-decoration: none; letter-spacing: 0.02em; }
.tier-card.tier-featured .tier-link { color: var(--coral-text); }

.diff-grid { margin-top: 64px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 40px; }
.diff-mark { font-family: var(--font-heading); font-size: 14px; color: var(--coral-text); letter-spacing: 0.08em; margin-bottom: 12px; font-weight: 500; }
.diff-item h3 { font-family: var(--font-heading); font-size: 22px; font-weight: 400; margin-bottom: 12px; color: var(--ink); letter-spacing: -0.01em; line-height: 1.2; }
.diff-item p { font-size: 15px; line-height: 1.6; color: var(--ink-soft); }
@media (max-width: 960px) { .team-tiers { grid-template-columns: 1fr; gap: 24px; margin-top: 48px; } .tier-card.tier-featured { transform: none; } }
@media (max-width: 768px) { .diff-grid { grid-template-columns: 1fr; gap: 28px; margin-top: 48px; } }

/* ============ ABOUT-MELANIE (bio) ============ */
.hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 80px; align-items: center; }
.melanie-hero-grid { gap: 60px; align-items: center; }
/* portrait left / text right from tablet up (double class outranks the
   stacked .hero-grid rules in the max-960 block); phones keep text first */
@media (min-width: 768px) {
  .hero-grid.melanie-hero-grid { grid-template-columns: 1fr 1.15fr; }
  .melanie-hero-grid > .fade-up:first-child { order: 2; }
  .hero-grid.melanie-hero-grid .founder-portrait { margin: 0 auto 0 0 !important; max-width: 420px !important; }
}
@media (min-width: 768px) and (max-width: 960px) {
  .hero-grid.melanie-hero-grid { gap: 40px; grid-template-columns: 0.8fr 1.2fr; }
}
.founder-portrait { position: relative; aspect-ratio: 0.85; max-width: 460px; width: 100%; }
.founder-portrait .frame-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #2A6964 0%, #0F2E2C 100%); border-radius: 16px; transform: rotate(-2deg); }
.founder-portrait .frame-accent {
  position: absolute; top: -22px; right: -22px; width: 116px; height: 116px;
  border: 1.5px solid var(--coral); border-radius: 50%; background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-style: normal; font-size: 14px; text-align: center;
  line-height: 1.25; color: var(--teal-deep); padding: 14px; box-shadow: 0 8px 24px rgba(15,46,44,0.1); z-index: 3;
}
.founder-portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 14px; box-shadow: 0 30px 70px rgba(15,46,44,0.18); z-index: 2; }
.founder-portrait .signature { position: absolute; bottom: -32px; left: 32px; background: var(--cream); border: 1px solid var(--line); padding: 18px 24px; border-radius: 12px; z-index: 4; box-shadow: 0 20px 50px rgba(15,46,44,0.1); }
.founder-portrait .signature .name { font-family: var(--font-heading); font-size: 22px; color: var(--ink); line-height: 1; margin-bottom: 4px; }
.founder-portrait .signature .creds { font-size: 12px; color: var(--muted); letter-spacing: 0.05em; }
.founder-credentials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 32px; margin: 32px 0; padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.founder-cred { font-size: 14px; color: var(--ink-soft); display: flex; align-items: flex-start; gap: 10px; }
.founder-cred strong { font-family: var(--font-heading); font-weight: 500; color: var(--ink); font-size: 16px; }
.founder-pullquote { font-family: var(--font-heading); font-style: normal; font-size: 22px; line-height: 1.4; color: var(--teal-deep); border-left: 2px solid var(--coral); padding-left: 24px; }
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .melanie-hero-grid { grid-template-columns: 1fr; gap: 80px; }
  /* extra bottom space so the overhanging signature card + its shadow clear the next section */
  .melanie-hero-grid .founder-portrait { margin: 0 auto 56px !important; max-width: 360px !important; }
  .founder-credentials { grid-template-columns: 1fr; }
}

/* On narrow phones the portrait fills the column, so the badge's -22px outset
   pokes past the viewport (~6px horizontal scroll). Pull it inside. */
@media (max-width: 440px) {
  .founder-portrait .frame-accent { right: 0; top: -18px; }
}

/* ============ LEGAL PAGES (privacy, good-faith-estimate) ============ */
/* Cream-on-cream, no summary band, so the hero-bottom + section-top padding read
   as one big empty gap — pull the body up under the hero to tighten it. */
/* About-Melanie long-form bio — legal-page-style formatting */
.bio-subhead { font-family: var(--font-heading); font-size: 24px; font-weight: 400; color: var(--ink); margin: 44px 0 14px; letter-spacing: -0.01em; line-height: 1.2; }
.section-title + .bio-subhead { margin-top: 8px; }
.bio-para { font-size: 17px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 18px; }
.bio-list { margin: 0 0 22px; padding-left: 22px; }
.bio-list li { font-size: 17px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 8px; }

section.legal-body { margin-top: -32px; }
.legal-body h2 { font-family: var(--font-heading); font-size: 26px; font-weight: 400; color: var(--ink); margin: 48px 0 16px; letter-spacing: -0.01em; line-height: 1.2; }
.legal-body p { font-size: 16px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 16px; }
.legal-body ul { margin: 16px 0 24px; padding-left: 22px; }
.legal-body li { font-size: 16px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 8px; }
.legal-body strong { color: var(--ink); font-weight: 600; }
.legal-body a { color: var(--coral-text); }
@media (max-width: 600px) { .legal-body h2 { font-size: 22px; margin-top: 36px; } .legal-body p, .legal-body li { font-size: 15px; } }

/* ============ OUR CLINICAL TEAM (Briefing #2) ============ */
.team { background: var(--bg); }

/* Matching-model bar */
.model-bar { background: var(--bg-warm); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.model-bar .container { padding-top: 56px; padding-bottom: 56px; }
.model-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.model-item { display: flex; flex-direction: column; gap: 10px; }
.model-item .num { font-family: var(--font-heading); font-size: 15px; color: var(--coral-text); letter-spacing: 0.08em; font-weight: 500; }
.model-item h3 { font-family: var(--font-heading); font-size: 22px; font-weight: 400; letter-spacing: -0.01em; line-height: 1.15; }
.model-item p { font-size: 15px; color: var(--ink-soft); line-height: 1.55; }

/* Founder anchor (wide card above the grid) */
.founder-anchor { margin-top: 56px; max-width: 775px; background: var(--cream); border: 1px solid var(--line); border-radius: 22px; overflow: hidden; display: grid; grid-template-columns: 0.9fr 1.1fr; position: relative; }
.founder-anchor .fa-photo { position: relative; background: var(--bg-warm); overflow: hidden; }
.founder-anchor .fa-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* portrait headshot (933x1400): keep the crop anchored on the face */
  object-position: 50% 22%;
  display: block;
}
.founder-anchor .fa-body { padding: 48px 52px; display: flex; flex-direction: column; justify-content: center; }
.founder-anchor .fa-tag { display: inline-block; align-self: flex-start; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream); background: var(--coral); padding: 6px 14px; border-radius: 999px; margin-bottom: 20px; font-weight: 500; }
.founder-anchor h3 { font-family: var(--font-heading); font-size: clamp(30px, 3.4vw, 40px); font-weight: 400; letter-spacing: -0.01em; line-height: 1.05; margin-bottom: 6px; }
.founder-anchor .fa-creds { font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--coral-text); font-weight: 500; margin-bottom: 22px; }
.founder-anchor .fa-body p { font-size: 16px; line-height: 1.65; color: var(--ink-soft); margin-bottom: 16px; }
.founder-anchor .fa-spec { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 10px; margin: 8px 0 24px; padding: 0; }
.founder-anchor .fa-spec li { font-size: 13px; color: var(--ink-soft); display: flex; align-items: center; gap: 7px; }
.founder-anchor .fa-spec li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--coral); flex-shrink: 0; }
.founder-anchor .fa-link { align-self: flex-start; font-size: 14px; font-weight: 500; color: var(--coral-text); text-decoration: none; letter-spacing: 0.02em; }
.founder-anchor .fa-link:hover { color: var(--teal-deep); }

/* Clinician grid */
.clinician-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 26px; }
.clinician-card { background: var(--cream); border: 1px solid var(--line); border-radius: 20px; padding: 40px 36px; display: flex; flex-direction: column; position: relative; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.clinician-card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(15,46,44,0.1); }
.clinician-photo { width: 100%; aspect-ratio: 5 / 6; border-radius: 14px; overflow: hidden; margin-bottom: 22px; position: relative; background: var(--bg-warm); }
.clinician-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.clinician-head { margin-bottom: 18px; }
.clinician-name { font-family: var(--font-heading); font-size: 27px; font-weight: 400; letter-spacing: -0.01em; line-height: 1.05; color: var(--ink); }
.clinician-creds { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--coral-text); margin-top: 6px; font-weight: 500; }
.clinician-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.meta-tag { font-size: 12px; letter-spacing: 0.02em; padding: 5px 12px; border-radius: 999px; background: var(--bg-warm); color: var(--ink-soft); border: 1px solid var(--line); }
.clinician-bio { font-size: 15px; line-height: 1.6; color: var(--ink-soft); margin-bottom: 24px; }
.clinician-spec-label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: auto; margin-bottom: 12px; font-weight: 600; }
.clinician-spec { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 10px; padding: 0; }
.clinician-spec li { font-size: 13px; color: var(--ink-soft); display: flex; align-items: center; gap: 7px; }
.clinician-spec li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--coral); flex-shrink: 0; }

/* Match note */
.match-note { background: var(--cream); border: 1px solid var(--line); border-radius: 18px; padding: 36px 40px; margin-top: 56px; display: flex; align-items: flex-start; gap: 20px; }
.match-note .icon { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; background: var(--teal); color: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.match-note h3 { font-family: var(--font-heading); font-size: 22px; font-weight: 400; margin-bottom: 8px; letter-spacing: -0.01em; }
.match-note p { font-size: 15px; line-height: 1.6; color: var(--ink-soft); }

/* Rationale band (dark) */
.rationale { background: var(--teal-deep); color: var(--cream); }
.rationale .container { max-width: 880px; text-align: center; }
.rationale .section-eyebrow { color: var(--coral-soft); }
.rationale h2 { font-family: var(--font-heading); font-size: clamp(30px, 4vw, 46px); font-weight: 400; line-height: 1.08; letter-spacing: -0.01em; margin: 0 auto 24px; }
.rationale h2 em { font-style: normal; color: var(--coral-soft); }
.rationale p { font-size: 17px; line-height: 1.65; color: rgba(251,247,238,0.82); margin: 0 auto 20px; max-width: 680px; }
.rationale .btn { background: var(--cream); color: var(--teal-deep); margin-top: 12px; }
.rationale .btn:hover { background: var(--coral); color: var(--cream); }

@media (max-width: 960px) {
  .model-grid { grid-template-columns: 1fr; gap: 28px; }
  .founder-anchor { grid-template-columns: 1fr; }
  .founder-anchor .fa-photo { aspect-ratio: 4 / 5; }
  .founder-anchor .fa-body { padding: 40px 36px; }
}
@media (max-width: 768px) {
  .clinician-card { padding: 28px 24px; }
  .clinician-photo { aspect-ratio: 4 / 5; }
  .clinician-name { font-size: 24px; }
  .founder-anchor .fa-body { padding: 32px 26px; }
  .match-note { flex-direction: column; padding: 28px 24px; }
}

/* ============ BLOG (migrated from Wix — Briefing #2) ============ */
/* Index */
.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; margin-top: 8px; }
.post-card { background: var(--cream); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease; }
.post-card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(15,46,44,0.1); }
.post-card-img { display: block; aspect-ratio: 16 / 10; background: var(--bg-warm); overflow: hidden; }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-card-body { padding: 28px 28px 32px; display: flex; flex-direction: column; flex: 1; }
.post-card-meta { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; font-weight: 600; }
.post-card-title { font-family: var(--font-heading); font-size: 23px; font-weight: 400; line-height: 1.15; letter-spacing: -0.01em; margin-bottom: 12px; }
.post-card-title a { color: var(--ink); text-decoration: none; }
.post-card-title a:hover { color: var(--coral-text); }
.post-card-excerpt { font-size: 15px; line-height: 1.6; color: var(--ink-soft); margin-bottom: 18px; }
.post-card-link { margin-top: auto; font-size: 14px; font-weight: 500; color: var(--coral-text); text-decoration: none; align-self: flex-start; }
.post-card-link:hover { color: var(--teal-deep); }
.post-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.post-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-soft); text-decoration: none; font-size: 14px; }
.post-pagination .page-numbers.current { background: var(--teal-deep); color: var(--cream); border-color: var(--teal-deep); }
.post-pagination a.page-numbers:hover { border-color: var(--coral); color: var(--coral-text); }

/* Single post */
.post-hero { padding-bottom: 32px; }
.post-byline { font-size: 14px; letter-spacing: 0.04em; color: var(--muted); margin-top: 20px; text-transform: uppercase; font-weight: 600; }
.post-hero-img { margin: 0 auto 8px; max-width: 1240px; }
.post-hero-img img { width: 100%; max-height: 460px; object-fit: cover; border-radius: 20px; display: block; }
.post-body-wrap { padding-top: 48px; }
.post-body { max-width: 760px; margin: 0 auto; }
.post-body h3 { font-family: var(--font-heading); font-size: 22px; font-weight: 400; color: var(--ink); margin: 36px 0 12px; letter-spacing: -0.01em; line-height: 1.25; }
.post-body h4 { font-family: var(--font-body); font-size: 17px; font-weight: 600; color: var(--ink); margin: 28px 0 8px; }
.post-body img { width: 100%; height: auto; border-radius: 14px; margin: 28px 0; display: block; }
.post-body blockquote { border-left: 2px solid var(--coral); padding: 4px 0 4px 24px; margin: 28px 0; font-family: var(--font-heading); font-style: normal; font-size: 20px; line-height: 1.45; color: var(--teal-deep); }
.post-body u { text-decoration-color: var(--coral); }
.post-back { max-width: 760px; margin: 48px auto 0; }
.post-back a { color: var(--coral-text); text-decoration: none; font-weight: 500; font-size: 15px; }
.post-back a:hover { color: var(--teal-deep); }

@media (max-width: 768px) {
  .post-hero-img img { max-height: 280px; border-radius: 14px; }
  .post-card-body { padding: 24px 22px 26px; }
}

/* ============ COLLEGE-THERAPY ADS LP (David's campaign page, Jul 2026) ============ */

/* Hero: two-column grid with an abstract visual (blobs) and a floating quote card */
.lp-hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 80px; align-items: center; }
.hero-visual { position: relative; aspect-ratio: 0.9; max-width: 480px; margin-left: auto; width: 100%; }
/* aspect-ratio:1 + width-only sizing keeps every blob a true circle regardless of the
   container's 0.9 ratio (height:width % on a non-square box would render ellipses). */
.blob { position: absolute; border-radius: 50%; aspect-ratio: 1; will-change: transform; }
.blob-1 { width: 80%; top: 0; right: 0; background: linear-gradient(135deg, #E8A88A 0%, #D97757 100%); animation: t360-blob-a 16s ease-in-out infinite; }
.blob-2 { width: 60%; bottom: 0; left: 0; background: linear-gradient(135deg, #2A6964 0%, #0F2E2C 100%); animation: t360-blob-b 20s ease-in-out infinite; }
.blob-3 { width: 30%; top: 38%; right: 8%; background: var(--cream); border: 1px solid var(--line); animation: t360-blob-c 13s ease-in-out infinite; }
/* Slow, endless drift — each blob orbits a small path on its own tempo (marquee-style loop) */
@keyframes t360-blob-a { 0%,100% { transform: translate(0,0); } 33% { transform: translate(-14px, 12px); } 66% { transform: translate(10px, -10px); } }
@keyframes t360-blob-b { 0%,100% { transform: translate(0,0); } 33% { transform: translate(12px, -8px); } 66% { transform: translate(-8px, 14px); } }
@keyframes t360-blob-c { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-10px, -12px); } }
.quote-card { position: absolute; bottom: 8%; right: -4%; background: var(--cream); padding: 24px 28px; border-radius: 14px; box-shadow: 0 20px 60px rgba(15,46,44,0.12); max-width: 260px; border: 1px solid var(--line); }
.quote-card p { font-family: var(--font-heading); font-size: 16px; line-height: 1.4; color: var(--ink); margin-bottom: 12px; }
.quote-card .attr { font-size: 12px; color: var(--muted); letter-spacing: 0.02em; }
/* Trust row sits in the narrower LP copy column — tighten it so all items stay on one line */
.lp-hero-grid .hero-trust { gap: 14px 24px; }
.lp-hero-grid .hero-trust > div { font-size: 13px; white-space: nowrap; }

/* Scrolling marquee of Florida colleges (duplicated list scrolls -50%) */
.marquee { padding: 32px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-warm); overflow: hidden; }
/* Seamless loop: width:max-content + uniform per-item spacing (no container gap),
   so the track is exactly 2x one copy and translateX(-50%) lands pixel-perfect. */
.marquee-inner { display: inline-flex; width: max-content; font-family: var(--font-heading); font-size: 18px; color: var(--ink-soft); white-space: nowrap; animation: t360-marquee 70s linear infinite; }
.marquee-inner span { display: inline-flex; align-items: center; gap: 60px; padding-right: 60px; }
.marquee-inner span::after { content: "\2726"; color: var(--coral); }
@keyframes t360-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Dark comparison variant (inside .block.difference) — /college keeps the light .compare-con/-pro */
.difference .compare { grid-template-columns: 1fr 1fr; gap: 32px; max-width: 1080px; }
.difference .compare-col { padding: 48px 40px; border-radius: 20px; background: rgba(251,247,238,0.04); border: 1px solid rgba(251,247,238,0.1); }
.difference .compare-col.us { background: var(--cream); color: var(--ink); border: none; box-shadow: 0 30px 80px rgba(0,0,0,0.2); transform: translateY(-12px); }
.compare-tag { display: inline-block; padding: 6px 14px; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 999px; margin-bottom: 24px; }
.difference .compare-col.them .compare-tag { background: rgba(251,247,238,0.1); color: rgba(251,247,238,0.7); }
.difference .compare-col.us .compare-tag { background: var(--coral); color: var(--cream); }
.difference .compare-col h3 { color: inherit; font-size: 28px; line-height: 1.1; }
.difference .compare-col.them li { border-bottom-color: rgba(255,255,255,0.08); color: rgba(251,247,238,0.85); }
.difference .compare-col.us li { border-bottom-color: var(--line); }
.difference .compare-col li:last-child { border-bottom: none; }
.x-mark { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; margin-top: 1px; background: rgba(251,247,238,0.1); color: rgba(251,247,238,0.5); }

/* Founder section: portrait (shared .founder-portrait) beside the credential column */
.founder-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: center; position: relative; }
.founder-lede { font-size: 19px; line-height: 1.6; color: var(--ink-soft); margin-bottom: 28px; }

@media (max-width: 960px) {
  .lp-hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .founder-grid { grid-template-columns: 1fr; gap: 64px; }
  .difference .compare-col.us { transform: none; }
}
/* Dark comparison stacks single-column on phones, matching the light .compare (760px) */
@media (max-width: 760px) {
  .difference .compare { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 600px) {
  .hero-visual { max-width: 340px; }
  .quote-card { right: 0; max-width: 230px; padding: 18px 20px; }
  .quote-card p { font-size: 14px; }
  .marquee { padding: 22px 0; }
  .marquee-inner { font-size: 15px; animation-duration: 45s; }
  .marquee-inner span { gap: 40px; padding-right: 40px; }
  .difference .compare-col { padding: 36px 28px; }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-inner { animation: none; }
  .blob { animation: none !important; }
}
