/* ═══════════════════════════════════════════════════════════════
   BlueStone Business Coach — "Jobsite" design system
   Concept: blueprint navy · warm concrete surfaces · safety amber
   Type: Archivo (display/labels) + Public Sans (body)
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* ── Brand: blueprint blues ── */
  --ink:        #102331;   /* near-black slate navy — dark sections, text */
  --navy:       #16384f;   /* brand navy (refined from #1a3e5c) */
  --navy-700:   #1d4866;
  --blue:       #1e6f9f;   /* primary blue (refined from #2681ba) */
  --blue-600:   #185c83;
  --blue-300:   #6fb2d6;
  --blue-100:   #cfe3ef;

  /* ── Safety amber (warm trade accent) ── */
  --amber:      #e8943a;
  --amber-600:  #cf7d27;
  --amber-200:  #f6d9b4;
  --amber-glow:        rgba(232,148,58,.32);
  --amber-glow-strong: rgba(232,148,58,.42);

  /* ── Concrete / paper neutrals (warm) ── */
  --bg:         #ffffff;
  --paper:      #f5f2ec;   /* warm concrete */
  --paper-2:    #efeae1;
  --line:       #e4ddd2;   /* warm hairline */
  --line-strong:#d4ccbe;

  /* ── Text ── */
  --text:       #1f2c36;
  --muted:      #5c6a75;
  --muted-soft: #8593a0;

  /* ── Type ── */
  --font-display: "Archivo", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:    "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  /* ── Metrics ── */
  --max:     1180px;
  --prose:   720px;
  --radius:  5px;
  --radius-lg: 10px;
  --shadow-sm: 0 1px 2px rgba(16,35,49,.06), 0 2px 8px rgba(16,35,49,.05);
  --shadow:    0 4px 14px rgba(16,35,49,.08), 0 14px 40px rgba(16,35,49,.07);
  --shadow-lg: 0 10px 30px rgba(16,35,49,.12), 0 30px 70px rgba(16,35,49,.10);
  --ease: cubic-bezier(.2,.7,.3,1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

::selection { background: var(--amber-200); color: var(--ink); }

a { color: var(--blue-600); text-decoration: none; }
a:hover { color: var(--blue); }

/* ── Reusable container ── */
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
.prose { max-width: var(--prose); }

/* ── Display / heading utilities ── */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--amber-600);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--amber);
  display: inline-block;
}
.eyebrow.eyebrow-light { color: var(--amber); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -0.015em;
  font-weight: 800;
}

.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.section-lead {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 56ch;
  margin-top: 1rem;
  line-height: 1.6;
}

/* ═══════════════ Header ═══════════════ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--max); margin: 0 auto;
  padding: .85rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.logo { display: flex; align-items: center; }
.logo img { height: 62px; width: auto; }
.nav-links {
  display: flex; align-items: center; list-style: none; gap: 2rem;
}
.nav-links > li > a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  padding: .4rem 0;
  position: relative;
}
.nav-links > li > a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--amber);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav-links > li > a:hover { color: var(--blue); }
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { transform: scaleX(1); }
.nav-links > li > a.active { color: var(--blue); }
.nav-cta { margin-left: .25rem; }
.nav-cta .btn { padding: .72rem 1.5rem; font-size: .82rem; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; align-items: center; justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: ""; display: block; width: 24px; height: 2px; background: var(--navy);
  transition: transform .25s var(--ease), opacity .2s;
  position: relative;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after  { position: absolute; top: 7px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span::after  { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════ Buttons ═══════════════ */
.btn {
  --btn-bg: var(--amber);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .01em;
  padding: .92rem 1.6rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s var(--ease), background-color .18s var(--ease),
              box-shadow .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn-primary {
  background: var(--amber); color: var(--ink);
  box-shadow: 0 6px 18px var(--amber-glow);
}
.btn-primary:hover {
  background: var(--amber-600); color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px var(--amber-glow-strong);
}
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--navy); border-color: var(--line-strong);
}
.btn-outline:hover { border-color: var(--navy); color: var(--navy); background: var(--paper); }
.btn-ghost-light {
  background: rgba(255,255,255,.08); color: #fff;
  border-color: rgba(255,255,255,.32);
  backdrop-filter: blur(4px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.16); color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 1.05rem 2rem; font-size: 1rem; }
.btn-arrow { transition: transform .18s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ═══════════════ Blueprint grid texture ═══════════════ */
.blueprint {
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 46px 46px;
}

/* ═══════════════ Hero (shared) ═══════════════ */
[hidden] { display: none !important; }
.hero { position: relative; isolation: isolate; overflow: hidden; }
.hero-inner { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }

/* Variant A — photo with overlay */
.hero--photo {
  background: var(--ink);
  color: #fff;
  min-height: 600px;
  display: flex; align-items: center;
}
.hero--photo .hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
}
.hero--photo .hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(13,28,40,.92) 0%, rgba(13,28,40,.74) 42%, rgba(13,28,40,.30) 100%);
}
.hero--photo .hero-inner { padding-top: 5.5rem; padding-bottom: 5.5rem; }
.hero-content { max-width: 660px; }

/* Variant B — split */
.hero--split { background: var(--navy); color: #fff; }
.hero--split .hero-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: stretch;
  min-height: 580px;
}
.hero--split .hero-copy { padding: 5rem 3.5rem 5rem 1.5rem; display: flex; flex-direction: column; justify-content: center; }
.hero--split .hero-photo { position: relative; overflow: hidden; }
.hero--split .hero-photo .hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero--split .hero-photo::after {
  content:""; position:absolute; inset:0;
  background: linear-gradient(90deg, var(--navy), transparent 22%);
}

/* Variant C — typographic block */
.hero--type {
  background: var(--navy); color: #fff;
  position: relative;
}
.hero--type .hero-inner { padding: 6rem 1.5rem 5rem; max-width: 1000px; }
.hero--type .hero-bigmark {
  position: absolute; right: -2%; bottom: -18%; z-index: -1;
  font-family: var(--font-display); font-weight: 800;
  font-size: 34vw; line-height: .8; color: rgba(255,255,255,.035);
  letter-spacing: -.04em; pointer-events: none; user-select: none;
}

/* Shared hero typography */
.hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.02;
  text-wrap: balance;
}
.hero h1 .accent { color: var(--amber); }
.hero h1 .underline {
  background-image: linear-gradient(var(--amber), var(--amber));
  background-repeat: no-repeat;
  background-position: 0 92%;
  background-size: 100% .14em;
  padding-bottom: .02em;
}
.hero-sub {
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  color: rgba(255,255,255,.86);
  max-width: 56ch;
  margin: 1.6rem 0 2.2rem;
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }
.hero-eyebrow { margin-bottom: 1.4rem; }
.hero-trust {
  margin-top: 2.4rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.16);
  display: flex; flex-wrap: wrap; gap: 1.6rem 2.4rem; align-items: center;
}
.hero-trust .trust-item { display: flex; flex-direction: column; gap: .15rem; }
.hero-trust .trust-num {
  font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; color: var(--amber); line-height: 1;
}
.hero-trust .trust-label { font-size: .82rem; color: rgba(255,255,255,.74); letter-spacing: .02em; }

/* ═══════════════ Sections ═══════════════ */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section--paper { background: var(--paper); border-block: 1px solid var(--line); }
.section--navy { background: var(--navy); color: #fff; position: relative; isolation: isolate; }
.section--ink  { background: var(--ink);  color: #fff; position: relative; isolation: isolate; }
.section--navy h2, .section--ink h2 { color: #fff; }
.section-head { max-width: 760px; margin-bottom: 2.6rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .section-lead { margin-inline: auto; }

/* ── Industries / trade band (static) ── */
.tradeband { background: var(--paper); border-block: 1px solid var(--line); }
.tradeband .tb-inner {
  max-width: var(--max); margin: 0 auto; padding: 1.4rem 1.5rem;
  display: flex; flex-wrap: wrap; align-items: center; gap: .9rem 1.6rem;
}
.tradeband .tb-label {
  font-family: var(--font-display); font-weight: 700; font-size: .72rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--amber-600);
  display: inline-flex; align-items: center; gap: .6rem; white-space: nowrap;
}
.tradeband .tb-label::before { content:""; width: 22px; height: 2px; background: var(--amber); }
.trade-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.trade-tag {
  font-family: var(--font-display); font-weight: 600; font-size: .82rem; letter-spacing: .01em;
  color: var(--navy); background: var(--bg); border: 1px solid var(--line-strong);
  border-radius: 999px; padding: .42rem .9rem; transition: border-color .2s var(--ease), color .2s;
}
.trade-tag:hover { border-color: var(--blue); color: var(--blue); }

/* ── Value strip (static, on ink) ── */
.valuestrip { background: var(--ink); color: #fff; border-block: 3px solid var(--amber); }
.valuestrip .vs-inner {
  max-width: var(--max); margin: 0 auto; padding: 1rem 1.5rem;
  display: flex; flex-wrap: wrap; justify-content: center; gap: .55rem 2.4rem;
}
.valuestrip .vs-item {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; font-size: .8rem; color: rgba(255,255,255,.92);
  display: inline-flex; align-items: center; gap: .8rem;
}
.valuestrip .vs-item::before { content:"●"; color: var(--amber); font-size: .5em; }

/* ── Industries strip / marquee (legacy) ── */
.strip {
  background: var(--ink); color: #fff; overflow: hidden;
  padding: .95rem 0; border-block: 3px solid var(--amber);
}
.marquee { display: flex; gap: 0; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover { animation-play-state: paused; }
.marquee .track { display: flex; align-items: center; }
.marquee .item {
  font-family: var(--font-display); font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; font-size: .82rem;
  padding: 0 1.4rem; color: rgba(255,255,255,.92); white-space: nowrap;
}
.marquee .item::after { content: "●"; color: var(--amber); margin-left: 2.8rem; font-size: .5em; vertical-align: middle; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── Pain point cards ── */
.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.1rem; }
.pain-card {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.6rem 1.5rem 1.5rem;
  position: relative; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.pain-card .pc-num {
  font-family: var(--font-display); font-weight: 800; font-size: .8rem;
  color: var(--amber-600); letter-spacing: .08em;
}
.pain-card p { margin-top: .7rem; font-weight: 500; font-size: 1.06rem; color: var(--navy); line-height: 1.4; }

/* ── Feature list (what we help with) ── */
.help-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--bg); }
.help-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.5rem 1.6rem;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  transition: background .2s var(--ease);
}
.help-item:hover { background: var(--paper); }
.help-item .hi-num {
  font-family: var(--font-display); font-weight: 800; font-size: .95rem;
  color: var(--blue); min-width: 1.8rem; line-height: 1.5;
}
.help-item .hi-text { font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; color: var(--navy); line-height: 1.3; }

/* ── Founders ── */
.founders { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.6rem; }
.founder-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.founder-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.founder-photo { aspect-ratio: 4/3; overflow: hidden; background: var(--paper-2); }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .5s var(--ease); }
.founder-card:hover .founder-photo img { transform: scale(1.04); }
.founder-body { padding: 1.4rem 1.5rem 1.6rem; }
.founder-body h3 { font-size: 1.35rem; margin-bottom: .15rem; }
.founder-role {
  font-family: var(--font-display); font-weight: 700; font-size: .72rem; text-transform: uppercase;
  letter-spacing: .12em; color: var(--amber-600); margin-bottom: .7rem;
}
.founder-body p { color: var(--muted); font-size: 1rem; }

/* ── Pull quote band ── */
.pull {
  text-align: center; position: relative; isolation: isolate;
}
.pull .pull-mark {
  font-family: var(--font-display); font-weight: 800; font-size: 5rem; color: var(--amber);
  line-height: .6; height: 2.2rem;
}
.pull p {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.3rem); line-height: 1.22; letter-spacing: -.015em;
  color: #fff; max-width: 880px; margin: 1.4rem auto 0; text-wrap: balance;
}
.pull p .accent { color: var(--amber); }

/* ── Testimonial ── */
.tcard {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2.4rem clamp(1.6rem, 4vw, 3rem); position: relative; box-shadow: var(--shadow-sm);
  max-width: 860px; margin: 0 auto;
}
.tcard .quotemark {
  font-family: var(--font-display); font-weight: 800; font-size: 4.5rem; color: var(--amber);
  line-height: .5; height: 2rem; display: block;
}
.tcard blockquote { font-size: clamp(1.15rem, 1.8vw, 1.4rem); line-height: 1.5; color: var(--navy); font-weight: 500; margin: 1rem 0 1.4rem; }
.tcard .attrib { display: flex; align-items: center; gap: .9rem; }
.tcard .attrib-badge {
  width: 46px; height: 46px; border-radius: 50%; background: var(--navy); color: #fff;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; flex: 0 0 auto;
}
.tcard .attrib-name { font-family: var(--font-display); font-weight: 700; color: var(--navy); }
.tcard .attrib-co { font-size: .88rem; color: var(--muted); }
.tag-placeholder {
  display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.2rem;
  font-family: var(--font-display); font-weight: 600; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--amber-600); background: var(--amber-200); padding: .3rem .7rem; border-radius: 999px;
}

/* ── CTA band ── */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 52ch; margin: 0 auto 2rem; font-size: 1.12rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }

/* ═══════════════ Prose (content pages) ═══════════════ */
.prose-page { padding: clamp(3rem, 6vw, 5rem) 0; }
.prose-page .prose { margin: 0 auto; }
.prose-page h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin: 2.6rem 0 .9rem; }
.prose-page h3 { font-size: 1.25rem; margin: 1.8rem 0 .55rem; color: var(--navy); }
.prose-page p { margin-bottom: 1.1rem; color: var(--text); }
.prose-page ul, .prose-page ol { margin: 0 0 1.3rem 1.2rem; }
.prose-page li { margin-bottom: .5rem; }
.prose-page li::marker { color: var(--amber-600); }
.prose-page hr { border: 0; border-top: 1px solid var(--line); margin: 3rem 0; }
.lede { font-size: 1.12rem; color: var(--muted); }
.lede.center { text-align: center; max-width: 60ch; margin-inline: auto; }

/* ── Bio blocks (about) ── */
.bio { display: grid; grid-template-columns: 320px 1fr; gap: 2.8rem; align-items: start; margin: 3rem 0; }
.bio-reverse { grid-template-columns: 1fr 320px; }
.bio-reverse .bio-media { order: 2; }
.bio-media {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow);
}
.bio-media img { width: 100%; display: block; }
.bio-media::after {
  content:""; position: absolute; left: 0; bottom: 0; width: 64px; height: 6px; background: var(--amber);
}
.bio-text h2 { margin-top: 0; }
.bio-role {
  font-family: var(--font-display); font-weight: 700; font-size: .74rem; text-transform: uppercase;
  letter-spacing: .12em; color: var(--amber-600); margin-bottom: 1rem;
}

/* ── Feature rows (cn / generic) ── */
.feature-row { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; margin: 3.5rem 0; }
.feature-row-reverse .feature-text { order: 2; }
.feature-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.feature-media img { width: 100%; }
.feature-text h2 { margin-top: 0; }

/* ═══════════════ Pricing cards ═══════════════ */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.5rem; align-items: stretch; margin: 2.5rem 0; }
.price-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem 1.8rem; display: flex; flex-direction: column; position: relative;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.price-card.featured { border: 2px solid var(--amber); box-shadow: var(--shadow); }
.price-card .badge {
  position: absolute; top: -.85rem; left: 1.8rem;
  background: var(--amber); color: var(--ink);
  font-family: var(--font-display); font-weight: 700; font-size: .68rem;
  letter-spacing: .1em; text-transform: uppercase; padding: .35rem .8rem; border-radius: 999px;
}
.price-card h3 { font-size: 1.45rem; margin-bottom: .5rem; }
.price-card .pc-desc { color: var(--muted); font-size: .98rem; margin-bottom: 1.3rem; font-style: italic; }
.price-card ul { list-style: none; margin: 0 0 1.5rem; display: flex; flex-direction: column; gap: .7rem; }
.price-card ul li { position: relative; padding-left: 1.7rem; font-size: .98rem; line-height: 1.45; }
.price-card ul li::before {
  content: ""; position: absolute; left: 0; top: .35rem;
  width: 1.05rem; height: 1.05rem; border-radius: 50%;
  background: var(--blue-100);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%231e6f9f' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3.5 8.5l3 3 6-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: .82rem;
}
.price-amt {
  font-family: var(--font-display); font-weight: 800; font-size: 2.2rem; color: var(--navy);
  letter-spacing: -.02em; margin-top: auto; line-height: 1.1;
}
.price-amt span { font-family: var(--font-body); font-size: .92rem; font-weight: 400; color: var(--muted); letter-spacing: 0; display: block; margin-top: .15rem; }
.price-card .btn { margin-top: 1.4rem; width: 100%; }

/* ── Simple info / contact cards ── */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.3rem; margin: 2rem 0; }
.contact-stack { max-width: 760px; margin: 2rem auto 0; display: flex; flex-direction: column; gap: 1.3rem; }
.contact-stack .info-card .big-link { font-size: clamp(1.15rem, 3vw, 1.5rem); }
.info-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.8rem; text-align: center; transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.info-card h3 { margin-bottom: .4rem; }
.info-card .big-link { font-family: var(--font-display); font-weight: 800; font-size: clamp(1rem, 2.4vw, 1.25rem); color: var(--blue-600); letter-spacing: .005em; overflow-wrap: anywhere; line-height: 1.25; display: inline-block; }

.split-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.4rem; }
.split-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.8rem; transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s;
}
.split-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--line-strong); }
.split-card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.split-card .arrow-link { font-family: var(--font-display); font-weight: 700; color: var(--blue-600); display: inline-flex; align-items: center; gap: .35rem; }
.split-card .arrow-link:hover { color: var(--blue); gap: .55rem; transition: gap .2s; }

/* ── Embeds ── */
.embed-wrap { position: relative; width: 100%; border-radius: var(--radius-lg); overflow: hidden; background: var(--paper); box-shadow: var(--shadow-sm); }
.calendly-inline { min-width: 320px; height: 700px; }

/* ═══════════════ Footer ═══════════════ */
.site-footer { background: var(--ink); color: rgba(255,255,255,.78); padding: 4rem 0 2rem; }
.footer-grid {
  max-width: var(--max); margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem;
}
.footer-brand .footer-name { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: #fff; }
.footer-brand .footer-tag { color: rgba(255,255,255,.62); font-size: .96rem; margin-top: .5rem; max-width: 32ch; }
.footer-col h4 {
  font-family: var(--font-display); font-weight: 700; font-size: .74rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 1rem;
}
.footer-col a { display: block; color: rgba(255,255,255,.78); padding: .32rem 0; font-size: .96rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: var(--max); margin: 3rem auto 0; padding: 1.5rem 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between;
  font-size: .85rem; color: rgba(255,255,255,.5);
}

/* ═══════════════ Accent switcher (preview tool) ═══════════════ */
.accent-switch {
  position: fixed; right: 16px; bottom: 16px; z-index: 90;
  background: var(--ink); color: #fff; border-radius: 14px;
  padding: .7rem .8rem; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.12); font-family: var(--font-display);
  max-width: calc(100vw - 32px);
}
.accent-switch .as-label {
  font-size: .6rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.55); margin-bottom: .5rem; display: block;
}
.accent-switch .as-row { display: flex; gap: .4rem; }
.accent-switch button {
  display: flex; align-items: center; gap: .45rem; cursor: pointer;
  background: rgba(255,255,255,.06); border: 1.5px solid transparent;
  color: rgba(255,255,255,.82); padding: .45rem .7rem; border-radius: 9px;
  font-family: var(--font-display); font-weight: 700; font-size: .78rem;
  transition: background .18s, border-color .18s, color .18s;
}
.accent-switch button:hover { background: rgba(255,255,255,.12); color: #fff; }
.accent-switch button.active { border-color: rgba(255,255,255,.55); color: #fff; background: rgba(255,255,255,.1); }
.accent-switch .as-dot { width: 15px; height: 15px; border-radius: 50%; flex: 0 0 auto; box-shadow: 0 0 0 1px rgba(255,255,255,.25) inset; }

/* ═══════════════ Hero variant switcher (preview tool) ═══════════════ */
.hero-switch {
  position: fixed; right: 16px; bottom: 16px; z-index: 90;
  background: var(--ink); color: #fff; border-radius: 999px;
  padding: .4rem; display: flex; align-items: center; gap: .25rem;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.12);
  font-family: var(--font-display);
}
.hero-switch .hs-label {
  font-size: .62rem; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.55); padding: 0 .6rem 0 .8rem;
}
.hero-switch button {
  border: 0; cursor: pointer; background: transparent; color: rgba(255,255,255,.7);
  font-family: var(--font-display); font-weight: 700; font-size: .8rem;
  width: 34px; height: 34px; border-radius: 999px; transition: background .2s, color .2s;
}
.hero-switch button:hover { color: #fff; }
.hero-switch button.active { background: var(--amber); color: var(--ink); }

/* ═══════════════ Scroll reveal ═══════════════ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee { animation: none; }
  * { scroll-behavior: auto; }
}

/* ═══════════════ Responsive ═══════════════ */
@media (max-width: 900px) {
  .hero--split .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero--split .hero-copy { padding: 4rem 1.5rem 3rem; }
  .hero--split .hero-photo { min-height: 280px; }
  .hero--split .hero-photo::after { background: linear-gradient(0deg, var(--navy), transparent 30%); }
  .bio, .bio-reverse { grid-template-columns: 1fr; gap: 1.6rem; }
  .bio-reverse .bio-media { order: 0; }
  .bio-media { max-width: 360px; }
  .feature-row, .feature-row-reverse { grid-template-columns: 1fr; gap: 1.8rem; }
  .feature-row-reverse .feature-text { order: 0; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-toggle { display: flex; }
  .nav { display: contents; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: .5rem 1.5rem 1.2rem;
    box-shadow: var(--shadow);
    clip-path: inset(0 0 100% 0); transition: clip-path .3s var(--ease);
  }
  .nav-links.open { clip-path: inset(0 0 0 0); }
  .nav-links > li > a { display: block; padding: .85rem 0; font-size: .95rem; border-bottom: 1px solid var(--line); }
  .nav-links > li > a::after { display: none; }
  .nav-links > li:last-child { padding-top: .9rem; }
  .nav-cta { width: 100%; }
  .logo img { height: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .hero--photo { min-height: 520px; }
  .hero-trust { gap: 1.2rem 1.8rem; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .help-item { padding: 1.2rem 1.3rem; }
}
