@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:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--gold); color: var(--white); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
ul { list-style: none; }
em { font-style: italic; }

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Palette — from uploaded version */
  --charcoal:       #11100f;
  --charcoal-mid:   #2e2925;
  --brown:          #5c3d2e;
  --brown-light:    #8b6250;
  --taupe:          #a89a8a;
  --taupe-mid:      #c9bdb0;
  --taupe-light:    #e8dfd6;
  --offwhite:       #f5f0eb;
  --warm:           #ede6dc;
  --white:          #fdfaf7;
  --gold:           #c9a84c;
  --gold-light:     #e2c97a;
  --gold-dark:      #a07828;
  --gold-pale:      #f7f0de;
  --burgundy:       #6b1f35;

  /* Typography */
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;

  /* Scale */
  --fs-xs:   0.72rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.1rem;
  --fs-lg:   1.35rem;
  --fs-xl:   1.75rem;
  --fs-2xl:  2.25rem;
  --fs-3xl:  3rem;
  --fs-4xl:  3.75rem;
  --fs-5xl:  5rem;

  /* Spacing */
  --sp-1: 0.25rem;  --sp-2: 0.5rem;   --sp-3: 0.75rem;
  --sp-4: 1rem;     --sp-6: 1.5rem;   --sp-8: 2rem;
  --sp-10: 2.5rem;  --sp-12: 3rem;    --sp-16: 4rem;
  --sp-20: 5rem;    --sp-24: 6rem;    --sp-32: 8rem;

  /* Radius — mixed system */
  --radius-sm:   4px;
  --radius:      8px;
  --radius-card: 16px;   /* cards only */
  --radius-full: 9999px; /* pills — only for tags/badges */

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(30,26,23,0.12), 0 1px 2px rgba(30,26,23,0.08);
  --shadow:    0 4px 20px rgba(30,26,23,0.14), 0 2px 8px rgba(30,26,23,0.08);
  --shadow-lg: 0 20px 60px rgba(30,26,23,0.18), 0 8px 24px rgba(30,26,23,0.10);
  --shadow-gold: 0 8px 32px rgba(201,168,76,0.25);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-h: 72px;
  --max-w: 1200px;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}
@media (min-width: 768px) { .container { padding: 0 var(--sp-8); } }

.section         { padding: var(--sp-24) 0; }
.section--sm     { padding: var(--sp-16) 0; }
.section--lg     { padding: var(--sp-32) 0; }
.section--dark   { background: var(--charcoal); }
.section--mid    { background: var(--charcoal-mid); }
.section--off    { background: var(--offwhite); }
.section--warm   { background: var(--warm); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-line, .hero-shape, .sticky-cta { animation: none !important; }
}

/* ============================================================
   EYEBROW / SECTION LABELS
   ============================================================ */
.eyebrow {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   BUTTONS — sharp (no border-radius)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 0;            /* SHARP */
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}
.btn--primary:hover {
  background: var(--charcoal-mid);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}

.btn--gold {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
  font-weight: 600;
}
.btn--gold:hover {
  background: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.7);
}

.btn--ghost-dark {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn--ghost-dark:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn--ghost-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--ghost-gold:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.btn--full { width: 100%; justify-content: center; }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(30,26,23,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  padding: 0 var(--sp-6);
  max-width: var(--max-w);
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 2px;
  flex-shrink: 0;
}
.logo-name {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.01em;
}
.logo-title {
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

.nav-links {
  display: none;
  list-style: none;
}
.nav-links a {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe-mid);
  position: relative;
  transition: color var(--transition);
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: left;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

/* Pill CTA stays rounded — it's a badge, not a section button */
.nav-cta {
  background: var(--gold) !important;
  color: var(--charcoal) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
}
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-2);
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 105;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
}
.nav-overlay.open { display: flex; }
.nav-overlay a {
  font-family: var(--ff-display);
  font-size: var(--fs-2xl);
  font-weight: 400;
  color: var(--taupe-light);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.nav-overlay a:hover { color: var(--gold-light); }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--sp-8);
  }
}

/* ============================================================
   STICKY CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  z-index: 90;
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold);
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(201,168,76,0.45);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition),
              background var(--transition), box-shadow var(--transition);
}
.sticky-cta.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.sticky-cta:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.5); }

/* ============================================================
   PAGE HEROES (inner pages)
   ============================================================ */
.page-hero {
  background: var(--charcoal);
  padding: calc(var(--nav-h) + 72px) 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E");
  opacity: 0.35;
  pointer-events: none;
}
.page-hero__bg-shape {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  top: -150px; right: -100px;
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.page-hero__eyebrow {
  margin-bottom: var(--sp-5);
}
.page-hero__headline {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: var(--sp-4);
}
.page-hero__sub {
  font-size: var(--fs-md);
  color: var(--taupe-mid);
  line-height: 1.75;
  max-width: 560px;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header { margin-bottom: var(--sp-12); }
.section-header--center { text-align: center; max-width: 640px; margin: 0 auto var(--sp-12); }

.section-headline {
  font-family: var(--ff-display);
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-3xl));
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  margin-top: var(--sp-3);
}
.section-headline em { color: var(--brown); font-weight: 300; font-style: italic; }

.section--dark .section-headline,
.section--mid .section-headline  { color: var(--white); }
.section--dark .section-headline em,
.section--mid .section-headline em { color: var(--gold-light); }

.section-sub {
  font-size: var(--fs-md);
  color: var(--brown-light);
  line-height: 1.75;
  max-width: 54ch;
  margin-top: var(--sp-4);
}
.section--dark .section-sub,
.section--mid .section-sub { color: var(--taupe); }

/* ============================================================
   HERO (home)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--charcoal);
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E");
  opacity: 0.4;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
}
.hero-shape--1 {
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(92,61,46,0.32) 0%, transparent 70%);
  top: -200px; right: -150px;
  animation: pulse-shape 9s ease-in-out infinite;
}
.hero-shape--2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(201,168,76,0.10) 0%, transparent 70%);
  bottom: -100px; left: 8%;
  animation: pulse-shape 11s ease-in-out infinite reverse;
}
@keyframes pulse-shape {
  0%,100% { transform: scale(1) translate(0,0); }
  50%      { transform: scale(1.08) translate(12px,-12px); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: var(--sp-16) 0 var(--sp-20);
  max-width: 800px;
}
.hero-eyebrow { margin-bottom: var(--sp-6); }
.hero-headline {
  font-family: var(--ff-display);
  font-size: clamp(var(--fs-3xl), 7vw, var(--fs-5xl));
  font-weight: 300;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: var(--sp-6);
}
.hero-headline em { color: var(--gold-light); font-weight: 300; font-style: italic; }
.hero-sub {
  font-size: clamp(var(--fs-base), 2vw, var(--fs-md));
  color: var(--taupe-mid);
  max-width: 54ch;
  margin-bottom: var(--sp-10);
  line-height: 1.8;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--sp-4); margin-bottom: var(--sp-16); }
.hero-scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
}
.scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-drop 2s ease-in-out infinite;
}
@keyframes scroll-drop {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  40%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  80%  { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
  100% { opacity: 0; }
}

/* ============================================================
   AUTHORITY BLOCK (intro section)
   ============================================================ */
.authority { padding: var(--sp-24) 0; background: var(--white); }
.authority-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
  align-items: center;
}
@media (min-width: 900px) {
  .authority-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-20);
  }
}

.authority-stat-col {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

/* Stat blocks replacing the photo */
.stat-block {
  background: var(--offwhite);
  border: 1px solid var(--taupe-light);
  border-radius: var(--radius-card);
  padding: var(--sp-8);
  position: relative;
  overflow: hidden;
}
.stat-block--dark {
  background: var(--charcoal);
  border-color: transparent;
}
.stat-block--gold {
  background: var(--gold);
  border-color: transparent;
}
.stat-block img {
  height: 64px;
}
.stat-block__num {
  font-family: var(--ff-display);
  font-size: var(--fs-4xl);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.stat-block--gold .stat-block__num { color: var(--charcoal); }
.stat-block--dark .stat-block__num { color: var(--gold); }
.stat-block__label {
  font-size: var(--fs-sm);
  color: var(--brown-light);
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-block--dark .stat-block__label { color: var(--taupe); }
.stat-block--gold .stat-block__label { color: var(--charcoal); opacity: 0.7; }

.authority-badge-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-2);
}
.cred-tag {
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brown);
  background: var(--offwhite);
  border: 1px solid var(--taupe-light);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-full);
  font-weight: 500;
}

.authority-content { max-width: 560px; }
.authority-content .section-headline { margin-bottom: var(--sp-6); }
.authority-body {
  color: var(--brown-light);
  font-size: var(--fs-md);
  line-height: 1.8;
  margin-bottom: var(--sp-4);
}
.authority-body strong { color: var(--charcoal); font-weight: 600; }
.authority-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin: var(--sp-6) 0 var(--sp-8);
}
.authority-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  color: var(--charcoal-mid);
  font-size: var(--fs-base);
  line-height: 1.6;
}
.authority-list li svg { flex-shrink: 0; margin-top: 3px; }

/* ============================================================
   WHO WE HELP — grid chips
   ============================================================ */
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--sp-4);
}
.who-chip {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background: var(--white);
  border: 1px solid var(--taupe-light);
  border-radius: var(--radius-card);
  padding: var(--sp-5) var(--sp-6);
  font-size: var(--fs-sm);
  color: var(--charcoal);
  font-weight: 400;
  padding: 15px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.who-chip:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.who-chip__dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   DIFFERENTIATORS (dark section)
   ============================================================ */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
@media (min-width: 640px) { .diff-grid { grid-template-columns: 1fr 1fr; } }

.diff-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-6);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-card);
  transition: background var(--transition), border-color var(--transition);
}
.diff-item:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,168,76,0.2);
}
.diff-item__icon {
  width: 32px; height: 32px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.diff-item__text {
  font-size: var(--fs-sm);
  color: var(--taupe-mid);
  line-height: 1.65;
}

/* ============================================================
   SERVICE CARDS (home overview — rounded cards on dark)
   ============================================================ */
.services-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--taupe-light) 0%, var(--taupe-light) 100%);
}
.services { position: relative; padding: var(--sp-24) 0; overflow: hidden; }
.services .section-header,
.services .eyebrow { position: relative; z-index: 1; }

.services-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
}
@media (min-width: 640px)  { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--charcoal-mid);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-card);   /* ROUNDED */
  padding: var(--sp-8);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  background: var(--charcoal);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
  box-shadow: 0px 15px 15px 3px var(--warm);
}
.service-card__num {
  font-family: var(--ff-display);
  font-size: var(--fs-3xl);
  font-weight: 300;
  color: rgba(255,255,255,0.15);
  position: absolute;
  top: var(--sp-4); right: var(--sp-6);
  line-height: 1;
  pointer-events: none;
}
.service-card__icon {
  width: 44px; height: 44px;
  color: var(--gold);
  margin-bottom: var(--sp-6);
}
.service-card__title {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: 500;
  color: var(--white);
  margin-bottom: var(--sp-3);
  line-height: 1.2;
}
.service-card__body {
  font-size: var(--fs-sm);
  color: var(--taupe);
  line-height: 1.75;
}

/* ============================================================
   CFO HIGHLIGHT
   ============================================================ */
.cfo-block {
  position: relative;
  overflow: hidden;
  padding: var(--sp-20) 0;
  background: linear-gradient(135deg, var(--brown) 0%, var(--charcoal) 100%);
}
.cfo-block__watermark {
  position: absolute;
  right: -40px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--ff-display);
  font-size: 18rem;
  font-weight: 700;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.cfo-block__inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.cfo-block .eyebrow { color: var(--gold-light); margin-bottom: var(--sp-4); }
.cfo-block__headline {
  font-family: var(--ff-display);
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-3xl));
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: var(--sp-6);
}
.cfo-block__body {
  font-size: var(--fs-md);
  color: var(--taupe-mid);
  line-height: 1.8;
  max-width: 52ch;
  margin-bottom: var(--sp-8);
}

/* ============================================================
   BOSS LADIES
   ============================================================ */
.boss-block {
  background: var(--burgundy);
  padding: var(--sp-20) 0;
  position: relative;
  overflow: hidden;
}
.boss-block::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: linear-gradient(to left, rgba(0,0,0,0.18), transparent);
}
.boss-block__inner {
  position: relative;
  z-index: 2;
  max-width: 620px;
}
.boss-block .eyebrow { color: rgba(255,255,255,0.5); margin-bottom: var(--sp-4); }
.boss-block__headline {
  font-family: var(--ff-display);
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-3xl));
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: var(--sp-6);
}
.boss-block__body {
  font-size: var(--fs-md);
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  max-width: 50ch;
  margin-bottom: var(--sp-8);
}

/* ============================================================
   CTA SECTION (global)
   ============================================================ */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: var(--sp-24) 0;
  background: var(--charcoal);
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 70%);
}
.cta-section__inner {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 0 auto;
}
.cta-section .eyebrow { margin-bottom: var(--sp-5); }
.cta-section__headline {
  font-family: var(--ff-display);
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-3xl));
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: var(--sp-4);
}
.cta-section__headline em { color: var(--gold-light); font-style: italic; }
.cta-section__body {
  font-size: var(--fs-base);
  color: var(--taupe);
  line-height: 1.8;
  max-width: 46ch;
  margin: 0 auto var(--sp-8);
}

/* ============================================================
   SERVICE BLOCKS (Work With Me — full structured)
   ============================================================ */
.service-block {
  background: var(--white);
  border: 1px solid var(--taupe-light);
  border-radius: var(--radius-card);
  padding: var(--sp-10) var(--sp-10);
  margin-bottom: var(--sp-6);
  transition: box-shadow var(--transition);
}
.service-block:hover { box-shadow: var(--shadow); }

.service-block--dark {
  background: var(--charcoal);
  border-color: rgba(255,255,255,0.07);
}

.service-block__header {
  border-bottom: 1px solid var(--taupe-light);
  padding-bottom: var(--sp-8);
  margin-bottom: var(--sp-8);
}
.service-block--dark .service-block__header {
  border-color: rgba(255,255,255,0.08);
}

.service-num {
  font-family: var(--ff-display);
  font-size: var(--fs-5xl);
  font-weight: 300;
  color: var(--taupe-light);
  line-height: 1;
  margin-bottom: var(--sp-3);
}
.service-block--dark .service-num { color: rgba(255,255,255,0.06); }

.service-title {
  font-family: var(--ff-display);
  font-size: clamp(var(--fs-xl), 3vw, var(--fs-2xl));
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: var(--sp-3);
  line-height: 1.2;
}
.service-block--dark .service-title { color: var(--white); }

.service-desc {
  font-size: var(--fs-md);
  color: var(--brown-light);
  line-height: 1.75;
  max-width: 56ch;
}
.service-block--dark .service-desc { color: var(--taupe); }

.service-block__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  margin-bottom: var(--sp-8);
}
@media (min-width: 768px) {
  .service-block__body { grid-template-columns: 1fr 1fr 1fr; }
}

.service-col__label {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-4);
}
.service-col__text {
  font-size: var(--fs-sm);
  color: var(--brown-light);
  line-height: 1.75;
}
.service-block--dark .service-col__text { color: var(--taupe); }

.svc-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.svc-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--brown-light);
  line-height: 1.55;
}
.svc-list li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}
.service-block--dark .svc-list li { color: var(--taupe-mid); }

.service-positioning {
  font-size: var(--fs-sm);
  font-style: italic;
  color: var(--taupe);
  margin-bottom: var(--sp-6);
  padding-left: var(--sp-5);
  border-left: 2px solid var(--gold);
  line-height: 1.7;
}

/* ============================================================
   SPEAKING TOPICS
   ============================================================ */
.topic-card {
  background: var(--white);
  border: 1px solid var(--taupe-light);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  padding: var(--sp-6) var(--sp-8);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.topic-card:hover {
  background: var(--gold-pale);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.topic-card__title {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: var(--sp-2);
}
.topic-card__body {
  font-size: var(--fs-sm);
  color: var(--brown-light);
  line-height: 1.7;
}

/* ============================================================
   PARTNER CARDS
   ============================================================ */
.partner-card {
  background: var(--white);
  border: 1px solid var(--taupe-light);
  border-radius: var(--radius-card);
  padding: var(--sp-7);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.partner-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: var(--gold);
}
.partner-card__category {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.partner-card__name {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.2;
}
.partner-card__company {
  font-size: var(--fs-sm);
  color: var(--brown-light);
  font-weight: 500;
}
.partner-card__desc {
  font-size: var(--fs-sm);
  color: var(--taupe);
  line-height: 1.65;
  flex: 1;
}
.partner-card__link {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  transition: gap var(--transition), color var(--transition);
}
.partner-card__link:hover { gap: var(--sp-3); color: var(--gold); }

/* ============================================================
   INTAKE FORM (Start Here)
   ============================================================ */
.form-wrap {
  background: var(--offwhite);
  border: 1px solid var(--taupe-light);
  border-radius: var(--radius-card);
  padding: var(--sp-10);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}
label {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}
label span { color: var(--gold-dark); }

input, select, textarea {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  color: var(--charcoal);
  background: var(--white);
  border: 1.5px solid var(--taupe-light);
  border-radius: var(--radius);
  padding: var(--sp-3) var(--sp-4);
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}
input::placeholder, textarea::placeholder { color: var(--taupe); }
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.14);
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a89a8a' stroke-width='1.8'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--sp-4) center;
  padding-right: var(--sp-10);
  cursor: pointer;
}
textarea { resize: vertical; min-height: 110px; }

.form-note {
  font-size: var(--fs-xs);
  color: var(--taupe);
  text-align: center;
  line-height: 1.6;
  margin-top: var(--sp-3);
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-4);
  padding: var(--sp-12) var(--sp-8);
}
.form-success.visible { display: flex; }
.form-success h3 {
  font-family: var(--ff-display);
  font-size: var(--fs-2xl);
  font-weight: 400;
  color: var(--charcoal);
}
.form-success p { color: var(--brown-light); font-size: var(--fs-md); max-width: 44ch; line-height: 1.75; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--charcoal);
  padding: var(--sp-16) 0 var(--sp-8);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-10);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: var(--sp-6);
}
@media (min-width: 768px) {
  .footer-inner { grid-template-columns: 1.6fr 1fr 1fr; gap: var(--sp-16); }
}
.footer-tagline {
  font-size: var(--fs-sm);
  color: var(--taupe);
  max-width: 34ch;
  margin-top: var(--sp-3);
  line-height: 1.7;
}
.footer-col__title {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-5);
}
.footer-links { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-links a {
  font-size: var(--fs-sm);
  color: var(--taupe);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.footer-copy { font-size: var(--fs-xs); color: var(--taupe); opacity: 0.6; }
.footer-positioning {
  font-size: var(--fs-xs);
  font-style: italic;
  color: var(--taupe);
  opacity: 0.5;
  max-width: 44ch;
  text-align: right;
  line-height: 1.5;
}

/* ============================================================
   RESPONSIVE MISC
   ============================================================ */
@media (max-width: 768px) {
  .service-block { padding: var(--sp-8) var(--sp-6); }
  .cfo-block__watermark { display: none; }
  .cta-section { text-align: left; }
  .cta-section__inner { margin: 0; }
  .cta-section__body { margin: 0 0 var(--sp-8); }
}
