/* 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; }
.nav-actions  { 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); }

/* Industries dropdown */
.nav-dropdown { position: relative; }

/* Bridge pseudo-element: extends hover zone 12px below the link to cover the gap */
.nav-dropdown > a::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--ww-dark);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  min-width: 160px;
  z-index: 200;
  list-style: none;
  padding: 8px 0;
  margin-top: 0;
}

/* Hover on the WHOLE container — keeps dropdown open as mouse moves toward it */
.nav-dropdown:hover .dropdown-menu { display: block; }
.nav-dropdown:hover > a { color: white; }

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.02em;
}
.dropdown-menu li a:hover {
  color: white;
  background: rgba(255,255,255,0.07);
}
/* On mobile, dropdown items are shown flat in the overlay — no JS needed */

/* 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,
  .nav-actions { 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); }
}

/* ============================================================
   Cookie Consent Banner
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: var(--ww-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 6%;
  display: none; /* hidden by default — JS shows it */
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.cookie-banner.visible {
  display: block;
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 200px;
}

.cookie-text p {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  margin: 0 0 4px;
}

.cookie-policy-link {
  font-family: var(--font-heading);
  font-size: 12px;
  color: var(--ww-coral);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity 0.2s, border-color 0.2s, transform 0.1s;
  border: none;
}

.cookie-btn:hover  { opacity: 0.85; }
.cookie-btn:active { transform: translateY(1px); }

.cookie-btn-decline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: white;
}

.cookie-btn-decline:hover { border-color: white; }

.cookie-btn-accept {
  background: var(--ww-coral);
  color: white;
}

@media (max-width: 640px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-actions {
    width: 100%;
  }
  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}


/* Partner Logo Strip */
.logo-strip {
  padding: 48px 0;
  background: var(--ww-light-bg, #f8f9fa);
  border-top: 1px solid var(--ww-border);
  border-bottom: 1px solid var(--ww-border);
}
.logo-strip-grid {
  display: flex;
  gap: 48px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.logo-strip-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-logo {
  max-height: 48px;
  max-width: 180px;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.2s;
  filter: grayscale(30%);
}
.partner-logo:hover {
  opacity: 1;
  filter: none;
}


/* Privacy page */
.privacy-content h2 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ww-near-black);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
.privacy-content h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ww-near-black);
  margin-top: 1.25rem;
  margin-bottom: 0.4rem;
}
.privacy-content p, .privacy-content ul {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ww-body-text, #3a3a3a);
  margin-bottom: 0.75rem;
}
.privacy-content ul {
  padding-left: 1.5rem;
}
.privacy-content a {
  color: var(--ww-blue, #1A5DAB);
  text-decoration: underline;
}


/* Partners page */
/* ─── PARTNERS PAGE ──────────────────────────────────── */
/* Append these rules to styles.css                        */

/* Section scaffolding */
.strategic-partners-section {
  background: var(--ww-near-black);
  padding: 80px 0 96px;
}

.technology-partners-section {
  background: var(--ww-light-bg);
  padding: 80px 0 96px;
}

.partners-section-h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 32px;
  color: var(--ww-white);
  margin-bottom: 12px;
  line-height: 1.1;
  margin-top: 8px;
}

.technology-partners-section .partners-section-h2 {
  color: var(--ww-near-black);
}

.partners-section-intro {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.technology-partners-section .partners-section-intro {
  color: var(--ww-text);
}

/* ── Strategic Partner Card (Aeolus) ── */
.strategic-partner-card {
  display: block;
  position: relative;
  background: #0d0d1a;
  border: 1px solid rgba(102, 51, 246, 0.25);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.strategic-partner-card:hover {
  border-color: rgba(102, 51, 246, 0.6);
  box-shadow: 0 0 40px rgba(102, 51, 246, 0.12);
}

.strategic-partner-accent-bar {
  height: 3px;
  background: linear-gradient(90deg, #6633F6 0%, #8359FF 50%, #3AB8FC 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.strategic-partner-card-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 220px;
}

.strategic-partner-left {
  padding: 36px 40px;
  border-right: 1px solid rgba(102, 51, 246, 0.15);
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.strategic-partner-badge {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8359FF;
  background: rgba(102, 51, 246, 0.12);
  border: 1px solid rgba(102, 51, 246, 0.3);
  border-radius: 2px;
  padding: 5px 10px;
  display: inline-block;
  width: fit-content;
}

.aeolus-wordmark {
  display: flex;
  align-items: center;
}

.aeolus-wordmark svg {
  display: block;
}

.strategic-partner-url {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(131, 89, 255, 0.7);
  transition: color 0.2s ease;
}

.strategic-partner-card:hover .strategic-partner-url {
  color: #8359FF;
}

.strategic-partner-right {
  padding: 36px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.strategic-partner-desc {
  font-family: var(--font-body);
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 540px;
}

.strategic-partner-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.strategic-tag {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(58, 184, 252, 0.85);
  border: 1px solid rgba(58, 184, 252, 0.2);
  border-radius: 2px;
  padding: 4px 10px;
  white-space: nowrap;
}

/* ── Technology Partner Grid ── */
.partner-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.partner-card-v2 {
  display: flex;
  flex-direction: column;
  background: var(--ww-white);
  border: 1px solid rgba(62,62,62,0.1);
  border-radius: 4px;
  border-top: 3px solid var(--ww-blue);
  padding: 32px 28px 24px;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  min-height: 260px;
}

.partner-card-v2:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
  border-top-color: var(--ww-coral);
}

.partner-card-logo-wrap {
  height: 56px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.partner-card-logo-wrap--text {
  align-items: center;
}

.partner-card-logo {
  max-height: 48px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* MTMG text wordmark */
.partner-wordmark-mtmg {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 0.06em;
  color: #0e193c;
  line-height: 1;
}

.partner-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.partner-card-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--ww-near-black);
  line-height: 1.2;
}

.partner-card-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ww-text);
  line-height: 1.65;
}

.partner-card-link-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ww-coral);
  transition: color 0.2s ease;
  margin-top: auto;
}

.partner-card-v2:hover .partner-card-link-label {
  color: #d94530;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .strategic-partner-card-inner {
    grid-template-columns: 240px 1fr;
  }
}

@media (max-width: 860px) {
  .strategic-partner-card-inner {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .strategic-partner-left {
    border-right: none;
    border-bottom: 1px solid rgba(102, 51, 246, 0.15);
    padding: 28px 28px 24px;
    gap: 12px;
  }

  .strategic-partner-right {
    padding: 24px 28px 32px;
    gap: 16px;
  }

  .partner-grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .strategic-partners-section,
  .technology-partners-section {
    padding: 64px 0 72px;
  }

  .partner-grid-3 {
    grid-template-columns: 1fr;
  }

  .strategic-partner-tags {
    gap: 6px;
  }

  .strategic-tag {
    font-size: 10px;
    white-space: normal;
  }
}
