/* ============================================================
   CONTACT PAGE — /contact  (own general · route clinical)
   Layered on base.css + v3.css + v9.css. Reuses tokens, type,
   .btn / .eyebrow / .display / .form / .section-head.
   Discipline: NO clinical funnel here — clinical intent is routed
   to /eligibility (§2 off-ramp + form helper line). This page owns
   the contact facts, the four non-clinical doors, and location.
   Two swap variables render as review-mode placeholders until Andy
   confirms: the async channel row (§3) and the office-hours helper.
   ============================================================ */

/* ---------- Breadcrumb ---------- */
.ct-crumb { display:flex; align-items:center; gap:8px; margin:0 0 20px; font-family:var(--font-sans); font-size: var(--fs-note); font-weight:500; letter-spacing:0.04em; color:var(--slate-mid); }
.ct-crumb a { color:var(--slate-mid); text-decoration:none; border:0; transition:color 160ms var(--ease); }
.ct-crumb a:hover { color:var(--fg-strong); opacity:1; }
.ct-crumb .sep { opacity:0.5; }
.ct-crumb .here { color:var(--fg-strong); }

/* ============================================================
   1 — HERO (typographic, functional, no photo)
   ============================================================ */
.ct-hero { padding:24px 0 0; border-bottom:1px solid var(--border-soft); }
.ct-hero-inner { padding:24px 0 68px; display:grid; grid-template-columns:1fr 0.92fr; gap:clamp(40px, 5vw, 80px); align-items:center; }
.ct-hero-text { min-width:0; }
.ct-hero h1 { font-size:clamp(40px, 4.6vw, 72px); line-height:1.0; letter-spacing:-0.02em; max-width:14ch; }
/* max-width 46ch broke this to 3 lines and split "international care team"
   from "directly". 56ch is the threshold where it settles to 2 and the phrase
   stays intact; beyond that nothing improves. Measured at 1440/1200/1024/768,
   [Jacob, 5 Aug 2026]. The .ct-standfirst em rule went with the <em> — the
   accent-serif treatment on "international care team" is not wanted. */
.ct-standfirst { margin-top:28px; font-size:clamp(17px, 1.5vw, 21px); line-height:1.56; color:var(--slate-dark); max-width: var(--measure); }
.ct-hero-facts { margin-top:40px; display:flex; flex-wrap:wrap; gap:14px 12px; }
.ct-fact { display:inline-flex; align-items:center; gap:9px; padding:11px 15px 11px 13px; background:var(--bg-card); border:1px solid var(--border-soft); border-radius:999px; white-space:nowrap; }
.ct-fact .dot { width:8px; height:8px; border-radius:50%; background:var(--accent); flex:0 0 auto; box-shadow:0 0 0 4px color-mix(in oklab, var(--accent) 18%, transparent); }
.ct-fact .t { font-family:var(--font-sans); font-size: var(--fs-sm); font-weight:500; color:var(--fg-strong); letter-spacing:0.01em; }
.ct-fact .t em { font-style:italic; color:var(--accent-deep); font-weight:500; }
.ct-hero-media { margin:0; border-radius:16px; overflow:hidden; align-self:stretch; box-shadow:0 30px 70px -40px rgba(31,42,38,0.5); }
.ct-hero-media img { display:block; width:100%; height:100%; min-height:340px; object-fit:cover; }

/* ============================================================
   2 — ARE YOU A PATIENT? (clinical off-ramp → /eligibility)
   Sits high, above the general form, so patient intent is walked
   to the free assessment and never captured into a general inbox.
   It is a LINK, never a form.
   ============================================================ */
.ct-patient { padding:64px 0; }
/* Copy column widened ~20% (1.35fr -> 1.62fr) and the CTA moved into it,
   [Jacob, 5 Aug 2026]. The second column is now empty by design — the
   asymmetry is the composition, not a leftover.
   ⚠️ The h2 and p max-widths below are what actually hold the text. Widening
   the column without raising them changes nothing. */
.ct-patient-panel { background:var(--sage-pale); border-radius:16px; padding:clamp(36px, 4.4vw, 64px) clamp(32px, 5vw, 72px); display:grid; grid-template-columns:1.62fr 1fr; gap:clamp(32px, 5vw, 64px); align-items:stretch; }
.ct-patient-panel .eyebrow { color:var(--sage-deep); margin-bottom:20px; }
.ct-patient-panel .eyebrow::before { background:var(--sage-deep); }
.ct-patient h2 { font-family:var(--font-serif); font-weight:500; font-size:clamp(27px, 3vw, 42px); line-height:1.08; letter-spacing:-0.012em; color:var(--sage-ink); margin:0 0 18px; max-width:28ch; }
.ct-patient h2 em { font-style:italic; }
.ct-patient p { font-size:16.5px; line-height:1.7; color:var(--sage-ink); margin:0; max-width: var(--measure); }
.ct-patient p strong { font-weight:600; }
.ct-patient-cta { display:flex; flex-direction:column; gap:14px; align-items:flex-start; margin-top:32px; }
.ct-patient-cta .btn { width:auto; }
.ct-patient-media { margin:0; border-radius:12px; overflow:hidden; align-self:stretch; }
.ct-patient-media img { display:block; width:100%; height:100%; object-fit:cover; object-position:center 30%; }
.ct-patient-cta .note { font-family:var(--font-sans); font-size: var(--fs-note); line-height:1.5; color:var(--sage-deep); max-width: var(--measure); }

/* ============================================================
   3 — CONTACT DETAILS (OWNS · the core, scannable, correct)
   Email + phone are the payload — primary cards first so they are
   reachable without scrolling on mobile.
   ============================================================ */
.ct-details { padding: var(--section-py) 0; background:var(--bg-alt); }
.ct-details .section-head { margin-bottom:44px; }
.ct-details-grid { display:grid; grid-template-columns:minmax(0,1.4fr) minmax(300px,1fr); gap:clamp(36px, 5vw, 72px); align-items:start; }
.ct-detail-main { min-width:0; }

/* One card since 5 Aug — the phone number is removed site-wide, so email is
   the only direct channel. A 1fr 1fr grid would leave the card in the left
   half with dead space beside it. */
.ct-primary { display:grid; grid-template-columns:1fr; gap:16px; }
.ct-primary-card { background:var(--bg-card); border:1px solid var(--border); border-radius:14px; padding:clamp(24px, 2.4vw, 32px); display:flex; flex-direction:column; gap:8px; transition:border-color 160ms var(--ease); }
.ct-primary-card:hover { border-color:color-mix(in oklab, var(--accent) 34%, var(--border)); }
.ct-primary-card .k { display:inline-flex; align-items:center; gap:9px; font-family:var(--font-sans); font-size:10.5px; font-weight:600; letter-spacing:0.14em; text-transform:uppercase; color:var(--slate-mid); }
.ct-primary-card .k .g { color:var(--accent-deep); font-size: var(--fs-sm); }
.ct-primary-card .val { font-family:var(--font-serif); font-weight:500; font-size: clamp(24px,1.9vw, 26px); line-height:1.14; letter-spacing:-0.006em; color:var(--fg-strong); text-decoration:none; border:0; word-break:break-word; }
.ct-primary-card .val:hover { color:var(--accent-deep); opacity:1; }
.ct-primary-card .sub { font-family:var(--font-sans); font-size: var(--fs-sm); line-height:1.5; color:var(--slate-mid); }

.ct-secondary { margin-top:8px; display:flex; flex-direction:column; }
.ct-srow { display:grid; grid-template-columns:0.5fr 1fr; gap:24px; padding:22px 4px; border-bottom:1px solid var(--border); align-items:baseline; }
.ct-srow .k { font-family:var(--font-sans); font-size:11px; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; color:var(--slate-mid); line-height:1.5; }
.ct-srow .v { font-size:15.5px; line-height:1.6; color:var(--slate-dark); }
.ct-srow .v strong { color:var(--fg-strong); font-weight:600; }

/* --- async channel row: a labeled slot that stays empty until confirmed --- */

/* --- time-zone helper card (office hours = review-mode placeholder) --- */
.ct-tz { background:var(--bg-card); border:1px solid var(--border-soft); border-radius:16px; padding:clamp(26px, 2.6vw, 34px); position:sticky; top:24px; }
.ct-tz .eyebrow { color:var(--sage-deep); margin-bottom:18px; }
.ct-tz .eyebrow::before { background:var(--sage-deep); }
.ct-tz-hours { font-family:var(--font-sans); font-weight:400; font-size: clamp(20px,1.7vw, 22px); line-height:1.4; letter-spacing:-0.005em; color:var(--fg-strong); margin:0 0 4px; }
.ct-tz-sub { font-family:var(--font-sans); font-size: var(--fs-note); line-height:1.55; color:var(--slate-mid); margin:0 0 22px; }
.ct-tz-list { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; border-top:1px solid var(--border-soft); }
.ct-tz-list li { display:flex; align-items:baseline; justify-content:space-between; gap:16px; padding:12px 0; border-bottom:1px solid var(--border-soft); }
.ct-tz-list .m { font-family:var(--font-sans); font-size: var(--fs-sm); font-weight:500; color:var(--fg-strong); }
.ct-tz-list .m.here { color:var(--accent-deep); }
.ct-tz-list .o { font-family:var(--font-sans); font-size: var(--fs-note); color:var(--slate-mid); letter-spacing:0.01em; }

/* ============================================================
   4 — WHO TO CONTACT FOR WHAT (OWNS · four doors + general form)
   Four routing cards on the left; the deliberately non-clinical
   general inquiry form (with routing dropdown) sticky on the right.
   ============================================================ */
.ct-doors { padding: var(--section-py) 0; }
.ct-doors .section-head { margin-bottom:48px; }
.ct-doors-grid { display:grid; grid-template-columns:minmax(0,1.5fr) minmax(340px,0.92fr); gap:clamp(40px, 5vw, 80px); align-items:start; }
.ct-door-cards { display:grid; grid-template-columns:1fr 1fr; gap:16px; min-width:0; }
.ct-door { background:var(--bg-card); border:1px solid var(--border); border-radius:14px; padding:clamp(24px, 2.4vw, 32px); display:flex; flex-direction:column; transition:border-color 160ms var(--ease), transform 160ms var(--ease); }
.ct-door:hover { border-color:color-mix(in oklab, var(--accent) 30%, var(--border)); transform:translateY(-2px); }
.ct-door .ct-door-k { display:inline-flex; align-items:center; gap:9px; font-family:var(--font-sans); font-size:10px; font-weight:600; letter-spacing:0.14em; text-transform:uppercase; color:var(--sage-deep); margin-bottom:14px; }
.ct-door .ct-door-k::before { content:""; width:16px; height:1px; background:var(--sage-deep); }
.ct-door h3 { font-family:var(--font-serif); font-weight:500; font-size: clamp(24px,1.9vw, 25px); line-height:1.12; letter-spacing:-0.008em; color:var(--fg-strong); margin:0 0 10px; }
.ct-door p { font-size: var(--fs-sm); line-height:1.6; color:var(--slate-dark); margin:0 0 auto; }
.ct-door .ct-route { margin-top:18px; padding-top:16px; border-top:1px solid var(--border-soft); font-family:var(--font-sans); font-size: var(--fs-note); line-height:1.55; color:var(--slate-mid); }
.ct-door .ct-route .tag { font-family:var(--font-serif); font-style:italic; color:var(--accent-deep); }
.ct-door .ct-route a { color:var(--fg-strong); border:0; font-weight:500; }
.ct-door .ct-route a:hover { color:var(--accent-deep); opacity:1; }

/* --- general inquiry form (non-clinical, sticky) --- */
.ct-form-aside { position:sticky; top:24px; align-self:start; }
.ct-inquiry { background:var(--bg-card); border:1px solid var(--border); border-radius:16px; padding:clamp(28px, 2.6vw, 36px); box-shadow:0 24px 60px -34px rgba(31,42,38,0.34); }
.ct-inquiry .eyebrow { margin-bottom:16px; }
.ct-inquiry h3 { font-family:var(--font-serif); font-weight:500; font-size: clamp(24px,2.3vw, 29px); line-height:1.1; letter-spacing:-0.01em; color:var(--fg-strong); margin:0 0 8px; }
.ct-inquiry h3 em { font-style:italic; }
.ct-inquiry-sub { font-size: var(--fs-sm); line-height:1.6; color:var(--slate-mid); margin:0 0 24px; }
.ct-inquiry .form { gap:16px; }
.ct-inquiry .form textarea { font-family:var(--font-sans); font-size: var(--fs-sm); padding:12px 14px; border:1px solid var(--border); border-radius:4px; background:var(--bg); color:var(--fg-strong); outline:none; resize:vertical; min-height:96px; transition:border-color 160ms var(--ease); }
.ct-inquiry .form textarea:focus { border-color: var(--accent-deep); }
.ct-inquiry .submit { width:100%; justify-content:center; margin-top:6px; }
.ct-inquiry-help { margin-top:20px; padding-top:20px; border-top:1px solid var(--border-soft); font-family:var(--font-sans); font-size: var(--fs-note); line-height:1.6; color:var(--slate-mid); }
.ct-inquiry-help strong { color:var(--fg-strong); font-weight:600; }
.ct-inquiry-help a { color:var(--accent-deep); font-weight:500; border-bottom:1px solid color-mix(in oklab, var(--accent-deep) 40%, transparent); }
.ct-inquiry-help a:hover { border-color:var(--accent-deep); opacity:1; }
.ct-inquiry-resp { margin-top:16px; font-family:var(--font-sans); font-size: var(--fs-note); line-height:1.55; color:var(--slate-mid); }
.ct-inquiry-resp strong { color:var(--fg-strong); font-weight:600; }

/* ============================================================
   5 — PRACTICAL QUESTIONS (ROUTES to the owning pages)
   Short, honest, hand-off answers — two sentences then a link.
   ============================================================ */
.ct-faq { padding:0 0 96px; }
.ct-faq .section-head { margin-bottom:34px; }
.ct-faq-list { display:flex; flex-direction:column; border-top:1px solid var(--border); }
.ct-q { display:grid; grid-template-columns:0.72fr 1fr; gap:clamp(24px, 4vw, 64px); padding:34px 4px; border-bottom:1px solid var(--border); align-items:start; }
.ct-q h3 { font-family:var(--font-serif); font-weight:500; font-size: clamp(24px,2vw, 27px); line-height:1.16; letter-spacing:-0.008em; color:var(--fg-strong); margin:0; }
.ct-q .a { min-width:0; }
.ct-q .a p { font-size:15.5px; line-height:1.68; color:var(--slate-dark); margin:0; max-width: var(--measure-wide); }
.ct-q .a p strong { color:var(--fg-strong); font-weight:600; }
.ct-q .a .links { margin-top:16px; display:flex; flex-wrap:wrap; gap:10px 22px; }
.ct-q .a .links a { display:inline-flex; align-items:center; gap:8px; font-family:var(--font-sans); font-size: var(--fs-sm); font-weight:500; color:var(--accent-deep); border-bottom:1px solid color-mix(in oklab, var(--accent-deep) 40%, transparent); padding-bottom:2px; }
.ct-q .a .links a:hover { border-color:var(--accent-deep); opacity:1; }
.ct-q .a .links a .arrow { transition:transform 160ms var(--ease);}
.ct-q .a .links a:hover .arrow { transform:translateX(4px);}

/* ============================================================
   6 — WHERE TO FIND US (OWNS · address + Bund + map → hospital)
   ============================================================ */
.ct-find { padding:0 0 96px; }
.ct-find-panel { display:grid; grid-template-columns:0.92fr 1.08fr; gap:clamp(32px, 5vw, 64px); align-items:stretch; background:var(--bg-alt); border-radius:16px; overflow:hidden; }
.ct-find-copy { padding:clamp(36px, 4vw, 60px); display:flex; flex-direction:column; }
.ct-find-copy .eyebrow { margin-bottom:22px; }
.ct-find-copy h2 { font-family:var(--font-serif); font-weight:500; font-size:clamp(26px, 2.8vw, 38px); line-height:1.1; letter-spacing:-0.012em; color:var(--fg-strong); margin:0 0 4px; white-space:nowrap; }
.ct-find-copy .addr { font-size:16.5px; line-height:1.62; color:var(--slate-dark); margin:16px 0 0; }
.ct-find-copy .addr strong { color:var(--fg-strong); font-weight:600; }
.ct-find-orient { margin-top:24px; display:flex; flex-direction:column; gap:12px; padding-top:22px; border-top:1px solid var(--border); }
.ct-find-orient .row { display:flex; align-items:baseline; gap:12px; }
.ct-find-orient .row .k { flex:0 0 84px; font-family:var(--font-sans); font-size:10.5px; font-weight:600; letter-spacing:0.12em; text-transform:uppercase; color:var(--slate-mid); }
.ct-find-orient .row .v { font-size: var(--fs-sm); line-height:1.5; color:var(--slate-dark); }
.ct-find-orient .row .v strong { color:var(--fg-strong); font-weight:600; }
.ct-find-teaser { margin-top:auto; padding-top:28px; }
.ct-find-teaser .note { font-family:var(--font-sans); font-size:13px; line-height:1.6; color:var(--slate-mid); margin:0 0 14px; }
.ct-find-teaser a { display:inline-flex; align-items:center; gap:10px; font-family:var(--font-sans); font-size: var(--fs-sm); font-weight:500; color:var(--accent-deep); border-bottom:1px solid color-mix(in oklab, var(--accent-deep) 40%, transparent); padding-bottom:3px; }
.ct-find-teaser a:hover { border-color:var(--accent-deep); opacity:1; }
.ct-find-teaser a .arrow { transition:transform 160ms var(--ease);}
.ct-find-teaser a:hover .arrow { transform:translateX(4px);}
.ct-find-map { min-height:340px; position:relative; }
.ct-find-map image-slot { position:absolute; inset:0; width:100%; height:100%; }

/* ============================================================
   7 — CLOSING (→ /eligibility · one link, no hard CTA)
   ============================================================ */
.ct-closing { padding:0 0 112px; }
.ct-closing-inner { border-top:1px solid var(--border); padding-top:56px; display:flex; align-items:flex-end; justify-content:space-between; gap:32px; flex-wrap:wrap; }
.ct-closing .lead { font-family:var(--font-serif); font-weight:500; font-size:clamp(24px, 2.6vw, 34px); line-height:1.14; letter-spacing:-0.01em; color:var(--fg-strong); margin:0; max-width:20ch; }
.ct-closing .lead em { font-style:italic; }
.ct-closing-links { display:flex; gap:14px; flex-wrap:wrap; }
.ct-closing-links a { display:inline-flex; align-items:center; gap:12px; padding:16px 22px; background:var(--bg-card); border:1px solid var(--border); border-radius:10px; text-decoration:none; color:inherit; transition:transform 160ms var(--ease), border-color 160ms var(--ease); }
.ct-closing-links a:hover { transform:translateY(-2px); border-color:color-mix(in oklab, var(--accent) 32%, var(--border)); opacity:1; }
.ct-closing-links .t { display:flex; flex-direction:column; gap:2px; }
.ct-closing-links .t .k { font-family:var(--font-sans); font-size:10px; font-weight:600; letter-spacing:0.12em; text-transform:uppercase; color:var(--slate-mid); }
.ct-closing-links .t .v { font-family:var(--font-sans); font-size:19px; color:var(--fg-strong); }
.ct-closing-links .arrow { color:var(--accent-deep);}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1040px) {
  /* minmax(0,1fr), not 1fr. A bare 1fr track keeps an automatic minimum of the
     item's min-content, so at 360 the single track measured 358px inside a
     320px grid and .ct-door/.ct-inquiry pushed the page 18px wide. Measured:
     track 358 -> 320, document 378 -> 360. The mailto link was not the cause —
     it is 142.8px and fits. */
  .ct-doors-grid { grid-template-columns:minmax(0,1fr); gap:48px; }
  .ct-form-aside { position:static; }
  .ct-inquiry { max-width:640px; }
  .ct-details-grid { grid-template-columns:1fr; gap:40px; }
  .ct-tz { position:static; max-width:520px; }
}
@media (max-width:900px) {
  .ct-hero-inner { grid-template-columns:1fr; gap:36px; }
  .ct-hero h1 { max-width:16ch; }
  .ct-hero-media { order:-1; }
  .ct-hero-media img { min-height:240px; max-height:340px; }
  .ct-patient-panel { grid-template-columns:1fr; gap:28px; }
  .ct-find-panel { grid-template-columns:1fr; }
  .ct-find-map { min-height:260px; }
}
@media (max-width:640px) {
  .ct-patient, .ct-details, .ct-doors { padding:64px 0; }
  .ct-primary { grid-template-columns:1fr; }
  .ct-door-cards { grid-template-columns:1fr; }
  .ct-srow { grid-template-columns:1fr; gap:6px; }
  .ct-q { grid-template-columns:1fr; gap:14px; }
  .ct-closing-inner { flex-direction:column; align-items:flex-start; }
}
