/* =========================================================================
   PIPELINEWORKS — Master Stylesheet
   Premium real-estate-firm aesthetic. Editorial. Architectural.
   ========================================================================= */

/* -------- TOKENS -------- */
:root {
  /* Ink (deep midnight) */
  --ink: #0E1522;
  --ink-soft: #1A2236;
  --ink-warm: #232A3D;

  /* Bronze accent */
  --bronze: #B89968;
  --bronze-deep: #9A7E50;
  --bronze-light: #D9C4A0;
  --bronze-faint: #F2EAD8;

  /* Neutrals */
  --cream: #FAF7F2;
  --cream-soft: #F2EDE2;
  --paper: #FFFFFF;
  --line: rgba(184, 153, 104, 0.22);
  --line-strong: #E5DFD2;
  --line-cool: #DCDDE0;

  /* Text */
  --text: #1A1F2E;
  --text-soft: #3A4156;
  --text-muted: #6B7388;
  --text-faint: #9AA0B0;

  /* Functional */
  --green: #1F6B4A;
  --red: #B83A2E;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(14, 21, 34, 0.04), 0 2px 4px rgba(14, 21, 34, 0.04);
  --shadow-md: 0 4px 12px rgba(14, 21, 34, 0.06), 0 2px 4px rgba(14, 21, 34, 0.04);
  --shadow-lg: 0 14px 40px rgba(14, 21, 34, 0.10), 0 4px 12px rgba(14, 21, 34, 0.06);
  --shadow-xl: 0 28px 80px rgba(14, 21, 34, 0.18), 0 8px 24px rgba(14, 21, 34, 0.08);

  /* Spacing scale */
  --gutter: clamp(20px, 4vw, 48px);
  --section-y: clamp(72px, 9vw, 140px);

  /* Typography */
  --serif: 'Cormorant Garamond', 'Garamond', 'Times New Roman', Georgia, serif;
  --sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
}

/* -------- RESET & BASE -------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color .25s ease, opacity .25s ease; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }

/* -------- TYPOGRAPHY -------- */
.display, h1, h2, h3, .eyebrow {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(38px, 6.2vw, 86px); line-height: 1.04; font-weight: 500; letter-spacing: -0.015em; }
h2 { font-size: clamp(30px, 4vw, 56px); line-height: 1.10; letter-spacing: -0.01em; }
h3 { font-size: clamp(22px, 2.4vw, 32px); line-height: 1.25; }
h4 { font-family: var(--sans); font-size: 14px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--bronze-deep); margin-bottom: 14px; }

.serif-italic { font-family: var(--serif); font-style: italic; font-weight: 400; }

p { font-size: 17px; line-height: 1.7; color: var(--text-soft); margin-bottom: 1.1em; }
p.large { font-size: 20px; line-height: 1.55; }
p.lead { font-family: var(--serif); font-size: clamp(20px, 2.2vw, 28px); line-height: 1.4; font-weight: 400; color: var(--ink); }

.eyebrow {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--bronze-deep);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--bronze);
}

/* -------- LAYOUT -------- */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow { max-width: 880px; margin: 0 auto; padding: 0 var(--gutter); }
.wrap-prose { max-width: 760px; margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section-y) 0; position: relative; }
.section-dark { background: var(--ink); color: var(--cream); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--cream); }
.section-dark p { color: rgba(250, 247, 242, 0.78); }
.section-dark .eyebrow { color: var(--bronze-light); }
.section-dark .eyebrow::before { background: var(--bronze); }

.section-cream-soft { background: var(--cream-soft); }
.section-paper { background: var(--paper); }

/* -------- NAVIGATION -------- */
.nav {
  position: sticky; top: 0; z-index: 80;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.nav-logo { display: flex; align-items: center; height: 42px; }
.nav-logo img, .nav-logo svg { height: 42px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 38px; }
.nav-link {
  font-size: 13px; font-weight: 500; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--text); position: relative; padding: 6px 0;
}
.nav-link::after {
  content: ""; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--bronze);
  transition: width .35s ease;
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { width: 100%; }
.nav-cta {
  padding: 12px 22px;
  background: var(--ink); color: var(--cream);
  font-size: 12px; font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase;
  transition: background .25s ease;
}
.nav-cta:hover { background: var(--bronze-deep); color: var(--cream); }
.nav-toggle { display: none; }

/* -------- HERO -------- */
.hero {
  position: relative;
  min-height: clamp(640px, 92vh, 920px);
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  filter: saturate(0.85) contrast(1.05);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 21, 34, 0.55) 0%, rgba(14, 21, 34, 0.85) 100%),
    radial-gradient(60% 50% at 22% 50%, rgba(184, 153, 104, 0.18), transparent 70%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  padding: 80px var(--gutter);
  width: 100%;
}
.hero-content { max-width: 820px; }
.hero h1 {
  color: var(--cream);
  margin-bottom: 28px;
}
.hero h1 .accent {
  color: var(--bronze-light);
  font-style: italic;
  font-weight: 400;
}
.hero-sub {
  font-size: 19px; line-height: 1.65;
  color: rgba(250, 247, 242, 0.82);
  max-width: 620px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

/* Subtle hero meta line bottom */
.hero-meta {
  position: absolute; bottom: 36px; left: 0; right: 0;
  z-index: 2;
  max-width: 1280px; margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(217, 196, 160, 0.7);
}
.hero-meta-line { width: 60px; height: 1px; background: rgba(217, 196, 160, 0.4); }

/* -------- BUTTONS -------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 32px;
  font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  transition: all .3s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--bronze); color: var(--ink);
}
.btn-primary:hover { background: var(--bronze-light); color: var(--ink); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--cream); border-color: rgba(250, 247, 242, 0.35);
}
.btn-ghost:hover { border-color: var(--bronze-light); color: var(--bronze-light); }
.btn-dark {
  background: var(--ink); color: var(--cream);
}
.btn-dark:hover { background: var(--bronze-deep); }
.btn-arrow::after {
  content: "→";
  font-family: var(--sans); font-weight: 400; font-size: 14px;
  transition: transform .3s ease;
  letter-spacing: 0;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* -------- GRID UTILITIES -------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.split-narrow { grid-template-columns: 0.9fr 1.1fr; }
.cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.cols-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

/* -------- SECTION HEADER -------- */
.section-head { max-width: 760px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 + p { margin-top: 24px; }

/* -------- IMAGE FRAMES -------- */
.image-frame {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow-lg);
}
.image-frame img {
  display: block; width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2, .6, .2, 1);
}
.image-frame:hover img { transform: scale(1.04); }
.image-frame-tall { aspect-ratio: 4 / 5; }
.image-frame-wide { aspect-ratio: 16 / 10; }
.image-frame-square { aspect-ratio: 1 / 1; }

.image-w-caption { position: relative; }
.image-w-caption::before {
  content: ""; position: absolute; top: -22px; left: -22px;
  width: 80px; height: 80px;
  border-top: 1px solid var(--bronze);
  border-left: 1px solid var(--bronze);
  z-index: 1;
}
.image-w-caption::after {
  content: ""; position: absolute; bottom: -22px; right: -22px;
  width: 80px; height: 80px;
  border-bottom: 1px solid var(--bronze);
  border-right: 1px solid var(--bronze);
  z-index: 1;
}

/* -------- CARDS / FEATURES -------- */
.feature {
  padding: 40px 36px;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  transition: all .35s ease;
  position: relative;
}
.feature:hover {
  border-color: var(--bronze);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.feature-num {
  font-family: var(--serif);
  font-size: 56px; font-weight: 400; font-style: italic;
  color: var(--bronze);
  line-height: 1; margin-bottom: 20px;
  display: block;
}
.feature h3 { font-size: 24px; margin-bottom: 12px; color: var(--ink); }
.feature p { color: var(--text-soft); font-size: 16px; margin-bottom: 0; }

/* Pillar (the triple stack) */
.pillar {
  border-top: 1px solid var(--line-strong);
  padding: 48px 0;
  display: grid;
  grid-template-columns: 100px 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.pillar:last-child { border-bottom: 1px solid var(--line-strong); }
.pillar-num {
  font-family: var(--serif);
  font-size: 48px; font-style: italic; font-weight: 400;
  color: var(--bronze);
  line-height: 1;
}
.pillar h3 { font-size: 32px; line-height: 1.18; }
.pillar p { font-size: 17px; line-height: 1.7; margin-bottom: 0; }

/* -------- STATS -------- */
.stat-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 44px 28px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  color: var(--bronze);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); font-weight: 600;
}

/* -------- QUOTE -------- */
.quote {
  padding: 64px 0;
  text-align: center;
  max-width: 880px; margin: 0 auto;
}
.quote-mark {
  font-family: var(--serif); font-size: 80px; line-height: .5;
  color: var(--bronze); font-style: italic;
  display: block; margin-bottom: 24px;
}
.quote-text {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 28px;
}
.quote-cite {
  font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 600; color: var(--text-muted);
}

/* -------- LIST -------- */
.tick-list { list-style: none; padding: 0; }
.tick-list li {
  padding: 16px 0 16px 36px;
  position: relative;
  border-bottom: 1px solid var(--line-strong);
  color: var(--text-soft);
  font-size: 16px;
}
.tick-list li::before {
  content: "—";
  position: absolute; left: 0; top: 16px;
  color: var(--bronze); font-weight: 700;
}
.tick-list li:last-child { border-bottom: 0; }

/* -------- GUARANTEE BLOCK -------- */
.guarantee {
  padding: 64px;
  background: var(--ink);
  color: var(--cream);
  position: relative;
  border-top: 4px solid var(--bronze);
}
.guarantee h3 { color: var(--cream); font-size: 36px; margin-bottom: 18px; }
.guarantee p { color: rgba(250, 247, 242, 0.85); font-size: 17px; }
.guarantee-name {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 3.5px; text-transform: uppercase;
  font-weight: 600; color: var(--bronze-light);
  margin-bottom: 14px; display: block;
}

/* -------- FORM -------- */
.form-card {
  background: var(--paper);
  padding: 48px;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; color: var(--text-muted);
  margin-bottom: 8px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  font-size: 15px;
  transition: border-color .25s ease, background .25s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0;
  border-color: var(--bronze);
  background: var(--paper);
}
.field textarea { min-height: 120px; resize: vertical; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 8px; }
.form-note { font-size: 13px; color: var(--text-muted); margin-top: 14px; }

/* -------- CTA BAND -------- */
.cta-band {
  padding: clamp(72px, 10vw, 130px) 0;
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 50% 50%, rgba(184, 153, 104, 0.22), transparent 70%);
}
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: var(--cream); margin-bottom: 28px; }
.cta-band p { color: rgba(250, 247, 242, 0.85); max-width: 620px; margin: 0 auto 36px; font-size: 19px; }

/* -------- FOOTER -------- */
.footer {
  background: var(--ink);
  color: rgba(250, 247, 242, 0.7);
  padding: 80px 0 32px;
  border-top: 1px solid rgba(184, 153, 104, 0.2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand p {
  color: rgba(250, 247, 242, 0.6);
  font-size: 14px;
  margin-top: 20px;
  max-width: 320px;
}
.footer-col h5 {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 600; color: var(--bronze-light);
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  font-size: 14px; color: rgba(250, 247, 242, 0.7);
}
.footer-col a:hover { color: var(--bronze-light); }
.footer-base {
  border-top: 1px solid rgba(184, 153, 104, 0.18);
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 12px;
  color: rgba(250, 247, 242, 0.5);
}
.footer-base a { color: rgba(250, 247, 242, 0.7); margin-left: 22px; }
.footer-base a:hover { color: var(--bronze-light); }

/* -------- LEGAL PAGES -------- */
.legal-hero {
  background: var(--ink);
  color: var(--cream);
  padding: 100px 0 80px;
  position: relative;
  border-bottom: 1px solid rgba(184, 153, 104, 0.18);
}
.legal-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(50% 60% at 30% 50%, rgba(184, 153, 104, 0.12), transparent 70%);
}
.legal-hero > * { position: relative; z-index: 2; }
.legal-hero h1 { color: var(--cream); font-size: clamp(40px, 5.5vw, 68px); margin-bottom: 16px; }
.legal-hero .meta { font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--bronze-light); font-weight: 600; }

.prose { padding: 80px 0; }
.prose h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 500;
  margin-top: 48px; margin-bottom: 18px;
  color: var(--ink);
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--sans);
  font-size: 17px; font-weight: 600;
  letter-spacing: 0;
  margin-top: 28px; margin-bottom: 10px;
  color: var(--ink);
}
.prose p { font-size: 16px; line-height: 1.75; color: var(--text-soft); }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 1.2em; }
.prose ul li, .prose ol li { font-size: 16px; line-height: 1.75; color: var(--text-soft); margin-bottom: 8px; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { color: var(--bronze-deep); border-bottom: 1px solid var(--bronze); }
.prose a:hover { color: var(--ink); }
.prose hr { border: 0; border-top: 1px solid var(--line-strong); margin: 48px 0; }
.prose .toc {
  background: var(--cream-soft);
  padding: 28px 32px;
  margin: 32px 0 48px;
  border-left: 3px solid var(--bronze);
}
.prose .toc h4 { color: var(--bronze-deep); margin-bottom: 12px; }
.prose .toc ol { margin-bottom: 0; }
.prose .toc li { font-size: 14px; margin-bottom: 4px; }

/* -------- DARK PROSE (for refund hero example) -------- */
.dark-card {
  background: var(--ink); color: var(--cream);
  padding: 40px;
  border-left: 4px solid var(--bronze);
}
.dark-card h3 { color: var(--cream); margin-bottom: 14px; }
.dark-card p { color: rgba(250, 247, 242, 0.85); margin-bottom: 0; }

/* -------- ABOUT BIOGRAPHY -------- */
.bio { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; align-items: start; }
.bio-portrait { background: var(--ink); aspect-ratio: 4/5; box-shadow: var(--shadow-lg); }
.bio-name { font-family: var(--serif); font-size: 36px; color: var(--ink); margin-bottom: 4px; }
.bio-title { font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--bronze-deep); font-weight: 600; margin-bottom: 24px; }

/* -------- TESTIMONIALS -------- */
.testimonial-card {
  background: var(--paper);
  padding: 44px 36px;
  border: 1px solid var(--line-strong);
  position: relative;
}
.testimonial-card::before {
  content: "\201C";
  font-family: var(--serif); font-style: italic;
  position: absolute; top: 12px; left: 28px;
  font-size: 88px; color: var(--bronze); line-height: .5; opacity: .6;
}
.testimonial-text {
  font-family: var(--serif); font-size: 22px; line-height: 1.45; font-style: italic;
  color: var(--ink); margin-top: 32px; margin-bottom: 28px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; padding-top: 24px; border-top: 1px solid var(--line-strong); }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--bronze-faint); object-fit: cover; }
.testimonial-name { font-size: 15px; font-weight: 600; color: var(--ink); }
.testimonial-role { font-size: 12px; color: var(--text-muted); }

/* -------- IMAGE OVERLAY DUO (about / system) -------- */
.image-duo { position: relative; }
.image-duo .img-a {
  width: 78%;
  aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  box-shadow: var(--shadow-lg);
}
.image-duo .img-b {
  position: absolute; bottom: -40px; right: 0;
  width: 50%;
  aspect-ratio: 1/1;
  background-size: cover; background-position: center;
  box-shadow: var(--shadow-xl);
  border: 6px solid var(--cream);
}

/* -------- THIN HORIZONTAL ACCENT LINE -------- */
.accent-line { width: 64px; height: 1px; background: var(--bronze); display: block; margin: 24px 0; }

/* -------- CALLOUT (alternating editorial blocks) -------- */
.callout {
  display: grid; grid-template-columns: auto 1fr; gap: 32px;
  padding: 36px 40px;
  border-left: 3px solid var(--bronze);
  background: var(--cream-soft);
  align-items: center;
  margin: 36px 0;
}
.callout .num {
  font-family: var(--serif); font-size: 56px; font-weight: 400; font-style: italic;
  color: var(--bronze); line-height: 1;
}
.callout h4 { font-family: var(--serif); font-size: 22px; font-weight: 500; text-transform: none; letter-spacing: 0; color: var(--ink); margin-bottom: 6px; }
.callout p { font-size: 15px; margin-bottom: 0; color: var(--text-soft); }

/* -------- PLATFORM STRIP -------- */
.platform-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 56px);
}
.platform-mark {
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 500;
  letter-spacing: 6px;
  color: var(--ink);
  text-transform: uppercase;
  font-style: italic;
  opacity: 0.7;
  transition: opacity .3s ease;
}
.platform-mark:hover { opacity: 1; }
.platform-divider {
  width: 1px;
  height: 22px;
  background: var(--bronze);
  opacity: 0.4;
}
@media (max-width: 700px) {
  .platform-divider { display: none; }
  .platform-row { gap: 24px; }
}

/* -------- BIO MONOGRAM PLACEHOLDER -------- */
.bio-monogram {
  background: var(--ink);
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.bio-monogram::before {
  content: "";
  position: absolute; inset: 18px;
  border: 1px solid rgba(184, 153, 104, 0.35);
  pointer-events: none;
}
.bio-monogram .mono-letters {
  font-family: var(--serif);
  font-size: clamp(96px, 14vw, 180px);
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  letter-spacing: -4px;
  background: linear-gradient(135deg, #D9C4A0 0%, #B89968 55%, #9A7E50 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bio-monogram .mono-label {
  position: absolute;
  bottom: 22px; left: 0; right: 0;
  text-align: center;
  font-size: 9.5px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(217, 196, 160, 0.6);
  font-weight: 600;
}

/* -------- TINY UTILITIES -------- */
.center { text-align: center; }
.muted { color: var(--text-muted); }
.divider { height: 1px; background: var(--line-strong); width: 100%; margin: 32px 0; }
.gold { color: var(--bronze-deep); }
.spacer-sm { height: 32px; }
.spacer-md { height: 64px; }
.spacer-lg { height: 96px; }

/* -------- RESPONSIVE -------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border: 1px solid var(--line-strong);
    color: var(--ink);
  }
  .nav.open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream);
    padding: 24px var(--gutter);
    gap: 18px;
    border-bottom: 1px solid var(--line);
    align-items: flex-start;
  }
  .nav.open .nav-cta { width: 100%; justify-content: center; display: inline-flex; }

  .split, .split-narrow { grid-template-columns: 1fr; }
  .cols-3 { grid-template-columns: 1fr; }
  .cols-4 { grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--line); }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }

  .pillar { grid-template-columns: 60px 1fr; gap: 24px; padding: 36px 0; }
  .pillar > p { grid-column: 2; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }

  .guarantee { padding: 40px 28px; }
  .form-card { padding: 32px 24px; }
  .image-w-caption::before, .image-w-caption::after { display: none; }
  .bio { grid-template-columns: 1fr; }
  .image-duo .img-b { position: static; width: 100%; margin-top: 20px; border: 0; }
  .image-duo .img-a { width: 100%; }
  .hero-meta { display: none; }
  .callout { grid-template-columns: 1fr; gap: 12px; padding: 28px; }
}

/* Print */
@media print {
  .nav, .footer, .cta-band, .hero { display: none; }
}
