/* ============================================================
   Park Lane Orthodontics — landing styles matched to the LIVE site.
   Sharp corners (pills only on buttons), no card boxes, plain columns
   on cream/navy fields, generous air. Loads after brand.css + landing.css.
   ============================================================ */

/* sharp corners across the board (buttons stay pills via .btn) */
.form-card, .field input, .field select, .field textarea { border-radius: 0; }

/* ============================================================
   HEADER (transparent over hero → solid cream on scroll)
   ============================================================ */
.sc-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 48px);
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), padding var(--dur) var(--ease);
}
.sc-header.scrolled { background: rgba(245,241,233,.94); backdrop-filter: blur(10px); box-shadow: 0 1px 0 var(--line); padding-block: 12px; }
.sc-header__logo { display: flex; align-items: center; }
.sc-header__logo img { height: 52px; width: auto; display: block; transition: height var(--dur) var(--ease); }
.sc-header.scrolled .sc-header__logo img { height: 44px; }
.sc-header__actions { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 30px); }
.sc-header__phone { display: inline-flex; align-items: center; gap: 9px; color: var(--navy); text-decoration: none; font-weight: 600; font-size: 15px; }
.sc-header__phone svg { width: 17px; height: 17px; stroke: var(--gold); }
.sc-header__phone:hover { color: var(--gold-600); }
.sc-header__cta { padding: 13px 26px; }
@media (max-width: 760px) { .sc-header__phone span { display: none; } .sc-header__logo img { height: 42px; } }

/* ============================================================
   HERO — copy + form left, tall photo right, on cream + hex
   ============================================================ */
.sc-hero { background: var(--cream); position: relative; overflow: hidden; }
.sc-hero__inner {
  width: min(1240px, 100% - 48px); margin-inline: auto;
  padding: clamp(116px, 15vh, 168px) 0 clamp(48px, 7vw, 92px);
  display: grid; grid-template-columns: 1.04fr .96fr; gap: clamp(28px, 3vw, 44px); align-items: stretch;
}
.hero-copy { max-width: 560px; align-self: center; }
.hero-copy h1 {
  font-family: var(--font-banner); font-weight: 800; color: var(--navy);
  font-size: clamp(44px, 5.2vw, 76px); line-height: 1.0; letter-spacing: -.02em; margin: 16px 0 0; text-wrap: balance;
}
.hero-copy .hero-sub { font-size: clamp(17px, 1.5vw, 21px); line-height: 1.5; color: var(--ink-muted); margin: 20px 0 0; max-width: 44ch; }
.hero-usps { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 12px; }
.hero-usps li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; line-height: 1.45; color: var(--ink); }
.hero-usps svg { width: 20px; height: 20px; flex: none; margin-top: 1px; stroke: var(--accent); }
.hero-copy .reviews-badge { margin-top: 26px; }
.hero-form { margin-top: 28px; }

.hero-media { position: relative; overflow: hidden; min-height: 580px; }
.hero-media image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media image-slot::part(frame) { border-radius: 0; background: var(--navy-700); }
.hero-media > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; }
.hero-media__tint { position: absolute; inset: 0; z-index: 2; pointer-events: none; background: linear-gradient(180deg, rgba(15,26,46,.10) 0%, rgba(15,26,46,0) 40%, rgba(15,26,46,.14) 100%); }
.hero-actions { margin-top: 30px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hero-rating { margin-top: 30px; }
/* hero feature photo (right column) */
.hero-figure { position: relative; overflow: hidden; min-height: 520px; align-self: stretch; }
.hero-figure img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 56%; }
.hero-figure__rule { position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: var(--accent); z-index: 2; }
.hero-trust { display: inline-flex; align-items: center; gap: 11px; margin-top: 22px; padding: 0; }
.hero-trust__ic { width: 38px; height: 38px; flex: none; display: grid; place-items: center; border: 1.5px solid var(--gold-400); }
.hero-trust__ic svg { width: 20px; height: 20px; stroke: var(--gold); }
.hero-trust span { font-family: var(--font-body); font-size: 14.5px; line-height: 1.4; color: var(--ink-muted); max-width: 34ch; }
.hero-trust b { font-weight: 700; color: var(--navy); }

/* hero credential badges - two compact boxes (Diamond + Specialist-led) */
.hero-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.hero-badge { display: flex; gap: 11px; align-items: flex-start; padding: 14px 15px; border: 1px solid var(--line); background: var(--cream-light); }
.hero-badge__ic { width: 34px; height: 34px; flex: none; display: grid; place-items: center; border: 1.5px solid var(--gold-400); }
.hero-badge__ic svg { width: 18px; height: 18px; stroke: var(--gold); }
.hero-badge__t { display: flex; flex-direction: column; gap: 2px; }
.hero-badge__t b { font-family: var(--font-body); font-weight: 700; font-size: 14px; color: var(--navy); line-height: 1.2; }
.hero-badge__t span { font-size: 12.5px; color: var(--ink-muted); line-height: 1.35; }

/* ============================================================
   HERO FORM PANEL - flat, hairline (no heavy shadow), lives under the copy
   ============================================================ */
.hero-form-card { background: var(--paper); border: 1px solid var(--line); border-top: 3px solid var(--accent); max-width: 480px; margin-top: 28px; }
.hero-form-card__body { padding: clamp(22px, 2vw, 28px) clamp(22px, 2vw, 28px) clamp(20px, 1.8vw, 24px); }
.hero-form-card__title { font-family: var(--font-display); font-weight: 800; color: var(--navy); font-size: clamp(21px, 1.9vw, 25px); line-height: 1.12; margin: 0; letter-spacing: -.01em; }
.hero-form-card__sub { font-size: 13.5px; color: var(--ink-muted); margin: 7px 0 18px; line-height: 1.5; }
.hero-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-form-card .field { margin-bottom: 12px; }
.hero-form-card .field:last-of-type { margin-bottom: 16px; }
.hero-form-card .field label { display: block; font-family: var(--font-body); font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--navy); margin-bottom: 6px; }
.hero-form-card .field input { width: 100%; font-family: var(--font-body); font-size: 15px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 0; background: var(--cream-light); color: var(--ink); transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease); }
.hero-form-card .field input:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px rgba(156,122,78,.14); }
.hero-form-card .field input::placeholder { color: var(--ink-faint); }
.hero-form-card__foot { margin: 12px 0 0; font-size: 11.5px; line-height: 1.5; color: var(--ink-faint); text-align: center; }
.hero-form-card__foot svg { width: 13px; height: 13px; stroke: var(--gold); vertical-align: -2px; margin-right: 4px; }
.hero-form-card .form-success { display: none; padding: 8px 4px 4px; text-align: center; }
.hero-form-card .form-success svg { width: 46px; height: 46px; stroke: var(--success); margin: 0 auto 12px; display: block; }
.hero-form-card .form-success h4 { font-family: var(--font-display); font-weight: 800; color: var(--navy); font-size: 22px; margin: 0 0 8px; }
.hero-form-card .form-success p { color: var(--ink-muted); font-size: 14px; margin: 0; line-height: 1.55; }
.hero-form-card.is-sent form { display: none; }
.hero-form-card.is-sent .form-success { display: block; }

/* ============================================================
   PLAIN 3-UP COLUMNS (consultation / costs) — no boxes
   ============================================================ */
.cols { display: grid; gap: clamp(32px, 4vw, 56px); margin-top: clamp(40px, 5vw, 64px); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-2 { grid-template-columns: 1.15fr .85fr; }
.col-item { position: relative; padding-top: 28px; border-top: 2px solid var(--accent); }
.bg-navy .col-item, .bg-navy-deep .col-item { border-top-color: var(--gold-400); }
.col-item__num { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--accent); margin-bottom: 14px; }
.bg-navy .col-item__num, .bg-navy-deep .col-item__num { color: var(--gold-400); }
.col-item__ic { width: 46px; height: 46px; margin-bottom: 16px; display: grid; place-items: center; }
.col-item__ic svg { width: 30px; height: 30px; stroke: var(--accent); }
.col-item h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(20px, 1.9vw, 24px); color: var(--navy); margin: 0 0 10px; line-height: 1.18; }
.bg-navy .col-item h3, .bg-navy-deep .col-item h3 { color: var(--on-dark); }
.col-item p { margin: 0; font-size: 15.5px; line-height: 1.65; color: var(--ink-muted); }
.bg-navy .col-item p, .bg-navy-deep .col-item p { color: var(--on-dark-muted); }
.col-item .price { font-family: var(--font-display); font-weight: 700; font-size: 40px; line-height: 1; color: var(--navy); margin-bottom: 8px; }

/* price line under a group */
.price-line { margin-top: clamp(36px, 4vw, 52px); padding-top: 26px; border-top: 1px solid var(--line); display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.price-line b { font-family: var(--font-display); font-weight: 700; font-size: 30px; color: var(--navy); }
.price-line span { color: var(--ink-muted); font-size: 16px; }

/* ============================================================
   TREATMENT JOURNEY - visual step grid (ghost numerals + icons)
   ============================================================ */
.journey { margin-top: clamp(40px, 5vw, 64px); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(34px, 4vw, 52px) clamp(34px, 4.5vw, 64px); }
.jstep { position: relative; padding-top: 8px; }
.jstep__bg { position: absolute; top: -34px; left: -8px; z-index: 0; font-family: var(--font-display); font-weight: 800; font-size: clamp(96px, 9vw, 132px); line-height: 1; color: var(--gold); opacity: .13; pointer-events: none; user-select: none; }
.jstep__ic { position: relative; z-index: 1; width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 16px; }
.jstep__ic svg { width: 34px; height: 34px; stroke: var(--accent); }
.jstep h3 { position: relative; z-index: 1; font-family: var(--font-display); font-weight: 700; font-size: clamp(19px, 1.8vw, 22px); color: var(--navy); margin: 0 0 8px; line-height: 1.2; }
.jstep p { position: relative; z-index: 1; margin: 0; font-size: 15px; line-height: 1.6; color: var(--ink-muted); max-width: 34ch; }

/* ============================================================
   USP BAND - the four headline reasons, navy + gold jewels (BIG)
   ============================================================ */
.usp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: clamp(44px, 5vw, 68px); }
.usp { display: flex; flex-direction: column; padding: 4px clamp(26px, 2.8vw, 44px); }
.usp:first-child { padding-left: 0; }
.usp:last-child { padding-right: 0; }
.usp + .usp { border-left: 1px solid rgba(184,154,107,.30); }
.usp__ic { height: 60px; display: flex; align-items: center; margin-bottom: 26px; }
.usp__ic svg { width: 58px; height: 58px; stroke: var(--gold-400); stroke-width: 1.3; }
.usp__n { font-family: var(--font-body); font-weight: 700; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-400); margin: 0 0 12px; }
.usp__h { font-family: var(--font-display); font-weight: 700; font-size: clamp(23px, 2.3vw, 31px); line-height: 1.1; color: var(--on-dark); margin: 0 0 14px; letter-spacing: -.01em; }
.usp__p { font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: var(--on-dark-muted); margin: 0; }

/* bullet list to break up prose */
.bullets { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 13px; }
.bullets li { position: relative; padding-left: 30px; font-size: 15.5px; line-height: 1.55; color: var(--ink); }
.bullets li svg { position: absolute; left: 0; top: 2px; width: 19px; height: 19px; stroke: var(--accent); }

/* ============================================================
   SPLIT FEATURE (iTero) — sharp image + copy
   ============================================================ */
.sc-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 4.5vw, 64px); align-items: center; }
.sc-split--rev .sc-split__media { order: 2; }
.sc-split__media { position: relative; overflow: hidden; }
.sc-split__media image-slot { display: block; width: 100%; aspect-ratio: 4 / 3.2; }
.sc-split__media image-slot::part(frame) { border-radius: 0; background: var(--cream-dark); }
.sc-split__media > img { display: block; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3.2; }

/* ============================================================
   FULL-BLEED PHOTO BAND (visual break, pull-quote over image)
   ============================================================ */
.photoband { position: relative; min-height: clamp(360px, 46vw, 560px); display: grid; place-items: center; overflow: hidden; }
.photoband > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.photoband__scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,26,46,.86) 0%, rgba(15,26,46,.66) 45%, rgba(15,26,46,.34) 100%); }
.photoband__inner { position: relative; z-index: 2; width: min(1200px, 100% - 48px); margin-inline: auto; }
.photoband__quote { max-width: 18ch; font-family: var(--font-display); font-weight: 800; color: #fff; font-size: clamp(32px, 4.4vw, 60px); line-height: 1.06; letter-spacing: -.015em; margin: 0; text-wrap: balance; }
.photoband__sub { margin: 22px 0 0; color: var(--on-dark-muted); font-size: clamp(16px, 1.4vw, 19px); max-width: 46ch; line-height: 1.6; }

/* ============================================================
   WHY US — navy band, credentials + team
   ============================================================ */
.why-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(40px, 5vw, 72px); align-items: start; }
.cred-list { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 22px; }
.cred-list li { display: grid; grid-template-columns: 30px 1fr; gap: 16px; align-items: start; }
.cred-list svg { width: 26px; height: 26px; stroke: var(--gold-400); margin-top: 2px; }
.cred-list b { color: var(--on-dark); font-weight: 600; display: block; font-size: 17px; margin-bottom: 3px; font-family: var(--font-display); }
.cred-list span { color: var(--on-dark-muted); font-size: 14.5px; line-height: 1.6; }
.sc-team { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.team-card image-slot { display: block; width: 100%; aspect-ratio: 1 / 1.12; }
.team-card image-slot::part(frame) { border-radius: 0; background: var(--navy-600); }
.team-card > img { display: block; width: 100%; aspect-ratio: 1 / 1.06; object-fit: cover; object-position: center top; }

/* ============================================================
   TESTIMONIAL STRIP (under hero) - prominent, compact
   ============================================================ */
.testi-strip { padding-block: clamp(34px, 4.5vw, 56px); }
.testi { display: flex; align-items: center; gap: clamp(22px, 3.5vw, 44px); }
.testi__mark { font-family: var(--font-display); font-weight: 800; font-size: clamp(64px, 7vw, 104px); line-height: .72; color: var(--gold-400); flex: none; align-self: flex-start; }
.testi__quote { flex: 1; margin: 0; font-family: var(--font-serif); font-style: italic; font-weight: 500; font-size: clamp(18px, 1.9vw, 25px); line-height: 1.42; color: var(--on-dark); text-wrap: pretty; }
.testi__meta { flex: none; display: flex; flex-direction: column; gap: 7px; align-items: flex-end; text-align: right; min-width: 150px; }
.testi__stars { display: flex; gap: 3px; }
.testi__stars svg { width: 16px; height: 16px; fill: #E7B53C; }
.testi__name { font-family: var(--font-body); font-weight: 700; font-size: 15px; color: #fff; }
.testi__src { font-family: var(--font-body); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--on-dark-muted); }
@media (max-width: 820px) {
  .testi { flex-direction: column; align-items: flex-start; gap: 16px; }
  .testi__mark { font-size: 64px; margin-bottom: -22px; }
  .testi__meta { align-items: flex-start; text-align: left; }
}
.team-card__body { padding: 22px 22px 24px; }

/* ============================================================
   CREDENTIALS - four big proof stats (prominent, gold dividers)
   ============================================================ */
.creds { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; max-width: 760px; margin: clamp(44px, 5vw, 60px) auto 0; }
.cred { padding: 6px clamp(14px, 1.8vw, 26px); }
.cred:first-child { padding-left: 0; }
.cred:last-child { padding-right: 0; }
.cred + .cred { border-left: 1px solid rgba(184,154,107,.30); }
.cred__v { font-family: var(--font-display); font-weight: 800; font-size: clamp(26px, 2.8vw, 38px); line-height: 1; color: var(--on-dark); margin: 0 0 12px; display: flex; align-items: center; gap: 7px; letter-spacing: -.01em; }
.cred__v svg { width: clamp(26px, 2.6vw, 36px); height: clamp(26px, 2.6vw, 36px); flex: none; }
.cred__v .star { fill: #E7B53C; }
.cred__l { font-family: var(--font-body); font-size: 13.5px; letter-spacing: .04em; color: var(--on-dark-muted); line-height: 1.45; margin: 0; }
.team-card__name { font-family: var(--font-display); font-weight: 600; font-size: 20px; color: var(--on-dark); margin: 0 0 3px; }
.team-card__role { font-size: 12px; text-transform: uppercase; letter-spacing: .14em; color: var(--gold-400); margin: 0 0 11px; font-weight: 700; }
.team-card__bio { font-size: 13.5px; color: var(--on-dark-muted); line-height: 1.6; margin: 0; }

/* ============================================================
   PROSE (how it works) — plain, no panel
   ============================================================ */
.prose { max-width: 760px; }
.prose p { color: var(--ink-muted); margin: 0 0 18px; font-size: 16px; line-height: 1.75; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--navy); font-weight: 600; }

/* ============================================================
   CTA BAND (navy)
   ============================================================ */
.cta-band { text-align: center; }
.cta-band .display { margin-bottom: 18px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .sc-hero__inner { grid-template-columns: 1fr; gap: 30px; }
  .hero-form-card { order: 0; }
  .hero-copy { max-width: none; }
  .cols-3 { grid-template-columns: 1fr; }
  .cols-2 { grid-template-columns: 1fr; }
  .sc-split, .why-grid { grid-template-columns: 1fr; }
  .sc-split--rev .sc-split__media { order: 0; }
  .usp-grid { grid-template-columns: 1fr 1fr; gap: clamp(32px,4vw,44px) clamp(32px,4vw,48px); }
  .usp { padding: 0; }
  .usp:first-child, .usp:last-child { padding: 0; }
  .usp + .usp { border-left: 0; }
  .creds { grid-template-columns: 1fr 1fr; gap: clamp(30px,4vw,40px) clamp(28px,3vw,40px); }
  .cred { padding: 0; }
  .cred:first-child, .cred:last-child { padding: 0; }
  .cred + .cred { border-left: 0; }
  .journey { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .sc-team { grid-template-columns: 1fr 1fr; }
  .cta-actions { flex-direction: column; }
  .usp-grid { grid-template-columns: 1fr 1fr; }
  .journey { grid-template-columns: 1fr 1fr; }
}

/* ── Sticky CTA bar ─────────────────────────────────────────── */
.t3-stickycta {
  position: fixed;
  inset: auto 12px max(12px, env(safe-area-inset-bottom)) 12px; /* float off L/R/bottom + iOS safe area */
  z-index: 49;
  display: flex;
  align-items: stretch;
  gap: 10px;
  padding: 10px;
  background: var(--navy);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(15,26,46,.28);
  translate: 0 calc(100% + 16px);
  transition: translate .35s var(--ease), opacity .35s var(--ease);
  opacity: 0;
  pointer-events: none;
}
.t3-stickycta.is-on {
  translate: 0 0;
  opacity: 1;
  pointer-events: auto;
}
.t3-stickycta__call {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  color: var(--cream);
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  background: rgba(255,255,255,.08);
  border-radius: 12px;
  flex-shrink: 0;
  transition: background var(--dur) var(--ease);
}
.t3-stickycta__call:hover { background: rgba(255,255,255,.16); }
.t3-stickycta__call svg { width: 18px; height: 18px; flex-shrink: 0; }
.t3-stickycta__book {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: var(--gold);
  color: #fff;
  font-size: .9375rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  transition: filter var(--dur) var(--ease);
}
.t3-stickycta__book:hover { filter: brightness(1.08); }
/* Mobile landscape & below only — hidden on tablet/desktop regardless of .is-on */
@media (min-width: 761px) {
  .t3-stickycta { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .t3-stickycta { transition: none; }
}
