/* ========================================
   Openly Committed — Global Styles
   Mobile-First Design
   ======================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Primary Palette */
  --deep-teal: #058080;
  --sunshine-yellow: #fdbd03;
  --black: #000000;
  --coral-red: #fe5b51;

  /* Secondary Palette */
  --teal-green: #009f89;
  --golden-yellow: #eda323;
  --eggplant: #5f4a8d;
  --lavender: #9a66cd;
  --sky-blue: #43a4f1;
  --royal-blue: #1434a5;
  --navy-blue: #00007c;

  /* Neutrals */
  --white: #ffffff;
  --off-white: #f8f8f6;
  --light-gray: #eeeeee;
  --mid-gray: #888888;
  --dark-gray: #333333;

  /* Semantic aliases */
  --primary: var(--deep-teal);
  --primary-hover: var(--teal-green);
  --accent: var(--sunshine-yellow);
  --accent-hover: var(--golden-yellow);
  --danger: var(--coral-red);

  /* Typography */
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-pad: clamp(2.5rem, 6vw, 5rem);
  --container-width: 1200px;
  --container-narrow: 800px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--dark-gray);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-hover);
}

/* --- Typography --- */
h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--black);
  line-height: 1.15;
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2rem, 6vw, 3.6rem);
  letter-spacing: 0.01em;
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  letter-spacing: 0.01em;
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}

h4 {
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

.heading--single-line {
  font-size: clamp(1.3rem, 3.2vw, 2.2rem);
}

.text--teal { color: var(--primary); }
.text--terracotta { color: var(--primary); }

.accent-text {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--primary);
}

/* --- Layout --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container--narrow {
  max-width: var(--container-narrow);
}

section {
  padding: var(--section-pad) 0;
}

.section--cream { background: var(--off-white); }
.section--white { background: var(--white); }
.section--sand { background: #e8f4f3; }
.section--deep { background: var(--black); color: var(--white); }
.section--deep h2, .section--deep h3, .section--deep h4 { color: var(--white); }
.section--deep p { color: rgba(255, 255, 255, 0.7); }
.section--sage { background: #e8f4f3; }
.section--teal { background: var(--deep-teal); color: var(--white); }
.section--charcoal { background: #1a1a1a; color: var(--white); }
.section--charcoal h2, .section--charcoal h3, .section--charcoal h4 { color: var(--white); }
.section--charcoal p { color: rgba(255, 255, 255, 0.7); }

/* --- Navigation (mobile-first) --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
}

.nav.scrolled {
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--black);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.nav__logo span {
  color: var(--primary);
}

/* Mobile nav — default state */
.nav__links {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 2rem;
  gap: 0;
  list-style: none;
  transform: translateX(100%);
  transition: transform 0.4s ease;
}

.nav__links.open {
  transform: translateX(0);
}

.nav__links li {
  list-style: none;
}

.nav__links a {
  display: block;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  color: var(--dark-gray);
  font-weight: 400;
  text-align: center;
  position: relative;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.3rem;
  background: var(--primary);
  color: white !important;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
}

.nav__cta:hover {
  background: var(--primary-hover);
  color: white !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(5, 128, 128, 0.3);
}

.nav__cta::after { display: none !important; }

/* Mobile nav toggle — visible by default (mobile-first) */
.nav__toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: all 0.35s ease;
  text-decoration: none;
}

.btn--primary {
  background: var(--primary);
  color: white;
}

.btn--primary:hover {
  background: var(--primary-hover);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(5, 128, 128, 0.3);
}

.btn--secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn--secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.btn--white {
  background: white;
  color: var(--primary);
}

.btn--white:hover {
  background: var(--off-white);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn--accent {
  background: var(--accent);
  color: var(--black);
}

.btn--accent:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(253, 189, 3, 0.35);
}

.btn--coral {
  background: var(--coral-red);
  color: white;
}

.btn--coral:hover {
  background: #e5453c;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(254, 91, 81, 0.35);
}

.btn--large {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn--small {
  padding: 0.55rem 1.4rem;
  font-size: 0.85rem;
  background: var(--primary);
  color: white;
}

.btn--small:hover {
  background: var(--primary-hover);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(5, 128, 128, 0.3);
}

/* --- Text Link (secondary CTA) --- */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: gap 0.3s ease, color 0.3s ease;
}

.text-link:hover {
  gap: 0.75rem;
  color: var(--primary-hover);
}

.text-link svg {
  transition: transform 0.3s ease;
}

.text-link:hover svg {
  transform: translateX(3px);
}

/* --- Book Grid --- */
.book-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.book-card {
  display: flex;
  gap: 1.5rem;
  background: var(--white);
  border-radius: 0;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  color: inherit;
}

.book-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.book-card__cover {
  flex-shrink: 0;
  width: 100px;
}

.book-card__cover img {
  width: 100%;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.book-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--coral-red);
  color: white;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  margin-top: 0.5rem;
}

.section-header__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--deep-teal);
}

.book-card__info h3 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.book-card__author {
  font-size: 0.85rem;
  color: var(--mid-gray);
  font-style: italic;
  margin-bottom: 0.5rem;
}

.book-card__info p:last-child {
  font-size: 0.9rem;
  color: var(--dark-gray);
  margin-bottom: 0;
}

/* --- Book List (legacy) --- */
.book-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.book-item {
  background: var(--off-white);
  border-radius: 0;
  padding: 1.5rem 2rem;
  border: 1px solid var(--light-gray);
  transition: all 0.3s ease;
}

.book-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.book-item h3 {
  margin-bottom: 0.25rem;
  font-size: 1.15rem;
}

.book-item__author {
  font-size: 0.9rem;
  color: var(--mid-gray);
  font-style: italic;
  margin-bottom: 0.5rem;
}

.book-item p:last-of-type {
  margin-bottom: 1rem;
}

/* --- Hero / Carousel --- */
.hero {
  position: relative;
  height: 85vh;
  min-height: 500px;
  max-height: 900px;
  overflow: hidden;
  margin-top: 70px;
}

.hero__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}

.hero__slide.active {
  opacity: 1;
  pointer-events: all;
}

.hero__slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero__slide-overlay {
  position: absolute;
  inset: 0;
}

/* ------------------------------------------------
   Hero Slide Images — Mobile-first focal points

   To swap a mobile-specific crop, add a different
   background-image inside the mobile rule below.
   To adjust framing, change background-position.
   ------------------------------------------------ */

/* Mobile defaults (portrait screens) */
.hero__bg--slide1 {
  background-image: url('Danielle OC Website Hero 1.jpg');
  background-position: 65% 20%;
}

.hero__bg--slide2 {
  background-image: url('Danielle-Matchmaking1.jpg');
  background-position: 70% 25%;
}

.hero__bg--slide3 {
  background-image: url('About Danielle9.JPG');
  background-position: center 20%;
}

.hero__bg--slide4 {
  background-image: url('WorkWithMe 1on1 call.jpg');
  background-position: center center;
}

/* Consistent dark overlay — mobile: bottom-heavy so photo shows at top */
.hero__slide--dark .hero__slide-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.5) 45%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 0 1.25rem;
}

/* All dark slides: white text */
.hero__slide--dark .hero__content {
  color: white;
}

.hero__slide--dark h1 {
  color: white;
}

.hero__slide--dark p {
  color: rgba(255, 255, 255, 0.85);
}

/* Eyebrow — always sunshine yellow */
.hero__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero__title {
  margin-bottom: 1rem;
}

.hero__subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
}

/* Consistent hero CTA button */
.btn--hero {
  padding: 0.95rem 2.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  min-width: 200px;
  justify-content: center;
}

/* Single hero variant */
.hero--single {
  display: flex;
  align-items: center;
}

.hero--single .hero__slide-overlay--intro {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.93) 0%, rgba(232, 244, 243, 0.85) 50%, rgba(5, 128, 128, 0.15) 100%);
}

/* Carousel arrows */
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hero__arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}

.hero__arrow--prev {
  left: 1rem;
}

.hero__arrow--next {
  right: 1rem;
}

.hero__arrow svg {
  width: 24px;
  height: 24px;
}

/* Carousel indicators */
.hero__indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}

.hero__dot {
  width: 36px;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  padding: 0;
}

.hero__dot.active {
  background: var(--accent);
  width: 56px;
}

/* --- Trust Bar --- */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  padding: 1.5rem 0;
}

.trust-bar .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.trust-bar__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mid-gray);
  margin: 0;
}

.trust-bar__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
}

/* Inline variant — used inside a section (e.g. About page) */
.trust-bar--inline {
  background: transparent;
  border-bottom: none;
  margin-top: 3rem;
  padding: 2rem 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.trust-logo {
  height: 24px;
  width: auto;
  color: var(--dark-gray);
  opacity: 0.4;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}

.trust-logo--wide {
  height: 22px;
}

.trust-logo:hover {
  opacity: 0.8;
}

/* --- Section CTA --- */
.section__cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* --- Launch Section --- */
.launch {
  overflow: hidden;
  position: relative;
  background-image: url('OC Homepage Fluid Water.svg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: var(--deep-teal);
}

.launch__bg {
  display: none;
}

.launch__content {
  position: relative;
  z-index: 1;
  padding-top: clamp(3rem, 8vw, 5rem);
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

.launch__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--accent);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.55rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 1.8rem;
  box-shadow: 0 0 0 0 rgba(253, 189, 3, 0.5);
  animation: badge-pulse 2.5s ease-in-out infinite;
}

.launch__badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral-red);
  animation: dot-blink 1.5s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(253, 189, 3, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(253, 189, 3, 0); }
}

@keyframes dot-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.launch__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.2rem;
  letter-spacing: 0.01em;
}

.launch__body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 520px;
}

.launch__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.launch__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.launch__feature-dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 0.35rem;
}

.launch__feature strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 0.1rem;
}

.launch__feature span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* --- How It Works Section --- */
.how-it-works {
  background: var(--white);
  overflow: hidden;
}

.how-it-works__inner {
  display: flex;
  flex-direction: column;
}

.how-it-works__image {
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.how-it-works__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.how-it-works__content {
  padding: clamp(2.5rem, 6vw, 4rem) 1.25rem;
}

.how-it-works__eyebrow {
  color: var(--coral-red);
  margin-bottom: 0.5rem;
}

.how-it-works__headline {
  color: var(--black);
  margin-bottom: 2rem;
}

.how-it-works__steps {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-bottom: 2.5rem;
}

.how-it-works__step {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.how-it-works__number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--coral-red);
  line-height: 1;
  min-width: 48px;
}

.how-it-works__step h3 {
  color: var(--black);
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

.how-it-works__step p {
  color: var(--mid-gray);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* --- Nav CTA visibility --- */
.nav__cta--desktop {
  display: none;
}

.nav__links-cta {
  padding: 1rem 1.5rem;
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3rem;
}

.section-header h4 {
  margin-bottom: 0.6rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--mid-gray);
}

/* --- Cards --- */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid var(--light-gray);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.card__image {
  height: 200px;
  overflow: hidden;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card__image img {
  transform: scale(1.05);
}

.card__body {
  padding: 1.5rem;
}

.card__body h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.card__body p {
  font-size: 0.92rem;
  color: var(--mid-gray);
  margin-bottom: 1rem;
}

.card__link {
  font-size: 0.88rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.card__link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.card__link:hover svg {
  transform: translateX(4px);
}

/* Resource cards — colorful with brand palette */
.resource-card {
  position: relative;
  border-radius: 0;
  padding: 1.8rem;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  color: var(--white);
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  color: var(--white);
}

.resource-card__number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  position: absolute;
  top: 0.8rem;
  right: 1.2rem;
  opacity: 0.15;
  font-weight: 700;
  line-height: 1;
}

.resource-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
  position: relative;
  z-index: 1;
  color: white;
}

.resource-card p {
  font-size: 0.88rem;
  opacity: 0.85;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: white;
}

/* Image-backed resource cards */
.resource-card--img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 240px;
}

.resource-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.15) 100%
  );
  border-radius: 0;
  transition: background 0.3s ease;
}

.resource-card--img:hover .resource-card__overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.resource-card__text {
  position: relative;
  z-index: 2;
}

.resource-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--accent);
  color: var(--black);
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  margin-bottom: 0.5rem;
}

.resource-card__tag--purple {
  background: var(--lavender);
  color: white;
}

.resource-card__tag--teal {
  background: var(--deep-teal);
  color: white;
}

.resource-card__tag--coral {
  background: var(--coral-red);
  color: white;
}

/* Color fallbacks for cards without images */
.resource-card--teal { background-color: var(--deep-teal); }
.resource-card--eggplant { background-color: var(--eggplant); }
.resource-card--coral { background-color: var(--coral-red); }
.resource-card--navy { background-color: var(--navy-blue); }

/* Keep old numbered cards working (homepage preview) */
.resource-card--1  { background: var(--deep-teal); }
.resource-card--2  { background: var(--coral-red); }
.resource-card--3  { background: var(--teal-green); }
.resource-card--4  { background: var(--golden-yellow); color: var(--black); }
.resource-card--4 h3 { color: var(--black); }
.resource-card--4 p { color: var(--dark-gray); }
.resource-card--5  { background: var(--sky-blue); }
.resource-card--6  { background: var(--eggplant); }
.resource-card--7  { background: var(--lavender); }
.resource-card--8  { background: var(--royal-blue); }
.resource-card--9  { background: var(--navy-blue); }
.resource-card--10 { background: var(--black); }

/* Resources page grid */
.resources-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* --- Columns (mobile-first: stacked) --- */
.columns {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

/* --- Process Steps (mobile-first: stacked) --- */
.process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  counter-reset: step;
}

.process__step {
  position: relative;
  padding: 1.8rem;
  background: var(--white);
  border-radius: 0;
  border: 1px solid var(--light-gray);
  transition: all 0.3s ease;
}

.process__step:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.process__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--coral-red);
  line-height: 1;
  margin-bottom: 0.8rem;
  font-weight: 700;
  opacity: 0.4;
}

.process__step h3 {
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
}

.process__step p {
  font-size: 0.95rem;
  color: var(--mid-gray);
}

/* --- Matchmaking Page Hero --- */
.mm-hero__bg {
  background-position: 65% 20%;
}

/* --- Matchmaking Split Layout --- */
.mm-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.mm-split__image {
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.mm-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mm-split__content h2 {
  margin-bottom: 1.2rem;
}

.mm-split__content h4 {
  margin-bottom: 0.6rem;
}

/* --- Dark Process Cards --- */
.process__step--dark {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.process__step--dark:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.process__step--dark h3 {
  color: var(--white);
}

.process__step--dark p {
  color: rgba(255, 255, 255, 0.6);
}

/* --- Light Checklist (for dark backgrounds) --- */
.checklist--light li {
  color: rgba(255, 255, 255, 0.85);
}

.checklist--light li::before {
  background: var(--coral-red);
}

/* --- Value Props --- */
.value-props {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

.value-prop {
  padding: 2rem 1.5rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-prop:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.value-prop__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(254, 91, 81, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  color: var(--coral-red);
  transition: all 0.3s ease;
}

.value-prop:hover .value-prop__icon {
  background: var(--coral-red);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(254, 91, 81, 0.25);
}

.value-prop h3 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.value-prop p {
  font-size: 0.95rem;
  color: var(--mid-gray);
  max-width: 240px;
  margin: 0 auto;
}

.value-props__cta {
  text-align: center;
  margin-top: 3rem;
}

/* --- Checklist --- */
.checklist {
  list-style: none;
  padding: 0;
}

.checklist li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.checklist--spacious li {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.peer-disclaimer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--mid-gray);
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.6;
  text-align: center;
}

.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

/* --- Press / As Seen In --- */
.press-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 2rem 0;
}

.press-bar span {
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: italic;
  color: var(--mid-gray);
  transition: color 0.3s ease;
}

.press-bar span:hover {
  color: var(--black);
}

/* --- Press Page --- */
.press-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.press-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--light-gray);
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--dark-gray);
  overflow: hidden;
}

.press-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  color: var(--dark-gray);
}

.press-card__image {
  width: 100%;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  background: var(--off-white);
}

.press-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.press-card:hover .press-card__image img {
  transform: scale(1.03);
}

.press-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.press-card__logo {
  margin-bottom: 0.8rem;
}

.press-card__logo svg {
  height: 40px;
  width: auto;
  color: var(--dark-gray);
}

.press-card__title {
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
  line-height: 1.4;
  flex: 1;
}

.press-card__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.press-card__link svg {
  transition: transform 0.3s ease;
}

.press-card:hover .press-card__link svg {
  transform: translateX(4px);
}

.press-card__tag {
  display: inline-block;
  width: fit-content;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--coral-red);
  color: white;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  margin-bottom: 0.5rem;
}

/* Press Hero — featured article */
.press-hero {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--dark-gray);
  transition: all 0.3s ease;
  overflow: hidden;
}

.press-hero:hover {
  color: var(--dark-gray);
}

.press-hero__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.press-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.4s ease;
}

.press-hero:hover .press-hero__image img {
  transform: scale(1.02);
}

.press-hero__body {
  padding: 2rem 0;
}

.press-hero__body .press-card__logo svg {
  height: 48px;
}

.press-hero__title {
  font-size: 1.2rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}

/* Press 3-column grid */
.press-grid--3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* Press color blocks */
.press-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  min-height: 280px;
}

.press-block:hover {
  transform: translateY(-4px);
  color: white;
}

.press-block .press-card__logo svg {
  color: rgba(255, 255, 255, 0.9);
  height: 40px;
}

.press-block__title {
  font-size: 1.1rem;
  line-height: 1.4;
  color: white;
  margin: 1rem 0;
  flex: 1;
}

.press-block .press-card__link {
  color: rgba(255, 255, 255, 0.85);
}

.press-block:hover .press-card__link {
  color: white;
}

.press-block--teal { background: var(--deep-teal); }
.press-block--coral { background: var(--coral-red); }
.press-block--navy { background: var(--navy-blue); }
.press-block--eggplant { background: var(--eggplant); }
.press-block--royal { background: var(--royal-blue); }
.press-block--lavender { background: var(--lavender); }

/* --- Podcast Page --- */
.podcast-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.podcast-card {
  display: flex;
  gap: 1.5rem;
  background: var(--white);
  padding: 1.5rem;
  border: 1px solid var(--light-gray);
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--dark-gray);
  align-items: flex-start;
}

.podcast-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  color: var(--dark-gray);
}

.podcast-card__image {
  width: 120px;
  min-width: 120px;
  height: 120px;
  background: var(--light-gray);
  overflow: hidden;
  flex-shrink: 0;
}

.podcast-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.podcast-card__content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.podcast-card__content p {
  font-size: 0.9rem;
  color: var(--mid-gray);
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.podcast-card__listen {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* --- Podcast Episodes --- */
.podcast-episodes {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.podcast-episodes--grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.podcast-episode {
  border-radius: 12px;
  overflow: hidden;
}
}

/* --- Divider --- */
.divider {
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin: 2rem auto;
  border-radius: 2px;
}

.divider--left {
  margin-left: 0;
}

/* --- CTA Banner --- */
.cta-banner {
  text-align: center;
  padding: var(--section-pad) 0;
}

.cta-banner h2 {
  margin-bottom: 0.8rem;
}

.cta-banner p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Footer --- */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.6);
  padding: 3rem 0 1.5rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
  margin-bottom: 0.8rem;
}

.footer__brand span {
  color: var(--primary);
}

.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 300px;
  color: white;
}

.footer h4 {
  color: white;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 0.5rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: white;
}

.footer__social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.footer__social a:hover {
  background: var(--primary);
  color: white;
}

.footer__newsletter {
  margin-top: 1.2rem;
}

.footer__newsletter-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.6rem;
}

.footer__newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.footer__newsletter-form input {
  flex: 1;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  outline: none;
  transition: border-color 0.3s ease;
}

.footer__newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.footer__newsletter-form input:focus {
  border-color: var(--primary);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  text-align: center;
  font-size: 0.8rem;
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* --- Work With Me Cards --- */
.service-card {
  background: var(--white);
  border-radius: 0;
  padding: 2rem;
  border: 1px solid var(--light-gray);
  transition: all 0.4s ease;
}

.service-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #e8f4f3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
}

.service-card h3 {
  margin-bottom: 0.6rem;
}

.service-card p {
  color: var(--mid-gray);
  margin-bottom: 1.5rem;
}

/* --- Work With Me page --- */
.wwm-jump-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.wwm-jump-link {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border: 1.5px solid var(--primary);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.3s ease;
}

.wwm-jump-link:hover {
  background: var(--primary);
  color: var(--white);
}

/* Stacked blocks layout */
.wwm-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Photo blocks — image + content side by side */
.wwm-block--photo {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 0;
  overflow: hidden;
  background: var(--off-white);
  min-height: 360px;
}

.wwm-block__image {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.wwm-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.wwm-block--photo:hover .wwm-block__image img {
  transform: scale(1.03);
}

.wwm-block--photo .wwm-block__content {
  padding: 2rem 2rem 2.5rem;
}

/* Color blocks */
.wwm-block--color {
  border-radius: 0;
  overflow: hidden;
}

.wwm-block--color .wwm-block__content {
  padding: 3rem 2rem;
}

.wwm-block--teal {
  background: var(--deep-teal);
}

.wwm-block--teal h4 {
  color: var(--accent);
}

.wwm-block--teal h2 {
  color: var(--white);
}

.wwm-block--teal p {
  color: rgba(255, 255, 255, 0.8);
}

.wwm-block--teal .wwm-block__link {
  color: var(--accent);
}

.wwm-block--teal .wwm-block__link:hover {
  color: var(--white);
}

.wwm-block--dark {
  background: var(--black);
}

.wwm-block--dark h4 {
  color: var(--accent);
}

.wwm-block--dark h2 {
  color: var(--white);
}

.wwm-block--dark p {
  color: rgba(255, 255, 255, 0.7);
}

.wwm-block--dark .wwm-block__link {
  color: var(--accent);
}

.wwm-block--dark .wwm-block__link:hover {
  color: var(--white);
}

/* Block content shared styles */
.wwm-block__content h4 {
  margin-bottom: 0.5rem;
}

.wwm-block__content h2 {
  margin-bottom: 1rem;
}

.wwm-block__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  max-width: 520px;
}

.wwm-block__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.wwm-block__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--deep-teal);
  font-weight: 700;
}

.wwm-block__content p {
  margin-bottom: 1.5rem;
  max-width: 520px;
  line-height: 1.7;
}

.wwm-block__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: gap 0.3s ease, color 0.3s ease;
}

.wwm-block__link:hover {
  gap: 0.85rem;
  color: var(--primary-hover);
}

.wwm-block__link svg {
  transition: transform 0.3s ease;
}

.wwm-block__link:hover svg {
  transform: translateX(3px);
}

/* --- Course page --- */
.course-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.course-hero__image {
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--light-gray);
}

.course-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-hero__content {
  padding: 1rem 0;
}

.course-hero__content h4 {
  margin-bottom: 0.5rem;
}

.course-hero__content h1 {
  margin-bottom: 1rem;
}

.course-hero__content p {
  margin-bottom: 1.5rem;
  max-width: 520px;
}

.course-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.course-hero__price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.course-hero__amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.course-hero__label {
  font-size: 0.9rem;
  color: var(--mid-gray);
}

.course-hero__details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.course-hero__details span {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background: #e8f4f3;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

/* Course overview image */
.course-overview-img {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.course-overview-img img {
  width: 100%;
  display: block;
}

/* Module breakdown */
.course-modules {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.course-module {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.course-module:first-child {
  border-top: 1px solid var(--light-gray);
}

.course-module__number {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  min-width: 2.5rem;
  line-height: 1.3;
}

.course-module--bonus .course-module__number {
  color: var(--accent);
}

.course-module__body h3 {
  margin-bottom: 0.3rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.course-module__body p {
  color: var(--mid-gray);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Who this is for — image + content */
.course-who {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.course-who__image {
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--light-gray);
}

.course-who__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Guide pages --- */
.guide-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.guide-hero__image {
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--light-gray);
}

.guide-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-hero__content {
  padding: 1rem 0;
}

.guide-hero__content h1 {
  margin-bottom: 1rem;
}

.guide-hero__content p {
  max-width: 520px;
}

/* Table of contents */
.guide-toc {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.guide-toc__link {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--light-gray);
  font-weight: 500;
  color: var(--dark-gray);
  font-size: 0.95rem;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.guide-toc__link:first-child {
  border-top: 1px solid var(--light-gray);
}

.guide-toc__link:hover {
  color: var(--primary);
  padding-left: 0.5rem;
}

/* Image breaks between sections */
.guide-image-break {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.guide-image-break img {
  width: 100%;
  border-radius: 0;
  display: block;
}

/* Guide example callout boxes */
.guide-example {
  background: var(--off-white);
  border-left: 4px solid var(--accent);
  border-radius: 0;
  padding: 1.5rem 1.5rem 1rem;
  margin: 2rem 0;
}

.guide-example h4 {
  margin-bottom: 1rem;
}

.guide-example__list {
  list-style: none;
  padding: 0;
}

.guide-example__list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--light-gray);
  line-height: 1.6;
  color: var(--dark-gray);
}

.guide-example__list li:last-child {
  border-bottom: none;
}

/* Numbered checklist variant */
.checklist--numbered {
  list-style: none;
  counter-reset: checklist-counter;
  padding-left: 0;
}

.checklist--numbered li {
  counter-increment: checklist-counter;
  padding-left: 0;
}

.checklist--numbered li::before {
  content: none;
}

/* --- Peer Call page --- */
.peer-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.peer-hero__image {
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--light-gray);
}

.peer-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.peer-hero__content {
  padding: 1rem 0;
}

.peer-hero__content h4 {
  margin-bottom: 0.5rem;
}

.peer-hero__content h1 {
  margin-bottom: 1rem;
}

.peer-hero__content p {
  margin-bottom: 1.5rem;
  max-width: 520px;
}

.peer-hero__price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 2rem;
}

.peer-hero__amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.peer-hero__duration {
  font-size: 1rem;
  color: var(--mid-gray);
}

/* Booking calendar embed */
.peer-booking {
  max-width: 900px;
  margin: 0 auto;
}

.peer-booking__calendar {
  border-radius: 0;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  min-height: 700px;
}

.peer-booking__fallback {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--mid-gray);
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.faq__item:first-child {
  border-top: 1px solid var(--light-gray);
}

.faq__item h3 {
  margin-bottom: 0.5rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.faq__item p {
  color: var(--mid-gray);
  margin-bottom: 0;
  line-height: 1.7;
}

/* --- Guide Banner (full-width image with text overlay) --- */
.guide-banner {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 50vh;
  max-height: 450px;
  min-height: 300px;
  overflow: hidden;
}

.guide-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.guide-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

.guide-banner__content {
  position: relative;
  z-index: 2;
  padding-bottom: 3rem;
  max-width: var(--container-width);
  text-align: left;
}

.guide-banner__content h1 {
  color: white;
  margin-bottom: 0.5rem;
  text-align: left;
}

.guide-banner__content p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  font-size: 1.05rem;
  line-height: 1.6;
  text-align: left;
}

.guide-banner__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  color: white;
}

.guide-banner__eyebrow--recommendations {
  background: var(--lavender);
}

.guide-banner__eyebrow--story {
  background: var(--deep-teal);
}

/* --- Instagram Embed Grid --- */
.ig-embed-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 2.5rem 0;
}

@media (min-width: 640px) {
  .ig-embed-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-hero__subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
}

/* --- About page --- */
.about-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.about-hero__image {
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--light-gray);
}

.about-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.about-story p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.about-story h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

/* --- Pull Quotes --- */
.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  line-height: 1.35;
  color: var(--primary);
  border-left: 4px solid var(--accent);
  padding: 1rem 0 1rem 1.5rem;
  margin: 2.5rem 0;
  font-weight: 500;
  text-transform: none;
}

/* --- About Photo Gallery --- */
.about-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  margin: 3rem -2rem;
  max-width: calc(100% + 4rem);
}

.about-gallery__item {
  border-radius: 0;
  overflow: hidden;
  background: var(--light-gray);
}

.about-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.about-gallery__item:hover img {
  transform: scale(1.03);
}

.about-gallery__item--tall {
  grid-row: span 2;
}

.about-gallery__item--wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

/* Podcast section */
.podcast-embed {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 0;
  padding: 2rem;
  text-align: center;
}

/* --- Substack — Beyond Boundaries --- */
.substack-divider {
  background: var(--white);
  padding: 0;
  text-align: center;
}

.substack-divider__line-wrap {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  margin-top: -8px;
  margin-bottom: -8px;
}

.substack-divider__line {
  width: 100%;
  display: block;
  height: auto;
  margin: -15% 0;
}

.substack-divider__content {
  padding: 2rem 1.25rem 2.5rem;
  max-width: 480px;
  margin: 0 auto;
}

.substack-divider__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--black);
  margin: 0 0 0.6rem;
}

.substack-divider__content p {
  color: var(--mid-gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

/* --- Newsletter --- */
.newsletter {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.newsletter__form input {
  flex: 1;
  padding: 0.85rem 1.2rem;
  border: 2px solid var(--light-gray);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter__form input:focus {
  border-color: var(--primary);
}

.newsletter__form button {
  white-space: nowrap;
}

/* ========================================
   Tablet & Up (min-width: 640px)
   ======================================== */
/* Mobile: single-column gallery */
@media (max-width: 639px) {
  .about-gallery {
    grid-template-columns: 1fr;
    margin: 2rem 0;
    max-width: 100%;
  }

  .about-gallery__item--tall {
    grid-row: span 1;
    aspect-ratio: 3/4;
  }

  .about-gallery__item--wide {
    grid-column: span 1;
  }

  .pull-quote {
    font-size: 1.2rem;
  }
}

@media (min-width: 640px) {
  .guide-hero {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .guide-image-break {
    padding: 0 2rem;
  }

  .course-hero {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .course-who {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .course-who__image {
    aspect-ratio: auto;
  }

  .peer-hero {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .peer-hero__image {
    aspect-ratio: 3/4;
  }

  .wwm-block--photo {
    grid-template-columns: 1fr 1fr;
  }

  .wwm-block--reverse {
    direction: rtl;
  }

  .wwm-block--reverse > * {
    direction: ltr;
  }

  .wwm-block__image {
    min-height: 400px;
  }

  .wwm-block--photo .wwm-block__content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .wwm-block--photo .wwm-block__content .btn {
    align-self: flex-start;
  }

  .wwm-block--color .wwm-block__content {
    padding: 4rem 3rem;
  }

  .container {
    padding: 0 2rem;
  }

  .nav__inner {
    padding: 0 2rem;
  }

  .hero__content {
    padding: 0 2rem;
  }

  .hero__buttons {
    flex-direction: row;
    align-items: center;
  }

  .launch {
    background-size: 150% auto;
    background-position: 40% center;
  }

  .launch__features {
    grid-template-columns: 1fr 1fr;
  }

  .how-it-works__image {
    height: 450px;
  }

  .how-it-works__content {
    padding: 3rem 2rem;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .podcast-episodes--grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .book-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .book-card__cover {
    width: 120px;
  }

  .process {
    grid-template-columns: repeat(2, 1fr);
  }

  .columns--2, .columns--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .mm-split {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .mm-split__image {
    aspect-ratio: 3/4;
  }

  .value-props {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .trust-bar .container {
    flex-direction: row;
    gap: 2rem;
  }

  .trust-bar__logos {
    gap: 2.5rem;
  }

  .trust-logo {
    height: 28px;
  }

  .trust-logo--wide {
    height: 26px;
  }

  .press-bar {
    gap: 2.5rem;
  }

  .press-bar span {
    font-size: 1.2rem;
  }

  .newsletter__form {
    flex-direction: row;
  }

  .press-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .press-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .press-hero {
    flex-direction: row;
    gap: 2.5rem;
  }

  .press-hero__image {
    width: 60%;
    flex-shrink: 0;
    aspect-ratio: 3 / 2;
  }

  .press-hero__body {
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .press-hero__title {
  }

  .podcast-card__image {
    width: 140px;
    min-width: 140px;
    height: 140px;
  }
}

/* ========================================
   Desktop (min-width: 1024px)
   ======================================== */
@media (min-width: 1024px) {
  .container {
    padding: 0 3rem;
  }

  .nav__inner {
    height: 80px;
    padding: 0 3rem;
  }

  .nav__logo {
    font-size: 1.4rem;
  }

  /* Launch — desktop: show full width of water image */
  .launch {
    background-size: cover;
    background-position: center center;
  }

  .launch__content {
    max-width: 900px;
  }

  .launch__features {
    grid-template-columns: repeat(3, 1fr);
  }

  /* How It Works — side-by-side on desktop */
  .how-it-works__inner {
    flex-direction: row;
    min-height: 580px;
  }

  .how-it-works__image {
    width: 42%;
    height: auto;
    min-height: 580px;
    flex-shrink: 0;
  }

  .how-it-works__image img {
    height: 100%;
  }

  .how-it-works__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem clamp(3rem, 5vw, 5rem);
  }

  /* Desktop nav — horizontal */
  .nav__links {
    position: static;
    flex-direction: row;
    background-color: transparent;
    transform: none;
    padding-top: 0;
    gap: 2.2rem;
    align-items: center;
  }

  .nav__links a {
    display: inline;
    padding: 0;
    font-size: 0.9rem;
    text-align: left;
    padding-bottom: 2px;
  }

  .nav__links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
  }

  .nav__links a:hover::after,
  .nav__links a.active::after {
    width: 100%;
  }

  .nav__toggle { display: none; }

  .nav__cta--desktop { display: inline-flex; }
  .nav__links-cta { display: none; }

  .hero {
    margin-top: 80px;
    height: 100vh;
    max-height: 900px;
  }

  /* Desktop focal points — wider framing */
  /* Desktop: vertically center the content instead of bottom-aligning */
  .hero__slide {
    align-items: center;
    padding-bottom: 0;
  }

  /* Desktop overlay — left-to-right so text is readable on the left, photo shows on right */
  .hero__slide--dark .hero__slide-overlay {
    background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.5) 45%,
      rgba(0, 0, 0, 0.12) 100%
    );
  }

  .hero__bg--slide1 {
    background-position: center center;
  }

  .hero__bg--slide2 {
    /* Portrait mirror shot — pull right so reflection fills right side, text has room on left */
    background-position: 75% center;
  }

  .hero__bg--slide3 {
    background-position: 70% 20%;
  }

  .hero__bg--slide4 {
    background-position: center center;
  }

  .hero__content {
    padding: 0 4rem;
    max-width: 650px;
  }

  .card-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .columns--2 { grid-template-columns: repeat(2, 1fr); }
  .columns--3 { grid-template-columns: repeat(3, 1fr); }
  .columns--2-1 { grid-template-columns: 2fr 1fr; }
  .columns--1-2 { grid-template-columns: 1fr 2fr; }

  .mm-hero__bg {
    background-position: center center;
  }

  .mm-split {
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
  }

  .mm-split--reverse {
    grid-template-columns: 3fr 2fr;
  }

  .mm-split--reverse .mm-split__image {
    order: 2;
  }

  .mm-split--reverse .mm-split__content {
    order: 1;
  }

  .value-props {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .process {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .about-hero {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .footer__inner {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
  }

  .resource-card {
    min-height: 220px;
    padding: 2rem;
  }

  .resource-card__number {
    font-size: 4rem;
  }

  .service-card {
    padding: 2.5rem;
  }

  .press-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========================================
   Matchmaking Page Overrides
   ======================================== */
.page--matchmaking h4 {
  color: var(--coral-red);
}

.page--matchmaking .footer h4 {
  color: white;
}

.page--matchmaking .checklist li::before {
  background: var(--coral-red);
}

.page--matchmaking .accent-text {
  color: var(--coral-red);
}

.page--matchmaking .divider {
  background: var(--coral-red);
}
