/* ===================================================================
   JENNA COX — SHARED STYLES
   Edit colors / fonts in the :root block below to update everything.
   =================================================================== */

/* ===================================================================
   1. DESIGN TOKENS
   =================================================================== */
:root {
  /* Color — "Mentally Prepared" brand palette */
  --teal:         #2BB7B3;
  --teal-deep:    #1F8F8C;
  --sage:         #A7BFB5;
  --sage-soft:    #C8D6CF;
  --lavender:     #C7B6D6;
  --cream:        #EFEAE4;
  --cream-deep:   #E5DFD7;
  --paper:        #F5F1EB;
  --ink:          #2E2E2E;
  --ink-soft:     #6B6B6B;
  --rule:         rgba(46,46,46,0.12);

  /* Type */
  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --body:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --gut: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4rem, 10vw, 8rem);

  /* Motion */
  --ease: cubic-bezier(.2,.6,.2,1);
}

/* ===================================================================
   2. RESET & BASE
   =================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  font-size: 17px;
  font-feature-settings: "ss01", "ss02";
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Subtle paper grain on whole page */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.25;
  mix-blend-mode: multiply;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.12  0 0 0 0 0.16  0 0 0 0 0.11  0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ===================================================================
   3. TYPOGRAPHY
   =================================================================== */
.kicker {
  font-family: var(--body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--teal);
}
.display {
  font-family: var(--display);
  font-weight: 350;
  font-variation-settings: "SOFT" 50, "opsz" 144;
  letter-spacing: -0.025em;
  line-height: 0.98;
  color: var(--ink);
}
.italic { font-style: italic; font-variation-settings: "SOFT" 100, "opsz" 144; }

h1.display { font-size: clamp(2.75rem, 7.5vw, 6.5rem); }
h2.display { font-size: clamp(2.25rem, 5.5vw, 4.75rem); }
h3.display { font-size: clamp(1.5rem, 2.6vw, 2rem); }

p { margin: 0 0 1.1em; color: var(--ink-soft); }
p.lede { font-size: 1.25rem; line-height: 1.55; color: var(--ink-soft); }

::selection { background: var(--teal); color: var(--cream); }

/* ===================================================================
   4. LAYOUT PRIMITIVES
   =================================================================== */
.wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--gut);
}
.section { padding: var(--section-y) 0; position: relative; }
.rule { display: block; height: 1px; background: var(--rule); width: 100%; margin: 2rem 0; }

/* ===================================================================
   5. NAVIGATION
   =================================================================== */
header.site {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1rem 0;
  transition: all .35s var(--ease);
}
header.site.scrolled {
  background: rgba(239,234,228,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--rule);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.logo {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
}
.logo img {
  display: block;
  height: 56px;
  width: auto;
}
.footer-brand .logo img { height: 140px; }
@media (max-width: 768px) {
  .site .logo img { height: 48px; }
  .footer-brand .logo img { height: 110px; }
}
.logo .amp {
  color: var(--teal);
  font-style: italic;
  font-weight: 300;
  margin: 0 0.05em;
}
.logo .last {
  color: var(--teal);
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "SOFT" 100;
  margin-left: 0.15em;
}
.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 0.25rem 0;
  transition: color .25s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px; background: var(--teal);
  transition: width .35s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--teal); }
.nav-links a.active { font-weight: 600; }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active::after { height: 2px; background: var(--teal); bottom: -3px; }

/* Mobile menu */
.menu-btn {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(46,46,46,0.06);
  transition: background .25s var(--ease);
}
.menu-btn:hover { background: var(--teal); color: var(--cream); }
.menu-btn span {
  display: block;
  width: 18px; height: 1.5px;
  background: currentColor;
  position: relative;
  transition: all .3s var(--ease);
}
.menu-btn span::before,
.menu-btn span::after {
  content: ""; position: absolute; left: 0;
  width: 18px; height: 1.5px;
  background: currentColor;
  transition: all .3s var(--ease);
}
.menu-btn span::before { top: -6px; }
.menu-btn span::after  { top:  6px; }

.mobile-cta { display: none; }

@media (max-width: 940px) {
  .nav-links { display: none; }
  .menu-btn { display: flex; }
  .nav-cta { display: none; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--paper);
    padding: 2rem;
    flex-direction: column;
    gap: 1.25rem;
    border-bottom: 1px solid var(--rule);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1);
    align-items: flex-start;
  }
  .nav-links.open a { font-size: 1.15rem; font-family: var(--display); font-weight: 400; }
  .nav-links.open .mobile-cta {
    display: inline-flex;
    margin-top: 0.5rem;
    background: var(--ink);
    color: var(--cream);
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    font-size: 0.95rem;
  }
}

/* ===================================================================
   6. BUTTONS
   =================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 0.65rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--body);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: all .3s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--teal);
  color: #fff;
}
.btn-primary:hover {
  background: var(--teal-deep);
  transform: translateY(-1px);
  box-shadow: 0 12px 30px -12px rgba(43,183,179,0.5);
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--teal);
  color: var(--teal);
}
.btn-ghost:hover {
  background: var(--teal);
  color: #fff;
}
.btn .arrow { transition: transform .3s var(--ease); display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }

/* ===================================================================
   7. HERO (main landing)
   =================================================================== */
.hero {
  min-height: 100vh;
  padding: 8rem 0 4rem;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-copy .kicker { display: block; margin-bottom: 1.5rem; }
.hero-copy h1 { margin: 0 0 1.5rem; }
.hero-copy h1 .ink-clay { color: var(--teal); font-style: italic; font-variation-settings: "SOFT" 100; }
.hero-copy h1 .underline {
  position: relative;
  display: inline-block;
}
.hero-copy h1 .underline::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.08em;
  height: 0.16em;
  background: var(--teal);
  opacity: 0.6;
  z-index: -1;
}
.hero-copy p.lede { max-width: 30em; margin-bottom: 2rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; }
.hero-meta {
  margin-top: 2.75rem;
  display: flex; gap: 2.5rem; flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.hero-meta-item { display: flex; flex-direction: column; gap: 0.15rem; }
.hero-meta-item strong {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
  font-variation-settings: "SOFT" 80;
  color: var(--ink);
}

.hero-img {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream-deep);
  transform: rotate(1.5deg);
  box-shadow:
    0 1px 0 rgba(0,0,0,0.04),
    0 30px 60px -30px rgba(46,46,46,0.35);
}
.hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.02) saturate(1);
}
.hero-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(46,46,46,0.08) 100%);
  pointer-events: none;
}
.hero-img-tape {
  position: absolute;
  top: -14px; left: 30%;
  width: 90px; height: 28px;
  background: rgba(167,191,181,0.6); /* sage tape */
  transform: rotate(-4deg);
  z-index: 3;
  box-shadow: 0 4px 8px rgba(0,0,0,0.06);
}
.hero-decor {
  position: absolute;
  font-family: var(--display);
  font-style: italic;
  color: var(--teal);
  opacity: 0.16;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}
.hero-decor.amp {
  font-size: 28rem;
  font-weight: 200;
  font-variation-settings: "SOFT" 100;
  bottom: -12rem;
  right: -8rem;
  line-height: 1;
}
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-img { max-width: 420px; margin: 1rem auto 0; transform: rotate(0); }
  .hero-decor.amp { font-size: 18rem; bottom: -6rem; right: -4rem; }
}

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal:nth-child(1) { transition-delay: .05s; }
.reveal:nth-child(2) { transition-delay: .15s; }
.reveal:nth-child(3) { transition-delay: .25s; }
.reveal:nth-child(4) { transition-delay: .35s; }
.reveal:nth-child(5) { transition-delay: .45s; }

/* ===================================================================
   8. PAGE HERO (smaller hero used on inner pages)
   =================================================================== */
.page-hero {
  padding: 9rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}
.page-hero h1.display {
  font-size: clamp(2.5rem, 6vw, 5rem);
}
.page-hero--message .page-hero-grid { grid-template-columns: 1.4fr 0.85fr; align-items: center; }
.page-hero--message h1.display { font-size: clamp(2.75rem, 7vw, 5.75rem); }
.page-hero p.lede { max-width: 36em; margin-top: 1.5rem; }

/* Page badge — prominent identity label at top of inner pages */
.page-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(43,183,179,0.12);
  color: var(--teal-deep);
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.page-badge::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.page-hero-img {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream-deep);
  box-shadow: 0 30px 60px -30px rgba(46,46,46,0.35);
}
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-decor {
  position: absolute;
  font-family: var(--display);
  font-style: italic;
  color: var(--sage-soft);
  opacity: 0.4;
  pointer-events: none;
  user-select: none;
  font-size: 16rem;
  font-weight: 200;
  font-variation-settings: "SOFT" 100;
  top: -3rem; right: -3rem;
  line-height: 1;
}
.crumbs {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
}
.crumbs a { color: var(--ink-soft); transition: color .25s var(--ease); }
.crumbs a:hover { color: var(--teal); }
.crumbs .sep { color: var(--teal); }
@media (max-width: 940px) {
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-img { max-width: 380px; }
  .page-hero-decor { font-size: 10rem; top: -1rem; right: -1rem; }
}

/* ===================================================================
   9. MARQUEE / TRUST BAR
   =================================================================== */
.trust {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 1.4rem 0;
  background: var(--paper);
  position: relative; z-index: 2;
  overflow: hidden;
}
.trust-track {
  display: flex; gap: 4rem;
  animation: scroll 40s linear infinite;
  width: max-content;
}
.trust-item {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.1rem;
  font-variation-settings: "SOFT" 100;
  color: var(--ink-soft);
  white-space: nowrap;
}
.trust-item .dot { color: var(--teal); margin: 0 0.5rem; }
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ===================================================================
   10. SECTION LABELS
   =================================================================== */
.section-label {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2.5rem;
}
.section-label .num {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--teal);
}
.section-label .line {
  flex: 1; height: 1px; background: var(--rule); max-width: 80px;
}
.section-label .label {
  font-family: var(--body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink-soft);
}

/* ===================================================================
   11. SIGNS / "DOES THIS SOUND LIKE YOU"
   =================================================================== */
.signs {
  background: var(--paper);
  position: relative;
}
.signs-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.signs-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 1.25rem;
}
.signs-list li {
  display: grid; grid-template-columns: auto 1fr; gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.signs-list li:last-child { border-bottom: none; }
.signs-list .num {
  font-family: var(--display);
  font-style: italic;
  color: var(--teal);
  font-size: 1.15rem;
  padding-top: 0.15rem;
}
.signs-list p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--ink-soft);
}
@media (max-width: 880px) {
  .signs-grid { grid-template-columns: 1fr; }
}

/* ===================================================================
   12. CARDS
   =================================================================== */
.card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  display: flex; flex-direction: column;
  box-shadow: 0 2px 12px -6px rgba(46,46,46,0.07);
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(43,183,179,0.35);
  box-shadow: 0 30px 60px -30px rgba(46,46,46,0.25);
}
.card .num {
  font-family: var(--display);
  font-style: italic;
  font-size: 2rem;
  color: var(--teal);
  font-weight: 300;
  display: block;
  margin-bottom: 1.5rem;
  line-height: 1;
}
.card h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
  font-variation-settings: "SOFT" 60;
  margin: 0 0 0.75rem;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.card p { margin: 0; font-size: 0.97rem; }
.card .card-link {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.card .card-link .arrow { transition: transform .3s var(--ease); }
.card:hover .card-link .arrow { transform: translateX(4px); }

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.approach-grid--four { grid-template-columns: repeat(2, 1fr); }
.approach { background: var(--cream-deep); }
@media (max-width: 880px) {
  .approach-grid,
  .approach-grid--four { grid-template-columns: 1fr; }
}

/* ===================================================================
   13. ABOUT / EDITORIAL DARK SECTION
   =================================================================== */
.about {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(43,183,179,0.18), transparent 50%),
              radial-gradient(ellipse at bottom left, rgba(167,191,181,0.12), transparent 50%);
  pointer-events: none;
}
.about .section-label .label { color: rgba(239,234,228,0.6); }
.about .section-label .line { background: rgba(239,234,228,0.2); }
.about .section-label .num { color: var(--teal); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  grid-template-areas:
    "photos copy"
    "murphy copy";
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  position: relative;
  z-index: 2;
}
.about-photos {
  grid-area: photos;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.about-photos .ph {
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream-deep);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4);
  aspect-ratio: 4 / 5;
}
.about-photos .ph img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-photos .ph-1 {
  transform: rotate(-2deg);
}
.about-photos .ph-1 img {
  object-position: center 20%;
}
.about-photos .ph-2 {
  margin-top: 3rem;
  transform: rotate(2.5deg);
}
.about-photos .ph-2 img {
  object-position: center 30%;
}

.about-copy { grid-area: copy; }
.about-copy h2 { color: var(--cream); margin-bottom: 1.5rem; }
.about-copy h2 .accent { color: var(--teal); font-style: italic; }
.about-copy p { color: rgba(239,234,228,0.78); font-size: 1.05rem; line-height: 1.7; }
.about-copy p strong { color: var(--cream); font-weight: 600; }

.pull-quote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 350;
  font-variation-settings: "SOFT" 100;
  color: var(--teal);
  line-height: 1.25;
  border-left: 2px solid var(--teal);
  padding-left: 1.5rem;
  margin: 2.5rem 0;
}

@media (max-width: 880px) {
  .about-grid {
    grid-template-columns: 1fr;
    grid-template-areas: none;
  }
  .about-photos, .about-copy, .murphy-block { grid-area: auto; }
  .about-photos {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto 2rem;
  }
  .about-photos .ph-2 { margin-top: 2rem; }
}

/* MURPHY BLOCK — desktop: row 2 col 1 of .about-grid (under Jenna's photos)
   mobile: stacks last after .about-copy via auto-flow */
.murphy-block {
  grid-area: murphy;
  padding: 1.25rem;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(239,234,228,0.14);
  border-radius: 4px;
}
.murphy-photo {
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream-deep);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4);
  transform: rotate(-1.5deg);
  margin-bottom: 1.5rem;
}
.murphy-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.murphy-copy .murphy-kicker {
  display: block;
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.murphy-copy h3 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 350;
  font-variation-settings: "SOFT" 100;
  color: var(--cream);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 0.85rem;
}
.murphy-copy h3 em {
  color: var(--teal);
  font-style: italic;
}
.murphy-copy p {
  color: rgba(239,234,228,0.78);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 880px) {
  .murphy-block {
    grid-area: auto;
    margin-top: 2rem;
  }
}

/* ===================================================================
   14. TESTIMONIALS
   =================================================================== */
.testimonials { background: var(--cream); }
.testimonial-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial {
  background: var(--paper);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  position: relative;
  border: 1px solid var(--rule);
  display: flex; flex-direction: column;
  min-height: 360px;
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: 0.5rem; left: 1.4rem;
  font-family: var(--display);
  font-size: 6rem;
  color: var(--teal);
  opacity: 0.2;
  line-height: 1;
  font-style: italic;
}
.testimonial blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: 1.15rem;
  line-height: 1.5;
  font-weight: 350;
  font-variation-settings: "SOFT" 60;
  color: var(--ink);
  flex: 1;
  position: relative;
  z-index: 1;
}
.testimonial cite {
  display: block;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.testimonial cite .stars { color: var(--teal); margin-right: 0.5rem; letter-spacing: 0.1em; }
@media (max-width: 1024px) { .testimonial-rail { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px)  { .testimonial-rail { grid-template-columns: 1fr; } }

/* ===================================================================
   15. LEAD MAGNET
   =================================================================== */
.lead-magnet {
  background: var(--teal);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.lead-magnet::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,235,200,0.2), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(46,46,46,0.25), transparent 50%);
}
.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative; z-index: 2;
}
/* Inside .lead-magnet (teal bg): override teal-on-teal text to cream-tinted */
.lead-copy .kicker { color: rgba(239,234,228,0.78); }
.lead-copy h2 {
  color: var(--cream);
  margin: 1rem 0 1.25rem;
}
.lead-copy h2 em { color: var(--cream); font-style: italic; }
.lead-copy p { color: rgba(239,234,228,0.85); font-size: 1.1rem; }

.lead-form {
  background: var(--paper);
  padding: 2.5rem;
  border-radius: 4px;
  color: var(--ink);
  box-shadow: 0 30px 60px -25px rgba(0,0,0,0.35);
}
.lead-form h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 400;
  margin: 0 0 0.5rem;
  color: var(--ink);
}
.lead-form p.note { font-size: 0.9rem; color: var(--ink-soft); margin: 0 0 1.5rem; }

.field { display: grid; gap: 0.4rem; margin-bottom: 1rem; }
.field label {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
}
.field input[type="email"],
.field input[type="text"],
.field input[type="tel"],
.field textarea,
.field select {
  appearance: none;
  font: inherit;
  padding: 0.85rem 1rem;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
  width: 100%;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(43,183,179,0.18);
}
.lead-form button {
  width: 100%;
  margin-top: 0.5rem;
  padding: 1rem 1.6rem;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.lead-form button:hover {
  background: var(--teal-deep);
  transform: translateY(-1px);
}
.lead-form .privacy {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin: 1rem 0 0;
  text-align: center;
}
@media (max-width: 880px) {
  .lead-grid { grid-template-columns: 1fr; }
}

/* ===================================================================
   16. CONSULTATION CTA
   =================================================================== */
.consult {
  background: var(--paper);
  text-align: center;
  position: relative;
}
.consult-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.consult h2 { margin: 1rem 0 1.5rem; }
.consult h2 em { color: var(--teal); font-style: italic; }
.consult p { font-size: 1.15rem; max-width: 50ch; margin-left: auto; margin-right: auto; }
.consult-ctas {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  margin-top: 2rem;
}
.consult-decor {
  position: absolute;
  font-family: var(--display);
  font-style: italic;
  font-size: 22rem;
  color: var(--sage);
  opacity: 0.1;
  pointer-events: none;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-weight: 300;
  line-height: 1;
}

/* ===================================================================
   17. FAQ
   =================================================================== */
.faq { background: var(--cream); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.faq h2 { margin: 0 0 1rem; }
.faq h2 em { color: var(--teal); font-style: italic; }
details.faq-item {
  border-top: 1px solid var(--rule);
  padding: 1.5rem 0;
  cursor: pointer;
}
details.faq-item:last-child { border-bottom: 1px solid var(--rule); }
details.faq-item summary {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 2rem;
  list-style: none;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 400;
  font-variation-settings: "SOFT" 60;
  color: var(--ink);
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary .toggle {
  display: inline-block;
  width: 32px; height: 32px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: background .3s var(--ease);
}
details.faq-item summary .toggle::before,
details.faq-item summary .toggle::after {
  content: ""; position: absolute;
  background: var(--ink); transition: all .3s var(--ease);
}
details.faq-item summary .toggle::before {
  top: 50%; left: 25%; right: 25%; height: 1px; transform: translateY(-50%);
}
details.faq-item summary .toggle::after {
  left: 50%; top: 25%; bottom: 25%; width: 1px; transform: translateX(-50%);
}
details[open].faq-item summary .toggle { background: var(--teal); border-color: var(--teal); }
details[open].faq-item summary .toggle::before,
details[open].faq-item summary .toggle::after { background: var(--cream); }
details[open].faq-item summary .toggle::after { transform: translateX(-50%) scaleY(0); }
details.faq-item p {
  margin: 1rem 0 0;
  font-size: 0.98rem;
  color: var(--ink-soft);
  max-width: 60ch;
}
@media (max-width: 880px) { .faq-grid { grid-template-columns: 1fr; } }

/* ===================================================================
   18. FOOTER
   =================================================================== */
footer.site {
  background: var(--ink);
  color: rgba(239,234,228,0.8);
  padding: 5rem 0 2rem;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand .logo { color: var(--cream); }
.footer-brand p {
  color: rgba(239,234,228,0.65);
  font-size: 0.95rem;
  max-width: 36ch;
  margin: 1rem 0 0;
}
.social-links {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.social-links a {
  display: inline-flex;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--ink-soft);
  transition: all .25s var(--ease);
}
.social-links a:hover {
  color: var(--teal);
  background: rgba(43,183,179,0.12);
}
.social-links svg { display: block; }
/* Footer (dark bg) override — keep cream-tinted icons there */
.footer-brand .social-links a { color: rgba(239,234,228,0.6); }
.footer-brand .social-links a:hover { color: var(--teal); background: rgba(43,183,179,0.12); }
/* Big variant — for prominent on-page placement */
.social-links--big a { width: 48px; height: 48px; }
.social-links--big { gap: 0.75rem; }
.footer-col h4 {
  font-family: var(--body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--teal);
  margin: 0 0 1.25rem;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.65rem; }
.footer-col a {
  color: rgba(239,234,228,0.78);
  font-size: 0.95rem;
  transition: color .25s var(--ease);
}
.footer-col a:hover { color: var(--teal); }

.footer-bottom {
  border-top: 1px solid rgba(239,234,228,0.12);
  padding-top: 2rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: 0.82rem;
  color: rgba(239,234,228,0.55);
}
.footer-credentials {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(239,234,228,0.55);
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===================================================================
   19. POPUP / MODAL
   =================================================================== */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(46,46,46,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}
.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.modal {
  background: var(--paper);
  border-radius: 6px;
  width: 100%;
  max-width: 560px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 40px 100px -30px rgba(0,0,0,0.5);
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform .4s var(--ease);
}
.modal-backdrop.open .modal { transform: translateY(0) scale(1); }

.modal.modal-wide { max-width: 880px; }

.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(46,46,46,0.08);
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.modal-close:hover { background: var(--teal); color: var(--cream); transform: rotate(90deg); }
.modal-close svg { width: 16px; height: 16px; }

.modal-pop {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
}
.modal-pop-img {
  background: var(--cream-deep);
  position: relative;
  min-height: 200px;
}
.modal-pop-img img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}
.modal-pop-img .ribbon {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--teal);
  color: var(--cream);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 2px;
}
.modal-pop-content {
  padding: 2.5rem 2rem;
}
.modal-pop-content .kicker { display: block; margin-bottom: 0.8rem; }
.modal-pop-content h3 {
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 400;
  font-variation-settings: "SOFT" 60;
  letter-spacing: -0.015em;
  margin: 0 0 0.75rem;
  color: var(--ink);
  line-height: 1.1;
}
.modal-pop-content h3 em { color: var(--teal); font-style: italic; }
.modal-pop-content p { font-size: 0.95rem; color: var(--ink-soft); }
.modal-pop-content .checks { list-style: none; padding: 0; margin: 0 0 1.25rem; display: grid; gap: 0.5rem; }
.modal-pop-content .checks li {
  display: flex; gap: 0.6rem; align-items: flex-start;
  font-size: 0.92rem; color: var(--ink-soft);
}
.modal-pop-content .checks li::before {
  content: "✓";
  color: var(--teal);
  font-weight: 600;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .modal-pop { grid-template-columns: 1fr; }
  .modal-pop-img { aspect-ratio: 16 / 9; }
}

/* Compact event-waitlist modal — no image, single email field */
.modal.modal-event { max-width: 440px; }
.modal-event-content { padding: 2.75rem 2rem 2rem; }
.modal-event-content .kicker { display: block; margin-bottom: 0.85rem; }
.modal-event-content h3 {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 400;
  font-variation-settings: "SOFT" 60;
  letter-spacing: -0.015em;
  margin: 0 0 0.65rem;
  color: var(--ink);
  line-height: 1.2;
}
.modal-event-content h3 em { color: var(--teal); font-style: italic; }
.modal-event-content > p { font-size: 0.95rem; color: var(--ink-soft); margin: 0 0 1.35rem; }
.modal-event-content form .field { margin-bottom: 0.85rem; }
.modal-event-content form label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}
.modal-event-content form input[type="email"] {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(46,46,46,0.18);
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--cream);
  color: var(--ink);
}
.modal-event-content form input[type="email"]:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(74,123,116,0.15);
}
.modal-event-content form button[type="submit"] {
  width: 100%;
  margin-top: 0.4rem;
  padding: 0.95rem 1.5rem;
  background: var(--teal);
  color: var(--cream);
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background .25s var(--ease);
}
.modal-event-content form button[type="submit"]:hover { background: var(--teal-deep); }
.modal-event-content form button[type="submit"][disabled] { opacity: 0.6; cursor: progress; }
.modal-event-content form .privacy {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin: 0.85rem 0 0;
  text-align: center;
}
.event-waitlist-thanks h4 {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
  font-variation-settings: "SOFT" 60;
  margin: 0.65rem 0 0.6rem;
  color: var(--ink);
}
.event-waitlist-thanks p { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }
.event-waitlist-thanks em { color: var(--teal); font-style: italic; }

/* Scheduler iframe wrapper */
.scheduler-wrap {
  padding: 3rem 2.5rem 2rem;
}
.scheduler-wrap h3 {
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 400;
  margin: 0 0 0.5rem;
  color: var(--ink);
}
.scheduler-wrap p { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 1.5rem; }
.scheduler-frame {
  width: 100%;
  aspect-ratio: 4 / 5;
  border: none;
  border-radius: 4px;
  background: var(--cream);
}
.scheduler-fallback {
  text-align: center;
  padding: 3rem 1rem;
  background: var(--cream);
  border-radius: 4px;
  border: 1px dashed var(--rule);
}
.scheduler-fallback p { font-size: 0.92rem; color: var(--ink-soft); }

/* ===================================================================
   20. FLOATING CTA (mobile)
   =================================================================== */
.float-cta {
  position: fixed;
  bottom: 1.25rem; right: 1.25rem;
  z-index: 40;
  background: var(--teal);
  color: var(--cream);
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  box-shadow: 0 16px 40px -12px rgba(43,183,179,0.6);
  display: none;
  transition: transform .3s var(--ease);
}
.float-cta:hover { transform: translateY(-2px); }
@media (max-width: 940px) {
  .float-cta { display: inline-flex; align-items: center; gap: 0.5rem; }
}

/* ===================================================================
   21. UTILS
   =================================================================== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.fade-up.in { opacity: 1; transform: translateY(0); }

.sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ===================================================================
   22. SERVICES PAGE
   =================================================================== */
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  display: flex; flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(46,46,46,0.25);
}
.service-card .top {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 2rem 2rem 0;
}
.service-card .num {
  font-family: var(--display);
  font-style: italic;
  color: var(--teal);
  font-size: 1.1rem;
}
.service-card .tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--sage);
  padding: 0.35rem 0.7rem;
  border-radius: 2px;
}
.service-card .tag.virtual { background: var(--teal); }
.service-card .tag.in-person { background: var(--ink-soft); }
.service-card .body {
  padding: 1.5rem 2rem 2rem;
  flex: 1;
  display: flex; flex-direction: column;
}
.service-card h3 {
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 400;
  font-variation-settings: "SOFT" 50;
  margin: 0 0 0.85rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.service-card p { font-size: 0.97rem; margin-bottom: 1.5rem; flex: 1; }
.service-card .meta {
  display: flex; flex-wrap: wrap; gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.service-card .meta strong { color: var(--ink); font-weight: 600; }

@media (max-width: 760px) {
  .services-list { grid-template-columns: 1fr; }
}

/* ===================================================================
   23. EVENTS PAGE
   =================================================================== */
.events-grid {
  display: grid; gap: 1.5rem;
  margin-top: 3rem;
}
.event {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 4px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.event:hover {
  transform: translateX(4px);
  box-shadow: -4px 0 0 var(--teal), 0 20px 40px -20px rgba(46,46,46,0.15);
}
.event-date {
  text-align: center;
  padding: 1rem;
  background: var(--cream-deep);
  border-radius: 4px;
}
.event-date .month {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.25rem;
}
.event-date .day {
  display: block;
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 400;
  font-variation-settings: "SOFT" 80;
  line-height: 1;
  color: var(--ink);
}
.event-date .year {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 0.4rem;
  letter-spacing: 0.1em;
}
.event-info h3 {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 400;
  font-variation-settings: "SOFT" 50;
  margin: 0 0 0.5rem;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.event-info .where {
  font-size: 0.85rem;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.event-info p { font-size: 0.97rem; margin: 0; }

.event.featured {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.event.featured:hover { box-shadow: -4px 0 0 var(--teal), 0 20px 40px -20px rgba(0,0,0,0.3); }
.event.featured .event-date { background: rgba(239,234,228,0.1); }
.event.featured .event-date .month { color: var(--teal); }
.event.featured .event-date .day { color: var(--cream); }
.event.featured .event-date .year { color: rgba(239,234,228,0.6); }
.event.featured .event-info h3 { color: var(--cream); }
.event.featured .event-info .where { color: var(--teal); }
.event.featured .event-info p { color: rgba(239,234,228,0.8); }

/* Sage variant — second visual treatment for non-featured events */
.event.event--sage {
  border-left: 4px solid var(--sage);
  background: var(--paper);
}
.event.event--sage .event-date { background: rgba(167,191,181,0.18); }
.event.event--sage .event-date .month { color: var(--teal-deep); }
.event.event--sage:hover { box-shadow: -4px 0 0 var(--sage), 0 20px 40px -20px rgba(46,46,46,0.18); }

/* Outlined / placeholder variant — for upcoming/TBA events */
.event.event--outline {
  background: transparent;
  border: 1px dashed var(--rule);
  box-shadow: none;
}
.event.event--outline .event-date {
  background: transparent;
  border: 1px dashed var(--rule);
}
.event.event--outline .event-info h3 { color: var(--ink-soft); }
.event.event--outline:hover {
  border-color: var(--teal);
  box-shadow: 0 12px 30px -20px rgba(46,46,46,0.12);
}

@media (max-width: 760px) {
  .event {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .event-date {
    display: flex; align-items: center; gap: 1rem; justify-content: flex-start;
    padding: 0.75rem 1rem;
  }
  .event-date .day { font-size: 2rem; display: inline-block; }
  .event-date .month { display: inline-block; margin: 0 0.5rem 0 0; }
  .event-date .year { display: inline-block; margin: 0 0 0 0.5rem; }
}

.events-empty {
  background: var(--paper);
  border: 1px dashed var(--rule);
  border-radius: 4px;
  padding: 3rem;
  text-align: center;
  margin-top: 3rem;
}

/* ===================================================================
   24. SPEAKING PAGE
   =================================================================== */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.topics-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.topic {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 2rem;
  transition: all .3s var(--ease);
}
.topic:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
}
.topic .icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--teal);
  color: var(--cream);
  border-radius: 50%;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}
.topic h3 {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 400;
  margin: 0 0 0.5rem;
  color: var(--ink);
}
.topic p { font-size: 0.93rem; margin: 0; }

.audiences {
  background: var(--cream-deep);
  padding: 2.5rem 2rem;
  border-radius: 4px;
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.audiences h3 {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0 0 0.5rem;
  color: var(--ink);
}
.audiences-list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.audiences-list li {
  font-size: 0.95rem;
  color: var(--ink-soft);
  display: flex; gap: 0.5rem;
}
.audiences-list li::before {
  content: "→"; color: var(--teal); font-weight: 600;
}
@media (max-width: 760px) {
  .topics-grid { grid-template-columns: 1fr; }
  .topics-grid.cols-2 { grid-template-columns: 1fr; }
  .audiences { grid-template-columns: 1fr; }
  .audiences-list { grid-template-columns: 1fr; }
}

.speaking-form-wrap {
  background: var(--ink);
  color: var(--cream);
  padding: var(--section-y) 0;
  position: relative;
}
.speaking-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.speaking-form-grid h2 { color: var(--cream); }
.speaking-form-grid h2 em { color: var(--teal); font-style: italic; }
.speaking-form-grid p { color: rgba(239,234,228,0.8); }
.speaking-form-grid .lead-form { color: var(--ink); }
.speaking-form-grid .field input,
.speaking-form-grid .field select,
.speaking-form-grid .field textarea { background: var(--cream); }
@media (max-width: 880px) {
  .speaking-form-grid { grid-template-columns: 1fr; }
}

/* ===================================================================
   25. SHOP PAGE
   =================================================================== */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.product {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex; flex-direction: column;
}
.product:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(46,46,46,0.2);
}
.product-img {
  aspect-ratio: 4 / 5;
  background: var(--cream-deep);
  position: relative;
  overflow: hidden;
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.product:hover .product-img img { transform: scale(1.04); }
.product-img .badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--teal);
  color: var(--cream);
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.product-info {
  padding: 1.5rem;
  flex: 1;
  display: flex; flex-direction: column;
}
.product-info .label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.product-info h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
  font-variation-settings: "SOFT" 50;
  margin: 0 0 0.4rem;
  color: var(--ink);
}
.product-info p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  flex: 1;
}
.product-info .row {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
}
.product-info .price {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
}
.product-info .add {
  background: var(--ink);
  color: var(--cream);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  text-transform: uppercase;
  transition: background .25s var(--ease);
}
.product-info .add:hover { background: var(--teal); }

@media (max-width: 940px) { .shop-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .shop-grid { grid-template-columns: 1fr; } }

.shop-banner {
  background: var(--sage-soft);
  color: var(--ink);
  padding: 1rem 0;
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 1rem;
}
.shop-banner em { color: var(--teal-deep); font-weight: 500; font-style: normal; }
