@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
    --cream: #F9F6F0;
    --parchment: #F0EBE1;
    --ink: #1A1713;
    --ink-light: #3D3830;
    --gold: #B8935A;
    --gold-light: #D4AA73;
    --gold-pale: #F0E4CC;
    --stone: #8A8278;
    --stone-light: #C4BDB5;
    --white: #FFFFFF;
    --rule: rgba(26,23,19,0.12);
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'DM Sans', system-ui, sans-serif;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    background: var(--cream);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
  }

  
/* ─── V1 HEADER + FOOTER SUPPORT ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.95rem 6vw;
  background: rgba(249,246,240,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}

.site-logo,
.site-footer-brand {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
}

.site-logo {
  font-size: 21px;
  line-height: 1;
  white-space: nowrap;
}

.site-logo span,
.site-footer-brand span {
  color: var(--gold);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.75rem);
  flex: 1;
}

.site-nav a {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(26,23,19,0.62);
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--ink);
}

.site-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 1.35rem;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.site-header-cta:hover {
  background: var(--gold);
  transform: translateY(-1px);
}

.site-footer {
  background: #0F0D0B;
  padding: 4.5rem 6vw 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.site-footer-brand {
  display: block;
  color: var(--cream);
  font-size: 24px;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.site-footer-tagline,
.site-footer-contact,
.site-footer-links a,
.site-footer-bottom {
  font-family: var(--sans);
  font-weight: 300;
  color: rgba(249,246,240,0.42);
}

.site-footer-tagline {
  max-width: 420px;
  font-size: 13px;
  line-height: 1.7;
}

.site-footer-title {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.site-footer-links {
  list-style: none;
}

.site-footer-links li {
  padding: 0.35rem 0;
}

.site-footer-links a,
.site-footer-contact a {
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-footer-links a:hover,
.site-footer-contact a:hover {
  color: var(--gold-light);
}

.site-footer-contact {
  font-size: 13px;
  line-height: 2;
}

.site-footer-contact a {
  color: var(--gold-light);
}

.footer-text-link {
  color: rgba(249,246,240,0.5) !important;
}

.footer-text-link:hover {
  color: var(--gold-light) !important;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(249,246,240,0.14);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(255,255,255,0.02);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.social-icon:hover {
  color: var(--cream);
  border-color: rgba(184,147,90,0.55);
  background: rgba(184,147,90,0.12);
  transform: translateY(-1px);
}

.social-icon svg {
  display: block;
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.site-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 12px;
  line-height: 1.6;
  color: rgba(249,246,240,0.24);
}

/* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 0 6vw 8vh;
    position: relative;
    overflow: hidden;
    background: var(--ink);
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, #2A2520 0%, #1A1713 55%, #0F0D0B 100%);
  }
  .hero-rule {
    position: absolute; top: 0; left: 6vw; right: 6vw; height: 1px;
    background: var(--gold); opacity: 0.4;
  }
  .hero-ornament {
    position: absolute; top: 64px; right: 6vw;
    font-family: var(--serif); font-size: 13px; font-weight: 300;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold-light); opacity: 0.7;
    writing-mode: vertical-rl; text-orientation: mixed;
    padding-top: 3rem;
  }
  .hero-content { position: relative; z-index: 2; max-width: 820px; }
  .hero-eyebrow {
    font-family: var(--sans); font-size: 12px; font-weight: 500;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 2rem;
    display: flex; align-items: center; gap: 1rem;
  }
  .hero-eyebrow::before {
    content: ''; display: block; width: 40px; height: 1px; background: var(--gold);
  }
  .hero-headline {
    font-family: var(--serif);
    font-size: clamp(52px, 8vw, 96px);
    font-weight: 300;
    line-height: 1.0;
    color: var(--cream);
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
  }
  .hero-headline em {
    font-style: italic; color: var(--gold-light);
  }
  .hero-sub {
    font-family: var(--sans); font-size: 17px; font-weight: 300;
    color: rgba(249,246,240,0.65); line-height: 1.7;
    max-width: 520px; margin-bottom: 3.5rem;
  }
  .hero-actions { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
  .btn-primary {
    background: var(--gold);
    color: var(--ink);
    font-family: var(--sans); font-size: 13px; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 16px 36px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
  .btn-ghost {
    color: rgba(249,246,240,0.6);
    font-family: var(--sans); font-size: 13px; font-weight: 400;
    letter-spacing: 0.06em;
    text-decoration: none;
    border-bottom: 1px solid rgba(249,246,240,0.25);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
  }
  .btn-ghost:hover { color: var(--cream); border-color: rgba(249,246,240,0.5); }
  .hero-scroll {
    position: absolute; bottom: 3rem; right: 6vw;
    font-family: var(--sans); font-size: 11px; letter-spacing: 0.15em;
    text-transform: uppercase; color: rgba(249,246,240,0.35);
    display: flex; align-items: center; gap: 0.75rem;
  }
  .hero-scroll::after {
    content: ''; display: block; width: 1px; height: 50px; background: var(--gold); opacity: 0.4;
  }

  /* ─── SECTIONS ─── */
  section { padding: 7rem 6vw; }
  .section-eyebrow {
    font-family: var(--sans); font-size: 11px; font-weight: 500;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.25rem;
    display: flex; align-items: center; gap: 0.75rem;
  }
  .section-eyebrow::before {
    content: ''; display: block; width: 24px; height: 1px; background: var(--gold);
  }
  h2.section-title {
    font-family: var(--serif); font-size: clamp(36px, 5vw, 58px);
    font-weight: 300; line-height: 1.1; color: var(--ink);
    letter-spacing: -0.01em; margin-bottom: 1.5rem;
  }
  h2.section-title em { font-style: italic; color: var(--gold); }
  .section-body {
    font-family: var(--sans); font-size: 16px; font-weight: 300;
    color: var(--stone); line-height: 1.8; max-width: 560px;
  }

  /* ─── PROBLEM ─── */
  .problem { background: var(--parchment); }
  .problem-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
    align-items: start; margin-top: 4rem;
  }
  .problem-quote {
    font-family: var(--serif); font-size: clamp(22px, 3vw, 32px);
    font-weight: 300; font-style: italic;
    line-height: 1.45; color: var(--ink-light);
    border-left: 2px solid var(--gold); padding-left: 2rem;
  }
  .problem-list { list-style: none; }
  .problem-list li {
    font-family: var(--sans); font-size: 15px; font-weight: 300;
    color: var(--stone); padding: 1rem 0;
    border-bottom: 1px solid var(--rule);
    display: flex; gap: 1rem; align-items: flex-start;
  }
  .problem-list li:last-child { border-bottom: none; }
  .problem-list li::before {
    content: '—'; color: var(--gold); font-size: 14px; flex-shrink: 0; margin-top: 2px;
  }

  /* ─── STAT BAR ─── */
  .stat-bar {
    background: var(--ink);
    padding: 4rem 6vw;
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
  .stat-item {
    padding: 2.5rem 3rem;
    border-right: 1px solid rgba(255,255,255,0.08);
  }
  .stat-item:last-child { border-right: none; }
  .stat-num {
    font-family: var(--serif); font-size: clamp(42px, 5vw, 64px);
    font-weight: 300; color: var(--gold-light);
    line-height: 1;  margin-bottom: 0.5rem;
  }
  .stat-label {
    font-family: var(--sans); font-size: 13px; font-weight: 300;
    color: rgba(249,246,240,0.55); line-height: 1.5;
  }
  .stat-source {
    font-size: 11px; color: rgba(249,246,240,0.3);
    margin-top: 0.5rem; font-style: italic;
  }

  /* ─── OVERVIEW ─── */
  .overview-intro {
    display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
  }
  .overview-flow {
    display: flex; flex-direction: column; gap: 0;
    margin-top: 4rem; border: 1px solid var(--rule);
  }
  .flow-item {
    display: grid; grid-template-columns: 60px 1fr;
    border-bottom: 1px solid var(--rule); position: relative;
  }
  .flow-item:last-child { border-bottom: none; }
  .flow-num {
    font-family: var(--serif); font-size: 11px; font-weight: 500;
    letter-spacing: 0.1em; color: var(--gold);
    padding: 2rem 1.5rem; border-right: 1px solid var(--rule);
    display: flex; align-items: flex-start; justify-content: center; padding-top: 2.2rem;
  }
  .flow-content { padding: 2rem 2rem; }
  .flow-name {
    font-family: var(--serif); font-size: 20px; font-weight: 500;
    color: var(--ink); margin-bottom: 0.4rem;
  }
  .flow-desc {
    font-family: var(--sans); font-size: 14px; font-weight: 300;
    color: var(--stone); line-height: 1.6;
  }
  .flow-tag {
    display: inline-block; margin-top: 0.75rem;
    font-family: var(--sans); font-size: 11px; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gold); border: 1px solid var(--gold-pale);
    background: var(--gold-pale); padding: 3px 10px;
  }

  /* ─── PACKAGE SECTIONS ─── */
  .pkg { background: var(--white); }
  .pkg-alt { background: var(--parchment); }
  .pkg-dark { background: var(--ink); }

  .pkg-inner {
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; align-items: start;
  }
  .pkg-inner.reverse { direction: rtl; }
  .pkg-inner.reverse > * { direction: ltr; }

  .pkg-label {
    font-family: var(--sans); font-size: 10px; font-weight: 500;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.5rem;
  }
  .pkg-name {
    font-family: var(--serif); font-size: clamp(40px, 5vw, 64px);
    font-weight: 300; line-height: 1.0; color: var(--ink);
    margin-bottom: 0.5rem;
  }
  .pkg-dark .pkg-name { color: var(--cream); }
  .pkg-tagline {
    font-family: var(--serif); font-size: 18px; font-style: italic;
    font-weight: 300; color: var(--stone); margin-bottom: 2rem; line-height: 1.5;
  }
  .pkg-dark .pkg-tagline { color: rgba(249,246,240,0.55); }
  .pkg-price {
    display: inline-block;
    font-family: var(--sans); font-size: 14px; font-weight: 500;
    letter-spacing: 0.06em;
    background: var(--gold-pale); color: var(--ink);
    padding: 10px 20px; margin-bottom: 2.5rem;
  }
  .pkg-dark .pkg-price { background: rgba(184,147,90,0.2); color: var(--gold-light); }
  .pkg-desc {
    font-family: var(--sans); font-size: 15px; font-weight: 300;
    color: var(--stone); line-height: 1.8; margin-bottom: 2.5rem;
  }
  .pkg-dark .pkg-desc { color: rgba(249,246,240,0.55); }

  .deliverables { list-style: none; }
  .deliverables li {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--rule);
    display: grid; grid-template-columns: 24px 1fr;
    gap: 1rem; align-items: start;
  }
  .pkg-dark .deliverables li { border-color: rgba(255,255,255,0.08); }
  .deliverables li:last-child { border-bottom: none; }
  .d-mark {
    width: 20px; height: 20px; border: 1px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 2px;
  }
  .d-mark::before { content: ''; width: 6px; height: 6px; background: var(--gold); }
  .d-name {
    font-family: var(--sans); font-size: 14px; font-weight: 500;
    color: var(--ink); margin-bottom: 0.2rem;
  }
  .pkg-dark .d-name { color: var(--cream); }
  .d-desc {
    font-family: var(--sans); font-size: 13px; font-weight: 300;
    color: var(--stone); line-height: 1.6;
  }
  .pkg-dark .d-desc { color: rgba(249,246,240,0.5); }

  .addons-title {
    font-family: var(--sans); font-size: 11px; font-weight: 500;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1rem; margin-top: 2.5rem;
    padding-top: 2.5rem; border-top: 1px solid var(--rule);
  }
  .pkg-dark .addons-title { border-color: rgba(255,255,255,0.1); }
  .addon-grid { display: flex; flex-direction: column; gap: 0; }
  .addon-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--rule);
  }
  .pkg-dark .addon-item { border-color: rgba(255,255,255,0.06); }
  .addon-item:last-child { border-bottom: none; }
  .addon-name {
    font-family: var(--sans); font-size: 14px; font-weight: 400; color: var(--ink);
  }
  .pkg-dark .addon-name { color: rgba(249,246,240,0.8); }
  .addon-name small {
    display: block; font-size: 12px; font-weight: 300; color: var(--stone);
  }
  .pkg-dark .addon-name small { color: rgba(249,246,240,0.4); }
  .addon-price {
    font-family: var(--sans); font-size: 14px; font-weight: 500;
    color: var(--gold); flex-shrink: 0; padding-left: 1.5rem;
  }

  
/* ─── PRICING REFERENCE ─── */
.pricing-reference {
  background: var(--parchment);
  padding: 5rem 6vw;
}

.pricing-reference .section-title {
  margin-bottom: 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.pricing-card {
  background: var(--white);
  padding: 2.5rem;
}

.pricing-card.dark {
  background: var(--ink);
}

.pricing-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.pricing-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.pricing-card.dark .pricing-title {
  color: var(--cream);
}

.pricing-line {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--rule);
}

.pricing-card.dark .pricing-line {
  color: var(--cream);
  border-bottom-color: rgba(255,255,255,0.08);
}

.pricing-line span {
  font-weight: 300;
  font-size: 13px;
  color: var(--stone);
}

.pricing-card.dark .pricing-line span {
  color: rgba(249,246,240,0.45);
}

.pricing-subtitle {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  margin: 1.5rem 0 0.75rem;
}

.pricing-card.dark .pricing-subtitle {
  color: rgba(249,246,240,0.35);
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--stone);
}

.pricing-card.dark .pricing-row {
  color: rgba(249,246,240,0.5);
  border-bottom-color: rgba(255,255,255,0.08);
}

.pricing-row span {
  color: var(--ink);
  font-weight: 500;
  white-space: nowrap;
}

.pricing-card.dark .pricing-row span {
  color: var(--gold-light);
}

.pricing-row.no-border {
  border-bottom: none;
}

.pricing-global {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
}

/* ─── SCOPING SECTION ─── */
  .scope-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3px;
    margin-top: 4rem;
  }
  .scope-col {
    padding: 3rem; background: var(--white);
  }
  .scope-col.dark { background: var(--ink); }
  .scope-col-title {
    font-family: var(--serif); font-size: 24px; font-weight: 400;
    margin-bottom: 1.5rem;
  }
  .scope-col.dark .scope-col-title { color: var(--cream); }
  .scope-list { list-style: none; }
  .scope-list li {
    font-family: var(--sans); font-size: 14px; font-weight: 300;
    color: var(--stone); padding: 0.65rem 0;
    border-bottom: 1px solid var(--rule);
    display: flex; gap: 0.75rem; align-items: flex-start;
  }
  .scope-col.dark .scope-list li { color: rgba(249,246,240,0.5); border-color: rgba(255,255,255,0.07); }
  .scope-list li:last-child { border-bottom: none; }
  .scope-yes::before { content: '✓'; color: var(--gold); font-weight: 500; flex-shrink: 0; }
  .scope-no::before { content: '—'; color: var(--stone-light); flex-shrink: 0; }

  /* ─── HOW IT WORKS ─── */
  .how { background: var(--parchment); }
  .steps {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; margin-top: 4rem;
    border: 1px solid var(--rule);
  }
  .step {
    padding: 3rem 2.5rem;
    border-right: 1px solid var(--rule);
    position: relative;
  }
  .step:last-child { border-right: none; }
  .step-num {
    font-family: var(--serif); font-size: 48px; font-weight: 300;
    color: var(--gold-pale); line-height: 1; margin-bottom: 1.5rem;
    display: block;
  }
  .step-title {
    font-family: var(--serif); font-size: 20px; font-weight: 400;
    color: var(--ink); margin-bottom: 0.75rem;
  }
  .step-body {
    font-family: var(--sans); font-size: 13px; font-weight: 300;
    color: var(--stone); line-height: 1.7;
  }

  /* ─── TIMELINE ─── */
  .timeline-box {
    background: var(--ink); padding: 3.5rem;
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    gap: 3px; margin-top: 4rem;
  }
  .tl-item { padding: 2rem; background: rgba(255,255,255,0.04); }
  .tl-day {
    font-family: var(--serif); font-size: 13px; font-weight: 500;
    letter-spacing: 0.12em; color: var(--gold); margin-bottom: 0.5rem;
    text-transform: uppercase;
  }
  .tl-desc {
    font-family: var(--sans); font-size: 14px; font-weight: 300;
    color: rgba(249,246,240,0.6); line-height: 1.6;
  }
  .tl-example {
    grid-column: 1 / -1;
    font-family: var(--sans); font-size: 12px; font-style: italic;
    color: rgba(249,246,240,0.3); padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  /* ─── CREDIBILITY ─── */
  .cred { background: var(--white); }
  .cred-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
  }
  .cred-badge {
    background: var(--parchment); padding: 3rem;
    border-left: 3px solid var(--gold);
  }
  .cred-badge-label {
    font-family: var(--sans); font-size: 11px; font-weight: 500;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1rem;
  }
  .cred-badge-headline {
    font-family: var(--serif); font-size: 26px; font-weight: 400;
    color: var(--ink); line-height: 1.3; margin-bottom: 1rem;
  }
  .cred-badge-body {
    font-family: var(--sans); font-size: 14px; font-weight: 300;
    color: var(--stone); line-height: 1.7;
  }
  .cred-facts { list-style: none; margin-top: 2.5rem; }
  .cred-facts li {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1rem 0; border-bottom: 1px solid var(--rule); font-family: var(--sans);
    font-size: 14px; font-weight: 300; color: var(--stone); line-height: 1.6;
  }
  .cred-facts li:last-child { border-bottom: none; }
  .cred-facts li::before { content: '›'; color: var(--gold); font-size: 16px; flex-shrink: 0; }

  /* ─── COMPARISON ─── */
  .compare { background: var(--parchment); }
  .compare-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 3px; margin-top: 4rem;
  }
  .compare-col { background: var(--white); padding: 2.5rem; }
  .compare-col.highlight {
    background: var(--ink); outline: 2px solid var(--gold);
  }
  .compare-col-label {
    font-family: var(--sans); font-size: 11px; font-weight: 500;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--stone); margin-bottom: 1rem;
  }
  .compare-col.highlight .compare-col-label { color: var(--gold); }
  .compare-col-title {
    font-family: var(--serif); font-size: 22px; font-weight: 400;
    color: var(--ink); margin-bottom: 1.5rem; line-height: 1.2;
  }
  .compare-col.highlight .compare-col-title { color: var(--cream); }
  .compare-list { list-style: none; }
  .compare-list li {
    font-family: var(--sans); font-size: 13px; font-weight: 300;
    color: var(--stone); padding: 0.6rem 0;
    border-bottom: 1px solid var(--rule);
    display: flex; gap: 0.75rem;
  }
  .compare-col.highlight .compare-list li { color: rgba(249,246,240,0.6); border-color: rgba(255,255,255,0.08); }
  .compare-list li:last-child { border-bottom: none; }
  .cross::before { content: '×'; color: var(--stone-light); flex-shrink: 0; }
  .check::before { content: '✓'; color: var(--gold); flex-shrink: 0; }

  /* ─── SAMPLE ─── */
  .sample { background: var(--cream); }
  .sample-note {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: var(--sans); font-size: 11px; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--stone); background: var(--parchment);
    padding: 6px 14px; margin-bottom: 3rem;
  }
  .sample-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
  .sample-card { background: var(--white); padding: 2.5rem; }
  .sample-card-label {
    font-family: var(--sans); font-size: 11px; font-weight: 500;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1rem;
  }
  .sample-card-title {
    font-family: var(--serif); font-size: 20px; font-weight: 400;
    color: var(--ink); margin-bottom: 1rem;
  }
  .sample-copy {
    font-family: var(--serif); font-size: 15px; font-weight: 300;
    font-style: italic; color: var(--ink-light);
    line-height: 1.8; border-left: 2px solid var(--gold-pale);
    padding-left: 1.5rem;
  }
  .sample-meta {
    margin-top: 1.5rem;
    font-family: var(--sans); font-size: 12px; font-weight: 300;
    color: var(--stone); line-height: 1.5;
    padding-top: 1.5rem; border-top: 1px solid var(--rule);
  }
  .carousel-preview {
    background: var(--ink); padding: 1.5rem;
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px;
  }
  .carousel-slide {
    aspect-ratio: 4/5; background: var(--ink-light);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 1rem;
    position: relative; overflow: hidden;
  }
  .carousel-slide.hero-slide { background: #2A2520; }
  .slide-label {
    font-family: var(--sans); font-size: 9px; font-weight: 500;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.5rem;
  }
  .slide-address {
    font-family: var(--serif); font-size: 13px; font-weight: 400;
    color: var(--cream); line-height: 1.3;
  }
  .slide-price {
    font-family: var(--sans); font-size: 11px; font-weight: 300;
    color: rgba(249,246,240,0.6);
  }
  .slide-photo-bg {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 100%);
    display: flex; align-items: center; justify-content: center;
  }
  .slide-room {
    font-family: var(--serif); font-size: 22px; font-weight: 300;
    color: rgba(255,255,255,0.15); letter-spacing: 0.05em;
  }

  /* ─── FAQ ─── */
  .faq { background: var(--white); }
  .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 5rem; margin-top: 4rem; }
  .faq-item {
    padding: 1.75rem 0; border-bottom: 1px solid var(--rule);
  }
  .faq-q {
    font-family: var(--serif); font-size: 18px; font-weight: 400;
    color: var(--ink); margin-bottom: 0.75rem; line-height: 1.3;
  }
  .faq-a {
    font-family: var(--sans); font-size: 14px; font-weight: 300;
    color: var(--stone); line-height: 1.7;
  }

  /* ─── POLICIES ─── */
  .policies { background: var(--parchment); }
  .policy-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 3px; margin-top: 4rem;
  }
  .policy-item { background: var(--white); padding: 2.5rem; }
  .policy-title {
    font-family: var(--serif); font-size: 20px; font-weight: 400;
    color: var(--ink); margin-bottom: 1rem;
  }
  .policy-body {
    font-family: var(--sans); font-size: 13px; font-weight: 300;
    color: var(--stone); line-height: 1.7;
  }

  /* ─── FINAL CTA ─── */
  .final-cta {
    background: var(--ink); padding: 9rem 6vw;
    text-align: center; position: relative; overflow: hidden;
  }
  .final-cta-rule {
    position: absolute; top: 0; left: 10%; right: 10%; height: 1px; background: var(--gold); opacity: 0.3;
  }
  .final-cta-eyebrow {
    font-family: var(--sans); font-size: 11px; font-weight: 500;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 2rem;
  }
  .final-cta h2 {
    font-family: var(--serif); font-size: clamp(40px, 6vw, 72px);
    font-weight: 300; color: var(--cream); line-height: 1.1;
    margin-bottom: 1.5rem; letter-spacing: -0.01em;
  }
  .final-cta h2 em { font-style: italic; color: var(--gold-light); }
  .final-cta p {
    font-family: var(--sans); font-size: 16px; font-weight: 300;
    color: rgba(249,246,240,0.5); margin-bottom: 3.5rem; max-width: 480px;
    margin-left: auto; margin-right: auto; line-height: 1.7;
  }
  .cta-price-note {
    font-family: var(--sans); font-size: 13px; font-weight: 300;
    color: rgba(249,246,240,0.3); margin-top: 1.5rem; letter-spacing: 0.06em;
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    .problem-grid, .overview-intro, .pkg-inner, .cred-inner,
    .scope-grid, .compare-grid, .sample-grid, .faq-grid, .policy-grid, .pricing-grid, .site-footer-grid {
      grid-template-columns: 1fr;
    }
    .pkg-inner.reverse { direction: ltr; }
    .stat-bar { grid-template-columns: 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .steps { grid-template-columns: 1fr 1fr; }
    .timeline-box { grid-template-columns: 1fr; }
    .hero-scroll { display: none; }
    .hero { padding: 0 6vw 6vh; }
    section { padding: 5rem 6vw; }
    .compare-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 600px) {
    .steps { grid-template-columns: 1fr; }
    .step { border-right: none; border-bottom: 1px solid var(--rule); }
    .carousel-preview { grid-template-columns: 1fr; }
  }
@media (max-width: 900px) {
    .site-header {
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 0.85rem;
      padding: 0.9rem 6vw;
    }

    .site-logo {
      font-size: 20px;
      padding-top: 0.35rem;
    }

    .site-nav {
      order: 3;
      width: 100%;
      justify-content: flex-start;
      gap: 1rem;
      overflow-x: auto;
      padding-top: 0.4rem;
      scrollbar-width: none;
    }

    .site-nav::-webkit-scrollbar {
      display: none;
    }

    .site-nav a {
      white-space: nowrap;
      font-size: 11px;
    }

    .site-header-cta {
      min-height: 38px;
      padding: 0 1rem;
      font-size: 11px;
    }

    .site-footer-bottom {
      flex-direction: column;
      gap: 0.75rem;
    }
  }

  @media (max-width: 600px) {
    .site-header {
      padding: 0.85rem 5vw;
    }

    .site-logo {
      font-size: 19px;
    }

    .site-header-cta {
      padding: 0 0.85rem;
    }

    .hero-headline {
      font-size: clamp(44px, 15vw, 58px);
    }

    .pricing-card,
    .scope-col,
    .sample-card,
    .compare-col,
    .policy-item {
      padding: 2rem;
    }

    .site-footer {
      padding: 3.5rem 6vw 2rem;
    }
  }

/* ===== Homepage styles ===== */
/* ── IMPORT FONTS ── */
/* ── DESIGN TOKENS ── */
.krb-page {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── SHARED SECTION ── */
.krb-section { padding: 7rem 6vw; }
.krb-section-parchment { background: var(--parchment); }
.krb-section-ink { background: var(--ink); color: var(--cream); }

.krb-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.krb-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

h2.krb-headline {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
h2.krb-headline em { font-style: italic; color: var(--gold); }
h2.krb-headline-light { color: var(--cream); }
h2.krb-headline-light em { color: var(--gold-light); }

.krb-body {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.8;
  max-width: 620px;
}
.krb-body-light { color: rgba(249,246,240,0.65); }

/* ── BUTTONS ── */
.krb-btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 34px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.krb-btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.krb-btn-ghost {
  display: inline-block;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-bottom: 1px solid rgba(26,23,19,0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.krb-btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.krb-btn-ghost-light {
  color: rgba(249,246,240,0.65);
  border-bottom-color: rgba(249,246,240,0.3);
}
.krb-btn-ghost-light:hover { color: var(--cream); border-color: rgba(249,246,240,0.6); }

/* ── HERO ── */
.krb-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 6vw 9vh;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.krb-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, #2B2521 0%, #1A1713 50%, #0F0D0B 100%);
}
.krb-hero-rule {
  position: absolute;
  top: 0; left: 6vw; right: 6vw;
  height: 1px;
  background: var(--gold);
  opacity: 0.35;
}
.krb-hero-ornament {
  position: absolute;
  top: 80px;
  right: 6vw;
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.6;
  writing-mode: vertical-rl;
}
.krb-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}
.krb-hero-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.krb-hero-eyebrow::before {
  content: '';
  display: block;
  width: 44px;
  height: 1px;
  background: var(--gold);
}
.krb-hero-headline {
  font-family: var(--serif);
  font-size: clamp(54px, 8.5vw, 100px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--cream);
  letter-spacing: -0.015em;
  margin-bottom: 2.25rem;
}
.krb-hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}
.krb-hero-sub {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 300;
  color: rgba(249,246,240,0.6);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 3.5rem;
}
.krb-hero-actions {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}
.krb-hero-scroll {
  position: absolute;
  bottom: 3rem;
  right: 6vw;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(249,246,240,0.28);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.krb-hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  background: var(--gold);
  opacity: 0.4;
}

/* ── PROBLEM ── */
.krb-problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  margin-top: 4rem;
}
.krb-pull-quote {
  font-family: var(--serif);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink-light);
  border-left: 2px solid var(--gold);
  padding-left: 2rem;
}
.krb-pain-list { list-style: none; }
.krb-pain-list li {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--stone);
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  line-height: 1.65;
}
.krb-pain-list li:last-child { border-bottom: none; }
.krb-pain-list li::before {
  content: '—';
  color: var(--gold);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ── POSITIONING ── */
.krb-position-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem;
  align-items: start;
  margin-top: 4rem;
}
.krb-differentiators { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.krb-diff-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.krb-diff-mark {
  width: 6px;
  height: 6px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 9px;
}
.krb-diff-text {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.7;
}
.krb-diff-text strong {
  font-weight: 500;
  color: var(--ink);
  display: block;
  margin-bottom: 0.15rem;
}

/* ── SERVICE CARDS ── */
.krb-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 4rem;
}
.krb-service-card {
  background: var(--white);
  padding: 2.5rem;
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.krb-service-card:first-child {
  background: var(--ink);
  border-color: var(--ink);
}
.krb-service-num {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1;
  opacity: 0.5;
}
.krb-service-card:first-child .krb-service-num { color: var(--gold); opacity: 0.6; }
.krb-service-name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.15;
}
.krb-service-card:first-child .krb-service-name { color: var(--cream); }
.krb-service-tag {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.krb-service-desc {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.75;
  flex-grow: 1;
}
.krb-service-card:first-child .krb-service-desc { color: rgba(249,246,240,0.55); }
.krb-service-link {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(184,147,90,0.3);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: border-color 0.2s;
}
.krb-service-link:hover { border-color: var(--gold); }

/* ── FEATURED OFFER ── */
.krb-offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  margin-top: 4rem;
}
.krb-offer-price-bar {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}
.krb-price-main {
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
}
.krb-price-note {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: rgba(249,246,240,0.45);
  line-height: 1.4;
}
.krb-deliverable-list { list-style: none; margin-top: 2rem; }
.krb-deliverable-list li {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.krb-deliverable-list li:last-child { border-bottom: none; }
.krb-dl-mark {
  width: 5px;
  height: 5px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 9px;
}
.krb-dl-name {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--cream);
}
.krb-dl-desc {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: rgba(249,246,240,0.45);
  line-height: 1.6;
  margin-top: 0.2rem;
}
.krb-offer-extensions {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.krb-ext-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(249,246,240,0.3);
  margin-bottom: 1rem;
}
.krb-ext-grid { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.krb-ext-pill {
  background: rgba(184,147,90,0.1);
  border: 1px solid rgba(184,147,90,0.25);
  padding: 0.5rem 1rem;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}
.krb-offer-cta-group {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
.krb-offer-reassurance {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  color: rgba(249,246,240,0.35);
  letter-spacing: 0.03em;
}

/* ── FOUNDER ── */
.krb-founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  margin-top: 4rem;
}
.krb-founder-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 2rem 0;
}
.krb-founder-signature {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  color: var(--ink-light);
  margin-top: 2rem;
}
.krb-credential-box {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 2.5rem;
}
.krb-credential-title {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.krb-credential-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule);
}
.krb-credential-item:last-child { border-bottom: none; }
.krb-credential-item-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.krb-credential-item-desc {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.6;
}

/* ── SAMPLE / PROOF ── */
.krb-sample-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 4rem;
}
.krb-sample-card {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 2.5rem;
}
.krb-sample-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.krb-sample-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.krb-sample-copy {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.85;
}
.krb-sample-note {
  margin-top: 1.5rem;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  color: var(--stone-light);
  line-height: 1.6;
  border-top: 1px solid var(--rule);
  padding-top: 1rem;
}

/* ── AUDIENCE FIT ── */
.krb-fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 4rem;
}
.krb-fit-col {
  padding: 2.5rem;
  border: 1px solid var(--rule);
}
.krb-fit-col-yes { background: var(--white); }
.krb-fit-col-no { background: var(--ink); }
.krb-fit-col-title {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.krb-fit-list { list-style: none; }
.krb-fit-list li {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--stone);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  line-height: 1.6;
}
.krb-fit-list li:last-child { border-bottom: none; }
.krb-fit-col-no .krb-fit-list li { color: rgba(249,246,240,0.5); border-bottom-color: rgba(255,255,255,0.06); }
.krb-fit-list.yes li::before { content: '✓'; color: var(--gold); flex-shrink: 0; }
.krb-fit-list.no li::before { content: '✗'; color: rgba(184,147,90,0.5); flex-shrink: 0; }

/* ── LEAD MAGNET ── */
.krb-magnet-box {
  background: var(--parchment);
  border: 1px solid rgba(184,147,90,0.2);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  margin-top: 4rem;
}
.krb-magnet-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.krb-magnet-title {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.krb-magnet-desc {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.7;
}

/* ── FINAL CTA ── */
.krb-final-cta {
  background: var(--ink);
  padding: 8rem 6vw;
  text-align: center;
}
.krb-final-cta .krb-eyebrow { justify-content: center; }
.krb-final-cta .krb-eyebrow::before { display: none; }
.krb-cta-actions { display: flex; gap: 2rem; align-items: center; justify-content: center; flex-wrap: wrap; margin-top: 3rem; }
.krb-cta-sub {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  color: rgba(249,246,240,0.3);
  margin-top: 1.5rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .krb-problem-grid,
  .krb-position-grid,
  .krb-offer-grid,
  .krb-founder-grid,
  .krb-sample-grid,
  .krb-fit-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .krb-services-grid { grid-template-columns: 1fr; }
  .krb-magnet-box { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .krb-section { padding: 4.5rem 5vw; }
  .krb-hero { padding: 0 5vw 7vh; }
  .krb-hero-headline { font-size: 44px; }
  .krb-hero-sub { font-size: 15px; }
  .krb-hero-ornament { display: none; }
  .krb-final-cta { padding: 5rem 5vw; }
}

/* ===== About page styles ===== */
.krb-about { font-family: var(--sans); background: var(--cream); color: var(--ink); font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; }

/* Hero */
.about-hero { background: var(--ink); padding: 9rem 6vw 7rem; }
.about-hero-eyebrow { font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 2rem; display: flex; align-items: center; gap: 1rem; }
.about-hero-eyebrow::before { content: ''; display: block; width: 44px; height: 1px; background: var(--gold); }
.about-hero h1 { font-family: var(--serif); font-size: clamp(46px, 7vw, 82px); font-weight: 300; line-height: 1.05; color: var(--cream); letter-spacing: -0.01em; max-width: 780px; }
.about-hero h1 em { font-style: italic; color: var(--gold-light); }
.about-hero-sub { font-family: var(--sans); font-size: 17px; font-weight: 300; color: rgba(249,246,240,0.55); line-height: 1.75; max-width: 520px; margin-top: 2rem; }

/* Sections */
.about-section { padding: 7rem 6vw; }
.about-section-parchment { background: var(--parchment); }
.about-section-ink { background: var(--ink); }

.about-eyebrow { font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.75rem; }
.about-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }

.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 6rem; align-items: start; margin-top: 3.5rem; }
.about-grid-reverse { grid-template-columns: 0.9fr 1.1fr; }

h2.about-h2 { font-family: var(--serif); font-size: clamp(32px, 4vw, 52px); font-weight: 300; line-height: 1.1; color: var(--ink); letter-spacing: -0.01em; margin-bottom: 1.5rem; }
h2.about-h2 em { font-style: italic; color: var(--gold); }
h2.about-h2-light { color: var(--cream); }
h2.about-h2-light em { color: var(--gold-light); }

.about-body {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.8;
  max-width: 640px;
}
.about-body-light { color: rgba(249,246,240,0.6); }

.about-rule { width: 48px; height: 2px; background: var(--gold); margin: 2.5rem 0; }

/* Belief list */
.about-beliefs { list-style: none; margin-top: 2rem; }
.about-beliefs li { font-family: var(--sans); font-size: 15px; font-weight: 300; color: var(--stone); padding: 1rem 0; border-bottom: 1px solid var(--rule); display: flex; gap: 1.25rem; line-height: 1.7; }
.about-beliefs li:last-child { border-bottom: none; }
.about-beliefs li::before { content: '—'; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* Then/Now table */
.about-table-wrap { overflow-x: auto; margin-top: 2.5rem; }
.about-table { width: 100%; border-collapse: collapse; }
.about-table th { font-family: var(--sans); font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); text-align: left; padding: 0.75rem 1.25rem; border-bottom: 1px solid var(--rule); }
.about-table td { font-family: var(--sans); font-size: 14px; font-weight: 300; color: var(--stone); padding: 1rem 1.25rem; border-bottom: 1px solid var(--rule); line-height: 1.6; vertical-align: top; }
.about-table tr:last-child td { border-bottom: none; }
.about-table td:first-child { color: var(--stone-light); }

/* Quote block */
.about-pullquote { font-family: var(--serif); font-size: clamp(20px, 2.5vw, 28px); font-weight: 300; font-style: italic; line-height: 1.55; color: var(--ink-light); border-left: 2px solid var(--gold); padding-left: 2rem; }

/* CTA bar */
.about-cta-bar { margin-top: 4rem; display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center; }
.about-btn-primary { display: inline-block; background: var(--gold); color: var(--ink); font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; padding: 14px 32px; text-decoration: none; transition: background 0.2s; }
.about-btn-primary:hover { background: var(--gold-light); }
.about-btn-ghost { display: inline-block; color: var(--ink); font-family: var(--sans); font-size: 12px; font-weight: 400; letter-spacing: 0.06em; text-decoration: none; border-bottom: 1px solid rgba(26,23,19,0.3); padding-bottom: 2px; transition: border-color 0.2s; }
.about-btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.about-btn-ghost-light { color: rgba(249,246,240,0.65); border-bottom-color: rgba(249,246,240,0.3); }
.about-btn-ghost-light:hover { color: var(--cream); border-color: rgba(249,246,240,0.6); }

@media (max-width: 900px) {
  .about-grid, .about-grid-reverse { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  .about-section { padding: 5rem 5vw; }
  .about-hero { padding: 7rem 5vw 5rem; }
}

/* ===== Contact page styles ===== */
.krb-contact { font-family: var(--sans); background: var(--cream); color: var(--ink); font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; }

.contact-hero { background: var(--ink); padding: 9rem 6vw 7rem; }
.contact-eyebrow { font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 2rem; display: flex; align-items: center; gap: 1rem; }
.contact-eyebrow::before { content: ''; display: block; width: 44px; height: 1px; background: var(--gold); }
.contact-hero h1 { font-family: var(--serif); font-size: clamp(44px, 6.5vw, 78px); font-weight: 300; line-height: 1.05; color: var(--cream); letter-spacing: -0.01em; max-width: 700px; }
.contact-hero h1 em { font-style: italic; color: var(--gold-light); }
.contact-hero-sub { font-family: var(--sans); font-size: 17px; font-weight: 300; color: rgba(249,246,240,0.55); line-height: 1.75; max-width: 500px; margin-top: 1.75rem; }

.contact-section { padding: 7rem 6vw; }
.contact-section-parchment { background: var(--parchment); }

.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 7rem; align-items: start; margin-top: 3rem; }

.contact-info-eyebrow { font-family: var(--sans); font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.75rem; }
.contact-info-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }

h2.contact-h2 { font-family: var(--serif); font-size: clamp(28px, 3.5vw, 44px); font-weight: 300; line-height: 1.15; color: var(--ink); margin-bottom: 1.5rem; }
h2.contact-h2 em { font-style: italic; color: var(--gold); }

.contact-body {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.8;
  max-width: 620px;
}
.contact-note-box { background: var(--white); border: 1px solid var(--rule); padding: 2rem; margin-top: 2.5rem; }
.contact-note-title { font-family: var(--sans); font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.contact-note-body {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.7;
}
.contact-quick-link { display: flex; align-items: center; gap: 0.75rem; margin-top: 2.5rem; }
.contact-quick-link a { font-family: var(--sans); font-size: 13px; font-weight: 500; color: var(--gold); text-decoration: none; letter-spacing: 0.04em; border-bottom: 1px solid rgba(184,147,90,0.3); padding-bottom: 2px; transition: border-color 0.2s; }
.contact-quick-link a:hover { border-color: var(--gold); }
.contact-quick-link::before { content: '→'; color: var(--gold); font-family: var(--sans); font-size: 14px; }

.contact-response { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--rule); }
.contact-response-title { font-family: var(--sans); font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone-light); margin-bottom: 0.75rem; }
.contact-response-body {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.7;
}
/* Typeform embed container */
.contact-form-embed { background: var(--white); border: 1px solid var(--rule); padding: 0; min-height: 600px; }
.contact-form-embed iframe { width: 100%; min-height: 600px; border: none; display: block; }

/* Fallback if no Typeform — styled mailto section */
.contact-mailto-fallback { background: var(--white); border: 1px solid var(--rule); padding: 3rem; }
.contact-mailto-title { font-family: var(--serif); font-size: 32px; font-weight: 300; color: var(--ink); margin-bottom: 1rem; }
.contact-mailto-body {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.contact-mailto-address { font-family: var(--serif); font-size: 28px; font-weight: 300; color: var(--gold); }
.contact-mailto-address a { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(184,147,90,0.4); padding-bottom: 3px; }
.contact-include-list { list-style: none; margin-top: 2rem; }
.contact-include-list li { font-family: var(--sans); font-size: 14px; font-weight: 300; color: var(--stone); padding: 0.65rem 0; border-bottom: 1px solid var(--rule); display: flex; gap: 1rem; }
.contact-include-list li:last-child { border-bottom: none; }
.contact-include-list li::before { content: '—'; color: var(--gold); flex-shrink: 0; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3.5rem; }
}
@media (max-width: 768px) {
  .contact-section { padding: 5rem 5vw; }
  .contact-hero { padding: 7rem 5vw 5rem; }
}

/* =========================================================
   Shared refinements added during sitewide consistency pass
   ========================================================= */

.site-main {
  min-height: 60vh;
}

.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.footer-text-link {
  color: rgba(249,246,240,0.5) !important;
}

.footer-text-link:hover {
  color: var(--gold-light) !important;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(249,246,240,0.14);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(255,255,255,0.02);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.social-icon:hover {
  color: var(--cream);
  border-color: rgba(184,147,90,0.55);
  background: rgba(184,147,90,0.12);
  transform: translateY(-1px);
}

.social-icon svg {
  display: block;
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.krb-ext-pill {
  line-height: 1.35;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.85rem;
    padding: 0.9rem 6vw;
  }

  .site-logo {
    font-size: 20px;
    padding-top: 0.35rem;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 1rem;
    overflow-x: auto;
    padding-top: 0.4rem;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    white-space: nowrap;
    font-size: 11px;
  }

  .site-header-cta {
    display: inline-flex;
    min-height: 38px;
    padding: 0 1rem;
    font-size: 11px;
  }

  .site-footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding: 0.85rem 5vw;
  }

  .site-logo {
    font-size: 19px;
  }

  .site-header-cta {
    padding: 0 0.85rem;
  }

  .hero-headline,
  .krb-hero-headline {
    font-size: clamp(44px, 15vw, 58px);
  }

  .site-footer {
    padding: 3.5rem 6vw 2rem;
  }

  .social-icon {
    width: 38px;
    height: 38px;
  }
}

/* ─────────────────────────────────────────────────────────────
   NEW HEADER + FOOTER — matches approved Kaur Listing Concierge
   These classes are used on the new header/footer across all pages.
   The old .site-header-cta and .site-footer-grid classes are kept
   above for compatibility but are no longer used in the HTML.
───────────────────────────────────────────────────────────────*/

/* ── Header CTA button (new class: .hdr-cta) ── */
.hdr-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 1.5rem;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}

.hdr-cta:hover {
  background: var(--gold);
}

/* ── Active nav underline (new style: gold border-bottom) ── */
.site-nav a {
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.site-nav a.is-active {
  color: var(--ink);
  font-weight: 600;
  border-bottom-color: var(--gold);
}

/* ── Footer layout ── */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.65fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* ── Footer brand link ── */
.f-brand {
  display: block;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--cream);
  text-decoration: none;
  margin-bottom: 1.25rem;
  letter-spacing: 0.01em;
}

.f-brand span {
  color: var(--gold);
}

/* ── Footer tagline ── */
.f-tag {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: rgba(249,246,240,0.52);
  line-height: 1.82;
  max-width: 400px;
}

/* ── Footer column label ── */
.f-col-lbl {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

/* ── Footer nav links ── */
.f-links {
  list-style: none;
}

.f-links li {
  padding: 0.4rem 0;
}

.f-links a {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: rgba(249,246,240,0.48);
  text-decoration: none;
  transition: color 0.2s;
}

.f-links a:hover {
  color: var(--gold-light);
}

/* ── Footer founder block ── */
.f-founder {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.f-img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  object-position: center 12%;
  display: block;
}

.f-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  margin-top: 0.25rem;
}

.f-role {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.25rem;
}

.f-sub {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: rgba(249,246,240,0.48);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

/* ── New social icons (.soc) ── */
.soc-icons {
  display: flex;
  gap: 0.65rem;
  margin-top: 1rem;
}

.soc {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  color: rgba(212,170,115,0.65);
  text-decoration: none;
  transition: all 0.2s;
}

.soc:hover {
  border-color: rgba(184,147,90,0.5);
  color: var(--cream);
  background: rgba(184,147,90,0.1);
}

.soc svg {
  display: block;
  width: 17px;
  height: 17px;
  fill: currentColor;
}

/* ── Footer bottom row ── */
.f-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  color: rgba(249,246,240,0.28);
  line-height: 1.6;
}

/* ── Mobile: new footer classes ── */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .f-bottom {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hdr-cta {
    height: 38px;
    padding: 0 1rem;
    font-size: 11px;
  }
}

@media (max-width: 600px) {
  .f-img {
    width: 130px;
    height: 130px;
  }

  .hdr-cta {
    padding: 0 0.85rem;
    font-size: 10px;
  }
}
