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

:root {
  --navy: #1B2C56;
  --royal: #2B52C8;
  --royal-mid: #3A64D8;
  --periwinkle: #8BAAE5;
  --sky: #D4E0F7;
  --cream: #FAF8F4;
  --cream-dark: #F2EDE6;
  --gold: #C4A35A;
  --gold-light: #E8D4A0;
  --charcoal: #2C2C2C;
  --warm-gray: #7A7468;
  --brown-gray: #574c46;
  --divider: #E0D8CE;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  font-weight: 300;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--divider);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(27,44,86,0.08); }
.nav-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--navy);
  text-decoration: none;
}
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--royal); }

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
  overflow: hidden;
}
.hero-left {
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 72px;
  position: relative;
  overflow: hidden;
}
.hero-left::before {
  content: '';
  position: absolute;
  top: -120px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,82,200,0.25), transparent 70%);
  pointer-events: none;
}
.hero-left::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -40px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,163,90,0.12), transparent 70%);
  pointer-events: none;
}
.hero-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.hero-tag::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 12px;
}
.hero-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.hero-name span { color: var(--periwinkle); }
.hero-subtitle {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--periwinkle);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.hero-intro {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.badge {
  padding: 7px 16px;
  border: 1px solid rgba(139,170,229,0.35);
  border-radius: 40px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--periwinkle);
  background: rgba(43,82,200,0.15);
}
.hero-right {
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 2rem;

  background:
    linear-gradient(
      135deg,
      #f4f0ea 0%,
      #ebe5dc 45%,
      #e3ddd4 100%
    );
}
.hero-right {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  align-self: stretch; /* keeps it filling the hero row */
  background:
    linear-gradient(
      135deg,
      #f4f0ea 0%,
      #ebe5dc 45%,
      #e3ddd4 100%
    );
}

.hero-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at center,
      rgba(255,255,255,0.35) 0%,
      transparent 65%
    );
  pointer-events: none;
}

.hero-photo {
  width: auto;
  max-width: 420px;
  height: auto;
  max-height: 580px;        /* ← pull this down from 700px */
  object-fit: contain;
  object-position: center top;
  display: block;
  filter: saturate(0.9);
  border-radius: 18px;
  position: relative;       /* ← keeps it above the ::before overlay */
  z-index: 1;
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;               /* ← sits above the photo for the gradient fade */
  background:
    linear-gradient(
      to right,
      rgba(244,240,234,0.15) 0%,
      rgba(244,240,234,0.02) 35%,
      transparent 60%
    );
  pointer-events: none;
}
/* SECTIONS */
section { padding: 50px 0; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 48px; }
.container-wide { max-width: 1300px; margin: 0 auto; padding: 0 48px; }
.section-inner { max-width: 1100px; margin: 0 auto; padding: 20px 48px; }

.section-label,
.section-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--royal);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::after,
.section-eyebrow::after {
  content: '';
  display: block;
  height: 1px;
  width: 48px;
  background: var(--royal);
  opacity: 0.4;
}
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 24px;
}
.section-heading em { font-style: italic; color: var(--royal); }

/* ABOUT */
.about-section { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.about-left { position: sticky; top: 120px; }
.about-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin-top: 32px;
}
.about-body p {
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 22px;
  line-height: 1.85;
}
.about-body p strong {
  font-weight: 600;
  color: var(--navy);
}
.about-body p.callout {
  background: linear-gradient(135deg, var(--sky) 0%, var(--cream) 100%);
  border-radius: 12px;
  padding: 24px 28px;
  font-size: 1rem;
  color: var(--navy);
  font-weight: 400;
  border: 1px solid rgba(139,170,229,0.3);
}

/* ROLES */
.roles-section { background: var(--navy); padding: 100px 0; }
.roles-section .section-label { color: var(--gold); }
.roles-section .section-label::after { background: var(--gold); }
.roles-section .section-heading { color: #fff; }
.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.role-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(139,170,229,0.12);
  padding: 44px 36px;
  transition: background 0.3s;
}
.role-card:hover { background: rgba(255,255,255,0.08); }
.role-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.role-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.3;
}
.role-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  font-weight: 300;
}

/* CREDENTIALS */
.credentials-section { background: var(--cream-dark); }
.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 56px;
}
.cred-group-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--divider);
}
.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(224,216,206,0.5);
}
.cred-item:last-child { border-bottom: none; }
.cred-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--royal);
  margin-top: 8px;
  flex-shrink: 0;
}
.cred-text strong {
  display: block;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 3px;
}
.cred-text span {
  font-size: 0.83rem;
  color: var(--warm-gray);
}

/* BRANDS & PRESS */
.brands-section { background: var(--cream); }
.brands-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}
.brand-pill {
  padding: 10px 22px;
  border: 1.5px solid var(--divider);
  border-radius: 40px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.06em;
  transition: all 0.2s;
  background: #fff;
}
.brand-pill:hover {
  border-color: var(--royal);
  color: var(--royal);
  background: var(--sky);
}
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.press-card {
  border: 1px solid var(--divider);
  border-radius: 12px;
  padding: 32px 28px;
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.press-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--sky);
  position: absolute;
  top: -12px; left: 16px;
  line-height: 1;
  font-weight: 700;
}
.press-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(27,44,86,0.1); }
.press-type {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--royal);
  margin-bottom: 12px;
  position: relative;
}
.press-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 10px;
  position: relative;
}
.press-pub,
.press-placeholder {
  font-size: 0.8rem;
  color: var(--warm-gray);
  position: relative;
}
.press-placeholder { color: var(--periwinkle); font-style: italic; }

/* SUBSTACK */
.substack-section {
  background: linear-gradient(135deg, var(--royal) 0%, var(--navy) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.substack-section::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 70%);
}
.substack-section .section-heading { color: #fff; }
.substack-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  margin: 20px auto 40px;
  line-height: 1.8;
}
.btn-light {
  display: inline-block;
  padding: 16px 40px;
  background: #fff;
  color: var(--navy);
  border-radius: 40px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-light:hover { background: var(--gold-light); transform: translateY(-2px); }
.substack-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-top: 20px;
  letter-spacing: 0.06em;
}

/* THANKS */
.thanks-section { background: var(--cream-dark); }
.thanks-intro {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--navy);
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 20px;
}
.thanks-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 20px 0;
}
.thanks-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
  border: 1px solid var(--divider);
}
.thanks-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.thanks-role {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--royal);
  margin-bottom: 12px;
}
.thanks-note {
  font-size: 1rem;
  color: var(--brown-gray);
  line-height: 1.7;
}

/* RESOURCES */
.resources-intro-section { background: var(--cream); }
.resources-section { background: var(--cream-dark); }
.resources-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 20px;
}
.resources-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--navy);
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 20px;
}
.resources-body {
  font-size: 1.05rem;
  color: var(--charcoal);
  line-height: 1.85;
  max-width: 760px;
}
.resources-filter {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: 100px;
  border: 1px solid var(--divider);
  background: transparent;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-btn:hover {
  border-color: var(--royal);
  color: var(--royal);
}
.filter-btn.active {
  background: var(--royal);
  border-color: var(--royal);
  color: #fff;
}
.resources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.resource-card,
.influence-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
  border: 1px solid var(--divider);
  display: flex;
  flex-direction: column;
  animation: fadeUp 0.25s ease both;
}
.resource-handle {
  font-size: 0.78rem;
  color: var(--warm-gray);
  margin-bottom: 10px;
  font-style: italic;
  opacity: 0.8;
}
.resource-link,
.influence-link {
  display: inline-block;
  margin-top: auto;
  padding-top: 18px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--royal);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.resource-link:hover,
.influence-link:hover { opacity: 0.7; }

/* CONNECT */
.connect-section {
  background: var(--navy);
  padding: 30px 0;
  text-align: center;
}
.connect-section .section-heading { color: #fff; margin-bottom: 16px; }
.connect-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 30px;
}
.socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border: 1px solid rgba(139,170,229,0.25);
  border-radius: 40px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--periwinkle);
  transition: all 0.2s;
}
.social-link:hover {
  border-color: var(--periwinkle);
  background: rgba(139,170,229,0.1);
}
.connect-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 0 auto 32px;
  max-width: 400px;
}
.connect-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.08em;
}
.connect-copy a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
}
.connect-copy a:hover { color: var(--periwinkle); }

.page-divider {
  height: 1px;
  background: var(--divider);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate { animation: fadeUp 0.8s ease forwards; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 60vw; }
  .hero-left { padding: 60px 32px; }
  .nav-links { display: none; }
  nav { padding: 20px 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-left { position: static; }
  .roles-grid { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr; gap: 40px; }
  .press-grid { grid-template-columns: 1fr; }
  .thanks-grid,
  .resources-grid { grid-template-columns: 1fr; }
  .container, .container-wide, .section-inner { padding: 0 24px; }
  section { padding: 72px 0; }
}
