/* =====================================================================
   LVL Up Homes — "Scale" rebuild
   Modeled on scale.com: white canvas, near-black inset hero frame with
   big rounded corners, huge light grotesk headlines, tiny uppercase
   gray eyebrows, hairline-bordered minimal cards, black pill buttons,
   alternating light/dark sections, generous air. Gold kept as the one
   brand accent, used sparingly (CTAs, key highlights).
   ===================================================================== */

/* ===== TOKENS ===== */
:root {
  --canvas:  #FFFFFF;   /* white canvas */
  --paper:   #FFFFFF;   /* card white */
  --sand:    #F6F6F4;   /* faint gray panel */
  --sand-2:  #ECECEA;
  --espresso:#0A0A0A;   /* near-black — dark sections (token name kept) */
  --espresso-2:#1A1A1A; /* charcoal hover */
  --ink:     #0A0A0A;   /* near-black text */
  --ink-2:   #4A4A4A;   /* secondary */
  --ink-3:   #8A8A8A;   /* faint / captions */
  --gold:    #C9A84C;   /* brand gold — the single accent */
  --gold-d:  #8A6D1F;   /* deeper gold for TEXT on white (AA) */
  --navy-mid:#1A1A1A;   /* kept token name — charcoal */
  --line:    #E7E7E4;
  --line-2:  #F0F0EE;

  --display: "Inter Tight", "Inter", system-ui, -apple-system, sans-serif; /* headlines */
  --serif: "Inter Tight", "Inter", system-ui, sans-serif;                  /* token kept — grotesk now */
  --sans:  "Inter", system-ui, -apple-system, sans-serif;                  /* body / UI */

  --wrap: 1280px;
  --r: 10px;
  --r-img: 18px;
  --frame: 10px;         /* inset margin around dark frames */
  --section-y: 128px;
  --shadow: 0 30px 70px -40px rgba(10,10,10,0.25);
  --shadow-sm: 0 16px 44px -28px rgba(10,10,10,0.22);
}

/* ===== RESET ===== */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--canvas); color: var(--ink);
  font-family: var(--sans); font-size: 16px; line-height: 1.7; font-weight: 400;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }
h1,h2,h3,h4 { margin: 0; font-family: var(--display); font-weight: 500; line-height: 1.08; letter-spacing: -0.025em; color: var(--ink); }
em { font-style: italic; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 36px; }

/* ===== TYPE PRIMITIVES ===== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3);
}
.eyebrow::before { content: none; }
.eyebrow--center { justify-content: center; }
.eyebrow--light { color: rgba(255,255,255,0.55); }

.h-xl { font-size: clamp(46px, 6.6vw, 104px); line-height: 1.02; font-weight: 400; letter-spacing: -0.03em; }
.h-lg { font-size: clamp(34px, 4.4vw, 60px); line-height: 1.05; font-weight: 450; letter-spacing: -0.03em; }
.h-md { font-size: clamp(26px, 3vw, 40px); font-weight: 450; letter-spacing: -0.02em; }
.it { font-family: var(--display); font-style: normal; font-weight: inherit; color: var(--ink-3); }
.gold { color: var(--gold-d); }
.lede { font-size: 17px; line-height: 1.75; color: var(--ink-2); font-weight: 400; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: var(--r); white-space: nowrap;
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  letter-spacing: 0; text-transform: none;
  border: 1px solid transparent; transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0) scale(0.99); transition-duration: .08s; }
.btn--dark { background: var(--espresso); color: #fff; }
.btn--dark:hover { background: var(--gold); color: #0D1B2E; }
.btn--gold { background: var(--gold); color: var(--espresso); }
.btn--gold:hover { background: #D9BC68; }
.btn--line { border-color: #D6D6D2; color: var(--ink); background: #fff; }
.btn--line:hover { border-color: var(--ink); }
.btn--line-light { border-color: rgba(255,255,255,0.35); color: #fff; }
.btn--line-light:hover { background: #fff; color: var(--espresso); border-color: #fff; }
.btn--lg { padding: 18px 34px; font-size: 15px; }
.link-gold { color: var(--ink); border-bottom: 1px solid var(--ink-3); padding-bottom: 2px; font-weight: 500; }
.link-gold:hover { border-color: var(--ink); }

/* ===== SECTIONS ===== */
.section { padding: var(--section-y) 0; }
.section--sand { background: var(--canvas); border-top: 1px solid var(--line); }
.section--paper { background: var(--sand); }
.section--dark { background: var(--espresso); color: rgba(255,255,255,0.68); margin: 0 var(--frame); border-radius: 24px; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section__head { max-width: 760px; margin-bottom: 64px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__head h2 { margin-top: 22px; }
.section__head .lede { margin-top: 22px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s cubic-bezier(.2,.6,.2,1), transform .9s cubic-bezier(.2,.6,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ===== NAV ===== */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 60; isolation: isolate; background: rgba(255,255,255,0.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); transition: box-shadow .3s ease; }
.nav::before { content: none; }
.nav.is-scrolled { background: rgba(255,255,255,0.94); box-shadow: 0 1px 0 var(--line); }
.nav__inner { max-width: none; margin: 0 auto; padding: 14px 28px; display: flex; align-items: center; gap: 26px; transition: padding .3s ease; }
.nav.is-scrolled .nav__inner { padding: 11px 28px; }
.nav__brand { display: flex; align-items: center; gap: 11px; }
.nav__mark { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; flex: 0 0 auto; }
.nav__orbit { display: none; }
.nav__badge { width: 40px; height: 40px; filter: none; }
.nav__badge--light { display: none; }
.nav__badge--dark { display: block; }
.nav__name { font-family: var(--display); font-size: 18px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); text-shadow: none; }
.nav__sub { display: block; white-space: nowrap; font-size: 8px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-3); margin-top: 2px; font-family: var(--sans); font-weight: 600; }
.nav.is-scrolled .nav__name { color: var(--ink); }
.nav.is-scrolled .nav__sub { color: var(--ink-3); }
.nav__links { display: flex; gap: 4px; margin-left: auto; }
.nav__links a { font-family: var(--sans); white-space: nowrap; font-size: 13.5px; font-weight: 500; letter-spacing: 0; text-transform: none; color: var(--ink-2); position: relative; padding: 8px 12px; border-radius: 8px; transition: color .15s ease, background .15s ease; }
.nav__links a:hover, .nav__links a.is-current { color: var(--ink); background: var(--sand); }
.nav.is-scrolled .nav__links a { color: var(--ink-2); }
.nav.is-scrolled .nav__links a:hover, .nav.is-scrolled .nav__links a.is-current { color: var(--ink); }
.nav__links a.is-current::after { content: none; }
.nav__hoa { display: inline-flex; align-items: center; gap: 8px; }
.nav__hoa-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: hoa-pulse 2.4s ease-in-out infinite; }
@keyframes hoa-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.5); transform: scale(1); } 50% { box-shadow: 0 0 0 5px rgba(201,168,76,0); transform: scale(1.25); } }
.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__phone { font-size: 13.5px; font-weight: 500; color: var(--ink-2); display: inline-flex; align-items: center; gap: 7px; }
.nav__phone:hover { color: var(--ink); }
.nav.is-scrolled .nav__phone { color: var(--ink-2); }
.nav.is-scrolled .nav__phone:hover { color: var(--ink); }
.nav__book { padding: 11px 20px; border-radius: var(--r); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__toggle span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: background .2s ease; }
.nav.is-scrolled .nav__toggle span { background: var(--ink); }

/* promo bar (rides with the fixed nav) */
.promobar { position: relative; height: 34px; background: var(--gold); overflow: hidden; }
.promobar__msg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #0D1B2E; opacity: 0; animation: promoswap 7s ease-in-out infinite; }
.promobar__msg:nth-child(2) { animation-delay: 3.5s; }
@keyframes promoswap { 0% { opacity: 0; } 7% { opacity: 1; } 43% { opacity: 1; } 50% { opacity: 0; } 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .promobar__msg { animation: none; }
  .promobar__msg:nth-child(2) { opacity: 1; }
}

/* ===== HERO (inset dark frame, scale.com style) ===== */
.hero { position: relative; min-height: calc(100vh - 126px); margin: 112px var(--frame) 0; border-radius: 24px; display: flex; align-items: center; overflow: hidden; background: var(--espresso); }
.hero__ribbon { position: absolute; right: 0; bottom: 0; width: 190px; height: 190px; overflow: hidden; z-index: 3; pointer-events: none; }
.hero__ribbon span { position: absolute; display: block; width: 280px; text-align: center; right: -74px; bottom: 52px; transform: rotate(-45deg); background: var(--gold); color: #0D1B2E; font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 10px 0; box-shadow: 0 8px 26px rgba(0,0,0,0.4); }
.hero__ribbon span::before, .hero__ribbon span::after { content: ""; position: absolute; top: 100%; border: 5px solid #8A6D1F; }
.hero__ribbon span::before { left: 12px; border-left-color: transparent; border-bottom-color: transparent; }
.hero__ribbon span::after { right: 12px; border-right-color: transparent; border-bottom-color: transparent; }
.hero__media { position: absolute; inset: 0; z-index: 0; opacity: 0.35; }
.hero__media picture { display: block; width: 100%; height: 100%; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim { position: absolute; inset: 0; z-index: 1; background:
  linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.35) 40%, rgba(10,10,10,0.75) 100%); }
.hero__inner { position: relative; z-index: 2; width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 120px 36px 96px; }
.hero__copy { max-width: 880px; margin: 0 auto; text-align: center; color: #fff; }
.hero__copy .eyebrow { color: rgba(255,255,255,0.6); }
.hero h1 { color: #fff; margin-top: 26px; text-shadow: none; }
.hero h1 span { display: inline; }
.hero h1 span::after { content: " "; }
.hero__title { font-size: clamp(42px, 5.8vw, 88px); line-height: 1.04; letter-spacing: -0.03em; font-weight: 400; }
.hero__title .it { color: rgba(255,255,255,0.92); }
.hero h1 .it--gold { color: var(--gold); font-style: normal; }
.hero__lede { margin: 26px auto 0; max-width: 620px; color: rgba(255,255,255,0.75); font-size: 17px; }
.hero__hoa { margin-top: 30px; display: inline-flex; align-items: center; gap: 11px; padding: 10px 20px; border-radius: 999px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.22); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); color: rgba(255,255,255,0.75); font-size: 13.5px; transition: border-color .2s ease, background .2s ease; }
.hero__hoa:hover { border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.1); }
.hero__hoa b { color: #fff; font-family: var(--sans); font-weight: 600; }
.hero__hoa-sub { color: rgba(255,255,255,0.55); }
.hero__hoa svg { color: var(--gold); }
.hero__hoa-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: hoa-pulse-light 2.4s ease-in-out infinite; }
@keyframes hoa-pulse-light { 0%,100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.5); transform: scale(1); } 50% { box-shadow: 0 0 0 6px rgba(201,168,76,0); transform: scale(1.25); } }
.hero__ctas { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.hero__ctas .btn--gold { background: #fff; color: var(--espresso); }
.hero__ctas .btn--gold:hover { background: var(--gold); color: #0D1B2E; }

/* trust strip below hero */
.trust { background: var(--canvas); color: var(--ink); }
.trust__inner { max-width: var(--wrap); margin: 0 auto; padding: 0 36px; display: grid; grid-template-columns: repeat(4, 1fr); }
.trust__item { padding: 52px 28px; text-align: center; border-right: 1px solid var(--line); }
.trust__item:last-child { border-right: 0; }
.trust__item b { font-family: var(--display); font-weight: 400; font-size: clamp(34px, 3.6vw, 52px); letter-spacing: -0.03em; color: var(--ink); line-height: 1; }
.trust__item span { display: block; margin-top: 12px; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }

/* ===== SERVICE AREAS (floating marquee) ===== */
.areas { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; background: var(--canvas); }
.areas__marquee { display: flex; padding: 26px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.areas__track { display: flex; flex-shrink: 0; align-items: center; white-space: nowrap; animation: areas-scroll 38s linear infinite; }
.areas__track span { font-family: var(--sans); font-style: normal; font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); padding: 0 34px; position: relative; }
.areas__track span::after { content: ""; position: absolute; right: -2px; top: 50%; width: 4px; height: 4px; margin-top: -2px; border-radius: 50%; background: var(--gold); }
.areas:hover .areas__track { animation-play-state: paused; }
@keyframes areas-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== STATEMENT ===== */
.statement { text-align: center; }
.statement .h-lg { max-width: 1000px; margin: 24px auto 0; font-weight: 400; }
.statement .h-lg .it { color: var(--ink-3); }
.statement .lede { max-width: 680px; margin: 28px auto 0; }

/* ===== FLY SEASON BAND ===== */
.flyband { background: rgba(201,168,76,0.08); border-top: 1px solid rgba(201,168,76,0.35); border-bottom: 1px solid rgba(201,168,76,0.35); }
.flyband__inner { display: flex; align-items: center; gap: 24px; padding-top: 26px; padding-bottom: 26px; }
.flyband__icon { flex: 0 0 auto; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; background: var(--gold); color: var(--espresso); border-radius: 50%; }
.flyband__icon svg { width: 28px; height: 28px; }
.flyband__copy { flex: 1 1 auto; }
.flyband__copy b { display: block; font-family: var(--display); font-size: 18px; font-weight: 500; letter-spacing: -0.01em; color: var(--ink); }
.flyband__copy span { display: block; margin-top: 4px; font-size: 14px; line-height: 1.6; color: var(--ink-2); max-width: 760px; }
.flyband .btn { flex: 0 0 auto; }

/* ===== HOW IT WORKS ===== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step { padding: 40px 34px; border: 1px solid var(--line); border-radius: var(--r-img); background: var(--paper); }
.step:first-child { padding-left: 34px; }
.step:last-child { padding-right: 34px; }
.step__n { font-family: var(--sans); font-style: normal; font-size: 12px; font-weight: 600; letter-spacing: 0.14em; color: var(--ink-3); }
.step__icon { width: 40px; height: 40px; color: var(--ink); margin: 26px 0 20px; }
.step h3 { font-size: 23px; font-weight: 500; letter-spacing: -0.01em; }
.step p { margin-top: 13px; color: var(--ink-2); font-size: 15px; }
.steps__fine { margin-top: 18px; font-size: 12.5px; color: var(--ink-3); }

/* ===== VIDEO FRAME ===== */
.demo__frame { position: relative; max-width: 1040px; margin: 0 auto; border-radius: var(--r-img); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 16/9; background: var(--espresso); }
.demo__frame video, .demo__frame img { width: 100%; height: 100%; object-fit: cover; }
.demo__tag { position: absolute; top: 20px; left: 20px; z-index: 3; display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: rgba(255,255,255,0.95); font-size: 10.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); }
.demo__tag .dot { width: 6px; height: 6px; border-radius: 50%; background: #E0492B; }
.demo__sound { position: absolute; right: 20px; bottom: 20px; z-index: 3; display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 999px; background: rgba(255,255,255,0.95); color: var(--ink); font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.demo__sound:hover { background: #fff; }
.demo__note { margin-top: 28px; text-align: center; font-size: 14px; color: var(--ink-3); }
.demo__note b { color: var(--ink); }

/* ===== SERVICES (editorial rows) ===== */
.svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 68px 0; border-top: 1px solid var(--line); }
.svc-row:last-of-type { border-bottom: 1px solid var(--line); }
.svc-row--flip .svc-row__media { order: -1; }
.svc-row__n { font-family: var(--sans); font-style: normal; font-size: 12px; font-weight: 600; letter-spacing: 0.14em; color: var(--ink-3); }
.svc-row__body h3 { margin-top: 12px; font-size: clamp(26px, 2.6vw, 36px); font-weight: 500; letter-spacing: -0.02em; }
.svc-row__body p { margin-top: 16px; color: var(--ink-2); font-size: 15.5px; max-width: 470px; }
.svc-row__tag { display: inline-block; margin-bottom: 6px; font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); }
.svc-row__soon { display: inline-block; margin-left: 10px; padding: 3px 10px; font-style: normal; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; color: var(--espresso); background: var(--gold); border-radius: 999px; vertical-align: 1px; }
.svc-row__media { border-radius: var(--r-img); overflow: hidden; aspect-ratio: 5/4; box-shadow: none; border: 1px solid var(--line); }
.svc-row__media img { width: 100%; height: 100%; object-fit: cover; }

/* add-on service cards */
.addon-head { max-width: 660px; margin: 96px auto 44px; text-align: center; }
.addon-head .lede { margin-top: 16px; }
.addon-head .lede b { color: var(--ink); font-weight: 600; }
.addon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.addon-card { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-img); padding: 30px 28px; transition: border-color .2s ease; }
.addon-card:hover { border-color: #C9C9C4; }
.addon-card__tag { font-size: 10.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); }
.addon-card h4 { font-family: var(--display); font-size: 21px; font-weight: 500; letter-spacing: -0.01em; margin-top: 12px; }
.addon-card__price { display: flex; align-items: baseline; gap: 8px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.addon-card__price b { font-family: var(--display); font-size: 28px; font-weight: 450; letter-spacing: -0.02em; color: var(--ink); }
.addon-card__price span { font-size: 13px; color: var(--ink-3); }
.addon-card p { margin-top: 14px; font-size: 14px; line-height: 1.62; color: var(--ink-2); }
.addon-card--wide { grid-column: 1 / -1; flex-direction: row; align-items: center; flex-wrap: wrap; gap: 20px 40px; }
.addon-card--wide .addon-card__lead { flex: 0 0 auto; }
.addon-card--wide h4 { margin-top: 6px; }
.addon-card--wide .addon-card__price { margin-top: 0; padding-top: 0; border-top: 0; flex: 0 0 auto; }
.addon-card--wide p { margin-top: 0; flex: 1 1 320px; }

/* why LVL Up */
.why .h-lg .it { color: var(--ink-3); }
.why-grid { margin-top: 60px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-img); overflow: hidden; }
.why-cell { background: var(--paper); padding: 44px 38px; }
.why-cell__icon { color: var(--ink); }
.why-cell__icon svg { width: 28px; height: 28px; }
.why-cell h3 { font-family: var(--display); font-size: 20px; font-weight: 500; letter-spacing: -0.01em; margin-top: 28px; }
.why-cell p { margin-top: 12px; font-size: 14.5px; line-height: 1.66; color: var(--ink-2); }

/* ===== BEFORE / AFTER ===== */
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.ba-grid--two { grid-template-columns: repeat(2, 1fr); max-width: 900px; margin: 0 auto; }
.ba-card .ba { position: relative; aspect-ratio: 4/3; border-radius: var(--r-img); overflow: hidden; box-shadow: none; border: 1px solid var(--line); user-select: none; }
.ba__side { position: absolute; inset: 0; }
.ba__side img { width: 100%; height: 100%; object-fit: cover; }
.ba__side .ph { width: 100%; height: 100%; display: flex; align-items: flex-end; padding: 14px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); background: var(--sand-2); }
.ba__side--after { clip-path: polygon(var(--split,50%) 0, 100% 0, 100% 100%, var(--split,50%) 100%); }
.ba__side--before { clip-path: polygon(0 0, var(--split,50%) 0, var(--split,50%) 100%, 0 100%); }
.ba__tag { position: absolute; bottom: 12px; z-index: 2; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 11px; border-radius: 999px; }
.ba__tag--before { left: 12px; background: rgba(10,10,10,0.85); color: #fff; }
.ba__tag--after { right: 12px; background: #fff; color: var(--ink); }
.ba__handle { position: absolute; top: 0; bottom: 0; left: var(--split,50%); width: 2px; background: #fff; transform: translateX(-50%); cursor: ew-resize; z-index: 3; }
.ba__handle svg { position: absolute; top: 50%; left: 50%; width: 32px; height: 32px; padding: 8px; background: #fff; color: var(--ink); border-radius: 50%; transform: translate(-50%,-50%); box-shadow: var(--shadow-sm); }
.ba-card__cap { display: flex; justify-content: space-between; align-items: baseline; margin-top: 16px; }
.ba-card__cap b { font-family: var(--display); font-size: 18px; font-weight: 500; color: var(--ink); }
.ba-card__cap span { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }

/* ===== PLANS ===== */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
.plan { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-img); padding: 40px 34px; display: flex; flex-direction: column; gap: 22px; transition: border-color .2s ease, transform .2s ease; }
.plan:hover { transform: translateY(-2px); border-color: #C9C9C4; box-shadow: none; }
.plan--feat { background: var(--espresso); color: rgba(255,255,255,0.72); border-color: var(--espresso); position: relative; }
.plan--feat h3, .plan--feat .plan__price { color: #fff; }
.plan__ribbon { position: absolute; top: -12px; left: 34px; background: var(--gold); color: var(--espresso); font-family: var(--sans); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; }
.plan h3 { font-size: 24px; font-weight: 500; }
.plan__tag { font-size: 14px; color: var(--ink-3); margin-top: -12px; }
.plan--feat .plan__tag { color: rgba(255,255,255,0.5); }
.plan__price { font-family: var(--display); font-weight: 400; font-size: 54px; letter-spacing: -0.03em; line-height: 1; color: var(--ink); display: flex; align-items: baseline; gap: 6px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.plan--feat .plan__price { border-color: rgba(255,255,255,0.14); color: #fff; }
.plan__price i { font-style: normal; font-family: var(--sans); font-size: 14px; font-weight: 500; color: var(--ink-3); }
.plan__price sup { font-size: 24px; color: var(--ink-3); }
.plan__list { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.plan__list li { font-size: 14.5px; color: var(--ink-2); display: flex; gap: 11px; align-items: flex-start; }
.plan--feat .plan__list li { color: rgba(255,255,255,0.68); }
.plan__list li::before { content: ""; flex: 0 0 auto; width: 5px; height: 5px; margin-top: 8px; background: var(--gold); border-radius: 50%; }
.plan__list--rows li { justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--line); }
.plan__list--rows li::before { display: none; }
.plan__list--rows b { color: var(--ink); font-weight: 600; }
.plan .btn { width: 100%; }
.plan--feat .btn--gold { background: #fff; color: var(--espresso); }
.plan--feat .btn--gold:hover { background: var(--gold); color: #0D1B2E; }
.plans__note { margin-top: 30px; text-align: center; font-size: 14px; color: var(--ink-2); }

/* Prepay */
.prepay { margin-top: 60px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-img); padding: 48px; }
.prepay__tabs { display: inline-flex; gap: 4px; padding: 4px; background: var(--sand); border-radius: 999px; margin: 18px 0 26px; }
.prepay__tab { padding: 10px 22px; border-radius: 999px; font-size: 12.5px; font-weight: 500; letter-spacing: 0; text-transform: none; color: var(--ink-2); }
.prepay__tab.is-active { background: var(--espresso); color: #fff; }
.prepay__table { display: none; }
.prepay__table.is-active { display: block; }
.prepay__row { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 16px; padding: 18px 12px; border-bottom: 1px solid var(--line); align-items: center; }
.prepay__row--head { font-size: 10.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }
.prepay__row--head > div:not(:first-child) { text-align: center; }
.prepay__row:last-child { border-bottom: 0; }
.prepay__row > div:first-child b { display: block; font-weight: 600; font-size: 15px; color: var(--ink); }
.prepay__row > div:first-child span { font-size: 13px; color: var(--ink-3); }
.prepay__cell { text-align: center; }
.prepay__cell b { font-family: var(--display); font-weight: 450; font-size: 26px; letter-spacing: -0.02em; color: var(--ink); }
.prepay__cell b u { text-decoration: none; font-family: var(--sans); font-size: 12px; font-weight: 500; color: var(--ink-3); letter-spacing: 0; margin-left: 1px; }
.prepay__cell i { font-style: normal; font-size: 12px; color: var(--ink-3); display: block; }
.prepay__cell small { color: var(--gold-d); font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.prepay__row--feat { background: var(--sand); border-radius: 12px; border-bottom: 0; }
.prepay__fine { margin-top: 24px; font-size: 12px; color: var(--ink-3); }

/* ===== HOA (dark) ===== */
.hoa { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 76px; align-items: center; }
.hoa__copy .lede { color: rgba(255,255,255,0.66); }
.hoa__benefits { margin-top: 32px; display: flex; flex-direction: column; }
.hoa__benefits li { padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.12); }
.hoa__benefits li:last-child { border-bottom: 1px solid rgba(255,255,255,0.12); }
.hoa__benefits b { display: block; font-family: var(--display); font-size: 19px; font-weight: 500; letter-spacing: -0.01em; color: #fff; }
.hoa__benefits span { color: rgba(255,255,255,0.58); font-size: 14.5px; }
.hoa__cta { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }
.hoa__fine { margin-top: 18px; font-size: 12px; color: rgba(255,255,255,0.45); max-width: 480px; }
.hoa__fine--hl { margin-top: 12px; padding: 12px 16px; border: 1px solid rgba(201,168,76,0.45); border-radius: 12px; background: rgba(201,168,76,0.08); color: rgba(255,255,255,0.72); font-size: 12.5px; }
.hoa__fine--hl b { color: var(--gold); }
.hoa__card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r-img); padding: 38px; }
.hoa__card .tag { font-size: 10.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.hoa__steps { margin-top: 22px; display: flex; flex-direction: column; }
.hoa__steps li { display: grid; grid-template-columns: auto 1fr; gap: 16px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.09); font-size: 14.5px; color: rgba(255,255,255,0.72); }
.hoa__steps li:last-child { border-bottom: 0; }
.hoa__steps li b { font-family: var(--sans); font-style: normal; font-weight: 600; color: var(--gold); }
.hoa__stats { margin-top: 26px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.12); display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.hoa__stats b { display: block; font-family: var(--display); font-size: 28px; font-weight: 450; letter-spacing: -0.02em; color: #fff; }
.hoa__stats span { font-size: 12px; color: rgba(255,255,255,0.45); letter-spacing: 0.04em; }

/* ===== TESTIMONIALS ===== */
.quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.quote { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-img); padding: 42px; }
.quote__stars { color: var(--gold); letter-spacing: 3px; }
.quote p { margin-top: 20px; font-family: var(--display); font-size: 21px; line-height: 1.5; letter-spacing: -0.01em; color: var(--ink); font-weight: 450; }
.quote__by { margin-top: 22px; font-size: 11.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }
.quote__by b { color: var(--ink); }

/* ===== CONTACT / ZIP ===== */
.zip-wrap { max-width: 720px; margin: 0 auto; }
.zip-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-img); padding: 52px; box-shadow: none; }
.zip-card h3 { font-size: 32px; font-weight: 500; letter-spacing: -0.02em; margin-top: 18px; }
.zip-card__lede { margin-top: 14px; color: var(--ink-2); font-size: 15.5px; }
.zip-form { margin-top: 30px; }
.zip-form__row { display: grid; grid-template-columns: 1fr auto; gap: 8px; padding: 6px; background: var(--sand); border: 1px solid var(--line); border-radius: 14px; }
.zip-form__row input { border: 0; background: transparent; color: var(--ink); padding: 14px 18px; font-size: 16px; font-family: var(--sans); letter-spacing: 0.02em; outline: none; min-width: 0; }
.zip-form__row input::placeholder { color: var(--ink-3); }
.zip-form__row button { padding: 13px 26px; }
.zip-help { margin-top: 12px; font-size: 13px; color: var(--ink-3); }
.zip-help a { color: var(--ink); border-bottom: 1px solid var(--ink-3); }
.zip-result { margin-top: 30px; }
.zip-result[hidden] { display: none; }
.zip-result--in { text-align: center; }
.zip-check { width: 54px; height: 54px; margin: 0 auto 18px; background: var(--espresso); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.zip-result--in h4 { font-size: 27px; font-weight: 500; letter-spacing: -0.01em; }
.zip-result--in > p { margin-top: 10px; color: var(--ink-2); font-size: 15px; }
.zip-result--in > p b { color: var(--ink); }
.methods { margin-top: 28px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.methods a { padding: 24px 16px; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; display: flex; flex-direction: column; align-items: center; gap: 8px; position: relative; transition: border-color .2s ease, transform .2s ease; }
.methods a:hover { border-color: var(--ink); transform: translateY(-2px); }
.methods a svg { width: 24px; height: 24px; color: var(--ink); }
.methods a .lbl { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); }
.methods a b { font-size: 14.5px; color: var(--ink); }
.methods a .hint { font-size: 12px; color: var(--ink-3); }
.methods a.is-pref { border-color: var(--ink); background: #fff; }
.methods a .pref { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: var(--espresso); color: #fff; font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
.zip-result--out h4 { font-size: 26px; font-weight: 500; margin-top: 12px; }
.zip-result--out h4 em { color: var(--ink-3); font-style: normal; }
.zip-result--out > p { margin-top: 10px; color: var(--ink-2); font-size: 15px; }
.waitlist { margin-top: 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; text-align: left; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field span { font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }
.field input { padding: 13px 15px; background: var(--sand); border: 1px solid var(--line); border-radius: 10px; color: var(--ink); font: inherit; font-size: 15px; outline: none; }
.field input:focus { border-color: var(--ink); }
.choice { display: flex; gap: 10px; }
.choice__opt { position: relative; flex: 0 0 auto; }
.choice__opt input { position: absolute; opacity: 0; pointer-events: none; }
.choice__opt span { display: inline-flex; align-items: center; justify-content: center; min-width: 84px; padding: 12px 26px; background: var(--sand); border: 1px solid var(--line); border-radius: 999px; font-size: 14px; font-weight: 500; color: var(--ink-2); cursor: pointer; transition: border-color .15s ease, background .15s ease, color .15s ease; }
.choice__opt:hover span { border-color: var(--ink); }
.choice__opt input:checked + span { background: var(--espresso); border-color: var(--espresso); color: #fff; }
.choice__opt input:focus-visible + span { outline: 2px solid var(--ink); outline-offset: 2px; }
.waitlist__submit { grid-column: 1 / -1; }
.zip-done { text-align: center; }

/* ===== FAQ ===== */
.faq { max-width: 860px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--line); padding: 26px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 20px; align-items: baseline; font-family: var(--display); font-size: 20px; font-weight: 500; letter-spacing: -0.01em; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .mk { color: var(--ink-3); font-size: 24px; transition: transform .25s ease; flex: 0 0 auto; }
.faq-item[open] .mk { transform: rotate(45deg); }
.faq-item p { margin-top: 16px; color: var(--ink-2); font-size: 15px; line-height: 1.78; }
.faq-item p b { color: var(--ink); }

/* ===== CTA BAND ===== */
.cta { text-align: center; }
.cta .h-lg { max-width: 900px; margin: 24px auto 0; font-weight: 400; }
.cta .h-lg .it { color: var(--ink-3); }
.cta p { margin-top: 18px; color: var(--ink-2); }
.cta__btns { margin-top: 36px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.foot { background: var(--espresso); color: rgba(255,255,255,0.55); padding: 80px 0 34px; position: relative; overflow: hidden; margin: 0 var(--frame) var(--frame); border-radius: 24px; }
.foot__watermark { position: absolute; right: -130px; top: 46%; transform: translateY(-50%); width: 560px; height: 560px; opacity: 0.05; pointer-events: none; z-index: 0; }
.foot__inner, .foot__legal { position: relative; z-index: 1; }
.foot__inner { display: grid; grid-template-columns: 1.4fr 2fr; gap: 60px; }
.foot__brandmark { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 80px; height: 80px; margin-bottom: 20px; }
.foot__badge { width: 60px; height: 60px; transition: transform .45s cubic-bezier(.2,.6,.2,1); }
.foot__brandmark:hover .foot__badge { transform: scale(1.05); }
.foot__orbit { display: none; }
@keyframes foot-orbit { to { transform: rotate(360deg); } }
.foot__tag { font-family: var(--display); font-style: normal; font-size: 19px; font-weight: 450; letter-spacing: -0.01em; color: rgba(255,255,255,0.85); max-width: 320px; line-height: 1.5; }
.foot__addr { margin-top: 22px; font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.9; }
.foot__addr a { color: #fff; }
.foot__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.foot__cols h5 { font-size: 10.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 18px; }
.foot__cols a, .foot__cols span { display: block; font-size: 14px; color: rgba(255,255,255,0.55); padding: 5px 0; }
.foot__cols a:hover { color: #fff; }
.foot__legal { max-width: var(--wrap); margin: 50px auto 0; padding: 28px 36px 0; border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 12px; color: rgba(255,255,255,0.38); }

/* ===== COPY TOAST (mailto fallback) ===== */
.copy-toast { position: fixed; bottom: 28px; left: 50%; transform: translate(-50%, 8px); background: var(--espresso); color: #fff; padding: 11px 20px; border-radius: 999px; font-size: 13px; font-weight: 500; opacity: 0; pointer-events: none; transition: opacity .25s ease, transform .25s ease; z-index: 100; box-shadow: 0 10px 30px rgba(0,0,0,0.3); white-space: nowrap; }
.copy-toast.is-on { opacity: 1; transform: translate(-50%, 0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  :root { --section-y: 92px; }
  .hero { min-height: 78vh; }
  .trust__inner { grid-template-columns: 1fr 1fr; }
  .trust__item:nth-child(2) { border-right: 0; }
  .trust__item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .steps { grid-template-columns: 1fr; }
  .step { border-left: 1px solid var(--line); border-top: 1px solid var(--line); padding: 34px 30px; }
  .svc-row { grid-template-columns: 1fr; gap: 36px; }
  .svc-row--flip .svc-row__media { order: 0; }
  .addon-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .ba-grid { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: 1fr; }
  .hoa { grid-template-columns: 1fr; gap: 52px; }
}
/* Nav collapses to a hamburger earlier, so the full horizontal nav only shows when it fits */
@media (max-width: 920px) {
  .nav__links, .nav__phone { display: none; }
  .nav__toggle { display: flex; }
  .nav__cta { margin-left: auto; }
  .nav__links.is-open { display: flex; flex-direction: column; gap: 0; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 8px 28px 18px; box-shadow: var(--shadow-sm); }
  .nav__links.is-open a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 14px; color: var(--ink-2); white-space: normal; border-radius: 0; }
  .nav__links.is-open a:hover { color: var(--ink); background: transparent; }
}

@media (max-width: 720px) {
  body { font-size: 15.5px; }
  :root { --frame: 6px; }
  .nav__inner { padding: 12px 16px; gap: 14px; }
  .nav.is-scrolled .nav__inner { padding: 10px 16px; }
  .nav__sub { display: none; }
  .nav__name { font-size: 17px; }
  .nav__mark { width: 38px; height: 38px; }
  .nav__badge { width: 34px; height: 34px; }
  .nav__book { padding: 10px 16px; font-size: 13px; }
  .hero { min-height: 74vh; margin-top: 92px; border-radius: 18px; }
  .hero__ribbon { width: 150px; height: 150px; }
  .hero__ribbon span { width: 230px; right: -64px; bottom: 40px; font-size: 10px; padding: 8px 0; }
  .hero__inner { padding: 70px 24px 110px; }
  .demo__tag { font-size: 8.5px; padding: 5px 10px; letter-spacing: 0.08em; white-space: nowrap; top: 12px; left: 12px; }
  .zip-form__row { grid-template-columns: 1fr; }
  .zip-form__row button { width: 100%; }
  .section--dark, .foot { border-radius: 18px; }
  .trust__inner { grid-template-columns: 1fr 1fr; }
  .areas__inner span { font-size: 12px; padding: 5px 18px; }
  .flyband__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .addon-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .addon-card--wide { flex-direction: column; align-items: flex-start; gap: 16px; }
  .addon-card--wide p { flex: 0 0 auto; }
  .ba-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .prepay, .zip-card { padding: 28px 20px; }
  .prepay__row { grid-template-columns: 1.4fr 1fr 1fr; gap: 8px; }
  .prepay__cell b { font-size: 21px; }
  .methods, .waitlist { grid-template-columns: 1fr; }
  .foot__inner { grid-template-columns: 1fr; gap: 40px; }
  .foot__cols { grid-template-columns: 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
