/* Self-hosted fonts (latin subsets, downloaded 2026-09-06 from Google Fonts).
   No third-party request on page load; the browser paints text immediately. */
@font-face { font-family: 'Playfair Display'; font-style: italic; font-weight: 400; font-display: swap; src: url('../media/fonts/playfairdisplay-italic-400.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 700 900; font-display: swap; src: url('../media/fonts/playfairdisplay-normal-700-900.woff2') format('woff2'); }
@font-face { font-family: 'Source Sans 3'; font-style: normal; font-weight: 400 700; font-display: swap; src: url('../media/fonts/sourcesans3-normal-400-600-700.woff2') format('woff2'); }

/* ============================================================
   wcparker.com — stylesheet
   ------------------------------------------------------------
   Brand: navy + gold, unchanged. Type moved to Playfair Display
   (display) + Source Sans 3 (body), loaded from Google Fonts in
   each page's <head>. Every legacy class the inner pages use is
   still defined below, so services/about/process/contact render
   without rewrites; the homepage adds the new components.

   Motion is opt-out: everything animated collapses to its final
   state under prefers-reduced-motion, and the JS checks the same
   query before it starts the canvas or the reveals.
   ============================================================ */

:root {
  --navy:        #003366;
  --navy-mid:    #004080;
  --navy-light:  #00529B;
  --navy-deep:   #0a1f3c;      /* from the logo gradient */
  --navy-ink:    #061530;
  --gold:        #C9A84C;
  --gold-hi:     #f3e2ad;      /* logo gradient stops */
  --gold-mid:    #d8b25c;
  --gold-lo:     #a87b2c;
  --gold-light:  #E8C96B;
  --gold-pale:   #FDF6E3;
  --bronze:      #b87a4b;
  --bronze-hi:   #e3b58c;
  --silver:      #9aa5b1;
  --silver-hi:   #dfe5ec;
  --white:       #FFFFFF;
  --off-white:   #F6F7F9;
  --gray-light:  #E8ECF0;
  --gray:        #8C97A6;
  --text-dark:   #141c28;
  --text-mid:    #3D4E61;
  --text-light:  #6B7C93;
  --border:      #D9DFE6;
  --shadow-sm:   0 2px 8px rgba(0,51,102,0.08);
  --shadow:      0 6px 24px rgba(0,51,102,0.12);
  --shadow-lg:   0 18px 60px rgba(0,51,102,0.18);
  --radius:      8px;
  --radius-lg:   16px;
  --font-head:   'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:   'Source Sans 3', 'Segoe UI', Helvetica, Arial, sans-serif;
  --max-width:   1180px;
  --nav-height:  70px;
  --transition:  0.24s cubic-bezier(.4,0,.2,1);
  --ease-out:    cubic-bezier(.16,1,.3,1);
}

/* ---------- reset ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { overflow-x: hidden; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
h1,h2,h3,h4 { font-family: var(--font-head); color: var(--navy-deep); line-height: 1.12; font-weight: 700; letter-spacing: -0.01em; text-wrap: balance; }
h1 { font-size: clamp(1.8rem, 3.2vw, 2.4rem); }
h2 { font-size: clamp(1.4rem, 2.2vw, 1.8rem); }
h3 { font-size: 1.25rem; }
p  { text-wrap: pretty; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.lead { font-size: 1.08rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 14px; }
.small { font-size: .85rem; }
.eyebrow { font-family: var(--font-body); font-size: .78rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-lo); }
.eyebrow--light { color: var(--gold-hi); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-family: var(--font-body); font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  border: 1.5px solid transparent; transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: linear-gradient(135deg, var(--gold-hi) 0%, var(--gold-mid) 45%, var(--gold-lo) 100%); color: var(--navy-ink); box-shadow: 0 8px 24px rgba(201,168,76,.28); }
.btn--primary:hover { box-shadow: 0 14px 34px rgba(201,168,76,.4); }
.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn--outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline-navy:hover { background: var(--navy); color: var(--white); }
.btn--lg { padding: 17px 34px; font-size: 1.05rem; }
.btn--sm { padding: 10px 18px; font-size: .9rem; }
.btn .arrow { display: inline-block; transition: transform var(--transition); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height);
  background: transparent; border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.nav--solid, body:not(.has-hero) .nav {
  background: rgba(255,255,255,.88); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(0,51,102,.08); box-shadow: 0 2px 20px rgba(0,51,102,.06);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-height); gap: 24px; }
.nav__logo { display: flex; align-items: center; gap: 12px; color: var(--navy-deep); }
.nav__mark { width: 44px; height: 44px; flex-shrink: 0; }
.nav__logo-name { display: block; font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; letter-spacing: .01em; line-height: 1; }
.nav__logo-tag { display: block; font-size: .92rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-lo); font-weight: 700; margin-top: 3px; white-space: nowrap; }
.nav__links { display: flex; align-items: center; gap: 2px; }
.nav__links a { padding: 9px 14px; border-radius: 999px; font-size: .95rem; font-weight: 600; color: var(--text-mid); transition: color var(--transition), background var(--transition); }
.nav__links a:hover, .nav__links a.active { color: var(--navy-deep); background: rgba(0,51,102,.06); }
.nav__ctas { display: flex; align-items: center; gap: 10px; }
.nav__portal { font-size: .92rem; font-weight: 600; color: var(--text-mid); padding: 9px 16px; border: 1.5px solid var(--border); border-radius: 999px; transition: all var(--transition); white-space: nowrap; }
.nav__portal:hover { border-color: var(--navy); color: var(--navy); }
.nav .btn--primary { padding: 11px 20px; font-size: .92rem; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; border-radius: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--navy-deep); border-radius: 2px; transition: all var(--transition); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile-only { display: none; }

/* transparent state over the hero: white text */
.has-hero .nav:not(.nav--solid) .nav__logo,
.has-hero .nav:not(.nav--solid) .nav__links a,
.has-hero .nav:not(.nav--solid) .nav__portal { color: var(--white); }
.has-hero .nav:not(.nav--solid) .nav__logo-tag { color: var(--gold-hi); }
.has-hero .nav:not(.nav--solid) .nav__links a:hover,
.has-hero .nav:not(.nav--solid) .nav__links a.active { background: rgba(255,255,255,.12); color: var(--white); }
.has-hero .nav:not(.nav--solid) .nav__portal { border-color: rgba(255,255,255,.35); }
.has-hero .nav:not(.nav--solid) .nav__portal:hover { border-color: var(--white); }
.has-hero .nav:not(.nav--solid) .nav__toggle span { background: var(--white); }

/* ---------- hero (homepage) ---------- */
.hero {
  position: relative; display: flex; align-items: center;
  background: radial-gradient(120% 90% at 80% 10%, #0f3a6b 0%, var(--navy-deep) 45%, var(--navy-ink) 100%);
  color: var(--white); overflow: hidden; isolation: isolate;
  padding: calc(var(--nav-height) + 26px) 0 34px;
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: .9; }
.hero__glow { position: absolute; z-index: 0; border-radius: 50%; filter: blur(80px); opacity: .55; pointer-events: none;
  background: radial-gradient(circle, rgba(216,178,92,.55) 0%, rgba(216,178,92,0) 70%); }
.hero__glow--1 { width: 620px; height: 620px; right: -140px; top: -120px; animation: drift 18s ease-in-out infinite alternate; }
.hero__glow--2 { width: 480px; height: 480px; left: -160px; bottom: -180px; opacity: .3; animation: drift 24s ease-in-out infinite alternate-reverse; }
@keyframes drift { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(-60px, 40px, 0) scale(1.12); } }
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); gap: 40px; align-items: center; }
.hero__text { max-width: 640px; }
.hero .eyebrow { margin-bottom: 8px; display: inline-flex; align-items: center; gap: 12px; }
.hero .eyebrow::before { content: ""; width: 36px; height: 1.5px; background: linear-gradient(90deg, var(--gold-hi), var(--gold-lo)); }
.hero h1 { color: var(--white); margin-bottom: 10px; }
.hero h1 .reveal-line { display: inline-block; margin-right: .3em; }
.hero h1 em { font-style: italic; font-weight: 400; color: var(--gold-hi); }
.hero__sub { font-size: 1rem; color: rgba(255,255,255,.8); max-width: 560px; margin-bottom: 16px; line-height: 1.5; }
.hero__sub em { color: var(--gold-hi); font-style: italic; }
.hero__ctas { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero__quiet { color: rgba(255,255,255,.75); font-weight: 600; font-size: .98rem; border-bottom: 1px solid rgba(255,255,255,.25); padding-bottom: 2px; transition: color var(--transition), border-color var(--transition); }
.hero__quiet:hover { color: var(--white); border-color: var(--gold-hi); }
/* the reveal: each headline line rises out of a clipped box, the rest fades up.
   Pure CSS keyframes, so a throttled tab or a busy main thread cannot stall it;
   .js is added by site.js so nothing is hidden when scripts are blocked. */
.reveal-line { display: block; overflow: hidden; padding-bottom: .08em; }
.reveal-line > span { display: block; }
.js .reveal-line > span { animation: lineUp 1.1s var(--ease-out) both; animation-delay: var(--d, .15s); }
.js .hero__fade { animation: fadeUp .9s var(--ease-out) both; animation-delay: var(--d, .7s); }
@keyframes lineUp { from { transform: translateY(110%); } to { transform: translateY(0); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* the right-hand "ledger" card: a quiet visual, not a service list */
.hero__card {
  position: relative; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg); padding: 14px 20px; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}
.hero__card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(140deg, rgba(243,226,173,.55), rgba(243,226,173,0) 40%, rgba(243,226,173,0) 60%, rgba(168,123,44,.5));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.hero__card-title { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-hi); font-weight: 600; margin-bottom: 6px; }
.ledger { display: flex; flex-direction: column; }
.ledger__row { display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: baseline; padding: 6px 0; border-bottom: 1px dashed rgba(255,255,255,.14); }
.ledger__row:last-child { border-bottom: 0; }
.ledger__label { color: rgba(255,255,255,.88); font-size: .92rem; }
.ledger__label small { display: none; }
.ledger__val { font-family: var(--font-head); font-size: 1.05rem; color: var(--gold-hi); font-variant-numeric: tabular-nums; white-space: nowrap; }
.ledger__total { margin-top: 6px; padding-top: 8px; border-top: 1.5px solid rgba(243,226,173,.5); }
.ledger__total .ledger__label { font-weight: 600; color: var(--white); }
.ledger__total .ledger__val { font-size: 1.2rem; }
.hero__scroll { display: none; }
.hero__scroll::after { content: ""; width: 1px; height: 38px; background: linear-gradient(180deg, var(--gold-hi), transparent); animation: scrollcue 1.8s ease-in-out infinite; }
@keyframes scrollcue { 0%,100% { transform: scaleY(.4); transform-origin: top; opacity: .4 } 50% { transform: scaleY(1); opacity: 1 } }

/* legacy hero bits some inner pages still reference */
.hero__badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border: 1px solid rgba(201,168,76,.4); border-radius: 999px; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-hi); background: rgba(201,168,76,.08); font-weight: 600; }
.hero__trust, .hero__card-item, .hero__card-icon, .hero__card-text, .hero__trust-item { display: none; }

/* ---------- page hero (inner pages) ---------- */
.page-hero {
  position: relative; overflow: hidden;
  background: radial-gradient(110% 100% at 85% 0%, #0f3a6b 0%, var(--navy-deep) 55%, var(--navy-ink) 100%);
  color: var(--white); padding: calc(var(--nav-height) + 18px) 0 22px;
}
.page-hero::after { content: ""; position: absolute; right: -120px; top: -160px; width: 520px; height: 520px; border-radius: 50%; filter: blur(80px);
  background: radial-gradient(circle, rgba(216,178,92,.45), rgba(216,178,92,0) 70%); pointer-events: none; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(1.4rem, 2.2vw, 1.85rem); margin-bottom: 6px; }
.page-hero p { font-size: .95rem; color: rgba(255,255,255,.78); max-width: 720px; }
.breadcrumb { display: none; gap: 10px; font-size: .78rem; color: rgba(255,255,255,.55); margin-bottom: 10px; letter-spacing: .04em; }
.breadcrumb a { color: var(--gold-hi); }

/* ---------- sections ---------- */
.section { padding: 44px 0; position: relative; }
.page-hero + .section { padding-top: 22px; }
.section--gray { background: var(--off-white); }
.section--gold { background: linear-gradient(180deg, var(--gold-pale), #fbf3dc); }
.section--navy { background: var(--navy-deep); color: var(--white); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--tight { padding: 36px 0; }
.section__header { text-align: center; max-width: 720px; margin: 0 auto 22px; }
.section__header h2 { margin-bottom: 10px; }
.section__header p { color: var(--text-mid); font-size: 1.02rem; }
.section__header .eyebrow { display: block; margin-bottom: 14px; }
.divider { width: 56px; height: 3px; margin: 18px auto 24px; border-radius: 2px; background: linear-gradient(90deg, var(--gold-hi), var(--gold-lo)); }
.divider--left { margin-left: 0; margin-right: 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; text-align: left; }
.step-row { display: grid; grid-template-columns: 64px 1fr; gap: 24px; align-items: start; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.step-row:last-of-type { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .9s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal[data-delay="3"] { transition-delay: .36s; }
.reveal[data-delay="4"] { transition-delay: .48s; }
/* without JS nothing would ever reveal; the body gets .js at load */
body:not(.js) .reveal { opacity: 1; transform: none; }

/* ---------- proof strip ---------- */
.proof { background: var(--white); border-bottom: 1px solid var(--border); }
.proof__inner { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); }
.proof__item { padding: 18px 24px; border-left: 1px solid var(--border); }
.proof__item:first-child { border-left: 0; padding-left: 0; }
.proof__num { font-family: var(--font-head); font-size: 1.9rem; color: var(--navy-deep); line-height: 1; font-variant-numeric: tabular-nums; }
.proof__num sup { font-size: 1.2rem; color: var(--gold-lo); vertical-align: top; margin-left: 2px; }
.proof__label { margin-top: 4px; color: var(--text-mid); font-size: .88rem; }
.proof__label strong { display: block; color: var(--text-dark); font-weight: 600; }

/* ---------- how it works (home) ---------- */
.steps { position: relative; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 40px; margin-top: 12px; }
.steps__line { position: absolute; top: 34px; left: 12%; right: 12%; height: 2px; background: var(--gray-light); z-index: 0; }
.steps__line span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--gold-hi), var(--gold-lo)); }
.step { position: relative; z-index: 1; }
.step__num { width: 68px; height: 68px; border-radius: 50%; background: var(--white); border: 2px solid var(--gold-mid); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 1.45rem; color: var(--navy-deep); margin-bottom: 22px; box-shadow: 0 0 0 8px var(--white); transition: transform .5s var(--ease-out), background .3s, color .3s; }
.step.is-in .step__num { background: var(--navy-deep); color: var(--gold-hi); transform: scale(1.06); }
.step h3 { margin-bottom: 10px; font-size: 1.35rem; }
.step p { color: var(--text-mid); }
.step__meta { margin-top: 12px; font-size: .84rem; color: var(--gold-lo); font-weight: 600; letter-spacing: .04em; }

/* ---------- plans (bronze / silver / gold) ---------- */
.plans { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; align-items: stretch; margin-top: 0; }
.plan {
  position: relative; background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 16px 18px 16px;
  display: flex; flex-direction: column; transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .3s;
  transform-style: preserve-3d; will-change: transform; overflow: hidden;
}
.plan:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.plan__band { position: absolute; left: 0; right: 0; top: 0; height: 5px; }
.plan--bronze .plan__band { background: linear-gradient(90deg, #d9a377, var(--bronze), #7d4f2c); }
.plan--silver .plan__band { background: linear-gradient(90deg, #f1f4f7, var(--silver), #6f7a86); }
.plan--gold   .plan__band { background: linear-gradient(90deg, var(--gold-hi), var(--gold-mid), var(--gold-lo)); }
.plan__tier { display: inline-flex; align-items: center; gap: 8px; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; margin-bottom: 6px; }
.plan__tier i { width: 14px; height: 14px; border-radius: 50%; display: inline-block; }
.plan--bronze .plan__tier { color: #8a5a34; } .plan--bronze .plan__tier i { background: radial-gradient(circle at 30% 30%, var(--bronze-hi), var(--bronze) 60%, #7d4f2c); }
.plan--silver .plan__tier { color: #5d6875; } .plan--silver .plan__tier i { background: radial-gradient(circle at 30% 30%, #fff, var(--silver) 60%, #6f7a86); }
.plan--gold   .plan__tier { color: var(--gold-lo); } .plan--gold .plan__tier i { background: radial-gradient(circle at 30% 30%, var(--gold-hi), var(--gold-mid) 60%, var(--gold-lo)); }
.plan h3 { font-size: 1.2rem; margin-bottom: 2px; }
.plan__for { color: var(--text-mid); min-height: 0; margin-bottom: 6px; font-size: .84rem; line-height: 1.35; }
.plan__price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.plan__price .from { font-size: .82rem; color: var(--text-light); letter-spacing: .04em; text-transform: uppercase; font-weight: 600; }
.plan__price .amt { font-family: var(--font-head); font-size: 1.6rem; color: var(--navy-deep); line-height: 1; }
.plan__price .per { color: var(--text-light); font-size: .95rem; }
.plan__billing { font-size: .74rem; color: var(--text-light); margin-bottom: 8px; }
.plan__list { display: flex; flex-direction: column; gap: 3px; margin-bottom: 10px; flex: 1; }
.plan__list li { display: grid; grid-template-columns: 16px 1fr; gap: 6px; align-items: start; color: var(--text-mid); font-size: .82rem; line-height: 1.25; }
.plan__list li svg { width: 15px; height: 15px; margin-top: 2px; }
.plan__list li.plan__inherit { color: var(--navy-deep); font-weight: 600; }
.plan .btn { width: 100%; padding: 8px 16px; font-size: .88rem; }
.plan--gold { border-color: rgba(216,178,92,.6); box-shadow: 0 10px 40px rgba(201,168,76,.18); }
.plan--gold::before { content: ""; position: absolute; inset: 0; border-radius: 20px; padding: 1.5px; pointer-events: none; z-index: 2;
  background: conic-gradient(from var(--shine, 0deg), var(--gold-lo), var(--gold-hi), var(--gold-mid), var(--gold-lo));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude;
  animation: shine 6s linear infinite; }
@property --shine { syntax: '<angle>'; inherits: false; initial-value: 0deg; }
@keyframes shine { to { --shine: 360deg; } }
.plan__flag { position: absolute; top: 14px; right: 14px; background: var(--navy-deep); color: var(--gold-hi); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; padding: 6px 12px; border-radius: 999px; }
.plans__note { text-align: center; color: var(--text-light); font-size: .85rem; margin-top: 16px; max-width: 640px; margin-left: auto; margin-right: auto; }
.plans__note a { color: var(--navy); font-weight: 600; }

/* compare table (plans page) */
.compare { width: 100%; border-collapse: collapse; margin-top: 8px; font-size: .96rem; background: var(--white); border-radius: 16px; overflow: hidden; }
.compare th, .compare td { padding: 16px 18px; border-bottom: 1px solid var(--border); text-align: left; vertical-align: middle; }
.compare th { font-family: var(--font-body); font-weight: 700; color: var(--navy-deep); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; background: var(--gold-pale); }
.compare th:not(:first-child), .compare td:not(:first-child) { text-align: center; width: 18%; }
.compare td:first-child { color: var(--text-mid); }
.compare tbody tr:hover td { background: #fbfcfd; }
.compare .yes { display: inline-flex; width: 26px; height: 26px; border-radius: 50%; align-items: center; justify-content: center; background: rgba(201,168,76,.15); color: var(--gold-lo); font-weight: 700; }
.compare .no { color: #c5ccd4; }
.compare__wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--border); border-radius: 16px; }

/* ---------- meet chris (video feature) ---------- */
.meet { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 64px; align-items: center; }
.player { position: relative; border-radius: 20px; overflow: hidden; background: var(--navy-ink); box-shadow: var(--shadow-lg); aspect-ratio: 16/9; }
.player img, .player video { width: 100%; height: 100%; object-fit: cover; }
.player__btn { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(180deg, rgba(6,21,48,0) 30%, rgba(6,21,48,.55) 100%); cursor: pointer; }
.player__btn span { width: 84px; height: 84px; border-radius: 50%; background: rgba(255,255,255,.14); border: 1.5px solid rgba(255,255,255,.55); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; transition: transform .4s var(--ease-out), background .3s; }
.player__btn:hover span { transform: scale(1.08); background: rgba(216,178,92,.35); }
.player__btn svg { width: 30px; height: 30px; fill: var(--white); margin-left: 5px; }
.player__cap { position: absolute; left: 22px; bottom: 18px; color: rgba(255,255,255,.9); font-size: .86rem; letter-spacing: .04em; pointer-events: none; }
.player.is-playing .player__btn, .player.is-playing .player__cap, .player.is-playing img { display: none; }
.meet h2 { margin-bottom: 18px; }
.meet .lead { margin-bottom: 14px; }
.meet p { color: var(--text-mid); margin-bottom: 14px; }
.meet__disc { font-size: .84rem; color: var(--text-light); border-left: 2px solid var(--gold-mid); padding-left: 14px; margin: 22px 0 26px; }

/* ---------- video teaser tiles ---------- */
.tiles { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.tile { position: relative; display: block; border-radius: 16px; padding: 30px 28px 26px; background: var(--navy-deep); color: var(--white); overflow: hidden; min-height: 210px; transition: transform .5s var(--ease-out), box-shadow .5s; }
.tile::before { content: ""; position: absolute; right: -60px; top: -60px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(216,178,92,.35), transparent 70%); transition: transform .6s var(--ease-out); }
.tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tile:hover::before { transform: scale(1.6); }
.tile__k { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-hi); font-weight: 600; margin-bottom: 14px; position: relative; }
.tile h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 10px; position: relative; }
.tile p { color: rgba(255,255,255,.7); font-size: .95rem; position: relative; }
.tile__go { position: absolute; right: 22px; bottom: 20px; color: var(--gold-hi); font-weight: 600; font-size: .9rem; }

/* ---------- cta banner ---------- */
.cta-banner { position: relative; overflow: hidden; background: radial-gradient(110% 120% at 20% 100%, #0f3a6b 0%, var(--navy-deep) 55%, var(--navy-ink) 100%); color: var(--white); padding: 44px 0; text-align: center; }
.cta-banner::before { content: ""; position: absolute; left: 50%; top: 50%; width: 900px; height: 900px; transform: translate(-50%,-50%); border-radius: 50%; border: 1px solid rgba(243,226,173,.12); pointer-events: none; }
.cta-banner::after { content: ""; position: absolute; left: 50%; top: 50%; width: 600px; height: 600px; transform: translate(-50%,-50%); border-radius: 50%; border: 1px solid rgba(243,226,173,.18); pointer-events: none; }
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,.78); font-size: 1.15rem; max-width: 600px; margin: 0 auto 34px; }
.cta-banner__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- legacy components (inner pages) ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 30px 28px; transition: transform .45s var(--ease-out), box-shadow .45s; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card__icon { width: 44px; height: 44px; border-radius: 12px; background: var(--gold-pale); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 18px; }
.service-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.service-card p { color: var(--text-mid); font-size: .96rem; margin-bottom: 16px; }
.service-card__link { font-weight: 600; color: var(--navy); font-size: .95rem; }
.service-detail { padding: 40px 0; }
.service-detail__inner { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(0,.9fr); gap: 56px; align-items: start; }
.service-detail h2 { margin-bottom: 8px; }
.service-detail p { margin-bottom: 14px; }
.service-detail .hero__badge { color: var(--navy) !important; }
.service-detail__includes { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 28px; }
.service-detail__includes h4 { font-family: var(--font-body); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-lo); margin-bottom: 14px; }
.service-detail__includes li { display: grid; grid-template-columns: 18px 1fr; gap: 10px; padding: 7px 0; color: var(--text-mid); font-size: .95rem; border-bottom: 1px dashed var(--gray-light); }
.service-detail__includes li:last-child { border-bottom: 0; }
.service-detail__includes li::before { content: "•"; color: var(--gold-mid); font-weight: 900; }
.price-tag { margin-top: 18px; background: var(--navy-deep); color: var(--white); border-radius: 16px; padding: 22px 26px; }
.price-tag__from { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-hi); }
.price-tag__price { font-family: var(--font-head); font-size: 2.2rem; margin: 4px 0; }
.price-tag__note { font-size: .84rem; color: rgba(255,255,255,.65); }
.process-steps { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 32px; }
.process-step { text-align: center; }
.process-step__num { width: 64px; height: 64px; border-radius: 50%; background: var(--navy-deep); color: var(--gold-hi); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 1.4rem; margin: 0 auto 18px; }
.process-step h3 { margin-bottom: 10px; }
.process-step p { color: var(--text-mid); }
.about-teaser { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: 56px; align-items: center; }
.about-teaser__photo { position: relative; border-radius: 20px; overflow: hidden; background: radial-gradient(120% 100% at 80% 0%, #0f3a6b, var(--navy-ink)); aspect-ratio: 4/5; box-shadow: var(--shadow-lg); }
.about-teaser__photo img { width: 100%; height: 100%; object-fit: cover; }
.about-teaser__photo-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--white); text-align: center; gap: 8px; }
.about-teaser__photo-badge { position: absolute; left: 20px; bottom: 20px; background: rgba(255,255,255,.95); border-radius: 12px; padding: 12px 16px; display: flex; flex-direction: column; box-shadow: var(--shadow); }
.about-teaser__photo-badge strong { font-family: var(--font-head); font-size: 1.4rem; color: var(--navy-deep); line-height: 1; }
.about-teaser__photo-badge span { font-size: .74rem; color: var(--text-light); letter-spacing: .06em; text-transform: uppercase; margin-top: 4px; }
.about-teaser__content h2 { margin-bottom: 6px; }
.about-teaser__creds { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 26px; }
.cred-badge { display: inline-flex; align-items: center; gap: 6px; padding: 7px 13px; border-radius: 999px; background: var(--off-white); border: 1px solid var(--border); font-size: .82rem; color: var(--text-mid); font-weight: 600; }
.why-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 26px; }
.why-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 32px 28px; }
.why-card__icon { width: 46px; height: 46px; border-radius: 12px; background: var(--navy-deep); color: var(--gold-hi); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 18px; }
.why-card h3 { margin-bottom: 10px; }
.why-card p { color: var(--text-mid); font-size: .97rem; }
.trustbar, .trustbar__inner, .trustbar__item, .trustbar__num, .trustbar__label { display: none; }

/* contact */
.contact-grid { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(0,.85fr); gap: 56px; align-items: start; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 7px; color: var(--navy-deep); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 13px 15px; border: 1.5px solid var(--border); border-radius: 10px; font: inherit; font-size: 1rem; color: var(--text-dark); background: var(--white); transition: border-color var(--transition), box-shadow var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: 0; border-color: var(--gold-mid); box-shadow: 0 0 0 4px rgba(201,168,76,.18); }
.form-group textarea { min-height: 140px; resize: vertical; }
.booking-cta { background: var(--navy-deep); color: var(--white); border-radius: 20px; padding: 32px; }
.booking-cta h3 { color: var(--white); margin-bottom: 10px; }
.booking-cta p { color: rgba(255,255,255,.75); margin-bottom: 20px; }
.contact-sidebar__item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.contact-sidebar__icon { width: 40px; height: 40px; border-radius: 10px; background: var(--gold-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-sidebar__label { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-lo); font-weight: 700; }
.contact-sidebar__value { font-weight: 600; color: var(--navy-deep); }
.contact-sidebar__sub { font-size: .82rem; color: var(--text-light); }

/* video library page */
.vid-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; margin-top: 28px; }
.vid-card { border: 1px solid var(--border); border-radius: 16px; overflow: hidden; background: var(--white); }
.vid-card__frame { position: relative; width: 100%; padding-top: 56.25%; background: var(--navy-deep); }
.vid-card__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vid-card__body { padding: 20px 22px 24px; }
.vid-card__title { font-size: 1.02rem; font-weight: 600; color: var(--navy-deep); margin: 0 0 8px; }
.vid-card__desc { font-size: .9rem; color: var(--text-mid); margin: 0; }
.vid-group { margin-top: 52px; }
.vid-group:first-of-type { margin-top: 0; }

/* legal pages */
.legal { max-width: 760px; }
.legal h2 { font-size: 1.25rem; margin: 38px 0 10px; }
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { color: var(--text-mid); font-size: .98rem; line-height: 1.7; }
.legal ul { margin: 10px 0 10px 22px; list-style: disc; }
.legal li { margin-bottom: 7px; }
.legal__updated { font-size: .85rem; color: var(--text-mid); padding-bottom: 22px; border-bottom: 1px solid var(--border); margin-bottom: 30px; }

/* ---------- footer ---------- */
.footer { background: var(--navy-ink); color: rgba(255,255,255,.78); padding: 56px 0 30px; position: relative; overflow: hidden; }
.footer::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(243,226,173,.5), transparent); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 56px; }
.footer__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; color: var(--white); }
.footer__brand svg { width: 44px; height: 44px; flex-shrink: 0; }
.footer__brand-name { font-family: var(--font-head); font-size: 1.3rem; color: var(--white); line-height: 1; }
.footer__brand-tag { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-hi); margin-top: 5px; }
.footer__brand-desc { font-size: .95rem; color: rgba(255,255,255,.62); max-width: 320px; }
.footer__licenses, .footer__license { display: none; }
.footer__col-title { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-hi); font-weight: 700; margin-bottom: 18px; }
.footer__links li { margin-bottom: 10px; }
.footer__links a { color: rgba(255,255,255,.72); font-size: .95rem; transition: color var(--transition); }
.footer__links a:hover { color: var(--gold-hi); }
.footer__contact-item { display: flex; gap: 10px; align-items: center; margin-bottom: 12px; font-size: .95rem; }
.footer__contact-item a { color: rgba(255,255,255,.85); }
.footer__contact-item a:hover { color: var(--gold-hi); }
.footer__contact-item svg { width: 18px; height: 18px; stroke: var(--gold-hi); fill: none; stroke-width: 1.6; flex-shrink: 0; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 28px; display: flex; justify-content: space-between; gap: 32px; align-items: flex-start; font-size: .82rem; color: rgba(255,255,255,.5); }
.footer__disclaimer { margin-top: 8px; max-width: 720px; line-height: 1.55; }
.footer__bottom-links { display: flex; gap: 20px; flex-shrink: 0; }
.footer__bottom-links a { color: rgba(255,255,255,.7); }
.footer__bottom-links a:hover { color: var(--gold-hi); }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__card { max-width: 520px; }
  .meet, .about-teaser, .service-detail__inner, .contact-grid { grid-template-columns: 1fr; }
  .tiles, .services-grid, .why-grid, .process-steps, .grid-3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .plans { gap: 16px; }
  .plan { padding: 30px 22px 26px; }
  .plan h3 { font-size: 1.5rem; }
  .plan__price .amt { font-size: 2.2rem; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .steps__line { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .proof__inner { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .proof__item:nth-child(3) { border-left: 0; padding-left: 0; }
  .proof__item { border-top: 1px solid var(--border); }
  .proof__item:nth-child(-n+2) { border-top: 0; }
}
@media (max-width: 768px) {
  body { font-size: 16px; }
  .section { padding: 48px 0; }
  .hero { padding: calc(var(--nav-height) + 24px) 0 48px; }
  .hero__card { display: none; }
  .hero__scroll { display: none; }
  .tiles, .services-grid, .why-grid, .process-steps, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .proof__inner { grid-template-columns: 1fr 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; }
  .step-row { grid-template-columns: 56px 1fr; gap: 18px; }
  .step-row > div:first-child { width: 56px !important; height: 56px !important; font-size: 1.4rem !important; }
  .cta-banner { padding: 72px 0; }

  /* mobile nav: bar holds logo + toggle; the panel opens beneath */
  .nav__ctas { display: none; }
  .nav__inner { gap: 12px; }
  .nav__logo-name { font-size: 1.2rem; }
  .nav__mark { width: 40px; height: 40px; }
  .nav__toggle { display: flex; }
  .nav__links {
    display: none; position: absolute; top: var(--nav-height); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0; padding: 6px 0 12px;
    background: var(--white); border-bottom: 1px solid var(--border); box-shadow: 0 14px 28px rgba(6,21,48,.12);
  }
  .nav__links--open { display: flex; }
  .nav__links a { display: block; padding: 14px 24px; border-radius: 0; font-size: 1.05rem; color: var(--text-dark) !important; background: transparent !important; }
  .nav__links a:hover, .nav__links a.active { background: var(--off-white) !important; }
  .nav__mobile-only { display: block; }
  .nav__mobile-only a { margin: 8px 16px 0; padding: 13px 16px; text-align: center; border-radius: 999px; font-weight: 600; }
  .nav__mobile-only--portal a { border: 1.5px solid var(--border); color: var(--navy-deep) !important; }
  .nav__mobile-only--book a { background: linear-gradient(135deg, var(--gold-hi), var(--gold-mid), var(--gold-lo)); color: var(--navy-ink) !important; }
  .nav--open { background: var(--white) !important; }
  .nav--open .nav__logo, .nav--open .nav__logo-name { color: var(--navy-deep) !important; }
  .nav--open .nav__logo-tag { color: var(--gold-lo) !important; }
  .nav--open .nav__toggle span { background: var(--navy-deep) !important; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2.1rem; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .proof__inner { grid-template-columns: 1fr 1fr; }
  .proof__item { padding: 22px 16px; }
  .proof__num { font-size: 2rem; }
}

/* ---------- reduced motion (and the ?static switch) ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__glow--1, .hero__glow--2, .hero__scroll::after, .plan--gold::before { animation: none; }
  .js .reveal-line > span, .js .hero__fade { animation: none; }
  .hero__canvas { display: none; }
  .steps__line span { width: 100% !important; }
  .step .step__num { transform: none; }
  * { transition-duration: .01ms !important; }
}
html.static { scroll-behavior: auto; }
html.static .reveal { opacity: 1; transform: none; transition: none; }
html.static .hero__glow--1, html.static .hero__glow--2, html.static .hero__scroll::after, html.static .plan--gold::before { animation: none; }
html.static .js .reveal-line > span, html.static .js .hero__fade { animation: none; }
html.static .hero__canvas { display: none; }
html.static .steps__line span { width: 100% !important; }
html.static .nav, html.static .hero__card { backdrop-filter: none; -webkit-backdrop-filter: none; }
html.static .nav--solid { background: #fff; }
html.static * { transition-duration: .01ms !important; }

/* ============================================================
   INNER PAGES — brought up to the homepage
   ============================================================ */
.ico { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.ico-box { width: 46px; height: 46px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; background: var(--navy-deep); color: var(--gold-hi); flex-shrink: 0; }
.ico-box--pale { background: var(--gold-pale); color: var(--gold-lo); }
.service-card__icon, .why-card__icon, .contact-sidebar__icon { font-size: 0; }
.contact-sidebar__icon { background: var(--navy-deep); color: var(--gold-hi); }

/* page hero with a right-hand aside (services, about, contact) */
.page-hero__grid { display: grid; grid-template-columns: 1fr; gap: 14px; align-items: start; }
.page-hero__aside { justify-self: start; }
.page-hero .eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.page-hero .eyebrow::before { content: ""; width: 32px; height: 1.5px; background: linear-gradient(90deg, var(--gold-hi), var(--gold-lo)); }

/* the ledger card reused as a quick-facts block on inner pages */
.facts { background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.12); border-radius: 999px; padding: 4px 18px; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); min-width: 300px; }
.facts .ledger { flex-direction: row; flex-wrap: wrap; gap: 0 26px; }
.facts .ledger__row { padding: 6px 0; border-bottom: 0; grid-template-columns: auto auto; gap: 8px; }
.facts .ledger__val { font-size: .95rem; }

/* services: the detail sections */
.service-detail:nth-of-type(even) { background: var(--off-white); }
.service-detail .eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.service-detail h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.service-detail .btn { margin-top: 12px; }
.service-nav { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: -20px; position: relative; z-index: 2; }
.service-nav a { background: var(--white); border: 1px solid var(--border); border-radius: 999px; padding: 9px 16px; font-size: .88rem; font-weight: 600; color: var(--text-mid); box-shadow: var(--shadow-sm); transition: all var(--transition); }
.service-nav a:hover { color: var(--navy-deep); border-color: var(--gold-mid); transform: translateY(-2px); }
.plan-hint { display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: center; background: var(--navy-deep); color: var(--white); border-radius: 16px; padding: 22px 28px; margin-top: 56px; }
.plan-hint h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 4px; }
.plan-hint p { color: rgba(255,255,255,.7); font-size: .95rem; }
.plan-hint .ico-box { background: rgba(243,226,173,.12); }

/* about */
.about-teaser__photo figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 20px 16px; font-size: .78rem; color: rgba(255,255,255,.75); background: linear-gradient(180deg, rgba(6,21,48,0), rgba(6,21,48,.85)); }
.creds { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 36px; }
.creds h3 { font-family: var(--font-body); font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-lo); font-weight: 700; margin-bottom: 16px; }
.creds li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; padding: 10px 0; border-bottom: 1px dashed var(--gray-light); color: var(--text-mid); }
.creds li:last-child { border-bottom: 0; }
.creds li strong { color: var(--text-dark); display: block; }
.creds li .ico { width: 18px; height: 18px; color: var(--gold-lo); margin-top: 3px; }
.callout { background: var(--off-white); border: 1px solid var(--border); border-left: 3px solid var(--gold-mid); border-radius: 0 16px 16px 0; padding: 26px 30px; margin-top: 44px; }
.callout h3 { font-size: 1.1rem; margin-bottom: 8px; }
.callout p { color: var(--text-mid); font-size: .97rem; }

/* process: the long-form steps */
.step-row__num { width: 80px; height: 80px; border-radius: 50%; background: var(--navy-deep); border: 2px solid var(--gold-mid); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 1.9rem; color: var(--gold-hi); flex-shrink: 0; }
.step-row h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-bottom: 10px; }
.step-row p { margin-bottom: 14px; }
.step-row__tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.step-row__tags .cred-badge svg { width: 15px; height: 15px; color: var(--gold-lo); }
.expect { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.expect > div { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 26px 24px; }
.expect h3 { font-size: 1.05rem; margin: 14px 0 8px; }
.expect p { font-size: .92rem; color: var(--text-mid); }

/* contact */
.contact-form h2 { margin-bottom: 8px; }
.side-card { background: var(--off-white); border: 1px solid var(--border); border-radius: 20px; padding: 28px; margin-top: 24px; }
.side-card h3 { font-size: 1rem; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.side-card h3 .ico { width: 18px; height: 18px; color: var(--gold-lo); }
.side-card p { font-size: .9rem; color: var(--text-mid); margin-bottom: 16px; }
.disclosure { max-width: 760px; margin: 0 auto; text-align: center; }
.disclosure h2 { font-size: 1.3rem; margin-bottom: 12px; }
.disclosure p { color: var(--text-mid); font-size: .95rem; }

@media (max-width: 1024px) {
  .page-hero__grid { grid-template-columns: 1fr; }
  .page-hero__aside { justify-self: start; }
  .expect { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .creds { grid-template-columns: 1fr; }
  .plan-hint { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .step-row__num { width: 56px; height: 56px; font-size: 1.4rem; }
  .facts { min-width: 0; width: 100%; }
}

/* ---------- plans and the comparison on phones: stacked, in tier order, nothing scrolls sideways ---------- */
@media (max-width: 860px) {
  .plans { grid-template-columns: 1fr; gap: 18px; }
  .plan { padding: 28px 22px 24px; }
  .plan__for { min-height: 0; }
  .plans__hint { display: none; }
}
@media (max-width: 600px) {
  .compare__wrap { overflow-x: visible; border-radius: 12px; }
  .compare { table-layout: fixed; font-size: .8rem; }
  .compare th, .compare td { padding: 10px 6px; }
  .compare th { font-size: .62rem; letter-spacing: .06em; }
  .compare th:first-child, .compare td:first-child { width: 43%; }
  .compare th:not(:first-child), .compare td:not(:first-child) { width: 19%; }
  .compare td:first-child { line-height: 1.35; }
  .compare .yes { width: 20px; height: 20px; font-size: .75rem; }
}
