/* ============================================================
   KAREN S. WALCH — Design System
   karenwalch.com
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');


/* ============================================================
   TOKENS
   ============================================================ */
:root {
  /* Brand colours */
  --color-primary:       #1A4DB8;
  --color-primary-dark:  #163E96;
  --color-cream:         #F7F4EF;
  --color-white:         #FFFFFF;
  --color-accent:        #A8894A;
  --color-text:          #1A1A1A;
  --color-text-muted:    #5C5C5C;
  --color-border:        #E2DDD6;
  --color-placeholder:   #EDE8E0;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Type scale */
  --text-xs:    0.75rem;
  --text-sm:    0.875rem;
  --text-base:  1rem;
  --text-lg:    1.125rem;
  --text-xl:    1.375rem;
  --text-2xl:   1.75rem;
  --text-3xl:   2.25rem;
  --text-4xl:   3rem;
  --text-5xl:   3.75rem;
  --text-6xl:   4.5rem;

  /* Spacing */
  --space-1:   0.25rem;
  --space-2:   0.5rem;
  --space-3:   0.75rem;
  --space-4:   1rem;
  --space-5:   1.25rem;
  --space-6:   1.5rem;
  --space-8:   2rem;
  --space-10:  2.5rem;
  --space-12:  3rem;
  --space-16:  4rem;
  --space-20:  5rem;
  --space-24:  6rem;
  --space-32:  8rem;

  /* Layout */
  --max-width:     1200px;
  --header-height: 100px;
}


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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-white);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

p {
  margin-bottom: var(--space-4);
}
p:last-child {
  margin-bottom: 0;
}


/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.section {
  padding: var(--space-24) 0;
}

.section--sm {
  padding: var(--space-16) 0;
}

.section--cream  { background-color: var(--color-cream); }
.section--white  { background-color: var(--color-white); }
.section--navy   { background-color: var(--color-primary); color: var(--color-white); }


/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.3;
}

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}

.section-heading {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  color: var(--color-primary);
  margin-bottom: var(--space-6);
}

.section-heading--white {
  color: var(--color-white);
}

.lead {
  font-size: var(--text-lg);
  line-height: 1.75;
  color: var(--color-text-muted);
}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.8rem var(--space-8);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

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

.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

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

.btn-outline-white {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}
.btn-outline-white:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
}


/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
  transition: box-shadow 0.2s;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-8);
  gap: var(--space-8);
}

.site-logo img {
  height: 85px;
  width: auto;
  max-width: 490px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.site-nav a {
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--color-text);
  transition: color 0.2s;
}
.site-nav a:hover {
  color: var(--color-primary);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  transition: all 0.25s;
}

/* Mobile menu overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-height) 0 0 0;
  background-color: var(--color-white);
  z-index: 99;
  padding: var(--space-8);
  flex-direction: column;
  gap: var(--space-6);
  border-top: 1px solid var(--color-border);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-size: var(--text-xl);
  font-family: var(--font-display);
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: var(--space-4);
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-12) 0 var(--space-6);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-16);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.footer-brand {}

.footer-logo-wrap {
  display: inline-block;
  margin-bottom: var(--space-5);
}

.footer-logo-wrap img {
  height: 90px;
  width: auto;
  max-width: 480px;
}

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  margin-bottom: var(--space-6);
}

.footer-social {
  display: flex;
  gap: var(--space-4);
}

.footer-social a {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  transition: opacity 0.2s;
}
.footer-social a:hover { opacity: 0.7; }

.footer-nav-single ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.footer-nav-single ul li a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer-nav-single ul li:first-child a {
  color: var(--color-white);
  font-weight: 600;
}

.footer-nav-single ul li a:hover { color: var(--color-white); }

.footer-bottom {
  max-width: var(--max-width);
  margin: var(--space-8) auto 0;
  padding: var(--space-5) var(--space-8) 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
}


/* ============================================================
   WAVE DIVIDER
   ============================================================ */
.wave {
  line-height: 0;
  overflow: hidden;
  display: block;
}
.wave svg {
  display: block;
  width: 100%;
  height: 60px;
}


/* ============================================================
   HERO — FULL BLEED (interior pages)
   ============================================================ */
.hero-fullbleed {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--color-placeholder);
}

.hero-fullbleed-bg {
  position: absolute;
  inset: 0;
}

.hero-fullbleed-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-fullbleed-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 77, 184, 0.90) 0%,
    rgba(26, 77, 184, 0.45) 45%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

.hero-fullbleed-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-20) var(--space-8);
}

.hero-fullbleed .page-label {
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}

.hero-fullbleed-sub {
  font-size: var(--text-xl);
  color: rgba(255,255,255,0.85);
  margin-top: var(--space-5);
  line-height: 1.5;
  max-width: 560px;
}

/* Wave embedded inside the fullbleed hero — so the photo bleeds all the
   way to the wave edge rather than cutting off above it */
.hero-fullbleed-wave {
  position: absolute;
  bottom: -1px;   /* -1px prevents hairline gap at section join */
  left: 0;
  right: 0;
  z-index: 3;     /* above overlay (z-index 1) and content (z-index 2) */
  line-height: 0;
  pointer-events: none;
}

.hero-fullbleed-wave svg {
  display: block;
  width: 100%;
  height: 70px;
}

.hero-fullbleed h1 {
  font-family: var(--font-display);
  font-size: var(--text-6xl);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 680px;
  margin-bottom: var(--space-8);
}

.hero-fullbleed .hero-buttons {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}


/* ============================================================
   HERO — SPLIT
   ============================================================ */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--header-height));
  background-color: var(--color-white);
  position: relative;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-24) var(--space-16) var(--space-24) var(--space-16);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: var(--text-6xl);
  font-weight: 400;
  line-height: 1.05;
  color: var(--color-primary);
  margin-bottom: var(--space-8);
  letter-spacing: -0.02em;
}

.hero-body {
  font-size: var(--text-lg);
  line-height: 1.75;
  color: var(--color-text-muted);
  max-width: 500px;
  margin-bottom: var(--space-10);
}

.hero-buttons {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  overflow: hidden;
  background-color: var(--color-placeholder);
}

/* Decorative accent line — left edge of hero text */
.hero-content::before {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background-color: var(--color-accent);
  margin-bottom: var(--space-6);
}


/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem-section .container {
  max-width: 760px;
}

.problem-section h2 {
  font-size: var(--text-3xl);
  color: var(--color-primary);
  margin-bottom: var(--space-6);
}

.problem-section p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.75;
}


/* ============================================================
   OFFER / THREE PILLARS
   ============================================================ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-10);
}

.pillar {
  padding-top: var(--space-6);
  border-top: 2px solid var(--color-accent);
}

.pillar-heading {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
  letter-spacing: 0.01em;
}

.pillar p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.75;
}

.pillar .quote-link {
  margin-top: var(--space-6);
  display: inline-flex;
}


/* ============================================================
   ABOUT TEASER / PULL QUOTE
   ============================================================ */
.about-teaser {
  background-color: var(--color-primary);
  padding: var(--space-24) 0;
  text-align: center;
}

.about-teaser .container {
  max-width: 740px;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0.5;
  color: var(--color-accent);
  display: block;
  margin-bottom: var(--space-6);
  opacity: 0.7;
}

.quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-4xl);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: var(--space-8);
}

.quote-body {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: var(--space-8);
}

.quote-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.quote-link:hover { opacity: 0.7; }

.quote-link svg {
  width: 14px;
  height: 14px;
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section h2 {
  font-size: var(--text-3xl);
  color: var(--color-primary);
  margin-bottom: var(--space-12);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-10);
}

.testimonial {
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
}

.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-xl);
  line-height: 1.55;
  color: var(--color-text);
  margin-bottom: var(--space-5);
}

.testimonial-author {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
}


/* ============================================================
   PAGE LABEL — interior page hero wayfinding label
   ============================================================ */
.page-label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}


/* ============================================================
   HERO IMAGE — actual photo (object-fit cover)
   ============================================================ */
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}


/* ============================================================
   BIO SECTION — long-form prose, narrow column
   ============================================================ */
.bio-section .container {
  max-width: 760px;
}

.bio-section p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.8;
}


/* ============================================================
   CREDENTIALS SECTION
   ============================================================ */
.credentials-section h2 {
  font-size: var(--text-3xl);
  color: var(--color-primary);
  margin-bottom: var(--space-10);
}

.credentials-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-16);
  align-items: start;
}

.credentials-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.credentials-list li {
  font-size: var(--text-base);
  color: var(--color-text);
  padding-left: var(--space-8);
  position: relative;
  line-height: 1.6;
}

.credentials-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 18px;
  height: 2px;
  background-color: var(--color-accent);
}


/* ============================================================
   BOOK BLOCK
   ============================================================ */
.book-block {
  background-color: var(--color-cream);
  padding: var(--space-8);
  margin-bottom: var(--space-6);
}

.book-eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: var(--space-5);
}

.book-inner {
  display: flex;
  gap: var(--space-6);
  align-items: flex-start;
}

.book-cover {
  width: 80px;
  flex-shrink: 0;
  border-radius: 2px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.book-details {
  flex: 1;
}

.book-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--color-primary);
  line-height: 1.3;
  margin-bottom: var(--space-2);
}

.book-meta {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: var(--space-4);
}

.book-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.book-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  width: fit-content;
  transition: opacity 0.2s;
}
.book-links a:hover { opacity: 0.6; }

.book-links svg {
  width: 12px;
  height: 12px;
}


/* ============================================================
   DOWNLOAD BLOCK
   ============================================================ */
.download-block {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-6);
}

.download-eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: var(--space-3);
}

.download-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-base);
  color: var(--color-primary);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.download-link:hover { opacity: 0.6; }

.download-link svg {
  width: 14px;
  height: 14px;
}


/* ============================================================
/* ============================================================
   FEATURED IN — logo carousel
   ============================================================ */
.featured-section {
  padding: var(--space-12) 0;
  background-color: var(--color-white);
  overflow: hidden;
}

.featured-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-align: center;
  display: block;
  margin-bottom: var(--space-8);
}

/* Marquee container — fades edges */
.logo-carousel {
  position: relative;
  overflow: hidden;
}

.logo-carousel::before,
.logo-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.logo-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--color-white) 0%, transparent 100%);
}
.logo-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--color-white) 0%, transparent 100%);
}

/* Track — duplicated logos so loop is seamless */
.carousel-track {
  display: flex;
  align-items: center;
  gap: var(--space-16);
  width: max-content;
  animation: marquee-logos 40s linear infinite;
}

.carousel-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-logos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  /* Fixed slot — all logos scale into the same visual frame */
  width: 160px;
  height: 52px;
  flex-shrink: 0;
  opacity: 0.42;
  transition: opacity 0.25s, filter 0.25s;
  filter: grayscale(100%);
}

.logo-item:hover {
  opacity: 0.8;
  filter: grayscale(0%);
}

.logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Text stand-in — replace with <img> tags once logo PNGs are delivered */
.logo-text {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text);
  white-space: nowrap;
}


/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background-color: var(--color-primary);
  padding: var(--space-24) 0;
  text-align: center;
}

.cta-banner .container {
  max-width: 680px;
}

.cta-banner-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-2xl);
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--space-3);
}

.cta-banner-heading {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: var(--space-10);
}

.cta-banner-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-headline   { font-size: var(--text-5xl); }
  .hero-content    { padding: var(--space-16) var(--space-10); }
  .footer-inner    { gap: var(--space-10); }
}

@media (max-width: 768px) {
  /* Header */
  .site-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-image {
    height: 56vw;
    min-height: 260px;
    order: -1;
  }
  .hero-content {
    padding: var(--space-12) var(--space-6);
  }
  .hero-headline { font-size: var(--text-4xl); }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }

  /* Sections */
  .section { padding: var(--space-16) 0; }
  .container { padding: 0 var(--space-6); }

  /* Pillars */
  .pillars-grid { grid-template-columns: 1fr; gap: var(--space-8); }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; gap: var(--space-8); }

  /* Pull quote */
  .quote-text { font-size: var(--text-3xl); }

  /* CTA */
  .cta-banner-heading { font-size: var(--text-3xl); }
  .cta-banner-buttons { flex-direction: column; align-items: center; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: var(--space-10); }
  .footer-bottom { flex-direction: column; gap: var(--space-3); text-align: center; }

  /* Full-bleed hero */
  .hero-fullbleed { min-height: 65vh; align-items: center; }
  .hero-fullbleed h1 { font-size: var(--text-4xl); }
  .hero-fullbleed-content { padding: var(--space-12) var(--space-6); }
  .hero-fullbleed .hero-buttons { flex-direction: column; }
  .hero-fullbleed .hero-buttons .btn { width: 100%; }

  /* Credentials */
  .credentials-grid { grid-template-columns: 1fr; }
  .credentials-section h2 { font-size: var(--text-2xl); }

  .context-panel { padding: var(--space-10) var(--space-6); }
  .context-heading { font-size: var(--text-2xl); }

  /* Logo carousel */
  .featured-label { padding: 0 var(--space-6); }
  .carousel-track { gap: var(--space-8); }
  .logo-item { width: 120px; height: 40px; }

  /* Header + footer logo — scale down for mobile */
  .site-logo img { height: 50px; max-width: 220px; }
  .footer-logo-wrap img { height: 65px; }
}

@media (max-width: 480px) {
  .hero-headline   { font-size: var(--text-3xl); }
  .section-heading { font-size: var(--text-3xl); }
  .quote-text      { font-size: var(--text-2xl); }
  .cta-banner-heading { font-size: var(--text-2xl); }
  .testimonials-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   WORK WITH ME — HERO SPLIT (text left / photo right)
   ============================================================ */
.hero-wim {
  display: grid;
  grid-template-columns: 3fr 2fr;
  min-height: 72vh;
  background-color: var(--color-primary);
  position: relative;  /* needed for inner wave positioning */
}

.hero-wim-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-20) var(--space-16) var(--space-20) var(--space-16);
}

.hero-wim-content h1 {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: var(--space-6);
}

.hero-wim-sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: var(--space-10);
}

.hero-wim-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.hero-wim-nav a {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  transition: opacity 0.2s;
}

.hero-wim-nav a::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background-color: var(--color-accent);
  flex-shrink: 0;
}

.hero-wim-nav a:hover { opacity: 0.7; }

.hero-wim-visual {
  position: relative;
  background-color: rgba(255,255,255,0.07);
  overflow: hidden;
}

.hero-wim-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}


/* ============================================================
   WORK WITH ME — OFFERING SECTIONS
   ============================================================ */
.offering-container {
  max-width: 820px;
}

.offering-section p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.75;
}

.offering-cta {
  margin-top: var(--space-12);
  text-align: center;
}

.offering-section h2 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 400;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: var(--space-7);
}


/* ============================================================
   WORK WITH ME — WHO / FORMAT INFO BOX
   ============================================================ */
.who-format {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  padding: var(--space-8);
  margin: var(--space-10) 0;
}

.who-format-item h4 {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}

.who-format-item p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}


/* ============================================================
   WORK WITH ME — COACHING TESTIMONIALS (2-COL)
   ============================================================ */
.coaching-testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  margin-top: var(--space-8);
}


/* ============================================================
   WORK WITH ME — SIGNATURE TOPICS
   ============================================================ */
.topics-kicker {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-top: var(--space-12);
  margin-bottom: 0;
}

.signature-topics {
  display: flex;
  flex-direction: column;
  margin-top: var(--space-4);
}

.topic-item {
  padding: var(--space-6) 0;
  border-top: 1px solid var(--color-border);
}

.topic-item:last-child {
  border-bottom: 1px solid var(--color-border);
}

.topic-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-xl);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.topic-item p:not(.topic-name) {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
}


/* ============================================================
   WORK WITH ME — CORPORATE SECTION (NAVY)
   ============================================================ */
.corporate-section {
  text-align: center;
}

.corporate-inner {
  max-width: 640px;
  margin: 0 auto;
}

.corporate-section h2 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: var(--space-7);
}

.corporate-section p {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
}


/* ============================================================
   HERO IMAGE — fill panel with photo
   ============================================================ */
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ============================================================
   HERO PHOTO GRADIENT — applies to all hero photo panels
   Fades bottom and left edge of photo into navy background.
   Used on Work with Me split hero; extend to future pages.
   ============================================================ */
.hero-wim-visual {
  position: relative;
}

.hero-wim-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--color-primary) 0%, rgba(26,77,184,0.15) 18%, transparent 38%),
    linear-gradient(to top, rgba(26,77,184,0.75) 0%, rgba(26,77,184,0.15) 35%, transparent 60%);
  pointer-events: none;
}

/* ============================================================
   CORPORATE SECTION — two-column grid layout
   ============================================================ */
.corporate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.corporate-section .corporate-grid h2 {
  margin-bottom: var(--space-7);
}

/* ============================================================
   PRACTICE COMMUNITY — HOW CARD ICONS
   ============================================================ */
.how-icon {
  width: 36px;
  height: 36px;
  color: var(--color-accent);
  margin-bottom: var(--space-6);
  display: block;
  flex-shrink: 0;
}


/* ============================================================
   PRACTICE COMMUNITY — KAREN QUOTE CALLOUT
   ============================================================ */
.karen-callout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  position: relative;
}

.karen-callout-quote {
  background-color: var(--color-primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-20) var(--space-16);
}

.karen-callout-quote .quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(255,255,255,0.2);
  line-height: 1;
  display: block;
  margin-bottom: var(--space-4);
}

.karen-callout-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-2xl);
  color: var(--color-white);
  line-height: 1.45;
  margin-bottom: var(--space-8);
  max-width: 520px;
}

.karen-callout-overline {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: var(--space-3);
}

.karen-callout-author {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.karen-callout-photo {
  position: relative;
  overflow: hidden;
}

.karen-callout-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}


/* ============================================================
   PRACTICE COMMUNITY — HERO (CENTERED NAVY)
   ============================================================ */
.hero-community {
  background-color: var(--color-primary);
  padding: var(--space-24) 0 var(--space-20);
  text-align: center;
}

.hero-community .container {
  max-width: 760px;
}

.hero-community h1 {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: var(--space-6);
}

.hero-community-sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto var(--space-10);
}

.hero-community-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}


/* ============================================================
   PRACTICE COMMUNITY — INTRO
   ============================================================ */
.community-intro .container {
  max-width: 760px;
}

.community-intro p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.8;
}

.community-pull {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-2xl);
  color: var(--color-primary);
  margin-top: var(--space-8);
}


/* ============================================================
   PRACTICE COMMUNITY — HOW IT WORKS
   ============================================================ */
.section--white h2,
.section--cream h2 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  color: var(--color-primary);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-10);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.how-card {
  background-color: var(--color-cream);
  padding: var(--space-8);
}

.how-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1.3;
  margin-bottom: var(--space-5);
}

.how-card p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.75;
}

.how-note {
  font-size: var(--text-sm) !important;
  font-style: italic;
  color: var(--color-accent) !important;
  margin-top: var(--space-5);
}

.how-quote {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-6);
  margin-top: var(--space-6);
}

.how-quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-base);
  color: var(--color-primary);
  line-height: 1.6;
}

.how-quote-author {
  font-size: var(--text-xs);
  font-style: normal;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-top: var(--space-3);
}


/* ============================================================
   PRACTICE COMMUNITY — WHO JOINS
   ============================================================ */
.who-joins-section h2 {
  margin-bottom: var(--space-3);
}

.who-intro {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-10);
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}

.who-card {
  background-color: var(--color-white);
  padding: var(--space-8);
}

.who-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.who-card p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.75;
}

.who-testimonial {
  max-width: 640px;
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-8);
}

.who-testimonial .testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-xl);
  color: var(--color-primary);
  line-height: 1.5;
  margin-bottom: var(--space-4);
}

.who-testimonial .testimonial-author {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}


/* ============================================================
   PRACTICE COMMUNITY — MEMBERSHIP
   ============================================================ */
.membership-section {
  text-align: center;
}

.membership-inner {
  max-width: 560px;
  margin: 0 auto;
}

.membership-inner h2 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-10);
}

.membership-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
}

.price-amount {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: -0.02em;
  line-height: 1;
}

.price-period {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.6);
}

.price-or {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.4);
  font-style: italic;
  padding: 0 var(--space-2);
}

.membership-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
  text-align: left;
}

.membership-includes li {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.8);
  padding-left: var(--space-7);
  position: relative;
  line-height: 1.5;
}

.membership-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 16px;
  height: 1px;
  background-color: var(--color-accent);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: var(--text-base);
}


/* ============================================================
   WORK WITH ME — RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-wim-content { padding: var(--space-16) var(--space-10); }
  .hero-wim-content h1 { font-size: var(--text-4xl); }
  .how-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Work with Me hero */
  .hero-wim { grid-template-columns: 1fr; min-height: auto; }
  .hero-wim-visual { height: 52vw; min-height: 240px; }
  .hero-wim-content { padding: var(--space-12) var(--space-6); }
  .hero-wim-content h1 { font-size: var(--text-4xl); }
  .hero-wim-sub { font-size: var(--text-base); margin-bottom: var(--space-8); }

  /* Work with Me offering sections */
  .corporate-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .offering-section h2 { font-size: var(--text-3xl); }
  .offering-number { font-size: clamp(3.5rem, 14vw, 5rem); }
  .who-format { grid-template-columns: 1fr; }
  .coaching-testimonials { grid-template-columns: 1fr; }
  .corporate-section h2 { font-size: var(--text-3xl); }
  .topic-name { font-size: var(--text-lg); }

  /* Practice Community */
  .hero-community h1 { font-size: var(--text-4xl); }
  .hero-community-buttons { flex-direction: column; align-items: center; }
  .hero-community-buttons .btn { width: 100%; max-width: 320px; }
  .who-grid { grid-template-columns: 1fr; }
  .price-amount { font-size: var(--text-4xl); }
  .membership-inner h2 { font-size: var(--text-3xl); }

  /* Karen quote callout */
  .karen-callout { grid-template-columns: 1fr; }
  .karen-callout-photo { height: 60vw; min-height: 260px; }
  .karen-callout-quote { padding: var(--space-12) var(--space-6); }
  .karen-callout-text { font-size: var(--text-xl); }
}

@media (max-width: 480px) {
  .hero-wim-content h1 { font-size: var(--text-3xl); }
  .offering-section h2 { font-size: var(--text-2xl); }
  .corporate-section h2 { font-size: var(--text-2xl); }
  .hero-community h1 { font-size: var(--text-3xl); }
  .community-pull { font-size: var(--text-xl); }
}


/* ============================================================
   MEDIA & RESOURCES PAGE
   ============================================================ */

/* Shared section spacing */
.media-section h2 {
  margin-bottom: var(--space-10);
}

/* -------------------------------------------------------
   Watch — video grid with inline embeds
------------------------------------------------------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

.video-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

/* Responsive 16:9 iframe wrapper */
.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 4px;
  background-color: var(--color-placeholder);
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-item-title {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  line-height: 1.4;
  margin: 0;
}

/* YouTube channel link */
.media-channel-link {
  text-align: center;
}

.media-channel-link a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-primary);
  text-decoration: none;
  transition: opacity 0.2s;
}

.media-channel-link a svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.media-channel-link a:hover { opacity: 0.7; }
.media-channel-link a:hover svg { transform: translateX(3px); }


/* -------------------------------------------------------
   Book feature — two-column
------------------------------------------------------- */
.book-feature-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-16);
  align-items: center;
}

.book-feature-image img {
  width: 100%;
  display: block;
  border-radius: 3px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  transition: transform 0.3s ease;
}

.book-feature-image img:hover {
  transform: translateY(-3px);
}

.book-feature-content h2 {
  margin-bottom: var(--space-4);
}

.book-feature-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-primary);
  margin-bottom: var(--space-3);
  line-height: 1.4;
}

.book-feature-meta {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  line-height: 1.6;
}

.book-feature-buttons {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}


/* -------------------------------------------------------
   In the press — logo-led three-column grid
------------------------------------------------------- */
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.press-card {
  display: flex;
  flex-direction: column;
  background-color: var(--color-white);
  padding: var(--space-8) var(--space-7);
  text-decoration: none;
  border: 1px solid var(--color-border);
  transition: transform 0.25s, box-shadow 0.25s;
}

.press-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Logo zone — fixed height keeps all cards aligned */
.press-card-logo-wrap {
  height: 44px;
  display: flex;
  align-items: center;
  margin-bottom: var(--space-6);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: var(--space-6);
}

.press-card-logo {
  max-height: 32px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  display: block;
  /* Desaturate logos for consistency; colour on hover */
  filter: grayscale(100%) opacity(0.7);
  transition: filter 0.25s;
}

.press-card:hover .press-card-logo {
  filter: grayscale(0%) opacity(1);
}

/* Body: title + CTA link */
.press-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--space-5);
}

.press-card-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text);
  line-height: 1.45;
  margin: 0;
  flex: 1;
}

.press-card-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-primary);
  transition: gap 0.2s;
}

.press-card-cta svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.press-card:hover .press-card-cta svg {
  transform: translateX(3px);
}


/* -------------------------------------------------------
   Listen — list with icons
------------------------------------------------------- */
.listen-list {
  display: flex;
  flex-direction: column;
}

.listen-item {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  color: var(--color-text);
  transition: color 0.2s;
}

.listen-item:first-child {
  border-top: 1px solid var(--color-border);
}

.listen-item:hover { color: var(--color-primary); }

.listen-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--color-accent);
}

.listen-item-text {
  flex: 1;
}

.listen-item-title {
  font-size: var(--text-base);
  font-weight: 500;
  margin: 0 0 var(--space-1);
}

.listen-item-source {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin: 0;
}

.listen-item-arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.3;
  transition: opacity 0.2s, transform 0.2s;
}

.listen-item:hover .listen-item-arrow {
  opacity: 1;
  transform: translateX(3px);
}


/* -------------------------------------------------------
   Downloads
------------------------------------------------------- */
.downloads-section h2 {
  color: var(--color-white);
  margin-bottom: var(--space-10);
}

.download-featured {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  background-color: rgba(255,255,255,0.07);
  padding: var(--space-8) var(--space-10);
  border-left: 3px solid var(--color-accent);
  margin-bottom: var(--space-10);
}

.download-featured-content {
  flex: 1;
}

.download-featured-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-white);
  margin: 0 0 var(--space-2);
}

.download-featured-note {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  margin: 0;
}

.download-featured .btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  white-space: nowrap;
}

.download-featured .btn svg {
  width: 14px;
  height: 14px;
}

.download-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.download-link-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  font-size: var(--text-sm);
  font-weight: 400;
  transition: color 0.2s;
}

.download-link-item:hover {
  color: var(--color-white);
}

.download-link-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--color-accent);
  opacity: 0.8;
}


/* ============================================================
   MEDIA PAGE — RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .book-feature-grid {
    grid-template-columns: 220px 1fr;
    gap: var(--space-10);
  }
}

@media (max-width: 768px) {
  /* Video grid: stack to 1 col */
  .video-grid { grid-template-columns: 1fr; gap: var(--space-6); }

  /* Book: stack */
  .book-feature-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    text-align: center;
  }
  .book-feature-image {
    max-width: 200px;
    margin: 0 auto;
  }
  .book-feature-buttons { justify-content: center; }
  .book-feature-content h2 { text-align: center; }

  /* Press: stack to 1 col */
  .press-grid { grid-template-columns: 1fr; }

  /* Downloads: stack featured, full-width list */
  .download-featured {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .download-list { grid-template-columns: 1fr; }

  /* Hero subtitle */
  .hero-fullbleed-sub { font-size: var(--text-lg); }
}

@media (max-width: 480px) {
  .download-featured { padding: var(--space-6); }
  .book-feature-title { font-size: var(--text-xl); }
}


/* ============================================================
   SPEAKING & MEDIA PAGE
   ============================================================ */

/* Intro section — large readable body copy */
.speaking-intro {
  max-width: 760px;
  margin: 0 auto;
}
.speaking-intro p {
  font-size: var(--text-lg);
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: var(--space-6);
}
.speaking-intro p:last-child { margin-bottom: 0; }

/* Subtitle under topics h2 */
.topics-kicker-body {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-top: calc(-1 * var(--space-6));
  margin-bottom: var(--space-12);
}

/* ── Speaking History ── */
.speaking-history-section { padding-bottom: var(--space-20); }

.speaking-history-heading {
  color: var(--color-white);
  margin-bottom: var(--space-12);
}

.speaking-history {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.history-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.history-item:nth-child(odd)  { padding-right: var(--space-8); }
.history-item:nth-child(even) { padding-left: var(--space-8); border-left: 1px solid rgba(255,255,255,0.15); }

.history-event {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--color-white);
  font-weight: 400;
  margin: 0;
}

.history-detail {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  margin: 0;
  text-align: right;
}

/* ── Contact Form ── */
.contact-section { padding-bottom: var(--space-24); }

.contact-container {
  max-width: 720px;
  margin: 0 auto;
}

.contact-intro {
  margin-bottom: var(--space-12);
}

.contact-intro h2 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.contact-intro p {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* Form layout */
.contact-form { display: flex; flex-direction: column; gap: var(--space-6); }

.form-row { display: flex; gap: var(--space-6); }
.form-row--two > .form-group { flex: 1; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-group label {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.form-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--color-text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-white);
  border: 1.5px solid #D0CEC9;
  border-radius: 6px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #B0ADA8; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(26,77,184,0.12);
}

/* Select arrow */
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%231A4DB8' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-4) center;
  padding-right: var(--space-10);
  cursor: pointer;
}

.form-group textarea { resize: vertical; min-height: 140px; line-height: 1.6; }

.contact-form .btn { align-self: flex-start; }

/* Honeypot — invisible to humans */
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  tabindex: -1;
}

/* ── Speaking responsive ── */
@media (max-width: 1024px) {
  .speaking-history { grid-template-columns: 1fr; }
  .history-item { grid-template-columns: 1fr auto; }
  .history-item:nth-child(odd)  { padding-right: 0; }
  .history-item:nth-child(even) { padding-left: 0; border-left: none; }
}

@media (max-width: 768px) {
  .form-row--two { flex-direction: column; gap: var(--space-6); }
  .contact-intro h2 { font-size: var(--text-3xl); }
  .speaking-history { grid-template-columns: 1fr; }
  .history-item { grid-template-columns: 1fr; gap: var(--space-1); }
  .history-detail { text-align: left; white-space: normal; }
}

@media (max-width: 480px) {
  .contact-form .btn { width: 100%; text-align: center; }
}


/* ============================================================
   HOME — PRACTICE SPLIT (text left, photo right)
   ============================================================ */
.practice-split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 55vh;
  position: relative;
}

.practice-split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-24) var(--space-16);
  background-color: var(--color-cream);
}

.practice-split-content h2 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: var(--space-8);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.practice-split-content p {
  font-size: var(--text-lg);
  line-height: 1.8;
  color: var(--color-text-muted);
  max-width: 480px;
}

.practice-split-image {
  position: relative;
  overflow: hidden;
}

.practice-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 768px) {
  .practice-split-section {
    grid-template-columns: 1fr;
  }
  .practice-split-content {
    padding: var(--space-16) var(--space-6);
  }
  .practice-split-content h2 { font-size: var(--text-3xl); }
  .practice-split-image {
    height: 60vw;
    min-height: 260px;
  }
}

/* ============================================================
   V1 FEEDBACK ADDITIONS
   ============================================================ */

/* Home page community photo */
.community-photo-section {
  padding-top: 0;
  padding-bottom: var(--space-4);
}

.community-photo-img {
  width: 100%;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

/* Practice Community — Power quote block */
.community-power-quote {
  background-color: var(--color-primary);
  padding: var(--space-12) 0;
  text-align: center;
}

.community-power-quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-4xl);
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
}

@media (max-width: 768px) {
  .community-power-quote-text { font-size: var(--text-3xl); }
}

/* THE POWER OF COMMUNITY label */
.karen-callout-label {
  position: absolute;
  top: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
  z-index: 2;
}

/* Community call photo inside callout */
.community-call-photo-wrap {
  margin-top: var(--space-8);
}

.community-call-photo {
  width: 100%;
  border-radius: 10px;
  display: block;
  opacity: 0.92;
}

/* VARK links list */
.vark-links {
  list-style: none;
  padding: 0;
  margin: var(--space-4) 0 var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.vark-links li a {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  border: 1.5px solid var(--color-primary);
  border-radius: 4px;
  color: var(--color-primary);
  font-weight: 600;
  font-size: var(--text-sm);
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
}

.vark-links li a:hover {
  background: var(--color-primary);
  color: #ffffff;
}

/* First month free note */
.membership-free-trial {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-4);
  letter-spacing: 0.01em;
}

/* Upcoming events section */
.events-intro {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-10);
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  margin-bottom: var(--space-10);
}

.event-item {
  border-left: 3px solid var(--color-primary);
  padding-left: var(--space-6);
}

.event-date {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-1);
}

.event-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.event-detail {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.events-note {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: var(--space-6);
}

.events-note a {
  color: var(--color-primary);
  text-decoration: underline;
}

/* Who joins — community photo */
.who-joins-photo-wrap {
  margin: var(--space-10) 0 var(--space-6);
}

.who-joins-photo {
  width: 100%;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

/* Speaking page — action photo */
.speaking-action-photo {
  width: 100%;
  max-width: 680px;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
}
