/* Win Win Advisors — Prospect Mockup v1
   Mahiri / Pam Beesly — DESIGN_VARIANCE:6, MOTION_INTENSITY:3
   Vanilla CSS, no frameworks
*/

/* ─── RESET & BASE ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ww-dark:       #272727;
  --ww-text:       #3e3e3e;
  --ww-near-black: #0e0e0e;
  --ww-white:      #ffffff;
  --ww-light-bg:   #f6f6f6;
  --ww-coral:      #f0523d;
  --ww-blue:       #00b2ff;
  --ww-training:   #2a9d8f;

  --font-heading: 'Manrope', sans-serif;
  --font-body:    'Nunito Sans', sans-serif;

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ww-text);
  background: var(--ww-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ─── INNER CONTAINER ─────────────────────────────────── */
.inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 6%;
}

/* ─── NAVIGATION ──────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--ww-dark);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 6%;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  max-width: 100%;
}

.nav-logo img { height: 32px; width: auto; }

.nav-links {
  display: flex;
  gap: 28px;
  justify-content: center;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--ww-white); }

.nav-cta-wrap { display: flex; align-items: center; }

.btn-coral {
  display: inline-block;
  background: var(--ww-coral);
  color: var(--ww-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}
.btn-coral:hover { background: #d94530; }
.btn-coral:active { transform: translateY(1px); }

.btn-ghost-white {
  display: inline-block;
  background: transparent;
  color: var(--ww-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 2px;
  border: 1.5px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.btn-ghost-white:hover {
  border-color: var(--ww-white);
  background: rgba(255,255,255,0.08);
}
.btn-ghost-white:active { transform: translateY(1px); }

.btn-ghost-dark {
  display: inline-block;
  background: transparent;
  color: var(--ww-near-black);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 2px;
  border: 1.5px solid rgba(14,14,14,0.4);
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.btn-ghost-dark:hover { border-color: var(--ww-near-black); }
.btn-ghost-dark:active { transform: translateY(1px); }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;  /* pushes hamburger to right edge on mobile */
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ww-white);
  transition: all 0.3s ease;
}

/* Mobile nav overlay */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--ww-near-black);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.nav-mobile-overlay.open { display: flex; }
.nav-mobile-overlay .close-btn {
  position: absolute;
  top: 24px; right: 6%;
  background: none;
  border: none;
  color: var(--ww-white);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}
.nav-mobile-overlay a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 22px;
  color: var(--ww-white);
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
.nav-mobile-overlay a:hover { color: var(--ww-coral); }

/* ─── HERO ─────────────────────────────────────────────── */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  padding-top: var(--nav-h);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,14,14,0.72);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.hero-eyebrow {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ww-coral);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(44px, 5.5vw, 72px);
  line-height: 1.05;
  color: var(--ww-white);
  margin-bottom: 20px;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.65;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── SECTION LABELS ──────────────────────────────────── */
.section-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-label.coral { color: var(--ww-coral); }
.section-label.blue  { color: var(--ww-blue); }
.section-label.text  { color: var(--ww-text); }

/* ─── PILLAR STRIP ────────────────────────────────────── */
.pillars {
  background: var(--ww-near-black);
  padding: 48px 0;
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.pillar {
  padding: 32px 40px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.pillar:last-child { border-right: none; }
.pillar-bar {
  width: 40px;
  height: 3px;
  margin-bottom: 16px;
}
.pillar h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--ww-white);
  margin-bottom: 10px;
}
.pillar p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
}

/* ─── WHY WIN WIN ─────────────────────────────────────── */
.why {
  background: var(--ww-light-bg);
  padding: 100px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: start;
  margin-top: 48px;
}
.why h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 42px;
  color: var(--ww-near-black);
  line-height: 1.1;
  margin-bottom: 40px;
}
.benefit-item {
  border-left: 3px solid var(--ww-coral);
  padding-left: 20px;
  margin-bottom: 32px;
}
.benefit-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--ww-near-black);
  margin-bottom: 6px;
}
.benefit-body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ww-text);
  line-height: 1.6;
}

.stat-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.stat-item {}
.stat-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 64px;
  line-height: 1;
  color: var(--ww-coral);
}
.stat-label {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ww-text);
  margin-top: 4px;
}

/* ─── SOCIAL PROOF ────────────────────────────────────── */
.proof {
  background: var(--ww-white);
  padding: 80px 0;
}
.proof h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 36px;
  color: var(--ww-near-black);
  margin-bottom: 40px;
  margin-top: 8px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 56px;
}
.testimonial-card {
  background: var(--ww-light-bg);
  border-top: 3px solid var(--ww-coral);
  border-radius: 2px;
  padding: 28px;
}
.testimonial-card:nth-child(3) {
  grid-column: 1 / -1;
  max-width: 640px;
}
.quote {
  font-family: var(--font-body);
  font-size: 16px;
  font-style: italic;
  color: var(--ww-text);
  line-height: 1.7;
}
.attribution {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: var(--ww-near-black);
  margin-top: 16px;
}

.trusted-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ww-text);
  margin-bottom: 20px;
}
.logo-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.logo-placeholder {
  width: 120px;
  height: 40px;
  background: var(--ww-light-bg);
  border: 1px solid rgba(62,62,62,0.12);
  border-radius: 2px;
}
.logo-note {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: var(--ww-text);
  opacity: 0.65;
}

/* ─── FRACTIONAL ─────────────────────────────────────── */
.fractional {
  background: var(--ww-dark);
  padding: 100px 0;
}
.fractional-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 80px;
  align-items: center;
}
.fractional h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.1;
  color: var(--ww-white);
  margin: 14px 0 16px;
}
.fractional-body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin-bottom: 28px;
}
.role-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
  max-width: 280px;
}
.role-badge {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--ww-blue);
  border: 1.5px solid rgba(0,178,255,0.4);
  border-radius: 4px;
  padding: 8px 14px;
  text-align: center;
  letter-spacing: 0.04em;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.role-badge:hover {
  border-color: var(--ww-blue);
  background: rgba(0,178,255,0.07);
}

.fractional-img-wrap { position: relative; }
.fractional-img-wrap img {
  width: 100%;
  border-radius: 2px;
  object-fit: cover;
  aspect-ratio: 3/4;
  max-height: 480px;
}
.fractional-caption {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-top: 12px;
}

/* ─── TEAM SNAPSHOT ──────────────────────────────────── */
.team-snap {
  background: var(--ww-light-bg);
  padding: 100px 0;
}
.team-snap h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 42px;
  color: var(--ww-near-black);
  margin-bottom: 16px;
}
.team-snap-intro {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--ww-text);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.advisor-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.advisor-card { text-align: center; }
.advisor-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
}
.advisor-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--ww-near-black);
  margin-top: 12px;
}
.advisor-role {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ww-text);
}
.team-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--ww-coral);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}
.team-link:hover { gap: 10px; }

/* ─── CLOSING CTA ────────────────────────────────────── */
.closing-cta {
  background: var(--ww-coral);
  padding: 100px 0;
}
.closing-cta h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 44px;
  color: var(--ww-white);
  line-height: 1.1;
  max-width: 540px;
  margin-bottom: 20px;
}
.closing-body {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 36px;
}
.btn-white {
  display: inline-block;
  background: var(--ww-white);
  color: var(--ww-near-black);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}
.btn-white:hover { background: #f0f0f0; }
.btn-white:active { transform: translateY(1px); }

/* ─── FOOTER ─────────────────────────────────────────── */
.footer {
  background: var(--ww-near-black);
  padding: 60px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand img { height: 28px; margin-bottom: 16px; }
.footer-tagline {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  max-width: 220px;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li + li { margin-top: 10px; }
.footer-col a {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--ww-white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
}
.footer-copy {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s ease;
}
.footer-bottom a:hover { color: rgba(255,255,255,0.65); }

/* ─── PAGE HEROES (sub-pages) ────────────────────────── */
.page-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  padding-top: var(--nav-h);
}
.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,14,14,0.72);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.1;
  color: var(--ww-white);
  margin-bottom: 16px;
}
.page-hero p {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  line-height: 1.65;
}

/* ─── SERVICES SECTION ───────────────────────────────── */
.services-section {
  padding: 80px 0;
  background: var(--ww-white);
}
.services-section h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 32px;
  color: var(--ww-near-black);
  margin-bottom: 32px;
}
.service-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 40px;
  margin-bottom: 48px;
}
.service-list li {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ww-text);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ww-coral);
}

/* ─── TEAM PAGE ──────────────────────────────────────── */
.team-page-hero {
  background: var(--ww-near-black);
  padding: 120px 0 80px;
}
.team-page-hero h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 56px);
  color: var(--ww-white);
  margin-bottom: 20px;
  line-height: 1.1;
}
.team-page-hero p {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  line-height: 1.65;
}

.leadership-section {
  background: var(--ww-white);
  padding: 80px 0;
}
.leadership-section h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 32px;
  color: var(--ww-near-black);
  margin-bottom: 40px;
}
.leader-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(62,62,62,0.1);
  align-items: start;
}
.leader-card:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.leader-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
}
.leader-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--ww-near-black);
  margin-bottom: 4px;
}
.leader-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ww-coral);
  margin-bottom: 14px;
}
.leader-bio {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ww-text);
  line-height: 1.7;
  max-width: 600px;
}

.advisors-section {
  background: var(--ww-light-bg);
  padding: 80px 0;
}
.advisors-section h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 32px;
  color: var(--ww-near-black);
  margin-bottom: 8px;
}
.advisors-intro {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ww-text);
  max-width: 560px;
  margin-bottom: 40px;
}
.advisor-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Initials placeholder avatar */
.advisor-avatar-placeholder {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--ww-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--ww-white);
  letter-spacing: 0.05em;
}

/* ─── CONTACT ────────────────────────────────────────── */
.contact-section {
  background: var(--ww-white);
  padding: 80px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-left h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 36px;
  color: var(--ww-near-black);
  margin-bottom: 16px;
  line-height: 1.1;
}
.contact-left p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ww-text);
  line-height: 1.7;
  margin-bottom: 24px;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.contact-detail a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--ww-coral);
  transition: color 0.2s ease;
}
.contact-detail a:hover { color: #d94530; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: var(--ww-near-black);
  letter-spacing: 0.03em;
}
.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ww-near-black);
  background: var(--ww-light-bg);
  border: 1.5px solid rgba(62,62,62,0.15);
  border-radius: 2px;
  padding: 12px 14px;
  transition: border-color 0.2s ease;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--ww-coral);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }

/* ─── FRACTIONAL PAGE EXTRAS ─────────────────────────── */
.frac-roles-section {
  background: var(--ww-white);
  padding: 80px 0;
}
.frac-roles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}
.frac-role-card {
  border-top: 3px solid var(--ww-blue);
  background: var(--ww-light-bg);
  border-radius: 2px;
  padding: 28px;
}
.frac-role-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--ww-near-black);
  margin-bottom: 8px;
}
.frac-role-tag {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ww-blue);
  margin-bottom: 12px;
}
.frac-role-card p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ww-text);
  line-height: 1.7;
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .advisor-grid-4 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  body { font-size: 16px; }

  .nav-links,
  .nav-cta-wrap { display: none; }
  .nav-hamburger { display: flex; }
  .nav { grid-template-columns: auto 1fr auto; }

  .inner { padding: 0 5%; }

  /* Sections */
  .why      { padding: 80px 0; }
  .proof    { padding: 80px 0; }
  .fractional { padding: 80px 0; }
  .team-snap  { padding: 80px 0; }
  .closing-cta { padding: 80px 0; }
  .services-section { padding: 80px 0; }
  .leadership-section { padding: 80px 0; }
  .advisors-section { padding: 80px 0; }
  .contact-section { padding: 80px 0; }

  /* Hero */
  .hero-content { max-width: 100%; }
  .hero h1 { font-size: clamp(36px, 8vw, 48px); }
  .hero-sub { font-size: 17px; }
  .hero-ctas { flex-direction: column; width: fit-content; }

  /* Why */
  .why h2 { font-size: 28px; margin-bottom: 28px; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .stat-number { font-size: 48px; }
  .stat-block { flex-direction: row; flex-wrap: wrap; gap: 24px; }
  .stat-item { min-width: 120px; }

  /* Pillars */
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 28px 0; }
  .pillar:last-child { border-bottom: none; }

  /* Testimonials */
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-card:nth-child(3) { grid-column: 1; max-width: 100%; }

  /* Fractional */
  .fractional-grid { grid-template-columns: 1fr; gap: 40px; }
  .fractional h2 { font-size: 28px; }
  .fractional-img-wrap img { aspect-ratio: 4/3; max-height: 300px; }

  /* Team */
  .advisor-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .advisor-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .closing-cta h2 { font-size: 32px; }
  .team-snap h2 { font-size: 32px; }

  /* Proof */
  .proof h2 { font-size: 28px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* Leader card */
  .leader-card { grid-template-columns: 1fr; }
  .leader-img { width: 120px; height: 120px; }

  /* Service list */
  .service-list { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Frac roles */
  .frac-roles-grid { grid-template-columns: 1fr; }
  .role-grid { max-width: 100%; }

  /* Page hero */
  .page-hero h1 { font-size: clamp(28px, 7vw, 42px); }
}
