/* ============================================================
   Meltem Gunyuzlu — site styles
   Tokens, components, page sections, responsive
   ============================================================ */

:root {
  --deep-purple: #1A102A;
  --purple: #1A102A;          /* alias */
  --yellow: #F9D548;
  --white: #FFFFFF;
  --light-grey: #F0F0F0;
  --dark-grey: #2B2B2B;
  --lavender-tint: #F4F1F8;
  --card-border: #E5E0EC;
  --pill-bg: #FCEFB8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  background: var(--white);
  color: var(--deep-purple);
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body { padding: 0; }

/* Generic dot */
.dot { color: var(--yellow); }

/* ============================================================
   Top nav — two variants
   ============================================================ */

/* Dark variant (home only) */
nav.topbar {
  background: var(--deep-purple);
  color: var(--white);
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
}
.wordmark-top {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.025em;
  color: var(--white);
  text-decoration: none;
}
.wordmark-top .dot { color: var(--yellow); }
nav.topbar .nav-links { display: flex; gap: 36px; align-items: center; }
nav.topbar .nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
nav.topbar .nav-links a:hover { color: var(--yellow); }
nav.topbar .nav-cta {
  padding: 10px 22px;
  border: 1.5px solid var(--yellow);
  color: var(--yellow);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
nav.topbar .nav-cta:hover { background: var(--yellow); color: var(--deep-purple); }

/* Light variant (sub-pages) */
nav.subpage {
  background: var(--white);
  border-bottom: 1px solid var(--light-grey);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-wordmark {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 1.375rem;
  letter-spacing: -0.025em;
  color: var(--purple);
  text-decoration: none;
}
.nav-wordmark .dot { color: var(--yellow); }
nav.subpage .nav-links { display: flex; gap: 36px; align-items: center; }
nav.subpage .nav-links a {
  color: var(--dark-grey);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.81rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
nav.subpage .nav-links a:hover { color: var(--purple); }
nav.subpage .nav-links a.active {
  color: var(--purple);
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 4px;
}
nav.subpage .nav-links a.nav-cta {
  padding: 10px 22px;
  border: 1.5px solid var(--purple);
  color: var(--purple);
}
nav.subpage .nav-links a.nav-cta:hover { background: var(--purple); color: var(--yellow); }

/* ============================================================
   Layout
   ============================================================ */

.container { max-width: 1100px; margin: 0 auto; padding: 0 32px; }

section {
  padding: 110px 60px;
  max-width: 1400px;
  margin: 0 auto;
}
section.tinted {
  background: var(--lavender-tint);
  max-width: none;
  padding-left: calc((100vw - 1400px)/2 + 60px);
  padding-right: calc((100vw - 1400px)/2 + 60px);
}
@media (max-width: 1400px) {
  section.tinted { padding-left: 60px; padding-right: 60px; }
}

/* Sub-page content sections (about, advisory) */
section.content {
  padding: 90px 0;
  border-bottom: 1px solid var(--light-grey);
}
section.content:last-of-type { border-bottom: none; }
section.content.tinted {
  background: var(--light-grey);
  border-bottom: none;
  padding-left: 0;
  padding-right: 0;
  max-width: none;
}

/* ============================================================
   Headlines + body
   ============================================================ */

h1, h2 {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--deep-purple);
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-weight: 500;
}
h1 { font-size: 64px; }
h2 { font-size: 52px; margin-bottom: 32px; }
h2 .accent, h1 .accent {
  font-style: italic;
  color: var(--yellow);
}
h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 24px;
  color: var(--deep-purple);
  margin-bottom: 12px;
}

p {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark-grey);
  max-width: 60ch;
}
p.lead {
  font-size: 18px;
  color: var(--deep-purple);
}

.accent-italic { font-style: italic; color: var(--yellow); }

/* ============================================================
   Section pill labels
   ============================================================ */

.section-pill {
  display: inline-block;
  background: var(--yellow);
  color: var(--deep-purple);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.section-pill.secondary {
  background: transparent;
  border: 1.5px solid var(--yellow);
  margin-left: 8px;
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple);
  font-weight: 700;
  margin-bottom: 28px;
  display: inline-block;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 4px;
}

/* ============================================================
   Hero (home page)
   ============================================================ */

.hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 100px;
}
.hero-left { display: flex; flex-direction: column; gap: 28px; }
.hero-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 54px;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--deep-purple);
}
.hero-headline .accent { font-style: italic; color: var(--yellow); }
.hero-headline-sub {
  display: block;
  font-size: 42px;
  line-height: 1.15;
  margin-top: 6px;
  font-weight: 500;
}
.hero-credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 12px;
}
.hero-card {
  background: var(--lavender-tint);
  padding: 20px 22px;
  border-radius: 6px;
  border-top: 3px solid var(--yellow);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: var(--deep-purple);
}
.hero-right-photo { display: flex; flex-direction: column; }
.hero-photo {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: top center;
  border-radius: 4px;
  display: block;
}
.hero-name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--deep-purple);
  margin-top: 24px;
  line-height: 1.1;
}
.hero-position {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--deep-purple);
  margin-top: 8px;
  line-height: 1.2;
}
.hero-descriptor {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.45;
  color: var(--deep-purple);
  margin-top: 10px;
  max-width: 42ch;
}

/* ============================================================
   Page hero (about, advisory, course, etc.)
   ============================================================ */

.page-hero {
  background: var(--purple);
  color: var(--white);
  padding: 90px 0 80px;
}
.page-hero.compact { padding: 80px 0 60px; }
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text { min-width: 0; }
.hero-photo-wrap { display: flex; justify-content: center; }
.page-hero-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 700;
  margin-bottom: 28px;
  display: inline-block;
}
.page-hero-heading {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--white);
  max-width: 920px;
}
.page-hero-subline {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  line-height: 1.4;
  color: rgba(255,255,255,0.75);
  max-width: 820px;
  margin-top: 18px;
}
.page-hero-sub {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.5;
  color: rgba(255,255,255,0.88);
  max-width: 820px;
  margin-bottom: 28px;
}
.page-hero-body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
  max-width: 780px;
}

.section-intro {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--purple);
  letter-spacing: -0.01em;
  margin-bottom: 40px;
  max-width: 860px;
  line-height: 1.3;
}
.section-body {
  font-size: 1.0625rem;
  color: var(--dark-grey);
  max-width: 820px;
  line-height: 1.75;
  margin-bottom: 18px;
}
.section-body:last-child { margin-bottom: 0; }
.section-body strong { color: var(--purple); font-weight: 600; }

/* ============================================================
   Offering cards (home — 3 CTA boxes)
   ============================================================ */

.offering-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.offering-card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: var(--deep-purple);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  min-height: 240px;
}
.offering-card:hover {
  border-color: var(--yellow);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,16,42,0.06);
}
.offering-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 28px;
  color: var(--deep-purple);
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.01em;
}
.offering-card p {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: var(--dark-grey);
  margin: 0;
  flex: 1;
  max-width: none;
}
.offering-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--deep-purple);
  border-bottom: 1.5px solid var(--yellow);
  padding-bottom: 2px;
  align-self: flex-start;
}
.offering-pill {
  display: inline-block;
  background: var(--yellow);
  color: var(--deep-purple);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  align-self: flex-start;
}

/* ============================================================
   CTA buttons
   ============================================================ */

.cta-row { display: flex; gap: 16px; margin-top: 12px; flex-wrap: wrap; }
.cta {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.15s ease, background-color 0.15s ease;
}
.cta:hover { transform: translateY(-2px); }
.cta-primary {
  background: var(--deep-purple);
  color: var(--yellow);
  border: 1.5px solid var(--deep-purple);
}
.cta-primary:hover { background: #2d1f4a; }
.cta-secondary {
  background: transparent;
  color: var(--deep-purple);
  border: 1.5px solid var(--deep-purple);
}
.cta-secondary:hover { background: var(--deep-purple); color: var(--yellow); }

/* On dark backgrounds */
.page-cta-section, .closing-cta-section {
  background: var(--purple);
  color: var(--white);
  padding: 90px 0;
  text-align: center;
}
.page-cta-section h2, .closing-cta-section h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 24px;
  letter-spacing: -0.015em;
  color: var(--white);
}
.closing-cta-section p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.78);
  max-width: 720px;
  margin: 0 auto 36px;
  line-height: 1.75;
}
.cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-group .cta-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.7);
}
.cta-group .cta-secondary:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

/* ============================================================
   Pull-quote
   ============================================================ */

.pull-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.25;
  color: var(--yellow);
  border-left: 3px solid var(--yellow);
  padding-left: 32px;
  margin: 40px 0 24px 0;
  max-width: 600px;
}

/* ============================================================
   Two-col / three-col layouts
   ============================================================ */

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 32px; }
.col-link {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--deep-purple);
  text-decoration: none;
  margin-top: 24px;
  border-bottom: 1.5px solid var(--yellow);
  padding-bottom: 2px;
}

/* Intake (contact home teaser) */
.intake-col { padding: 28px 0; }
.intake-col h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--deep-purple);
  margin-bottom: 8px;
}
.intake-col p { font-size: 14px; color: var(--dark-grey); }

/* ============================================================
   Advisory: "What I bring" 3-card grid
   ============================================================ */

.bring-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.bring-card {
  background: var(--lavender-tint);
  border-left: 3px solid var(--yellow);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bring-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--purple);
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.bring-card p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--dark-grey);
}

/* Advisory: block items */
.block-item {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--light-grey);
}
.block-item:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.block-item h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--purple);
  margin-bottom: 14px;
  letter-spacing: -0.005em;
}
.block-item p {
  font-size: 1rem;
  color: var(--dark-grey);
  max-width: 860px;
  line-height: 1.75;
}

/* ============================================================
   About: Path timeline
   ============================================================ */

.path-timeline { display: flex; flex-direction: column; }
.path-event {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 32px;
  padding-bottom: 48px;
}
.path-event:last-child { padding-bottom: 0; }
.path-spine { position: relative; }
.path-dot {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--purple);
  border: 3px solid var(--yellow);
  margin-top: 6px;
  position: relative;
  z-index: 1;
}
.path-line {
  display: block;
  position: absolute;
  top: 30px;
  bottom: -54px;
  left: 8px;
  width: 2px;
  background: var(--yellow);
}
.path-year {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
  opacity: 0.65;
  margin-bottom: 10px;
}
.path-era {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--purple);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.path-role {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--dark-grey);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
.path-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: var(--dark-grey);
  max-width: 720px;
}

/* About: credentials editorial */
.cred-edit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 64px;
  align-items: start;
}
.cred-col-edit h3.ed-head {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--purple);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--yellow);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.cred-col-edit p {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--dark-grey);
}
.cred-col-edit .cred-name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  color: var(--purple);
  font-size: 1.05rem;
  display: block;
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.cred-wide h3.ed-head { max-width: 720px; }
.cred-wide { margin-bottom: 48px; }
.cred-wide:last-child { margin-bottom: 0; }
.recognition-item {
  font-size: 1rem;
  color: var(--dark-grey);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 820px;
}
.recognition-item:last-child { margin-bottom: 0; }
.recognition-item strong { color: var(--purple); font-weight: 600; }
.recognition-item a {
  color: var(--purple);
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.recognition-item a:hover { background: var(--yellow); }
.languages-line { font-size: 1rem; color: var(--dark-grey); line-height: 1.75; }

/* ============================================================
   Contact form
   ============================================================ */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 600px;
  margin-top: 36px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  padding: 14px 18px;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  background: var(--white);
  color: var(--deep-purple);
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--yellow);
}
.contact-form label {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: var(--deep-purple);
  font-weight: 500;
  margin-bottom: -8px;
  margin-top: 6px;
}
.contact-form button {
  background: var(--deep-purple);
  color: var(--yellow);
  border: none;
  padding: 16px 24px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 8px;
}
.contact-form button:hover { background: #2d1f4a; }

/* ============================================================
   Insights cards (insights page)
   ============================================================ */

.insight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.insight-card {
  background: var(--white);
  padding: 28px;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
  text-decoration: none;
  color: var(--deep-purple);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.insight-card:hover {
  border-color: var(--yellow);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,16,42,0.06);
}
.insight-card .insight-date {
  font-size: 12px;
  color: var(--dark-grey);
  opacity: 0.6;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.insight-card .insight-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  color: var(--deep-purple);
}
.insight-card .insight-summary {
  font-size: 14px;
  color: var(--dark-grey);
  line-height: 1.6;
}
.insight-card .insight-link {
  font-size: 13px;
  color: var(--deep-purple);
  font-weight: 500;
  margin-top: auto;
  border-bottom: 1.5px solid var(--yellow);
  align-self: flex-start;
  padding-bottom: 2px;
}

/* ============================================================
   Course waitlist modal
   ============================================================ */

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal.open { display: flex; }
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,16,42,0.6);
}
.modal-card {
  position: relative;
  background: var(--lavender-tint);
  border-radius: 16px;
  padding: 48px 44px;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 24px 60px rgba(26,16,42,0.3);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: 2px solid var(--deep-purple);
  color: var(--deep-purple);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-card h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.1;
  color: var(--deep-purple);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.modal-card h2 .accent { font-style: italic; color: var(--yellow); }
.modal-card > p {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: var(--dark-grey);
  margin-bottom: 28px;
  line-height: 1.6;
}
.modal-card form { display: flex; flex-direction: column; gap: 12px; }
.modal-card input,
.modal-card textarea {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  padding: 14px 18px;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  background: var(--white);
  color: var(--deep-purple);
  resize: vertical;
}
.modal-card input:focus,
.modal-card textarea:focus { outline: none; border-color: var(--yellow); }
.modal-submit {
  background: var(--deep-purple);
  color: var(--yellow);
  border: none;
  padding: 16px 24px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 8px;
}
.modal-submit:hover { background: #2d1f4a; }
.modal-note {
  font-size: 12px;
  color: var(--dark-grey);
  opacity: 0.7;
  margin-top: 14px;
  text-align: center;
}
.waitlist-success {
  text-align: center;
  padding: 20px 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  color: var(--deep-purple);
  font-style: italic;
}

/* ============================================================
   Footer
   ============================================================ */

footer {
  background: var(--deep-purple);
  color: var(--white);
  padding: 70px 60px;
  text-align: center;
}
footer .wordmark-footer {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 36px;
  letter-spacing: -0.025em;
  color: var(--white);
}
footer .wordmark-footer .dot { color: var(--yellow); }
footer .footer-line {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-top: 16px;
  letter-spacing: 0.02em;
}
footer .footer-link {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(249,213,72,0.4);
  padding-bottom: 1px;
}
footer .footer-link:hover { color: var(--yellow); border-bottom-color: var(--yellow); }
footer .footer-sep { display: inline-block; margin: 0 14px; color: rgba(255,255,255,0.4); }

/* ============================================================
   Brand strip — horizontal "career across" device
   ============================================================ */

.brand-strip {
  background: var(--lavender-tint);
  padding: 50px 60px;
  text-align: center;
}
.brand-strip.dark {
  background: var(--deep-purple);
  color: var(--white);
}
.brand-strip-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--deep-purple);
  opacity: 0.6;
  margin-bottom: 20px;
  font-weight: 600;
}
.brand-strip.dark .brand-strip-label {
  color: var(--yellow);
  opacity: 1;
}
.brand-strip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 28px;
}
.brand-strip-row span {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: 22px;
  color: var(--deep-purple);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.brand-strip.dark .brand-strip-row span { color: var(--white); }
.brand-strip-row .sep {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.7;
}

/* ============================================================
   Big stat callouts
   ============================================================ */

.stat-strip {
  background: var(--white);
  padding: 80px 60px;
  max-width: 1400px;
  margin: 0 auto;
}
.stat-strip.tinted {
  background: var(--lavender-tint);
  max-width: none;
  padding-left: calc((100vw - 1400px)/2 + 60px);
  padding-right: calc((100vw - 1400px)/2 + 60px);
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-cell {
  text-align: left;
  border-top: 3px solid var(--yellow);
  padding-top: 20px;
}
.stat-number {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 88px;
  line-height: 1;
  color: var(--deep-purple);
  letter-spacing: -0.04em;
}
.stat-number .accent { color: var(--yellow); font-style: italic; }
.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: var(--dark-grey);
  margin-top: 14px;
  max-width: 220px;
}

/* Stat-strip variant inside a tinted/purple block */
.stat-strip.dark { background: var(--deep-purple); color: var(--white); }
.stat-strip.dark .stat-number { color: var(--white); }
.stat-strip.dark .stat-number .accent { color: var(--yellow); }
.stat-strip.dark .stat-label { color: rgba(255,255,255,0.75); }
.stat-strip.dark .stat-cell { border-top-color: var(--yellow); }

/* ============================================================
   Numbered editorial cards (replaces dense block-item lists)
   ============================================================ */

.numbered-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.numbered-card {
  background: var(--lavender-tint);
  padding: 36px 32px;
  border-radius: 8px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.numbered-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(26,16,42,0.08);
}
.numbered-card .num {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 52px;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.numbered-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--deep-purple);
  margin-bottom: 12px;
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.numbered-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--dark-grey);
  margin: 0;
}

/* Compact / dark variant */
.numbered-card.compact { padding: 28px 26px; }
.numbered-card.dark {
  background: var(--deep-purple);
  color: var(--white);
}
.numbered-card.dark h3 { color: var(--white); }
.numbered-card.dark p { color: rgba(255,255,255,0.78); }

/* ============================================================
   Bigger / standalone pull-quote — works on light or purple
   ============================================================ */

.feature-quote {
  background: var(--deep-purple);
  color: var(--white);
  padding: 110px 60px;
  max-width: 1400px;
  margin: 0 auto;
}
.feature-quote.tinted {
  background: var(--lavender-tint);
  max-width: none;
  padding-left: calc((100vw - 1400px)/2 + 60px);
  padding-right: calc((100vw - 1400px)/2 + 60px);
}
.feature-quote blockquote {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.2;
  color: var(--yellow);
  border-left: 4px solid var(--yellow);
  padding-left: 36px;
  max-width: 900px;
  margin: 0 auto 0 0;
}
.feature-quote.tinted blockquote {
  color: var(--deep-purple);
}
.feature-quote .quote-attrib {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 28px;
  padding-left: 40px;
}
.feature-quote.tinted .quote-attrib { color: var(--dark-grey); }

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 900px) {
  .hero, .two-col { grid-template-columns: 1fr; gap: 48px; }
  .three-col { grid-template-columns: 1fr; }
  .hero-credentials-grid { grid-template-columns: 1fr; }
  .offering-grid { grid-template-columns: 1fr; }
  .bring-grid { grid-template-columns: 1fr; gap: 16px; }
  .cred-edit-grid { grid-template-columns: 1fr; gap: 36px; margin-bottom: 48px; }
  .insight-grid { grid-template-columns: 1fr; }
  .hero-split { grid-template-columns: 1fr; gap: 40px; }
  .path-event { grid-template-columns: 18px 1fr; gap: 20px; padding-bottom: 36px; }
  .path-line { bottom: -42px; }
  .path-era { font-size: 1.3rem; }
  section { padding: 70px 32px; }
  nav.topbar { padding: 16px 32px; }
  h1, .hero-headline { font-size: 40px; }
  .hero-headline-sub { font-size: 32px; }
  .hero-name { font-size: 26px; }
  h2 { font-size: 36px; }
  .pull-quote { font-size: 26px; }
}

@media (max-width: 900px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-number { font-size: 64px; }
  .numbered-grid { grid-template-columns: 1fr; gap: 16px; }
  .brand-strip { padding: 36px 24px; }
  .brand-strip-row { gap: 8px 18px; }
  .brand-strip-row span { font-size: 18px; }
  .stat-strip { padding: 60px 32px; }
  .stat-strip.tinted { padding-left: 32px; padding-right: 32px; }
  .feature-quote { padding: 70px 32px; }
  .feature-quote.tinted { padding-left: 32px; padding-right: 32px; }
}

@media (max-width: 768px) {
  nav.topbar .nav-links,
  nav.subpage .nav-links { display: none; }
  .page-hero { padding: 70px 0 60px; }
  section.content { padding: 60px 0; }
  .cta-group { flex-direction: column; align-items: center; }
  .page-cta-section, .closing-cta-section { padding: 60px 0; }
  footer { padding: 50px 24px; }
  footer .wordmark-footer { font-size: 28px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
}
