/* Nuveau LP — clinic-appropriate, mobile-first, not a WP clone */
:root {
  --ink: #1a1a1a;
  --muted: #5c5c5c;
  --bg: #faf9f7;
  --surface: #ffffff;
  --accent: #2c4a3e;
  --accent-hover: #1e342b;
  --line: #e8e4de;
  --radius: 10px;
  --shadow: 0 8px 24px rgba(26, 26, 26, 0.08);
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --max: 960px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration-thickness: 1px; }
a:hover { color: var(--accent-hover); }

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0;
  position: sticky;
  top: 0;
  z-index: 40;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
  font-size: 1.05rem;
}
.header-phone {
  font-weight: 600;
  text-decoration: none;
  color: var(--accent);
  white-space: nowrap;
}

/* Hero */
.hero {
  padding: 2.5rem 0 2rem;
  background: linear-gradient(180deg, #f3f0ea 0%, var(--bg) 100%);
}
.hero h1 {
  font-size: clamp(1.75rem, 5vw, 2.35rem);
  line-height: 1.2;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}
.hero .lede {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 0 1.5rem;
  max-width: 36rem;
}
.hero-grid {
  display: grid;
  gap: 1.75rem;
}
@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}

/* Bullets */
.bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}
.bullets li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  color: var(--ink);
}
.bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
}

/* Social proof */
.proof {
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.proof h2 {
  font-size: 1.1rem;
  margin: 0 0 0.75rem;
}
.proof-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.proof-card cite {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.85rem;
}

/* Form */
.lead-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow);
  padding: 1.35rem 1.25rem 1.5rem;
}
.lead-card h2 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
}
.lead-card .form-note {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}
label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--ink);
}
.field { margin-bottom: 0.85rem; }
input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  background: #fff;
  color: var(--ink);
}
input:focus, textarea:focus {
  outline: 2px solid rgba(44, 74, 62, 0.35);
  border-color: var(--accent);
}
textarea { min-height: 88px; resize: vertical; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font: inherit;
  font-weight: 650;
  cursor: pointer;
  text-decoration: none;
}
.btn:hover { background: var(--accent-hover); color: #fff; }
.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.btn-secondary:hover { background: rgba(44, 74, 62, 0.06); }

/* Sections / footer */
.section { padding: 2rem 0; }
.clinic-meta {
  font-size: 0.9rem;
  color: var(--muted);
}
.clinic-meta strong { color: var(--ink); }
.site-footer {
  padding: 2rem 0 5.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
}
.site-footer a { color: inherit; }

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: flex;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(8px);
}
.sticky-cta .btn { flex: 1; padding: 0.75rem; font-size: 0.95rem; }
@media (min-width: 768px) {
  .sticky-cta { display: none; }
  .site-footer { padding-bottom: 2rem; }
}

/* Directory (index) */
.dir-grid {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0;
}
@media (min-width: 560px) {
  .dir-grid { grid-template-columns: 1fr 1fr; }
}
.dir-card {
  display: block;
  padding: 1rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.dir-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  color: var(--ink);
}
.dir-card strong { display: block; margin-bottom: 0.2rem; }
.dir-card span { font-size: 0.85rem; color: var(--muted); }
.status-pill {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: #e6f0eb;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* Thank you */
.thanks {
  padding: 3.5rem 0;
  text-align: center;
}
.thanks h1 { margin-bottom: 0.5rem; }
.thanks p { color: var(--muted); max-width: 28rem; margin-inline: auto; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* —— Pro phone LP (Lee Lift / brand) —— */
body.lp-pro {
  --ink: #000000;
  --muted: #4C4A48;
  --bg: #F7F5F2;
  --surface: #ffffff;
  --accent: #033C5D;
  --accent-hover: #022a42;
  --champagne: #C0A38D;
  --teal: #239e9a;
  --line: #e5e1db;
  --max: 1040px;
}
body.lp-pro .logo img {
  height: 40px;
  width: auto;
}
body.lp-pro .header-phone {
  color: var(--accent);
  font-size: 1rem;
}
body.lp-pro .btn {
  background: var(--accent);
  border-radius: 999px;
  letter-spacing: 0.02em;
}
body.lp-pro .btn:hover { background: var(--accent-hover); }
body.lp-pro .btn-champagne {
  background: var(--champagne);
  color: #1a1a1a;
}
body.lp-pro .btn-champagne:hover {
  background: #b08f78;
  color: #1a1a1a;
}
.trust-strip {
  display: block;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  background: var(--surface);
}
.trust-item {
  font-size: 0.9rem;
  color: var(--muted);
  padding: 0.35rem 0.5rem;
}
.trust-item strong {
  display: block;
  color: var(--ink);
  font-size: 0.82rem;
  margin-bottom: 0.2rem;
}
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 0.65rem;
}
.call-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 1.5rem 1.35rem;
  text-align: center;
}
.call-panel .phone-display {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  display: block;
  margin: 0.75rem 0 1rem;
}
.call-panel .hours {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0.85rem 0 0;
}
.section-title {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}
.section-lede {
  color: var(--muted);
  max-width: 40rem;
  margin: 0 0 1.5rem;
}
.feature-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.15rem 1.2rem;
}
.feature-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}
.feature-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}
.doc-strip {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.5rem;
}
@media (min-width: 720px) {
  .doc-strip { grid-template-columns: 180px 1fr; }
}
.doc-strip img {
  width: 100%;
  max-width: 180px;
  border-radius: 12px;
  object-fit: cover;
  margin-inline: auto;
}
.review-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 720px) {
  .review-grid { grid-template-columns: 1fr 1fr; }
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.2rem 1.25rem;
}
.review-card .stars {
  color: var(--champagne);
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.review-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink);
}
.review-card footer {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.disclaimer {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 1rem;
}
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.9rem;
}
.hero-visual {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 1rem;
}
.hero-visual img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .hero-visual img { height: 280px; }
}
.cta-band {
  background: var(--accent);
  color: #fff;
  padding: 2rem 0;
  text-align: center;
}
.cta-band h2 { margin: 0 0 0.5rem; color: #fff; }
.cta-band p { margin: 0 0 1.25rem; color: rgba(255,255,255,0.85); }
.cta-band .btn {
  background: var(--champagne);
  color: #1a1a1a;
  max-width: 320px;
  margin-inline: auto;
}
.cta-band .btn:hover { background: #d4b79f; color: #1a1a1a; }

/* —— Lee Lift cinematic / brand motion —— */
body.lp-lee {
  --ink: #0a0a0a;
  --muted: #5a5653;
  --bg: #f4f1ec;
  --surface: #ffffff;
  --accent: #033C5D;
  --accent-hover: #022a42;
  --champagne: #C0A38D;
  --champagne-deep: #a88870;
  --line: #e2ddd6;
  --max: 1100px;
  overflow-x: hidden;
}
body.lp-lee .site-header {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.3s ease;
}
body.lp-lee .site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(3, 60, 93, 0.08);
}
body.lp-lee .logo img { height: 44px; }
body.lp-lee .btn {
  border-radius: 999px;
  background: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 1rem 1.5rem;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
body.lp-lee .btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(3, 60, 93, 0.22);
}
body.lp-lee .btn-champagne {
  background: linear-gradient(135deg, var(--champagne), var(--champagne-deep));
  color: #1a1512;
}
body.lp-lee .btn-champagne:hover {
  background: linear-gradient(135deg, #d4b79f, var(--champagne));
  color: #1a1512;
}
body.lp-lee .btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
body.lp-lee .hero-lee {
  position: relative;
  padding: 3.5rem 0 3rem;
  background:
    radial-gradient(ellipse 80% 60% at 90% 10%, rgba(192,163,141,0.28), transparent 55%),
    linear-gradient(165deg, #ebe6df 0%, var(--bg) 55%, #faf8f5 100%);
}
body.lp-lee .hero-lee h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(2.1rem, 5.5vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--accent);
}
body.lp-lee .eyebrow {
  color: var(--champagne-deep);
}
body.lp-lee .section-title {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  color: var(--accent);
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.parallax-soft {
  will-change: transform;
}
.divider-gold {
  width: 48px;
  height: 2px;
  background: var(--champagne);
  margin: 1rem 0 1.25rem;
}
.lee-stats {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (min-width: 640px) {
  .lee-stats { grid-template-columns: repeat(3, 1fr); }
}
.lee-stat {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  text-align: center;
}
.lee-stat strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 1.35rem;
  color: var(--accent);
  font-weight: 500;
}
.lee-stat span {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}
.call-orb {
  position: relative;
  overflow: hidden;
}
.call-orb::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 20%, rgba(192,163,141,0.35), transparent 50%);
  pointer-events: none;
}
.review-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(3, 60, 93, 0.1);
}
.cta-band {
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  top: -160px;
  border-radius: 50%;
  background: rgba(192,163,141,0.18);
  pointer-events: none;
}
.gads-phone-dni {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  body.lp-lee .btn:hover { transform: none; }
}

/* —— EXTRA LEE MOTION + BRAND v2 —— */
body.lp-lee {
  --font-display: Georgia, "Times New Roman", "Palatino Linotype", Palatino, serif;
  --font-body: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  font-family: var(--font-body);
}
body.lp-lee .scroll-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, var(--champagne), var(--accent));
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.05s linear;
  pointer-events: none;
}
body.lp-lee .site-header {
  position: sticky;
}
body.lp-lee .eyebrow {
  letter-spacing: 0.14em;
  font-weight: 600;
}
body.lp-lee .lede {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 34rem;
}
body.lp-lee .divider-gold {
  width: 56px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--champagne), transparent);
}
body.lp-lee .feature-card {
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease, border-color 0.3s ease;
}
body.lp-lee .feature-card.is-in:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(3, 60, 93, 0.1);
  border-color: rgba(192, 163, 141, 0.55);
}
body.lp-lee .feature-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--accent);
}
body.lp-lee .doc-strip {
  background:
    linear-gradient(135deg, rgba(3,60,93,0.04), transparent 40%),
    var(--surface);
}
body.lp-lee .trust-strip {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
body.lp-lee .trust-grid {
  display: grid;
  gap: 0.85rem;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}
/* removed conflicting 640px 4-col trust-grid */

body.lp-lee .call-panel {
  border-color: rgba(192, 163, 141, 0.45);
  box-shadow: 0 20px 50px rgba(3, 60, 93, 0.08);
}
body.lp-lee .hero-visual.ken-burns {
  overflow: hidden;
}
body.lp-lee .ken-burns img.kb-active {
  animation: leeKen 18s ease-in-out infinite alternate;
  transform-origin: center center;
}
@keyframes leeKen {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}
.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1);
}
.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1);
}
.reveal-left.is-in,
.reveal-right.is-in,
.reveal-scale.is-in {
  opacity: 1;
  transform: none;
}
body.lp-lee .sticky-cta {
  animation: stickyIn 0.55s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.6s;
}
@keyframes stickyIn {
  from { transform: translateY(110%); opacity: 0; }
  to { transform: none; opacity: 1; }
}
body.lp-lee .cta-band h2 {
  font-family: var(--font-display);
  font-weight: 500;
}
body.lp-lee .section {
  padding: 2.75rem 0;
}
@media (prefers-reduced-motion: reduce) {
  .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; transition: none; }
  body.lp-lee .ken-burns img.kb-active { animation: none; }
  body.lp-lee .sticky-cta { animation: none; }
  body.lp-lee .feature-card.is-in:hover { transform: none; }
}


/* gads-phone-dni-v3 — never paint clinic digits */
.gads-phone-dni,
#gads-phone-dni {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
  opacity: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  color: transparent !important;
  pointer-events: none !important;
  user-select: none !important;
}


/* —— calm LP + proof widget —— */
body.lp-lee .header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: transparent;
  width: auto;
}
body.lp-lee .header-call:hover {
  background: rgba(3, 60, 93, 0.06);
  color: var(--accent);
}
body.lp-lee .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 0;
}
body.lp-lee .hero-actions .btn { width: auto; }
.proof-widget {
  background: var(--surface);
  border: 1px solid rgba(192, 163, 141, 0.45);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(3, 60, 93, 0.08);
  padding: 1.35rem 1.35rem 1.1rem;
  margin-bottom: 1.25rem;
}
.proof-widget-head {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}
.proof-score {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--accent);
  font-weight: 500;
}
.proof-widget .stars {
  color: var(--champagne);
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}
.proof-widget-label {
  margin: 0.15rem 0 0;
  font-weight: 650;
  color: var(--ink);
  font-size: 0.95rem;
}
.proof-widget-meta {
  margin: 0.15rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}
.proof-quotes {
  position: relative;
  min-height: 5.5rem;
}
.proof-quote {
  margin: 0;
  display: none;
}
.proof-quote.is-active { display: block; }
.proof-quote p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}
.proof-dots {
  display: flex;
  gap: 0.45rem;
  margin-top: 0.9rem;
}
.proof-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: #d5cfc7;
  cursor: pointer;
}
.proof-dot.is-on { background: var(--accent); }
.proof-disclaimer { margin-top: 0.85rem; }
body.lp-lee .hero-visual { margin-top: 0; }
body.lp-lee .sticky-cta .btn {
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
}

/* —— trust strip ultimate fix (do not grid the outer strip) —— */
body.lp-lee .trust-strip {
  display: block !important;
  grid-template-columns: none !important;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
}
body.lp-lee .trust-strip > .wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}
body.lp-lee .trust-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 1.1rem 1.5rem;
  width: 100%;
}
@media (min-width: 700px) {
  body.lp-lee .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 980px) {
  body.lp-lee .trust-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    text-align: center;
  }
}
body.lp-lee .trust-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  min-width: 0;
  margin: 0;
  padding: 0.85rem 1rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.4;
  opacity: 1 !important;
  transform: none !important;
}
@media (min-width: 980px) {
  body.lp-lee .trust-item { align-items: center; }
}
body.lp-lee .trust-item strong {
  display: block;
  width: 100%;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
}
body.lp-lee .trust-item span {
  display: block;
  width: 100%;
  color: var(--ink);
  font-size: 0.95rem;
  overflow-wrap: break-word;
}

/* —— trust address wrap —— */
body.lp-lee .trust-item,
body.lp-lee .trust-item span,
body.lp-lee .trust-item strong {
  overflow: visible !important;
  text-overflow: unset !important;
  white-space: normal !important;
  max-width: none !important;
}
body.lp-lee .trust-address {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  width: 100%;
}
body.lp-lee .trust-address-line {
  display: block;
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.35;
}
@media (min-width: 980px) {
  body.lp-lee .trust-grid {
    grid-template-columns: 1.05fr 1.05fr 1fr 1.25fr;
    align-items: stretch;
  }
  body.lp-lee .trust-item-address {
    text-align: center;
  }
}

/* —— engaging procedure sections —— */
.proc-kicker {
  display: inline-block;
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--champagne-deep, #a88870);
}
.proc-stack {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}
@media (min-width: 800px) {
  .proc-stack { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.proc-panel {
  border-radius: 16px;
  padding: 1.35rem 1.3rem 1.4rem;
  border: 1px solid transparent;
  min-height: 100%;
}
.proc-panel h3 {
  margin: 0.35rem 0 0.55rem;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: 1.2rem;
}
.proc-panel p { margin: 0; font-size: 0.95rem; line-height: 1.55; }
.proc-panel-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.proc-panel--navy {
  background: linear-gradient(160deg, #033C5D 0%, #05507a 100%);
  color: #f7f5f2;
  border-color: #022a42;
}
.proc-panel--navy .proc-panel-tag { color: #C0A38D; }
.proc-panel--navy h3 { color: #fff; }
.proc-panel--navy p { color: rgba(255,255,255,0.88); }
.proc-panel--champagne {
  background: linear-gradient(160deg, #f3e8dc 0%, #e8d5c3 100%);
  color: #1a1512;
  border-color: rgba(192,163,141,0.55);
}
.proc-panel--champagne .proc-panel-tag { color: #033C5D; }
.proc-panel--champagne h3 { color: #033C5D; }
.proc-panel--sand {
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 12px 28px rgba(3,60,93,0.06);
}
.proc-panel--sand .proc-panel-tag { color: #239e9a; }
.proc-panel--sand h3 { color: #033C5D; }
.proc-panel--sand p { color: var(--muted); }

.gallery-invite {
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(192,163,141,0.28), transparent 55%),
    linear-gradient(120deg, #033C5D 0%, #044a72 55%, #0a3d55 100%);
  color: #fff;
  padding: 2.75rem 0;
  margin: 0.5rem 0 0;
}
.gallery-invite-inner {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
@media (min-width: 860px) {
  .gallery-invite-inner { grid-template-columns: 1.15fr 0.85fr; gap: 2rem; }
}
.gallery-invite .section-title { color: #fff; }
.gallery-invite .eyebrow { color: #C0A38D; }
.gallery-invite-copy p {
  color: rgba(255,255,255,0.88);
  max-width: 34rem;
  margin: 0 0 1.25rem;
  line-height: 1.6;
}
.gallery-invite-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.ba-frame {
  width: min(42%, 160px);
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  border: 1.5px dashed rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  text-align: center;
}
.ba-frame--after {
  border-style: solid;
  border-color: rgba(192,163,141,0.65);
  background: rgba(192,163,141,0.12);
}
.ba-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C0A38D;
}
.ba-placeholder {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.35;
}
.ba-arrow {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
}

.candidates-band { padding-top: 2.5rem; }
.candidates-card {
  background: linear-gradient(135deg, #eef5f8 0%, #f7f5f2 55%, #f3ebe3 100%);
  border: 1px solid #d5e2ea;
  border-left: 5px solid #033C5D;
  border-radius: 16px;
  padding: 1.75rem 1.6rem;
}
.candidates-card p { margin: 0; color: var(--muted); line-height: 1.65; max-width: 48rem; }
.candidates-card .section-title { margin-bottom: 0.35rem; }

.approach-rail {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (min-width: 760px) {
  .approach-rail { grid-template-columns: 1fr 1fr; }
}
.approach-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 1.35rem 1.25rem 1.35rem 1.35rem;
  border: 1px solid var(--line);
  border-top: 4px solid #033C5D;
  overflow: hidden;
}
.approach-card--1 { border-top-color: #033C5D; }
.approach-card--2 { border-top-color: #C0A38D; }
.approach-card--3 { border-top-color: #239e9a; }
.approach-card--4 { border-top-color: #6b5b4f; }
.approach-num {
  display: block;
  font-family: Georgia, serif;
  font-size: 1.6rem;
  color: rgba(3,60,93,0.18);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.45rem;
}
.approach-card h3 {
  margin: 0 0 0.45rem;
  font-family: Georgia, serif;
  font-weight: 500;
  color: #033C5D;
  font-size: 1.15rem;
}
.approach-card p { margin: 0; color: var(--muted); font-size: 0.94rem; line-height: 1.55; }

.expect-band {
  background: #f4f1ec;
  padding: 2.75rem 0;
  margin-top: 0.5rem;
}
.expect-timeline {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) {
  .expect-timeline { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.1rem; }
}
.expect-step {
  background: #fff;
  border-radius: 16px;
  padding: 1.25rem 1.15rem 1.35rem;
  border: 1px solid var(--line);
  position: relative;
}
.expect-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #C0A38D;
  margin-bottom: 0.65rem;
  box-shadow: 0 0 0 4px rgba(192,163,141,0.25);
}
.expect-step h3 {
  margin: 0 0 0.4rem;
  font-family: Georgia, serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: #033C5D;
}
.expect-step p { margin: 0; font-size: 0.9rem; color: var(--muted); line-height: 1.5; }


/* —— Lee Lift hero video (autoplay loop background) —— */
body.lp-lee .hero-video {
  position: relative;
  height: min(88vh, 680px);
  min-height: 60vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #0a0a0a;
}
body.lp-lee .hero-video-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0a0a0a url("/assets/video/space-lift-scrub-start.jpg") center / cover no-repeat;
}
body.lp-lee .hero-video-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 1;
  background: #0a0a0a;
}
body.lp-lee .hero-video-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 20, 35, 0.72) 0%, rgba(3, 20, 35, 0.45) 42%, rgba(3, 20, 35, 0.2) 70%, rgba(3, 20, 35, 0.35) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, transparent 28%, transparent 55%, rgba(247,245,242,0.15) 78%, rgba(247,245,242,0.55) 100%);
}
/* Soft bottom fade into page bg — CSS only, always on */
body.lp-lee .hero-video::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: min(28vh, 220px);
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, var(--bg, #f7f5f2) 92%);
  opacity: 1;
}
body.lp-lee .hero-video-overlay {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: flex-end;
  height: 100%;
  padding: 5.5rem 0 3.5rem;
  box-sizing: border-box;
  pointer-events: none;
  opacity: 1 !important;
  transform: none !important;
}
body.lp-lee .hero-video-copy {
  pointer-events: auto;
  max-width: 40rem;
  color: #f7f5f2;
}
body.lp-lee .hero-video-frost {
  display: inline-block;
  max-width: 100%;
  padding: 1.15rem 1.35rem 1.25rem;
  border-radius: 16px;
  background: rgba(3, 20, 35, 0.42);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 12px 40px rgba(0,0,0,0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
@keyframes hero-video-copy-in {
  from { opacity: 0; transform: translate3d(0, 12px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@media (prefers-reduced-motion: no-preference) {
  body.lp-lee .hero-video-frost {
    animation: hero-video-copy-in 0.6s ease-out both;
  }
}
body.lp-lee .hero-video-copy .eyebrow {
  color: #C0A38D;
}
body.lp-lee .hero-video-copy h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(2.25rem, 6vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0.35rem 0 0;
  text-shadow:
    0 1px 2px rgba(0,0,0,0.55),
    0 2px 18px rgba(0,0,0,0.45);
}
body.lp-lee .hero-video-copy .lede {
  color: rgba(247, 245, 242, 0.92);
  max-width: 34rem;
}
body.lp-lee .hero-video-copy .lede a {
  color: #E8D5C3;
  text-decoration: underline;
  text-underline-offset: 2px;
}
body.lp-lee .hero-video-copy .divider-gold {
  background: linear-gradient(90deg, #C0A38D, transparent);
}
body.lp-lee .hero-video-disclaimer {
  color: rgba(247, 245, 242, 0.72);
  margin-top: 1rem;
  max-width: 28rem;
}

/* Reduced motion: hide/pause video, show poster still via media background */
@media (prefers-reduced-motion: reduce) {
  body.lp-lee .hero-video-media video {
    display: none;
  }
}

/* —— Navy B&A carousel band (full-bleed, gallery-invite look) —— */
.ba-carousel-band {
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(192,163,141,0.28), transparent 55%),
    linear-gradient(120deg, #033C5D 0%, #044a72 55%, #0a3d55 100%);
  color: #fff;
  padding: 2.75rem 0 2.5rem;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}
.ba-carousel-inner {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
@media (min-width: 860px) {
  .ba-carousel-inner {
    grid-template-columns: 1.05fr 1.15fr;
    gap: 2rem;
  }
}
/* Text must contrast with its section bg (navy band = light ink; champagne/sand = dark ink).
   body.lp-lee .section-title/.eyebrow are navy/champagne — beat them on dark bands. */
body.lp-lee .ba-carousel-band .section-title { color: #fff !important; margin: 0.35rem 0 0.5rem; }
body.lp-lee .ba-carousel-band .eyebrow { color: #C0A38D !important; }
body.lp-lee .ba-carousel-band .ba-carousel-copy p { color: rgba(255,255,255,0.92) !important; }
body.lp-lee .ba-carousel-band .ba-carousel-note { color: rgba(255,255,255,0.75) !important; }
body.lp-lee .ba-carousel-band .ba-label,
body.lp-lee .ba-carousel-band .ba-frame-real .ba-label {
  color: #F7F5F2 !important;
  background: rgba(3,20,35,0.85);
}
body.lp-lee .hero-video-copy .eyebrow { color: #C0A38D !important; }
body.lp-lee .hero-video-copy h1 { color: #fff !important; }
body.lp-lee .gallery-invite .section-title { color: #fff !important; }
body.lp-lee .proc-panel--navy h3 { color: #fff !important; }
body.lp-lee .proc-panel--navy p { color: rgba(255,255,255,0.88) !important; }
body.lp-lee .proc-panel--champagne h3,
body.lp-lee .proc-panel--sand h3 { color: #033C5D !important; }
.ba-carousel-copy p {
  color: rgba(255,255,255,0.88);
  max-width: 34rem;
  margin: 0;
  line-height: 1.6;
}
.ba-carousel-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.ba-slide {
  display: none;
  margin: 0;
  width: 100%;
}
.ba-slide.is-active {
  display: block;
}
.ba-slide-frames {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: nowrap;
}
.ba-frame-real {
  position: relative;
  flex: 0 1 auto;
  width: clamp(140px, 28vw, 220px);
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 14px 36px rgba(0,0,0,0.28);
}
.ba-frame-real--after {
  border-color: rgba(192,163,141,0.9);
}
.ba-frame-real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.ba-frame-real .ba-label {
  position: absolute;
  left: 0.55rem;
  bottom: 0.55rem;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(3,20,35,0.72);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C0A38D;
}
.ba-arrow-sep {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
}
.ba-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 0.25rem;
}
.ba-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(192,163,141,0.75);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.ba-nav-btn:hover,
.ba-nav-btn:focus-visible {
  background: rgba(192,163,141,0.28);
  border-color: #C0A38D;
  outline: none;
}
.ba-nav-btn:active { transform: scale(0.96); }
.ba-dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.ba-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(255,255,255,0.35);
  transition: background 0.2s ease, transform 0.15s ease;
}
.ba-dot.is-on {
  background: #C0A38D;
  transform: scale(1.15);
}
.ba-dot:focus-visible {
  outline: 2px solid #C0A38D;
  outline-offset: 2px;
}
.ba-carousel-note {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.62);
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 480px) {
  .ba-frame-real {
    width: clamp(120px, 36vw, 160px);
  }
  .ba-arrow-sep { font-size: 1.2rem; }
}

/* —— Rounded content cards after hero (body.lp-lee) —— */
body.lp-lee .lp-card,
body.lp-lee .trust-strip,
body.lp-lee .gallery-invite,
body.lp-lee .expect-band,
body.lp-lee .proof-band .proof-widget,
body.lp-lee .proc-panel,
body.lp-lee .gallery-invite-inner,
body.lp-lee .candidates-card,
body.lp-lee .approach-card,
body.lp-lee .expect-step,
body.lp-lee .feature-card,
body.lp-lee .doc-strip,
body.lp-lee .call-panel {
  border-radius: 20px;
}
body.lp-lee .trust-strip,
body.lp-lee .gallery-invite,
body.lp-lee .expect-band {
  width: min(100% - 2rem, var(--max));
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  box-sizing: border-box;
}
body.lp-lee .trust-strip {
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
  border: 1px solid var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(3, 60, 93, 0.05);
}
body.lp-lee .trust-strip > .wrap {
  width: 100%;
  max-width: none;
  padding-inline: 0.35rem;
}
body.lp-lee .gallery-invite {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-block: 2.5rem;
}
body.lp-lee .gallery-invite-inner {
  /* keep inner content; outer already rounded */
}
body.lp-lee .expect-band {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(226, 221, 214, 0.9);
}
body.lp-lee .proc-panel,
body.lp-lee .approach-card,
body.lp-lee .expect-step,
body.lp-lee .candidates-card,
body.lp-lee .feature-card,
body.lp-lee .doc-strip,
body.lp-lee .call-panel,
body.lp-lee .proof-widget {
  overflow: hidden;
}
body.lp-lee .proc-panel { border-radius: 20px; }
body.lp-lee .candidates-card { border-radius: 20px; }
body.lp-lee .approach-card { border-radius: 20px; }
body.lp-lee .expect-step { border-radius: 20px; }
body.lp-lee .doc-strip {
  border-radius: 20px;
  border: 1px solid var(--line);
}
body.lp-lee .proof-band {
  padding-top: 1.25rem;
  padding-bottom: 0.5rem;
}
body.lp-lee .proof-band .proof-widget {
  margin-bottom: 0;
  border-radius: 20px;
}
body.lp-lee .feature-card { border-radius: 20px; }
body.lp-lee .call-panel { border-radius: 20px; overflow: hidden; }

@media (max-width: 640px) {
  body.lp-lee .hero-video-overlay {
    align-items: flex-end;
    padding: 4.75rem 0 2.75rem;
  }
  body.lp-lee .hero-video-frost {
    padding: 0.95rem 1.05rem 1.05rem;
  }
  body.lp-lee .hero-video-copy h1 {
    font-size: clamp(1.9rem, 9vw, 2.4rem);
  }
  body.lp-lee .trust-strip,
  body.lp-lee .gallery-invite,
  body.lp-lee .expect-band {
    width: min(100% - 1.25rem, var(--max));
    border-radius: 16px;
  }
  body.lp-lee .proc-panel,
  body.lp-lee .approach-card,
  body.lp-lee .expect-step,
  body.lp-lee .candidates-card,
  body.lp-lee .doc-strip,
  body.lp-lee .proof-widget,
  body.lp-lee .feature-card,
  body.lp-lee .call-panel {
    border-radius: 16px;
  }
}
