/* =========================================================
   Jalonni Weaver — Brand Styles
   Palette from branding kit
   ========================================================= */

@font-face {
  font-family: "quincy-cf";
  src: url("../assets/fonts/quincy-cf/quincy-cf-400.woff2") format("woff2"),
    url("../assets/fonts/quincy-cf/quincy-cf-400.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "quincy-cf";
  src: url("../assets/fonts/quincy-cf/quincy-cf-600.woff2") format("woff2"),
    url("../assets/fonts/quincy-cf/quincy-cf-600.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "quincy-cf";
  src: url("../assets/fonts/quincy-cf/quincy-cf-700.woff2") format("woff2"),
    url("../assets/fonts/quincy-cf/quincy-cf-700.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../assets/fonts/Montserrat/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../assets/fonts/Montserrat/Montserrat-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../assets/fonts/Montserrat/Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --sage: #cacebd;
  --charcoal: #464d48;
  --terracotta: #dd7f5d;
  --dusty-rose: #e0c7ca;
  --beige: #f2f0e9;

  --sage-deep: #b5bba8;
  --rose-soft: #ead6d8;
  --beige-deep: #e8e4d9;
  --cream: #faf8f4;
  --khaki: #a8b0a0;
  --white: #ffffff;

  --text: var(--charcoal);
  --text-muted: rgba(70, 77, 72, 0.72);
  --text-on-dark: var(--beige);

  --font-display: quincy-cf, serif;
  --font-body: "Montserrat", system-ui, sans-serif;

  --space-xs: 0.65rem;
  --space-sm: 1.25rem;
  --space-md: 2.5rem;
  --space-lg: 4.5rem;
  --space-xl: 9rem;
  --space-2xl: 12rem;

  --nav-h: 5rem;
  --radius: 0.25rem;
  --radius-lg: 0.75rem;
  --max: 90rem; /* ~1440px — wider, not ultra-wide */
  --max-narrow: 46rem;
  --gutter: clamp(1.5rem, 4vw, 3.5rem);

  --section-radius: 2rem;
  --section-overlap: 2.5rem;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  /* Shared expand / collapse (FAQ, read more, ways cards, etc.) */
  --expand-duration: 0.75s;
  --expand-fade: 0.55s;
  --expand-move: 0.7s;
  --expand-delay: 0.08s;
  /* Shared hover motion — a touch slower for a softer feel */
  --hover-duration: 0.75s;
  --hover-duration-fast: 0.55s;
  /* Scroll / page reveals — elegant, snappier than the hero */
  --reveal-duration: 1.05s;
  --reveal-stagger: 0.11s;
  --shadow-soft: 0 12px 40px rgba(70, 77, 72, 0.08);
  --shadow-btn: 0 4px 14px rgba(70, 77, 72, 0.12),
    0 1px 3px rgba(70, 77, 72, 0.08);
  --shadow-btn-hover: 0 10px 28px rgba(70, 77, 72, 0.16),
    0 2px 6px rgba(70, 77, 72, 0.1);
  --shadow-card: 0 1px 2px rgba(70, 77, 72, 0.04),
    0 8px 24px rgba(70, 77, 72, 0.07), 0 20px 48px rgba(70, 77, 72, 0.06);
  --shadow-card-lift: 0 4px 12px rgba(70, 77, 72, 0.06),
    0 18px 40px rgba(70, 77, 72, 0.1), 0 32px 64px rgba(70, 77, 72, 0.08);
  --shadow-layer: 0 24px 60px rgba(70, 77, 72, 0.12);

  --motif-orng: url("../assets/patterns/bg motif orng.png");
  --motif-khaki: url("../assets/patterns/bg motif_orange 2 for khaki bg.png");
  --motif-white: url("../assets/patterns/bg motif_white.png");
  --pattern-pink: url("../assets/patterns/pattern_pink.png");
  --pattern-olive: url("../assets/patterns/pattern_olive.png");

  /* Flatten logos to silhouette, then tint to brand khaki */
  --logo-khaki-filter: brightness(0) saturate(100%) invert(72%) sepia(12%)
    saturate(380%) hue-rotate(46deg) brightness(92%) contrast(86%);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--charcoal) var(--beige-deep);
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: -0.02em;
  color: var(--text);
  background: var(--beige);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
  position: relative;
}

/* Match last section so footer rounded corners don’t flash beige */
body.page-about {
  background: var(--sage);
}

::selection {
  background: var(--charcoal);
  color: var(--beige);
}

::-moz-selection {
  background: var(--charcoal);
  color: var(--beige);
}

/* Scrollbar — charcoal / dark green */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--beige-deep);
}

::-webkit-scrollbar-thumb {
  background: var(--charcoal);
  border-radius: 999px;
  border: 2px solid var(--beige-deep);
}

::-webkit-scrollbar-thumb:hover {
  background: #3a403c;
}

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

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

ul {
  list-style: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* ---------- Typography ---------- */

h1,
h2,
h3,
h4,
.display {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--charcoal);
}

h1,
.display-xl {
  font-size: clamp(3rem, 6.5vw, 5.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

h2 {
  font-size: clamp(2.25rem, 4.2vw, 3.5rem);
  letter-spacing: -0.035em;
  line-height: 1;
}

h3 {
  font-size: clamp(1.55rem, 2.5vw, 2.1rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
}

/* Highlight / emphasis in Quincy Bold Italic */
em,
i,
.highlight {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: var(--space-sm);
}

.lede {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.75;
  letter-spacing: -0.02em;
  color: var(--text-muted);
  max-width: 40rem;
}

.lede--flush {
  max-width: none;
  margin-bottom: var(--space-md);
}

.muted {
  color: var(--text-muted);
  letter-spacing: -0.02em;
}

.text-accent {
  color: var(--sage-deep);
}

/* ---------- Layout ---------- */

.container {
  width: min(100% - (var(--gutter) * 2), var(--max));
  margin-inline: auto;
}

.container--narrow {
  width: min(100% - (var(--gutter) * 2), var(--max-narrow));
  margin-inline: auto;
}

.section {
  padding: var(--space-xl) 0;
  position: relative;
  isolation: isolate;
}

.section--tight {
  padding: calc(var(--space-xl) * 0.78) 0;
}

/* Opt-in rounded overlap — use sparingly between contrasting blocks */
.section--lift,
.cta-band--lift,
.receipts.section--lift {
  margin-top: calc(var(--section-overlap) * -1);
  padding-top: calc(var(--space-xl) + var(--section-overlap));
  border-radius: var(--section-radius) var(--section-radius) 0 0;
  box-shadow: 0 -14px 40px rgba(70, 77, 72, 0.07);
  z-index: 2;
}

.cta-band.cta-band--lift {
  padding-top: calc(var(--space-2xl) + var(--section-overlap));
}

.receipts.section--lift {
  padding-top: calc(var(--space-lg) + var(--section-overlap));
}

@media (min-width: 900px) {
  :root {
    --section-overlap: 3.25rem;
    --section-radius: 2.25rem;
  }
}

.section--beige {
  background: var(--beige);
}

.section--panel {
  position: relative;
  z-index: 3;
  /* Between full-bleed and content max — wider than body, not edge-to-edge */
  width: min(100% - (var(--gutter) * 2), calc(var(--max) + 12rem));
  margin: var(--space-xl) auto 0;
  padding: calc(var(--space-xl) * 0.85) 0;
  border-radius: clamp(1.25rem, 2.5vw, var(--section-radius));
  box-shadow: var(--shadow-card-lift);
  border: 1px solid rgba(70, 77, 72, 0.06);
}

.section--panel > .container {
  width: min(100% - (var(--gutter) * 2), var(--max));
}

.section--panel .section-header {
  margin-bottom: var(--space-md);
}

.section--panel .split--panel {
  align-items: start;
}

@media (min-width: 900px) {
  .section--panel .panel-photo {
    margin-top: 0;
    align-self: start;
    min-height: 0;
    height: fit-content;
    background: transparent;
  }

  .section--panel .panel-photo img {
    height: auto;
    min-height: 0;
    aspect-ratio: 5 / 6;
    max-height: 36rem;
    object-fit: cover;
    object-position: left top;
  }
}

.section--sage {
  background: var(--sage);
}

/* Pull sage up so green shows by mid-height of the panel above */
.section--sage.section--rise {
  position: relative;
  z-index: 1;
  margin-top: clamp(-16rem, -32vh, -11rem);
  padding-top: calc(var(--space-xl) + clamp(12rem, 26vh, 16rem));
  padding-bottom: calc(var(--space-xl) * 1.5);
}

.section--rose {
  background: var(--dusty-rose);
}

.section--cream {
  background: var(--cream);
}

/* Half sage / half cream — sits between What you'll learn and Downloadables */
.section--bridge {
  padding: var(--space-lg) 0;
  background: linear-gradient(
    to bottom,
    var(--sage) 0%,
    var(--sage) 50%,
    var(--cream) 50%,
    var(--cream) 100%
  );
}

.bridge-panel {
  width: min(100% - (var(--gutter) * 2), calc(var(--max) + 4rem));
  margin-inline: auto;
  padding: clamp(2rem, 4vw, 3.25rem) clamp(1.5rem, 4vw, 3rem) 0;
  background: var(--beige);
  border-radius: clamp(1.25rem, 2.5vw, var(--section-radius));
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(70, 77, 72, 0.04);
  overflow: hidden;
}

.bridge-panel .split {
  align-items: stretch;
}

.bridge-panel .prose {
  max-width: none;
  padding-bottom: clamp(2rem, 4vw, 3.25rem);
  padding-left: clamp(0.75rem, 2vw, 1.25rem);
  align-self: center;
}

@media (min-width: 900px) {
  .bridge-panel .prose {
    padding-left: 1.25cm;
  }
}

.bridge-panel .prose h2 {
  margin-bottom: var(--space-md);
}

.bridge-panel .prose p {
  color: var(--text-muted);
}

.bridge-panel .btn-group {
  justify-content: flex-start;
}

.bridge-panel__media {
  margin: 0;
  align-self: end;
}

.bridge-panel__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center bottom;
}

.section--sage:has(+ .section--bridge) {
  padding-bottom: var(--space-lg);
}

.section--bridge + .section--cream {
  padding-top: var(--space-lg);
}

/* Partners panel sits on the hero (beige) → intro (cream) seam */
.section--partners-bridge {
  position: relative;
  z-index: 3;
  padding: 0;
  background: linear-gradient(
    to bottom,
    var(--beige) 0%,
    var(--beige) 50%,
    var(--cream) 50%,
    var(--cream) 100%
  );
}

.page-hero:has(+ .section--partners-bridge) {
  padding-bottom: calc(var(--space-lg) * 0.55);
}

.section--partners-bridge + .section--cream {
  padding-top: calc(var(--space-lg) * 0.55);
}

/* Speaking: same bridge pill, hero (beige) → stages (sage) */
.section--partners-bridge.section--bridge-to-sage {
  background: linear-gradient(
    to bottom,
    var(--beige) 0%,
    var(--beige) 50%,
    var(--sage) 50%,
    var(--sage) 100%
  );
}

.section--partners-bridge + .section--sage {
  padding-top: calc(var(--space-lg) * 1.15);
}

.bridge-panel--partners {
  padding: clamp(2rem, 4vw, 3.25rem) clamp(1.5rem, 4vw, 3rem);
  margin-block: 0;
}

.speak-stat-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(1.25rem, 3vw, 2rem) clamp(1.5rem, 4vw, 3rem);
  margin: 0;
  padding: 0;
  width: 100%;
}

.speak-stat-row .receipt {
  flex: 0 1 auto;
  min-width: 6.5rem;
  text-align: center;
}

.speak-stat-row .receipt strong {
  color: var(--terracotta);
  margin-bottom: 0.45rem;
}

.speak-stat-row .receipt span {
  color: var(--text-muted);
  font-size: clamp(0.88rem, 1.05vw, 0.98rem);
  line-height: 1.4;
}

.bridge-panel--partners .section-header {
  margin-bottom: var(--space-md);
  max-width: none;
}

.bridge-panel--partners .logo-marquee--partners {
  margin: 0;
  padding: 0;
}

.logo-marquee--partners .logo-marquee__group {
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 1.75rem) clamp(1.25rem, 3vw, 2.25rem);
  padding-inline: 0;
}

@media (min-width: 800px) {
  .logo-marquee--partners .logo-marquee__group {
    width: 100%;
  }
}

.logo-marquee--partners .logo-mark {
  height: clamp(1.5rem, 2.4vw, 2rem);
  max-height: 2rem;
  max-width: 7.5rem;
  opacity: 0.92;
  filter: var(--logo-khaki-filter);
  transition: opacity var(--hover-duration-fast) var(--ease),
    filter var(--hover-duration-fast) var(--ease),
    transform var(--hover-duration) var(--ease-out);
}

.logo-marquee--partners .logo-mark[src*="stanley"] {
  height: clamp(1.65rem, 2.6vw, 2.15rem);
  max-height: 2.15rem;
}

.logo-marquee--partners .logo-mark:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* Partners marquee: scroll strip on mobile only (desktop stays wrapped) */
@media (max-width: 799px) {
  .logo-marquee--partners .logo-marquee__track {
    animation-duration: 34s;
  }

  .logo-marquee--partners .logo-marquee__group {
    justify-content: flex-start;
    gap: 1.75rem;
    padding-inline: 0.875rem;
  }

  .logo-marquee--partners .logo-mark {
    height: 1.35rem;
    max-height: 1.35rem;
    max-width: 6.5rem;
  }

  .logo-marquee--partners .logo-mark[src*="stanley"] {
    height: 1.5rem;
    max-height: 1.5rem;
  }

  .logo-marquee--partners .logo-mark:hover {
    transform: none;
  }
}

/* Partnerships intro — copy + photo placeholders */
.section--partner-intro {
  padding-block: calc(var(--space-xl) * 0.78 * 1.2);
}

@media (min-width: 900px) {
  .section--partner-intro {
    padding-block: calc(var(--space-xl) * 0.78 * 1.44);
  }
}

.section--audience {
  padding-block: calc(var(--space-xl) * 1.2);
}

.partner-intro {
  display: grid;
  gap: var(--space-md);
  align-items: start;
}

.partner-intro__copy .eyebrow {
  margin-bottom: var(--space-sm);
}

.partner-intro__copy h2 {
  margin-bottom: var(--space-md);
  max-width: 18ch;
}

.partner-intro__copy .prose {
  max-width: 38rem;
}

.partner-intro__photos {
  margin: 0;
  width: 100%;
}

.partner-intro__photos img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: contain;
}

@media (min-width: 900px) {
  .partner-intro {
    grid-template-columns: minmax(0, 1.1fr) minmax(16rem, 0.9fr);
    gap: clamp(2.5rem, 5vw, 4.5rem);
    align-items: center;
  }
}

.section--charcoal {
  background: var(--charcoal);
  color: var(--text-on-dark);
}

.section--charcoal h1,
.section--charcoal h2,
.section--charcoal h3,
.section--charcoal .display {
  color: var(--text-on-dark);
}

.section--charcoal .muted,
.section--charcoal .lede {
  color: rgba(242, 240, 233, 0.72);
}

.section-header {
  max-width: 42rem;
  margin-bottom: var(--space-lg);
}

.section-header--center {
  text-align: center;
  margin-inline: auto;
}

.section-header .lede {
  margin-top: var(--space-md);
}

.split {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6.5rem);
  }

  .split--reverse > :first-child {
    order: 2;
  }
}

.panel-photo {
  margin: 0;
  border-radius: clamp(0.85rem, 1.5vw, 1.25rem);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--beige-deep);
}

.panel-photo img {
  width: 100%;
  height: 100%;
  max-width: none;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  object-position: left center;
  display: block;
}

@media (min-width: 900px) {
  .panel-photo {
    min-height: 100%;
  }

  .panel-photo img {
    aspect-ratio: auto;
    min-height: 28rem;
  }
}

/* About intro — main portrait */
.about-photos {
  position: relative;
}

.about-photos__main {
  width: 100%;
  box-shadow: 0 14px 36px rgba(45, 42, 36, 0.18), 0 4px 12px rgba(45, 42, 36, 0.1);
}

.about-photos__main img {
  object-position: center top;
}

@media (max-width: 899px) {
  .about-photos__main img {
    aspect-ratio: 4 / 5;
    object-position: center 8%;
  }
}

.prose .read-more {
  margin-bottom: var(--space-sm);
}

.prose .read-more .btn-group,
.prose .read-more + .btn-group {
  margin-top: 1.25rem;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  position: relative;
  transition: transform var(--hover-duration-fast) var(--ease-out),
    background var(--hover-duration-fast) var(--ease),
    color var(--hover-duration-fast) var(--ease),
    border-color var(--hover-duration-fast) var(--ease),
    box-shadow var(--hover-duration-fast) var(--ease-out);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:active {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--terracotta);
  color: var(--cream);
  box-shadow: var(--shadow-btn), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn--primary:hover {
  background: #d06f4d;
  box-shadow: var(--shadow-btn-hover), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn--secondary {
  background: rgba(250, 248, 244, 0.7);
  color: var(--charcoal);
  border: 1.5px solid rgba(70, 77, 72, 0.35);
  box-shadow: var(--shadow-btn);
  backdrop-filter: blur(8px);
}

.btn--secondary:hover {
  background: var(--charcoal);
  color: var(--beige);
  border-color: var(--charcoal);
  box-shadow: var(--shadow-btn-hover);
}

.btn--ghost {
  background: transparent;
  color: var(--charcoal);
  padding-inline: 0.25rem;
  border-bottom: 1px solid transparent;
  box-shadow: none;
}

.btn--ghost:hover {
  border-bottom-color: var(--terracotta);
  color: var(--terracotta);
  transform: none;
  box-shadow: none;
}

.btn--light {
  background: var(--beige);
  color: var(--charcoal);
  box-shadow: var(--shadow-btn);
}

.btn--light:hover {
  background: var(--white);
  box-shadow: var(--shadow-btn-hover);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: var(--space-md);
}

.btn-group--center {
  justify-content: center;
}

/* ---------- Header / Nav ---------- */

.site-header {
  position: fixed;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 100;
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
  height: auto;
  min-height: 3.75rem;
  padding: 0.35rem 0.85rem;
  background: rgba(250, 248, 244, 0.52);
  backdrop-filter: blur(22px) saturate(1.35);
  -webkit-backdrop-filter: blur(22px) saturate(1.35);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 0.65rem;
  box-shadow: 0 10px 40px rgba(70, 77, 72, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.35) inset;
  transition: transform 0.45s var(--ease-out), opacity 0.35s var(--ease),
    background 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
  will-change: transform, opacity;
}

.site-header.is-scrolled {
  background: rgba(250, 248, 244, 0.72);
  box-shadow: 0 14px 44px rgba(70, 77, 72, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.4) inset;
  border-color: rgba(255, 255, 255, 0.55);
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 1.75rem));
  opacity: 0;
  pointer-events: none;
}

.site-header.is-nav-open {
  transform: none;
  opacity: 1;
  pointer-events: auto;
  background: rgba(250, 248, 244, 0.92);
}

.nav {
  min-height: 3.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: 0;
}

.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav__logo img {
  height: 1.85rem;
  width: auto;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 1.65rem;
}

.nav__links a {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  padding-block: 0.35rem;
  transition: color 0.25s var(--ease);
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--terracotta);
}

.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav__cta {
  display: none;
}

.nav__cta.btn {
  padding: 0.7rem 1.15rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.nav__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-left: auto;
  gap: 6px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.55rem;
  z-index: 110;
  position: relative;
  border-radius: 0.4rem;
  background: transparent;
  color: var(--charcoal);
  -webkit-tap-highlight-color: transparent;
}

.nav__toggle span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 1px;
  background: currentColor;
  transition: transform 0.35s var(--ease), opacity 0.25s ease;
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: min(100%, 28rem);
  max-width: 100%;
  background: rgba(242, 240, 233, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl) var(--space-md);
  transform: translateX(100%);
  transition: transform 0.45s var(--ease), visibility 0.45s;
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
  overflow-x: hidden;
}

.nav-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.nav-drawer ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nav-drawer a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-drawer .btn {
  margin-top: var(--space-md);
  align-self: flex-start;
}

.nav-drawer__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding-block: 0.7rem;
  padding-inline: 0.85rem 1.15rem;
}

.nav-drawer__cta img {
  display: block;
  height: 2.1rem;
  width: auto;
  flex-shrink: 0;
}

.nav-drawer__cta span {
  line-height: 1.2;
}

@media (min-width: 980px) {
  .nav__links,
  .nav__cta {
    display: flex;
  }

  .nav__toggle,
  .nav-drawer {
    display: none !important;
  }

  .site-header {
    top: 1.25rem;
    padding: 0.4rem 1rem 0.4rem 1.25rem;
  }
}

@media (max-width: 979px) {
  .nav__toggle {
    display: inline-flex !important;
  }

  .nav__links,
  .nav__cta {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header {
    transition: none;
  }

  .site-header.is-hidden {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
}

/* ---------- Hero ---------- */

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  position: relative;
  overflow: hidden;
  background: var(--beige);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__atmosphere {
  position: absolute;
  inset: 0;
  background: var(--beige);
  animation: hero-bg-swipe 1.01s var(--ease-out) both;
}

.hero__atmosphere::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--motif-orng) center 28% / min(1500px, 135%) no-repeat;
  opacity: 0.28;
  pointer-events: none;
  animation: hero-motif-drift 1.43s var(--ease-out) 0.1s both;
}

.hero__portrait {
  position: absolute;
  left: 64%;
  bottom: clamp(9rem, 22vh, 15rem);
  transform: translateX(-50%);
  height: clamp(32rem, 90vh, 67rem);
  width: auto;
  max-width: min(115vw, 55rem);
  object-fit: contain;
  object-position: center bottom;
  pointer-events: none;
  user-select: none;
  animation: hero-fade 2.34s var(--ease-out) 0.29s both;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(242, 240, 233, 0.97) 0%,
    rgba(242, 240, 233, 0.72) 22%,
    rgba(242, 240, 233, 0.2) 42%,
    transparent 62%
  );
  pointer-events: none;
  animation: hero-fade 1.04s var(--ease) 0.13s both;
}

.hero__stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(100% - (var(--gutter) * 2), var(--max));
  margin-inline: auto;
  padding: 6.5rem 0 2.5rem;
  min-height: 100vh;
  min-height: 100dvh;
}

.hero__bottom {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.15rem;
  width: 100%;
}

.hero__wordmark {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0.06em 0 0.2em 0.12em;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: normal;
  font-size: clamp(3.25rem, 14.5vw, 11rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
  text-transform: lowercase;
  color: var(--charcoal);
  white-space: nowrap;
  overflow: visible;
}

/* Soft right fade — overlay, does not clip glyphs */
.hero__wordmark::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: min(38%, 18rem);
  background: linear-gradient(
    to right,
    rgba(242, 240, 233, 0),
    rgba(242, 240, 233, 0.55) 45%,
    rgba(242, 240, 233, 0.94)
  );
  pointer-events: none;
}

.hero__wordmark em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.055em;
  color: inherit;
}

.hero__roles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.35rem;
  margin: 0 0 1.15rem;
  font-family: var(--font-body);
  font-size: clamp(0.7rem, 1.1vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.hero__roles span {
  position: relative;
}

.hero__roles span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -0.75rem;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--terracotta);
  transform: translateY(-50%);
}

.hero__seen {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(70, 77, 72, 0.12);
}

.hero__seen-label {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.25rem 1.5rem;
  width: 100%;
  margin-top: 1.15rem;
  padding-top: 0.7rem;
}

.hero__stats .receipt {
  flex: 0 1 auto;
  min-width: 0;
}

.hero__stats .receipt strong {
  color: var(--terracotta);
  font-weight: 700;
  font-size: clamp(2.035rem, 3.3vw, 2.86rem);
}

.hero__stats .receipt span {
  color: var(--text-muted);
  font-size: clamp(0.88rem, 1.05vw, 0.98rem);
  line-height: 1.4;
}

@media (min-width: 800px) {
  .hero__stats {
    flex-wrap: nowrap;
    gap: 1.5rem;
  }

  .hero__stage {
    padding-bottom: 3rem;
  }

  .hero__bottom {
    gap: 1.35rem;
  }

  .hero__portrait {
    top: 6.75rem;
    bottom: clamp(10rem, 20vh, 14rem);
    height: auto;
    max-height: none;
    max-width: min(83vw, 60rem);
    object-position: center bottom;
  }
}

/* Mobile hero + layout — stacked portrait, no text overlap (desktop untouched) */
@media (max-width: 799px) {
  :root {
    --space-md: 1.75rem;
    --space-lg: 2.85rem;
    --space-xl: 4.75rem;
    --space-2xl: 5.75rem;
    --gutter: 1.25rem;
    --section-overlap: 1.5rem;
    --section-radius: 1.5rem;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    overflow: hidden;
  }

  .hero__media {
    position: relative;
    inset: auto;
    width: 100%;
    height: clamp(25rem, 64vh, 31rem);
    flex-shrink: 0;
    overflow: hidden;
  }

  .hero__atmosphere::before {
    background-position: center 18%;
    background-size: min(1100px, 155%);
    opacity: 0.2;
  }

  .hero__portrait {
    left: 50%;
    top: 5.35rem;
    bottom: auto;
    transform: translateX(calc(-50% + 4%)) scale(1.4);
    transform-origin: center top;
    height: calc(100% - 4.1rem);
    max-width: min(94vw, 25.5rem);
    object-position: center 5%;
  }

  .hero__overlay {
    background: linear-gradient(
      to top,
      rgba(242, 240, 233, 1) 0%,
      rgba(242, 240, 233, 0.78) 18%,
      rgba(242, 240, 233, 0.2) 42%,
      transparent 64%
    );
  }

  .hero__stage {
    min-height: 0;
    padding: 0.85rem 0 3rem;
    justify-content: flex-start;
  }

  .hero__bottom {
    gap: 1.15rem;
  }

  .hero__roles {
    margin: 0;
    gap: 0.4rem 1rem;
    font-size: 0.64rem;
    letter-spacing: 0.12em;
  }

  .hero__roles span:not(:last-child)::after {
    right: -0.6rem;
  }

  h1,
  .display-xl {
    font-size: calc(1.15 * clamp(3rem, 6.5vw, 5.25rem));
  }

  .hero__wordmark {
    white-space: normal;
    font-size: calc(1.15 * clamp(2.65rem, 12vw, 3.4rem));
    line-height: 0.98;
    padding: 0.02em 0 0.06em;
  }

  .hero__wordmark::after {
    width: min(28%, 6.5rem);
    opacity: 0.85;
  }

  .hero__seen {
    margin-top: 0.15rem;
    padding-top: 1.15rem;
    gap: 1.35rem;
  }

  .logo-marquee {
    margin-top: 0.15rem;
  }

  .logo-marquee__group {
    gap: 1.75rem;
    padding-inline: 0.875rem;
  }

  .logo-marquee .logo-mark {
    height: 18px;
    max-height: 18px;
    max-width: 96px;
  }

  .logo-marquee .logo-mark[src*="forbes"] {
    height: calc(18px * 0.95);
    max-height: calc(18px * 0.95);
  }

  .logo-marquee .logo-mark[src*="usa-today"] {
    height: calc(18px * 1.2);
    max-height: calc(18px * 1.2);
    max-width: calc(96px * 1.2);
  }

  .logo-marquee .logo-mark[src*="linkedin"] {
    height: calc(18px * 1.25);
    max-height: calc(18px * 1.25);
    max-width: calc(96px * 1.25);
  }

  .logo-marquee .logo-mark[src*="tedx"] {
    height: calc(18px * 2);
    max-height: calc(18px * 2);
    max-width: calc(96px * 2);
  }

  .hero__stats {
    margin-top: 1.15rem;
    padding-top: 1.15rem;
    gap: 1.35rem 1rem;
  }

  .hero__stats .receipt {
    flex: 1 1 calc(50% - 0.5rem);
  }

  .hero__stats .receipt strong {
    font-size: clamp(1.5rem, 6.8vw, 1.8rem);
  }

  .hero__stats .receipt span {
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .section--panel {
    margin-top: var(--space-md);
    padding: var(--space-md) 0;
  }

  .page-hero {
    padding: calc(var(--nav-h) + 1.35rem) 0 var(--space-sm);
  }

  .page-hero + .section,
  .page-hero + .section.section--tight {
    padding-top: var(--space-sm);
  }

  .page-hero + .section.section--lift {
    padding-top: calc(var(--space-sm) + var(--section-overlap));
  }

  .page-hero h1 {
    font-size: calc(1.15 * clamp(2.15rem, 8.5vw, 2.85rem));
    line-height: 1.08;
  }

  .cta-band {
    padding: var(--space-xl) 0;
  }

  .cta-band__logo {
    height: 4.25rem;
  }

  .cta-band--rose-panel .cta-band__logo,
  .cta-band--rose.cta-band--lift .cta-band__logo {
    height: calc(5.5rem * 3.2 * 0.85);
  }

  .ways-card {
    min-height: 20rem;
  }

  .tl-photo {
    border-radius: 0.75rem;
  }

  .recognition-layout,
  .timeline-layout {
    gap: var(--space-md);
  }

  .btn-group {
    gap: 0.75rem;
  }

  .btn-group .btn {
    flex: 1 1 auto;
    min-width: min(100%, 11rem);
  }

  .section--sage.section--rise {
    margin-top: clamp(-6rem, -14vh, -3.5rem);
    padding-top: calc(var(--space-xl) + clamp(4rem, 10vh, 6rem));
    padding-bottom: var(--space-xl);
  }

  .split {
    gap: var(--space-md);
  }

  .section-header {
    margin-bottom: var(--space-md);
  }

  .prose p + p {
    margin-top: 1rem;
  }

  h2 {
    letter-spacing: -0.03em;
  }
}


.page-hero {
  padding: calc(var(--space-xl) + 1.5rem) 0 var(--space-xl);
  background: var(--beige);
  position: relative;
  overflow: hidden;
}

/* Brand motif — corner flourish, not a tile */
.page-hero::before {
  content: "";
  position: absolute;
  right: -14%;
  top: -18%;
  width: min(62vw, 36rem);
  aspect-ratio: 1163 / 898;
  background: var(--motif-orng) center / contain no-repeat;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
  animation: page-hero-motif 1.35s var(--ease-out) 0.05s both;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero__copy {
  max-width: 40rem;
}

.page-hero__copy > * {
  animation: fade-up 1.05s var(--ease-out) both;
}

.page-hero__copy > *:nth-child(1) {
  animation-delay: 0.12s;
}

.page-hero__copy > *:nth-child(2) {
  animation-delay: 0.26s;
}

.page-hero__copy > *:nth-child(3) {
  animation-delay: 0.4s;
}

.page-hero__copy > *:nth-child(4) {
  animation-delay: 0.52s;
}

/* Optional section motif — corner flourish on colored sections */
.has-motif {
  position: relative;
  overflow: hidden;
}

.has-motif > .container,
.has-motif > .cta-band__inner {
  position: relative;
  z-index: 1;
}

.has-motif::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  background: var(--motif-orng) center / contain no-repeat;
  opacity: 1;
  width: min(58vw, 32rem);
  aspect-ratio: 1163 / 898;
}

.has-motif--tr::after {
  right: -12%;
  top: -10%;
}

.has-motif--overlap-up {
  overflow: visible;
  z-index: 3;
}

.has-motif--overlap-up.has-motif--tr::after {
  top: -22%;
  right: -10%;
  opacity: 1;
  width: min(78vw, 46rem);
}

/* Bottom-right flourish behind section content (e.g. playbook toggles) */
.has-motif.has-motif--also-br {
  overflow: visible;
  z-index: 1;
}

.has-motif--also-br::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  background: var(--motif-orng) center / contain no-repeat;
  opacity: 1;
  width: min(78vw, 46rem);
  aspect-ratio: 1163 / 898;
  right: -10%;
  bottom: -8%;
}

.has-motif--tl::after {
  left: -14%;
  top: -12%;
}

.has-motif--br::after {
  right: -14%;
  bottom: -14%;
}

.has-motif--bl::after {
  left: -14%;
  bottom: -12%;
}

/* Second flower motif (bottom-left) when TR already uses ::after */
.has-motif--also-bl::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  background: var(--motif-orng) center / contain no-repeat;
  opacity: 1;
  width: min(68vw, 38rem);
  aspect-ratio: 1163 / 898;
  left: -14%;
  bottom: -12%;
}

.has-motif--khaki::after {
  background: var(--motif-khaki) center / contain no-repeat;
  aspect-ratio: 1200 / 1500;
}

.has-motif--white::after {
  background: var(--motif-white) center / contain no-repeat;
  /* File is white lines on black — knock out the black so it sits on pink */
  mix-blend-mode: screen;
  opacity: 1;
}

.cta-band--rose-panel.has-motif--white.has-motif--strong::after,
.cta-band--pink-panel.has-motif--white.has-motif--strong::after,
.cta-band--khaki-panel.has-motif--white.has-motif--strong::after,
.cta-band--orange-panel.has-motif--white.has-motif--strong::after {
  opacity: 1;
  inset: auto;
  top: 50%;
  left: 72%;
  right: auto;
  bottom: auto;
  width: 90%;
  height: auto;
  max-width: none;
  aspect-ratio: 1163 / 898;
  transform: translate(-50%, -50%);
  background-size: cover;
  background-position: center;
}

/* Ways section — khaki motif continues diagonally into the section below */
.has-motif.has-motif--sides {
  overflow: visible;
  z-index: 2;
}

.has-motif--sides::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  /* Large diagonal — ~40–50% height across ways + approach */
  right: 4%;
  left: auto;
  top: 38%;
  bottom: auto;
  width: auto;
  height: min(100vh, 76rem);
  aspect-ratio: 1200 / 1500;
  background: var(--motif-khaki) center / contain no-repeat;
  opacity: 1;
  transform: rotate(-16deg);
  transform-origin: center center;
}

.has-motif--sides::after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
  z-index: 0;
  left: -8%;
  right: auto;
  top: -6%;
  bottom: auto;
  width: auto;
  height: min(100vh, 76rem);
  aspect-ratio: 1200 / 1500;
  background: var(--motif-khaki) center / contain no-repeat;
  opacity: 1;
  transform: rotate(180deg);
  transform-origin: center center;
}

/* Keep the following section under the spilling motif */
.has-motif.has-motif--sides + .section {
  position: relative;
  z-index: 1;
  overflow: visible;
}

.has-motif--soft::after,
.has-motif--soft.has-motif--sides::before {
  opacity: 1;
}

.has-motif--strong::after {
  opacity: 1;
  width: min(68vw, 38rem);
}

/* Don't let the global strong::after width override the upside-down khaki */
.has-motif--strong.has-motif--sides::after {
  opacity: 1;
  width: auto;
  height: min(100vh, 76rem);
}

.has-motif--strong.has-motif--sides::before {
  opacity: 1;
  height: min(100vh, 76rem);
  right: 4%;
  top: 38%;
}

@media (max-width: 700px) {
  .page-hero::before,
  .has-motif:not(.has-motif--sides)::after,
  .has-motif--also-bl::before,
  .has-motif--also-br::before {
    width: min(80vw, 24rem);
    opacity: 1;
  }

  .has-motif--sides::before,
  .has-motif--strong.has-motif--sides::before {
    right: -8%;
    left: auto;
    top: 48%;
    height: min(78vh, 36rem);
    opacity: 1;
    transform: rotate(-12deg);
  }

  .has-motif--sides::after,
  .has-motif--strong.has-motif--sides::after {
    left: -18%;
    top: -2%;
    height: min(78vh, 36rem);
    opacity: 1;
  }

  .has-motif,
  .page-hero,
  .hero,
  .section,
  .cta-band,
  .site-footer {
    overflow-x: clip;
    max-width: 100%;
  }

}

/* ---------- Image placeholders ---------- */

.img-ph {
  background: var(--beige-deep);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-height: 16rem;
}

.img-ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(202, 206, 189, 0.5),
    rgba(224, 199, 202, 0.35) 50%,
    rgba(221, 127, 93, 0.15)
  );
  opacity: 0.9;
}

.img-ph span {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1rem;
}

.img-ph--portrait {
  aspect-ratio: 4 / 5;
  min-height: auto;
}

.img-ph--landscape {
  aspect-ratio: 16 / 10;
  min-height: auto;
}

.img-ph--square {
  aspect-ratio: 1;
  min-height: auto;
}

.img-ph--wide {
  aspect-ratio: 21 / 9;
  min-height: 12rem;
}

.speak-formats__media {
  margin: 0;
  width: 100%;
  align-self: center;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

.speak-formats__media img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  display: block;
  background: transparent;
}

/* Speaking page — TEDx / stage video */
.speak-stages {
  align-items: start;
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

.speak-stages h2 {
  margin-bottom: var(--space-md);
}

.speak-stages .btn-group {
  margin-top: var(--space-md);
}

.speak-stages__media {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.speak-media {
  position: relative;
  margin: 0;
  width: 100%;
  max-width: 100%;
  border-radius: clamp(0.85rem, 1.5vw, 1.25rem);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  max-height: 22rem;
  background: var(--charcoal);
  box-shadow: var(--shadow-card);
}

.speak-media__video {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.62);
}

.speak-media__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(58, 66, 53, 0.94) 0%,
    rgba(58, 66, 53, 0.62) 34%,
    rgba(58, 66, 53, 0.18) 62%,
    rgba(58, 66, 53, 0.04) 100%
  );
}

@media (min-width: 900px) {
  .speak-stages {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(2.5rem, 5vw, 4.5rem);
    align-items: center;
  }

  .speak-media {
    max-height: 26rem;
  }
}

@media (max-width: 899px) {
  .speak-media {
    max-height: 16.5rem;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
}

.img-ph--soft-sage {
  background: var(--sage);
}

.img-ph--soft-rose {
  background: var(--dusty-rose);
}

/* ---------- Cards (product / press interactions) ---------- */

.card-grid {
  display: grid;
  gap: clamp(1.5rem, 2.5vw, 2.5rem);
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--hover-duration) var(--ease-out),
    box-shadow var(--hover-duration) var(--ease-out);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(70, 77, 72, 0.04);
}

.card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-card-lift);
}

.card__media {
  aspect-ratio: 4 / 3;
  min-height: 0;
  border-radius: 0;
}

.card__body {
  padding: 2rem 1.85rem 2.15rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.85rem;
}

.card__tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.card__body h3 {
  font-size: 1.5rem;
}

.card__body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  flex: 1;
}

.card__link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  transition: color 0.25s var(--ease), gap 0.25s var(--ease);
}

.card:hover .card__link {
  color: var(--terracotta);
  gap: 0.65rem;
}

.card--sage {
  background: var(--sage);
}

.card--rose {
  background: var(--dusty-rose);
}

.card--beige {
  background: var(--beige);
}

/* ---------- Quote / pull ---------- */

.pullquote {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.01em;
  max-width: 22ch;
  margin-inline: auto;
  text-align: center;
}

.pullquote cite {
  display: block;
  margin-top: var(--space-md);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
}

/* ---------- Forms (Tally embeds) ---------- */

.form-shell {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: 0 0 0 1px rgba(70, 77, 72, 0.06);
}

.form-placeholder {
  min-height: 28rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--space-sm);
  border: 1.5px dashed rgba(70, 77, 72, 0.2);
  border-radius: var(--radius);
  padding: var(--space-lg);
  background: rgba(242, 240, 233, 0.5);
}

.form-placeholder p {
  color: var(--text-muted);
  max-width: 28rem;
  font-size: 0.95rem;
}

.form-placeholder code {
  font-size: 0.8rem;
  background: var(--sage);
  padding: 0.2rem 0.5rem;
  border-radius: 0.2rem;
}

/* ---------- Press list ---------- */

.press-list {
  display: flex;
  flex-direction: column;
}

.press-item {
  display: grid;
  gap: 0.75rem;
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(70, 77, 72, 0.12);
  transition: padding-left var(--hover-duration-fast) var(--ease);
}

.press-item:first-child {
  border-top: 1px solid rgba(70, 77, 72, 0.12);
}

.press-item:hover {
  padding-left: 0.5rem;
}

.press-item__outlet {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.press-item h3 {
  font-size: 1.45rem;
}

.press-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

@media (min-width: 720px) {
  .press-item {
    grid-template-columns: 8rem 1fr auto;
    align-items: baseline;
    gap: var(--space-md);
  }
}

/* ---------- CTA band ---------- */

.cta-band {
  padding: var(--space-2xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.cta-band__logo {
  height: 5.5rem;
  width: auto;
  margin-bottom: var(--space-xs);
}

.cta-band--rose.cta-band--lift .cta-band__logo {
  height: calc(5.5rem * 3.2 * 0.85);
}

.cta-band p {
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}

.cta-band--rose {
  position: relative;
  isolation: isolate;
  background-color: var(--dusty-rose);
  color: var(--text-on-dark);
  overflow: hidden;
}

.cta-band--rose::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: var(--dusty-rose);
  background-image: linear-gradient(
      to top,
      rgba(58, 66, 53, 0.35) 0%,
      rgba(58, 66, 53, 0.2) 45%,
      rgba(58, 66, 53, 0.1) 100%
    ),
    var(--pattern-pink);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  filter: brightness(0.84);
}

.cta-band--rose > .cta-band__inner,
.cta-band--rose > .container {
  position: relative;
  z-index: 1;
}

.cta-band--rose h2 {
  color: var(--beige);
}

.cta-band--rose p {
  color: rgba(242, 240, 233, 0.88);
}

.cta-band--rose p strong {
  color: var(--beige);
  background-color: color-mix(in srgb, var(--sage) 55%, transparent);
}

.cta-band--sage {
  background: var(--sage);
}

.cta-band--charcoal {
  background: var(--charcoal);
  color: var(--text-on-dark);
}

.cta-band--charcoal h2 {
  color: var(--text-on-dark);
}

.cta-band--charcoal p {
  color: rgba(242, 240, 233, 0.72);
}

/* Shared inset panel shell (For media / Chit Chats / Learn CTA) */
.cta-band--olive-panel,
.cta-band--rose-panel,
.cta-band--pink-panel,
.cta-band--khaki-panel,
.cta-band--charcoal-panel,
.cta-band--orange-panel {
  position: relative;
  isolation: isolate;
  width: min(100% - (var(--gutter) * 2), calc(var(--max) + 12rem));
  margin: var(--space-lg) auto calc(var(--space-lg) * 1.25);
  padding: calc(var(--space-xl) * 0.9) var(--gutter);
  border-radius: clamp(1.25rem, 2.5vw, var(--section-radius));
  color: var(--text-on-dark);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.cta-band--olive-panel {
  background: var(--sage);
}

.cta-band--rose-panel {
  background: var(--sage);
  color: var(--charcoal);
}

.cta-band--pink-panel {
  background: var(--dusty-rose);
  color: var(--charcoal);
}

.cta-band--khaki-panel {
  background: color-mix(in srgb, var(--khaki) 42%, var(--beige));
  color: var(--charcoal);
}

.cta-band--charcoal-panel {
  background: var(--charcoal);
}

.cta-band--orange-panel {
  background: var(--terracotta);
  color: var(--beige);
}

.cta-band--olive-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.9);
  background-color: var(--sage);
  background-image: var(--pattern-olive);
}

.cta-band--olive-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(58, 66, 53, 0.22) 0%,
    rgba(58, 66, 53, 0.12) 45%,
    rgba(58, 66, 53, 0.06) 100%
  );
}

.cta-band--olive-panel > .cta-band__inner,
.cta-band--rose-panel > .cta-band__inner,
.cta-band--pink-panel > .cta-band__inner,
.cta-band--khaki-panel > .cta-band__inner,
.cta-band--charcoal-panel > .cta-band__inner,
.cta-band--orange-panel > .cta-band__inner {
  position: relative;
  z-index: 1;
}

.cta-band--olive-panel .cta-band__logo {
  height: calc(4rem * 1.3);
}

.cta-band--rose-panel .cta-band__logo {
  height: calc(5.5rem * 3.2 * 0.85);
}

.cta-band--olive-panel h2 {
  color: var(--charcoal);
}

.cta-band--rose-panel h2,
.cta-band--pink-panel h2,
.cta-band--khaki-panel h2 {
  color: var(--charcoal);
}

.cta-band--charcoal-panel h2 {
  color: var(--beige);
}

.cta-band--orange-panel h2 {
  color: var(--beige);
}

.cta-band--orange-panel .eyebrow--on-dark {
  color: rgba(242, 240, 233, 0.75);
}

.cta-band--orange-panel .lede {
  color: rgba(242, 240, 233, 0.88);
  margin-inline: auto;
  margin-bottom: 0;
}

.cta-band--olive-panel p {
  color: rgba(242, 240, 233, 0.88);
  font-size: 1.05rem;
  line-height: 1.8;
  letter-spacing: -0.02em;
}

.cta-band--rose-panel p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  letter-spacing: -0.02em;
  max-width: 36rem;
  margin-inline: auto;
}

.cta-band--pink-panel .lede {
  margin-inline: auto;
  margin-bottom: 0;
}

.cta-band--pink-panel .eyebrow,
.cta-band--pink-panel .eyebrow--on-light,
.cta-band--khaki-panel .eyebrow,
.cta-band--khaki-panel .eyebrow--on-light {
  color: var(--terracotta);
}

.cta-band--pink-panel .section-header,
.cta-band--khaki-panel .section-header,
.cta-band--orange-panel .section-header {
  margin-bottom: 0;
}

.cta-band--pink-panel .section-header .lede,
.cta-band--khaki-panel .section-header .lede,
.cta-band--orange-panel .section-header .lede {
  margin-top: 0.85rem;
}

.cta-band--khaki-panel .lede {
  margin-inline: auto;
  margin-bottom: 0;
  color: var(--text-muted);
}

.cta-band--pink-panel .btn-group,
.cta-band--khaki-panel .btn-group,
.cta-band--orange-panel .btn-group {
  margin-top: 1.35rem;
  justify-content: center;
}

.cta-band--charcoal-panel p {
  color: rgba(242, 240, 233, 0.72);
  font-size: 1.05rem;
  line-height: 1.8;
  letter-spacing: -0.02em;
}

.cta-band--olive-panel .muted {
  color: rgba(242, 240, 233, 0.65);
}

.cta-band--rose-panel .muted {
  color: var(--text-muted);
}

.cta-band--rose-panel p strong {
  color: var(--charcoal);
  background-color: var(--sage);
}

.cta-band--rose-panel .cta-band__stat,
.cta-band--rose-panel .cta-band__stat strong {
  color: var(--charcoal);
  background: none;
  padding: 0;
  font-weight: 600;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--charcoal);
  color: var(--text-on-dark);
  padding: var(--space-xl) 0 var(--space-md);
  border-radius: var(--section-radius) var(--section-radius) 0 0;
  position: relative;
  z-index: 3;
}

.footer__grid {
  display: grid;
  gap: var(--space-lg);
}

.footer__brand img {
  height: 1.75rem;
  width: auto;
  margin-bottom: var(--space-sm);
}

.footer__brand p {
  color: rgba(242, 240, 233, 0.65);
  font-size: 0.9rem;
  max-width: 22rem;
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dusty-rose);
  margin-bottom: var(--space-sm);
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer__col a {
  font-size: 0.9rem;
  color: rgba(242, 240, 233, 0.8);
  transition: color 0.25s var(--ease);
}

.footer__col a:hover {
  color: var(--dusty-rose);
}

.footer__follow-li {
  display: none;
}

.footer__col--seen {
  min-width: 0;
}

@media (max-width: 799px) {
  .footer__col--seen {
    display: none;
  }

  .footer__follow-li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.85rem;
    width: 1.35rem;
    height: 1.35rem;
    opacity: 0.85;
    transition: opacity var(--hover-duration-fast) var(--ease),
      transform var(--hover-duration-fast) var(--ease);
  }

  .footer__follow-li:hover {
    opacity: 1;
    transform: translateY(-1px);
    color: inherit;
  }

  .footer__follow-li img {
    width: 0.95rem;
    height: 0.95rem;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(0.93) sepia(0.08) saturate(0.4)
      hue-rotate(10deg);
  }
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.45rem;
  background: rgba(242, 240, 233, 0.08);
  transition: background var(--hover-duration-fast) var(--ease),
    transform var(--hover-duration-fast) var(--ease);
}

.footer__social-link:hover {
  background: rgba(242, 240, 233, 0.16);
  transform: translateY(-2px);
  color: inherit;
}

.footer__social-link img {
  width: 1.15rem;
  height: 1.15rem;
  max-width: 1.15rem;
  max-height: 1.15rem;
  object-fit: contain;
  display: block;
}

.footer__bottom {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(242, 240, 233, 0.12);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8rem;
  color: rgba(242, 240, 233, 0.5);
}

.footer__bottom > span:first-child {
  justify-self: start;
}

.footer__mark {
  height: 1.35rem;
  width: auto;
  opacity: 0.85;
  justify-self: center;
}

.footer__credit {
  justify-self: end;
  color: rgba(242, 240, 233, 0.5);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.25s var(--ease);
}

@media (max-width: 700px) {
  .footer__bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 0.85rem;
  }

  .footer__bottom > span:first-child,
  .footer__credit {
    justify-self: center;
  }
}

.footer__credit:hover {
  color: var(--dusty-rose);
}

/* ---------- Feature strip ---------- */

.feature-strip {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 720px) {
  .feature-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature {
  padding: var(--space-md);
}

.feature__icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: var(--space-sm);
  border-radius: 50%;
  background: rgba(221, 127, 93, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature__icon svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: var(--terracotta);
  fill: none;
  stroke-width: 1.5;
}

.feature h3 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

.feature p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ---------- About bio ---------- */

.bio-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.bio-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.bio-stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ---------- Animations ---------- */

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(1.15rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes page-hero-motif {
  from {
    opacity: 0;
    transform: translateX(3%) scale(1.04);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes hero-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes hero-bg-swipe {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes hero-motif-drift {
  from {
    opacity: 0;
    transform: translateX(-4%) scale(1.04);
  }
  to {
    opacity: 0.28;
    transform: translateX(0) scale(1);
  }
}

@keyframes hero-text-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes soft-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes draw-line {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.reveal,
.reveal-scale,
.reveal-left {
  opacity: 0;
  transform: translateY(1.15rem);
  transition:
    opacity var(--reveal-duration) var(--ease-out),
    transform var(--reveal-duration) var(--ease-out);
  transition-delay: calc(var(--reveal-delay, 0) * var(--reveal-stagger));
  will-change: opacity, transform;
}

.reveal-scale {
  transform: translateY(0.85rem) scale(0.975);
}

.reveal-left {
  transform: translateX(-1.15rem) translateY(0);
}

.reveal.is-visible,
.reveal-scale.is-visible,
.reveal-left.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  --reveal-delay: 1;
}
.reveal-delay-2 {
  --reveal-delay: 2;
}
.reveal-delay-3 {
  --reveal-delay: 3;
}
.reveal-delay-4 {
  --reveal-delay: 4;
}
.reveal-delay-5 {
  --reveal-delay: 5;
}

.hero__bottom > * {
  animation: hero-text-fade 1.82s var(--ease-out) both;
}

.hero__roles {
  animation-delay: 0.46s;
}

.hero__wordmark {
  animation-delay: 0.68s;
}

.hero__seen {
  animation-delay: 0.98s;
}

.hero__stats {
  animation-delay: 1.24s;
}

@media (prefers-reduced-motion: reduce) {
  .hero__atmosphere,
  .hero__atmosphere::before,
  .hero__portrait,
  .hero__overlay,
  .hero__bottom > *,
  .page-hero::before,
  .page-hero__copy > * {
    animation: none;
  }

  .page-hero__copy > * {
    opacity: 1;
  }
}

.accent-line {
  display: block;
  width: 3rem;
  height: 1.5px;
  background: var(--terracotta);
  margin: var(--space-sm) 0 var(--space-md);
  transform-origin: left;
  animation: draw-line 0.8s var(--ease) 0.4s both;
}

.float-soft {
  animation: soft-float 7s ease-in-out infinite;
}

/* ---------- Receipts / stats ---------- */

.receipts {
  background: var(--charcoal);
  color: var(--text-on-dark);
  padding: var(--space-xl) 0;
  position: relative;
  z-index: 2;
}

.receipts__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

@media (min-width: 900px) {
  .receipts__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
  }
}

.receipt strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.035rem, 3.3vw, 2.86rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  color: var(--dusty-rose);
  margin-bottom: 0.55rem;
}

.receipt span {
  font-size: 0.85rem;
  color: rgba(242, 240, 233, 0.7);
  line-height: 1.45;
}

/* ---------- Logo row ---------- */

.logo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 3vw, 2.75rem);
  padding: var(--space-md) 0;
}

.logo-row--start {
  justify-content: flex-start;
}

.logo-row.logo-row--hero {
  justify-content: center;
  align-items: center;
  gap: clamp(2.73rem, 6.24vw, 5.38rem);
  padding: 0;
}

/* Hero logos — static on desktop, marquee on mobile */
.logo-marquee {
  position: relative;
  width: 100%;
}

.logo-marquee__track {
  display: flex;
  align-items: center;
  width: 100%;
}

.logo-marquee__group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(2.73rem, 6.24vw, 5.38rem);
  padding-inline: 0;
}

.logo-marquee__group[aria-hidden="true"] {
  display: none;
}

.logo-marquee .logo-mark {
  flex-shrink: 0;
  height: 29px;
  max-height: 29px;
  max-width: 177px;
  width: auto;
  object-fit: contain;
  opacity: 0.92;
  filter: var(--logo-khaki-filter);
  transform: translateY(0) scale(1);
  transition: opacity var(--hover-duration-fast) var(--ease),
    transform var(--hover-duration) var(--ease-out),
    filter var(--hover-duration-fast) var(--ease);
}

.logo-marquee .logo-mark[src*="forbes"] {
  height: calc(29px * 0.95);
  max-height: calc(29px * 0.95);
  max-width: calc(177px * 0.95);
}

.logo-marquee .logo-mark[src*="usa-today"] {
  height: calc(29px * 1.06 * 1.2);
  max-height: calc(29px * 1.06 * 1.2);
  max-width: calc(177px * 1.06 * 1.2);
}

.logo-marquee .logo-mark[src*="linkedin"] {
  height: calc(29px * 1.06 * 1.25);
  max-height: calc(29px * 1.06 * 1.25);
  max-width: calc(177px * 1.06 * 1.25);
}

.logo-marquee .logo-mark[src*="tedx"] {
  height: calc(29px * 2);
  max-height: calc(29px * 2);
  max-width: calc(177px * 2);
}

.logo-marquee .logo-mark:hover {
  opacity: 1;
  transform: translateY(-3px) scale(1.06);
}

@keyframes logo-marquee-ltr {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 799px) {
  .logo-marquee {
    overflow: hidden;
    mask-image: linear-gradient(
      to right,
      transparent 0%,
      #000 8%,
      #000 92%,
      transparent 100%
    );
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0%,
      #000 8%,
      #000 92%,
      transparent 100%
    );
  }

  .logo-marquee__track {
    width: max-content;
    animation: logo-marquee-ltr 22s linear infinite;
  }

  .logo-marquee__group {
    flex-shrink: 0;
    flex-wrap: nowrap;
    gap: 1.75rem;
    padding-inline: 0.875rem;
  }

  .logo-marquee__group[aria-hidden="true"] {
    display: flex;
  }

  .logo-marquee .logo-mark:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-marquee__track {
    animation: none !important;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }

  .logo-marquee__group[aria-hidden="true"] {
    display: none;
  }

  .logo-marquee__group {
    padding-inline: 0;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }

  .logo-marquee {
    mask-image: none;
    -webkit-mask-image: none;
  }
}

.logo-row.logo-row--compact {
  gap: 1.56rem 2.42rem;
  padding: 0.35rem 0 0;
  justify-content: flex-start;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  opacity: 0.72;
  transition: opacity var(--hover-duration-fast) var(--ease),
    filter var(--hover-duration-fast) var(--ease);
}

img.logo-mark,
.logo-mark img {
  display: block;
  height: 28px;
  width: auto;
  max-height: 28px;
  max-width: 169px;
  object-fit: contain;
}

.logo-row--hero img.logo-mark,
.logo-row--hero .logo-mark img {
  height: 29px;
  max-height: 29px;
  max-width: 177px;
  transform: translateY(0) scale(1);
  transition: opacity var(--hover-duration-fast) var(--ease),
    transform var(--hover-duration) var(--ease-out),
    filter var(--hover-duration-fast) var(--ease);
}

.logo-row--hero img.logo-mark[src*="forbes"] {
  height: calc(29px * 0.95);
  max-height: calc(29px * 0.95);
  max-width: calc(177px * 0.95);
}

.logo-row--hero img.logo-mark[src*="usa-today"] {
  height: calc(29px * 1.06 * 1.2);
  max-height: calc(29px * 1.06 * 1.2);
  max-width: calc(177px * 1.06 * 1.2);
}

.logo-row--hero img.logo-mark[src*="linkedin"] {
  height: calc(29px * 1.06 * 1.25);
  max-height: calc(29px * 1.06 * 1.25);
  max-width: calc(177px * 1.06 * 1.25);
}

.logo-row--hero img.logo-mark[src*="tedx"] {
  height: calc(29px * 2);
  max-height: calc(29px * 2);
  max-width: calc(177px * 2);
}

.logo-row--hero .logo-mark:hover {
  opacity: 1;
  transform: translateY(-3px) scale(1.06);
}

a.logo-mark:hover {
  opacity: 1;
}

.logo-row--compact img.logo-mark,
.logo-row--compact .logo-mark img {
  height: 23px;
  max-height: 23px;
  max-width: 138px;
}

.logo-row--compact .logo-mark img[src*="usa-today"],
.logo-row--compact img.logo-mark[src*="usa-today"] {
  height: calc(23px * 1.1 * 1.2);
  max-height: calc(23px * 1.1 * 1.2);
  max-width: calc(138px * 1.1 * 1.2);
}

.logo-row--compact .logo-mark img[src*="linkedin"],
.logo-row--compact img.logo-mark[src*="linkedin"] {
  height: calc(23px * 1.1 * 1.25);
  max-height: calc(23px * 1.1 * 1.25);
  max-width: calc(138px * 1.1 * 1.25);
}

.logo-row--compact .logo-mark img[src*="tedx"],
.logo-row--compact img.logo-mark[src*="tedx"] {
  height: calc(23px * 2);
  max-height: calc(23px * 2);
  max-width: calc(138px * 2);
}

.logo-row--on-dark .logo-mark {
  opacity: 0.55;
  filter: brightness(0) invert(1);
}

.logo-row--on-dark a.logo-mark:hover {
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(89%) sepia(8%) saturate(420%)
    hue-rotate(35deg) brightness(94%) contrast(88%);
}

.logo-chip {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(70, 77, 72, 0.45);
  transition: color 0.3s var(--ease);
}

.logo-chip:hover,
a.logo-chip {
  color: var(--charcoal);
}

.logo-row--on-dark .logo-chip {
  color: rgba(242, 240, 233, 0.45);
}

.logo-row--on-dark .logo-chip:hover,
.logo-row--on-dark a.logo-chip {
  color: var(--beige);
}

.logo-row--compact .logo-chip {
  font-size: 1rem;
}

/* ---------- Prose ---------- */

.prose {
  max-width: 42rem;
}

.prose h2 {
  margin-bottom: var(--space-md);
}

.prose .eyebrow {
  color: var(--terracotta);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
  line-height: 1.4;
}

.prose p {
  color: var(--text-muted);
  margin-bottom: 1.35rem;
  font-size: 1.05rem;
  line-height: 1.8;
  letter-spacing: -0.02em;
}

/* Inline emphasis: soft olive highlight instead of bold */
p strong,
li strong,
.prose strong,
.faq-item__a strong,
.legal-doc strong {
  font-weight: 500;
  color: inherit;
  background-color: var(--sage);
  padding: 0.08em 0.28em;
  border-radius: 0.2em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.section--sage p strong,
.section--sage li strong,
.section--sage .prose strong,
.cta-band--olive-panel p strong,
.cta-band--khaki-panel p strong {
  background-color: color-mix(in srgb, var(--cream) 72%, var(--sage-deep));
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose--wide {
  max-width: 48rem;
}

.prose--center {
  margin-inline: auto;
  text-align: left;
}

/* ---------- Read more ---------- */

.read-more__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--expand-duration) var(--ease-out);
}

.read-more.is-open .read-more__panel {
  grid-template-rows: 1fr;
}

.read-more__inner {
  overflow: hidden;
  min-height: 0;
  opacity: 0;
  transform: translateY(-0.4rem);
  transition: opacity var(--expand-fade) var(--ease) var(--expand-delay),
    transform var(--expand-move) var(--ease-out) 0.05s;
}

.read-more.is-open .read-more__inner {
  opacity: 1;
  transform: translateY(0);
}

.read-more__join {
  margin-top: -0.15rem;
}

.read-more.is-open .read-more__ellipsis {
  display: none;
}

.read-more__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.15rem;
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--hover-duration-fast) var(--ease),
    opacity var(--hover-duration-fast) var(--ease);
}

.read-more__btn::after {
  content: "";
  display: block;
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.45s var(--ease-out);
}

.read-more.is-open .read-more__btn::after {
  transform: rotate(225deg) translateY(-1px);
}

.read-more__btn:hover {
  color: var(--charcoal);
}

.read-more__less {
  display: none;
}

.read-more.is-open .read-more__more {
  display: none;
}

.read-more.is-open .read-more__less {
  display: inline;
}

.read-more__cta {
  margin-top: 1.15rem;
}

/* Mobile-only read more — full copy always visible on desktop */
@media (min-width: 800px) {
  .read-more--mobile .read-more__panel {
    display: contents;
  }

  .read-more--mobile .read-more__inner {
    display: contents;
    opacity: 1;
    transform: none;
    overflow: visible;
  }

  .read-more--mobile .read-more__ellipsis,
  .read-more--mobile .read-more__btn {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .read-more__panel,
  .read-more__inner,
  .read-more__btn::after {
    transition: none;
  }
}

/* ---------- Service / approach cards ---------- */

.service-card {
  background: var(--cream);
  padding: clamp(2rem, 3vw, 2.75rem);
  border-radius: var(--radius-lg);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(70, 77, 72, 0.04);
  transition: transform var(--hover-duration) var(--ease-out),
    box-shadow var(--hover-duration) var(--ease-out);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-lift);
}

.service-card h3 {
  font-size: 1.65rem;
  letter-spacing: -0.025em;
}

.service-card p {
  color: var(--text-muted);
  flex: 1;
  font-size: 0.98rem;
  line-height: 1.7;
}

/* ---------- Ways to work — image hover cards ---------- */

.ways-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .ways-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.15rem, 2vw, 1.75rem);
  }
}

.ways-card {
  position: relative;
  display: block;
  isolation: isolate;
  overflow: hidden;
  border-radius: clamp(1rem, 1.8vw, 1.35rem);
  min-height: clamp(26rem, 52vh, 34rem);
  color: var(--beige);
  text-decoration: none;
  box-shadow: var(--shadow-card);
  transition: transform var(--hover-duration) var(--ease-out),
    box-shadow var(--hover-duration) var(--ease-out);
}

.ways-card:hover,
.ways-card:focus-visible {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-lift);
  color: var(--beige);
}

.ways-card.reveal.is-visible:hover,
.ways-card.reveal.is-visible:focus-visible {
  transform: translateY(-8px);
}

.ways-card__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.ways-card__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.04);
  filter: brightness(0.72);
  transition: transform calc(var(--hover-duration) + 0.15s) var(--ease-out),
    filter var(--hover-duration) var(--ease);
}

.ways-card:hover .ways-card__media img,
.ways-card:focus-visible .ways-card__media img {
  transform: scale(1.1);
  filter: brightness(0.62);
}

.ways-card__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Dark green fade from sage family, not neutral gray */
  background: linear-gradient(
    to top,
    rgba(58, 66, 53, 0.94) 0%,
    rgba(58, 66, 53, 0.62) 34%,
    rgba(58, 66, 53, 0.18) 62%,
    rgba(58, 66, 53, 0.04) 100%
  );
  transition: background var(--expand-duration) var(--ease);
}

.ways-card:hover .ways-card__scrim,
.ways-card:focus-visible .ways-card__scrim {
  background: linear-gradient(
    to top,
    rgba(58, 66, 53, 0.97) 0%,
    rgba(58, 66, 53, 0.78) 44%,
    rgba(58, 66, 53, 0.32) 72%,
    rgba(58, 66, 53, 0.1) 100%
  );
}

.ways-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0;
  padding: 1.5rem 1.4rem 1.55rem;
}

.ways-card h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  letter-spacing: -0.03em;
  color: var(--beige);
  -webkit-text-fill-color: var(--beige);
  text-shadow: 0 1px 16px rgba(58, 66, 53, 0.4);
  position: relative;
  z-index: 1;
}

.ways-card__detail {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(1.1rem);
  margin-bottom: 0;
  transition: max-height var(--expand-duration) var(--ease-out),
    opacity var(--expand-fade) var(--ease) var(--expand-delay),
    transform var(--expand-move) var(--ease-out) 0.05s,
    margin-bottom var(--expand-duration) var(--ease-out);
}

.ways-card:hover .ways-card__detail,
.ways-card:focus-visible .ways-card__detail {
  max-height: 12rem;
  opacity: 1;
  transform: translateY(0);
  margin-bottom: 0.95rem;
}

.ways-card__detail p {
  margin: 0;
  color: rgba(242, 240, 233, 0.88);
  font-size: 0.95rem;
  line-height: 1.65;
  letter-spacing: -0.02em;
}

.ways-card__cta {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dusty-rose);
}

@media (max-width: 799px) {
  .ways-card {
    min-height: 22rem;
  }

  .ways-card__detail {
    max-height: none;
    opacity: 1;
    transform: none;
    margin-bottom: 0.95rem;
    overflow: visible;
  }

  .ways-card__scrim {
    background: linear-gradient(
      to top,
      rgba(58, 66, 53, 0.94) 0%,
      rgba(58, 66, 53, 0.55) 45%,
      rgba(58, 66, 53, 0.15) 100%
    );
  }
}

@media (prefers-reduced-motion: reduce) {
  .ways-card,
  .ways-card__media img,
  .ways-card__detail {
    transition: none;
  }

  .ways-card__detail {
    max-height: none;
    opacity: 1;
    transform: none;
    margin-bottom: 0.95rem;
    overflow: visible;
  }
}

.approach-grid {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 900px) {
  .approach-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 2.5vw, 2.25rem);
  }

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

.approach-grid--compact {
  display: grid;
  gap: clamp(0.85rem, 2vw, 1.5rem);
  width: 100%;
  max-width: none;
  margin-bottom: 0;
}

.approach-grid--compact .approach-item {
  aspect-ratio: auto;
  height: 100%;
  min-height: 18.5rem;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  padding-bottom: clamp(2.75rem, 4vw, 3.25rem);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  border: 1px solid rgba(70, 77, 72, 0.22);
  box-shadow: none;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.approach-grid--compact a.approach-item:hover {
  color: inherit;
}

.approach-item__hover {
  position: absolute;
  left: clamp(1.25rem, 2.5vw, 1.75rem);
  right: clamp(1.25rem, 2.5vw, 1.75rem);
  bottom: 1.15rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  background: none;
  color: var(--terracotta);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(0.85rem);
  transition: opacity var(--hover-duration-fast) var(--ease),
    transform var(--hover-duration) var(--ease-out);
  pointer-events: none;
}

.approach-item__hover span {
  display: inline-block;
  transition: transform var(--hover-duration-fast) var(--ease-out);
}

.approach-item--cta:hover .approach-item__hover,
.approach-item--cta:focus-visible .approach-item__hover {
  opacity: 1;
  transform: translateY(0);
}

.approach-item--cta:hover .approach-item__hover span,
.approach-item--cta:focus-visible .approach-item__hover span {
  transform: translateX(3px);
}

@media (hover: none) {
  .approach-item__hover {
    opacity: 1;
    transform: none;
  }
}

.approach-dots {
  display: none;
}

.approach-dots__dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: rgba(70, 77, 72, 0.28);
  transition: transform 0.3s var(--ease-out), background 0.3s var(--ease),
    width 0.3s var(--ease-out);
}

.approach-dots__dot.is-active {
  width: 0.55rem;
  height: 0.55rem;
  background: var(--terracotta);
  transform: scale(1.05);
}

@media (max-width: 899px) {
  .approach-scroll {
    margin-bottom: var(--space-md);
  }

  .approach-grid--compact {
    display: flex;
    align-items: stretch;
    gap: 0.85rem;
    width: auto;
    max-width: none;
    margin-left: calc(var(--gutter) * -1);
    margin-right: calc(var(--gutter) * -1);
    margin-bottom: 0;
    padding: 0.15rem var(--gutter) 0.85rem;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--gutter);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .approach-grid--compact::-webkit-scrollbar {
    display: none;
  }

  .approach-grid--compact .approach-item {
    flex: 0 0 min(82vw, 19.5rem);
    width: min(82vw, 19.5rem);
    max-width: min(82vw, 19.5rem);
    min-height: 18.5rem;
    height: auto;
    scroll-snap-align: start;
    padding: 1.35rem 1.25rem;
  }

  .approach-grid--testimonials.approach-grid--compact .approach-item {
    height: auto;
    align-self: stretch;
    min-height: 20.5rem;
    padding-bottom: 1.35rem;
  }

  .approach-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.55rem;
    margin-top: 0.85rem;
    min-height: 0.85rem;
  }
}

@media (min-width: 900px) {
  .approach-grid--compact {
    grid-template-columns: repeat(3, 1fr);
  }
}

.approach-grid--compact .approach-item:nth-child(1) {
  background: var(--cream);
}

.approach-grid--compact .approach-item:nth-child(2) {
  background: var(--dusty-rose);
}

.approach-grid--compact .approach-item:nth-child(3) {
  background: var(--beige);
}

/* Partnerships formats: swipe on mobile only; desktop keeps default 2-col cards */
@media (max-width: 899px) {
  .approach-scroll .approach-grid--2 {
    display: flex;
    align-items: stretch;
    gap: 0.85rem;
    width: auto;
    max-width: none;
    margin-left: calc(var(--gutter) * -1);
    margin-right: calc(var(--gutter) * -1);
    margin-bottom: 0;
    padding: 0.15rem var(--gutter) 0.85rem;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--gutter);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .approach-scroll .approach-grid--2::-webkit-scrollbar {
    display: none;
  }

  .approach-scroll .approach-grid--2 .approach-item {
    flex: 0 0 min(82vw, 19.5rem);
    width: min(82vw, 19.5rem);
    max-width: min(82vw, 19.5rem);
    min-height: 0;
    height: auto;
    scroll-snap-align: start;
    background: var(--cream);
  }
}

.approach-grid--compact .approach-item h3 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  margin-bottom: 0;
  letter-spacing: -0.02em;
}

.approach-grid--compact .approach-item p {
  font-size: clamp(0.88rem, 1.2vw, 1rem);
  line-height: 1.55;
  margin: 0;
}

.approach-grid--testimonials {
  margin-bottom: 0;
  align-items: stretch;
}

.approach-grid--testimonials .approach-item {
  height: 100%;
}

.approach-grid--testimonials .testimonial-meta {
  font-family: var(--font-display);
  font-size: calc(2px + clamp(0.95rem, 1.4vw, 1.1rem));
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--charcoal);
  margin: 0;
}

.approach-grid--testimonials .testimonial-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.approach-grid--testimonials .testimonial-avatar {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  background: var(--beige-deep);
}

.approach-grid--testimonials .testimonial-role {
  margin: 0.15rem 0 0;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-muted);
  line-height: 1.3;
}

.approach-grid--testimonials .read-more__btn {
  margin-top: auto;
  align-self: flex-start;
}

.approach-item {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: rgba(250, 248, 244, 0.85);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(70, 77, 72, 0.04);
  backdrop-filter: blur(10px);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out),
    border-color 0.45s var(--ease);
}

.approach-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(70, 77, 72, 0.1);
}

.approach-item.reveal.is-visible:hover {
  transform: translateY(-3px);
}

.approach-grid--compact .approach-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(70, 77, 72, 0.08);
}

.approach-grid--compact .approach-item.reveal.is-visible:hover {
  transform: translateY(-2px);
}

.approach-item h3 {
  font-size: 1.45rem;
  margin-bottom: 0.85rem;
}

.approach-item p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* ---------- Sticky overlapping card stack ---------- */

.stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 44rem;
  margin-inline: auto;
  padding-bottom: 2rem;
}

.stack__item {
  position: sticky;
  top: calc(var(--nav-h) + 1.25rem);
  padding-bottom: clamp(1.5rem, 4vw, 3rem);
  z-index: 1;
  transform-origin: center top;
  will-change: transform, filter, opacity;
}

.stack__item:nth-child(1) {
  z-index: 1;
}
.stack__item:nth-child(2) {
  z-index: 2;
}
.stack__item:nth-child(3) {
  z-index: 3;
}
.stack__item:nth-child(4) {
  z-index: 4;
}
.stack__item:nth-child(5) {
  z-index: 5;
}
.stack__item:nth-child(6) {
  z-index: 6;
}

.stack__item .service-card,
.stack__item .approach-item,
.stack__panel {
  min-height: clamp(16rem, 28vh, 22rem);
  box-shadow: var(--shadow-layer), var(--shadow-card);
}

.stack__item:nth-child(odd) .service-card,
.stack__item:nth-child(odd) .stack__panel {
  background: var(--cream);
}

.stack__item:nth-child(2) .service-card,
.stack__item:nth-child(2) .stack__panel {
  background: var(--dusty-rose);
}

.stack__item:nth-child(3) .service-card,
.stack__item:nth-child(3) .stack__panel {
  background: var(--beige);
}

.stack__panel {
  background: var(--cream);
  padding: clamp(2rem, 3vw, 2.75rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(70, 77, 72, 0.04);
}

@media (min-width: 900px) {
  .stack {
    max-width: 52rem;
  }

  .stack__item {
    top: calc(var(--nav-h) + 2rem);
  }
}

@media (min-width: 1100px) {
  .card-grid--overlap {
    gap: 0;
  }

  .card-grid--overlap > *:nth-child(1) {
    transform: rotate(-1.5deg) translateY(0.5rem);
    z-index: 1;
  }

  .card-grid--overlap > *:nth-child(2) {
    transform: rotate(0.5deg) translateY(-0.75rem);
    z-index: 2;
    margin-inline: -1rem;
  }

  .card-grid--overlap > *:nth-child(3) {
    transform: rotate(1.75deg) translateY(0.35rem);
    z-index: 3;
  }

  .card-grid--overlap > *:hover {
    transform: translateY(-10px) rotate(0deg) scale(1.02);
    z-index: 5;
  }
}

.hero__media {
  will-change: transform;
}

/* ---------- FAQ ---------- */

.faq-list {
  max-width: 48rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(70, 77, 72, 0.14);
}

.faq-item:first-child {
  border-top: 1px solid rgba(70, 77, 72, 0.14);
}

.faq-item__q {
  display: block;
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 1.5rem 2.5rem 1.5rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: inherit;
  background: none;
  border: none;
  position: relative;
  transition: color var(--hover-duration-fast) var(--ease);
}

.faq-item__q::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--terracotta);
  transition: opacity var(--hover-duration-fast) var(--ease);
}

.faq-item.is-open .faq-item__q::after,
.outcome-toggle.is-open .faq-item__q::after,
.timeline-toggle.is-open .faq-item__q::after {
  content: "–";
}

.faq-item__q:hover {
  color: var(--terracotta);
}

.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--expand-duration) var(--ease-out);
}

.faq-item.is-open .faq-item__panel,
.outcome-toggle.is-open .faq-item__panel,
.timeline-toggle.is-open .faq-item__panel {
  grid-template-rows: 1fr;
}

.faq-item__a {
  overflow: hidden;
  min-height: 0;
  padding: 0;
  max-width: 40rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  opacity: 0;
  transform: translateY(-0.35rem);
  transition: opacity var(--expand-fade) var(--ease) var(--expand-delay),
    transform var(--expand-move) var(--ease-out) 0.05s,
    padding var(--expand-duration) var(--ease-out);
}

.faq-item.is-open .faq-item__a,
.outcome-toggle.is-open .faq-item__a,
.timeline-toggle.is-open .faq-item__a {
  opacity: 1;
  transform: translateY(0);
  padding: 0 0 1.6rem;
}

.faq-item__a a {
  color: var(--terracotta);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color var(--hover-duration-fast) var(--ease);
}

.faq-item__a a:hover {
  color: var(--charcoal);
}

@media (prefers-reduced-motion: reduce) {
  .faq-item__panel,
  .faq-item__a,
  .faq-item__q::after {
    transition: none;
  }
}

/* ---------- Timeline ---------- */

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 48rem;
}

.timeline__item {
  display: grid;
  gap: 0.5rem 2rem;
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(70, 77, 72, 0.12);
  position: relative;
}

.timeline__item:first-child {
  border-top: 1px solid rgba(70, 77, 72, 0.12);
}

.timeline__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.timeline__item h3 {
  font-size: clamp(1.35rem, 2vw, 1.65rem);
}

.timeline__item p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.timeline-toggle__body {
  min-width: 0;
}

.timeline-toggle__q {
  padding: 0 1.75rem 0 0;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.timeline-toggle__q::after {
  top: 0.15em;
  transform: none;
}

.timeline-toggle .faq-item__a {
  max-width: none;
  font-size: 0.95rem;
  line-height: 1.65;
}

.timeline-toggle .faq-item__a p {
  margin: 0;
}

.timeline-toggle.is-open .faq-item__a {
  padding: 0.55rem 0 0.15rem;
}

@media (max-width: 719px) {
  .timeline-toggle {
    padding: 0.85rem 0;
    gap: 0.35rem;
  }
}

@media (min-width: 720px) {
  .timeline__item {
    grid-template-columns: 11rem 1fr;
    align-items: start;
  }
}

/* Timeline + zigzag photo gallery */
.timeline-layout {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 960px) {
  .timeline-layout {
    grid-template-columns: minmax(0, 1fr) minmax(17rem, 21rem);
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: stretch;
  }

  .timeline-layout .timeline {
    max-width: none;
  }
}

.timeline-gallery {
  position: relative;
}

.timeline-thread {
  display: none;
}

.tl-photo {
  position: relative;
  margin: 0;
  border-radius: 0.9rem;
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--beige-deep) 0%, var(--rose-soft) 100%);
  border: 1px solid rgba(70, 77, 72, 0.22);
  box-shadow: none;
  display: grid;
  place-items: center;
}

.tl-photo--portrait {
  aspect-ratio: 3 / 4;
}

.tl-photo--landscape {
  aspect-ratio: 4 / 3;
}

.tl-photo span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.7;
}

.tl-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tl-photo--3 img {
  object-position: center 28%;
}

/* Mobile: horizontal swipe like homepage approach cards */
@media (max-width: 959px) {
  .timeline-layout,
  .timeline-scroll {
    min-width: 0;
    max-width: 100%;
  }

  .timeline-scroll {
    margin-bottom: var(--space-md);
  }

  .timeline-gallery {
    display: flex;
    align-items: flex-end;
    gap: 0.85rem;
    width: calc(100% + (var(--gutter) * 2));
    max-width: none;
    margin-left: calc(var(--gutter) * -1);
    margin-right: calc(var(--gutter) * -1);
    margin-bottom: 0;
    padding: 0.15rem var(--gutter) 0.85rem;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--gutter);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .timeline-gallery::-webkit-scrollbar {
    display: none;
  }

  .timeline-gallery .timeline-thread {
    display: none;
  }

  .timeline-gallery .tl-photo {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    scroll-snap-align: start;
    z-index: 1;
  }

  .timeline-gallery .tl-photo--portrait {
    flex: 0 0 min(56vw, 13.5rem);
    width: min(56vw, 13.5rem);
    max-width: min(56vw, 13.5rem);
  }

  .timeline-gallery .tl-photo--landscape {
    flex: 0 0 min(78vw, 18.5rem);
    width: min(78vw, 18.5rem);
    max-width: min(78vw, 18.5rem);
  }

  .timeline-scroll .approach-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.55rem;
    margin-top: 0.85rem;
    min-height: 0.85rem;
  }
}

@media (min-width: 960px) {
  .timeline-scroll .approach-dots {
    display: none;
  }

  .timeline-gallery {
    display: block;
    height: 100%;
    min-height: 92rem;
  }

  .timeline-thread {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: visible;
  }

  .timeline-thread__dots {
    fill: none;
    stroke: var(--terracotta);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 0.1 10;
    vector-effect: non-scaling-stroke;
    opacity: 0.7;
  }

  .timeline-thread__reveal {
    fill: none;
    stroke: #fff;
    stroke-width: 10;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .tl-photo {
    position: absolute;
    z-index: 1;
    box-shadow: var(--shadow-card);
    border-color: rgba(70, 77, 72, 0.08);
  }

  .tl-photo--portrait {
    width: 48%;
  }

  .tl-photo--landscape {
    width: 60%;
  }

  .tl-photo--1 {
    left: 0;
    top: 0%;
  }

  .tl-photo--2 {
    right: 0;
    top: 12%;
  }

  .tl-photo--3 {
    left: 0;
    top: 24%;
  }

  .tl-photo--4 {
    right: 0;
    top: 37%;
  }

  .tl-photo--5 {
    left: 0;
    top: 49%;
  }

  .tl-photo--6 {
    right: 0;
    top: 61%;
  }

  .tl-photo--7 {
    left: 0;
    top: 74%;
  }

  .tl-photo--8 {
    right: 0;
    top: 86.5%;
  }
}

/* Recognition — copy + overlapping photo cluster */
.recognition-layout {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 900px) {
  .recognition-layout {
    grid-template-columns: minmax(0, 1fr) minmax(22.5rem, 30rem);
    gap: clamp(2.5rem, 5vw, 5rem);
  }

  .recognition-copy .section-header {
    max-width: none;
  }
}

.photo-cluster {
  position: relative;
  min-height: 38rem;
  overflow: hidden;
  padding: 0.35rem;
}

.rec-photo {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, var(--beige-deep) 0%, var(--rose-soft) 100%);
  border: 1px solid rgba(70, 77, 72, 0.08);
  box-shadow: var(--shadow-card);
  display: grid;
  place-items: center;
}

.rec-photo span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.7;
}

.rec-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-cluster .rec-photo {
  position: absolute;
  width: min(85%, 19.375rem);
}

.photo-cluster .photo-cluster__card--1 {
  top: 0.35rem;
  left: 0.35rem;
  width: min(72.5%, 16.875rem);
  aspect-ratio: 3 / 4;
  transform: rotate(-2.5deg);
  z-index: 1;
}

.photo-cluster__card--1 img {
  object-position: center top;
}

.photo-cluster__card--2 {
  top: 48%;
  left: auto;
  right: 0.35rem;
  transform: rotate(2.5deg);
  z-index: 2;
}

@media (min-width: 900px) {
  .photo-cluster {
    min-height: 37.5rem;
    overflow: visible;
    padding: 0;
  }

  .photo-cluster .rec-photo {
    width: min(82.5%, 20rem);
  }

  .photo-cluster .photo-cluster__card--1 {
    top: 0;
    left: 0;
    width: min(67.5%, 17.5rem);
  }

  .photo-cluster__card--2 {
    top: 36%;
    left: 40%;
    right: auto;
  }
}

/* ---------- Career Playbook editions ---------- */

.playbook-editions {
  display: grid;
  gap: var(--space-md);
  align-items: stretch;
}

@media (min-width: 800px) {
  .playbook-editions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-lg);
  }
}

.playbook-edition {
  height: 100%;
}

.card__media.playbook-edition__cover {
  aspect-ratio: unset;
  height: auto;
  min-height: unset;
  max-height: none;
  overflow: visible;
  flex: 0 0 auto;
}

.playbook-edition__cover {
  background: var(--sage);
  padding: clamp(1.5rem, 3vw, 2.35rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.playbook-edition__cover img {
  width: min(100%, 13.5rem);
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  object-position: center top;
  display: block;
  border-radius: 0.45rem;
  box-shadow:
    0 14px 28px rgba(70, 77, 72, 0.16),
    0 4px 10px rgba(70, 77, 72, 0.1);
}

.playbook-outcomes {
  position: relative;
  z-index: 1;
  margin-top: var(--space-lg);
}

.playbook-outcomes__title {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

@media (min-width: 800px) {
  .playbook-outcomes .outcome-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }
}

.learn-outcomes {
  display: grid;
  gap: var(--space-lg);
  align-items: start;
}

@media (min-width: 900px) {
  .learn-outcomes {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(2.5rem, 5vw, 4.5rem);
  }

  .learn-outcomes .section-header {
    margin-bottom: 0;
    max-width: none;
  }
}

.outcome-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.outcome-toggle {
  padding: 0;
  overflow: hidden;
}

.outcome-toggle:hover,
.outcome-toggle.reveal.is-visible:hover {
  transform: none;
}

.outcome-toggle__q {
  padding: 1.15rem 2.75rem 1.15rem 1.25rem;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.3;
}

.outcome-toggle__q::after {
  right: 1.15rem;
}

.outcome-toggle__a {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  max-width: none;
  font-size: 0.95rem;
}

.outcome-toggle__a .featured__list {
  margin-bottom: 0;
}

.outcome-toggle.is-open .outcome-toggle__a {
  padding: 0 1.25rem 1.25rem;
}

.outcome-toggle.is-open {
  box-shadow: var(--shadow-soft);
  border-color: rgba(70, 77, 72, 0.1);
}

.featured {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(70, 77, 72, 0.06);
}

@media (min-width: 960px) {
  .featured {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.featured__media {
  min-height: 18rem;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  background: var(--beige-deep);
}

.featured__media img {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
  object-position: center;
  display: block;
}

.featured__body {
  padding: clamp(2rem, 4vw, 3.25rem);
}

.featured__meta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: var(--space-sm);
}

.featured__body h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: var(--space-sm);
}

.featured__body > p {
  color: var(--text-muted);
  margin-bottom: calc(var(--space-md) * 0.6);
  line-height: 1.75;
}

.featured__body .read-more > p,
.featured__body .read-more__inner > p {
  color: var(--text-muted);
  margin: 0 0 calc(var(--space-md) * 0.6);
  line-height: 1.75;
}

.featured__body .read-more__inner > p:last-child {
  margin-bottom: 0;
}

.featured__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: var(--space-md);
}

.featured__list li {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
  padding-left: 1.1rem;
  position: relative;
}

.featured__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--terracotta);
}

.featured__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.offer-pill {
  display: inline-block;
  margin-bottom: var(--space-sm);
  padding: 0.55rem 0.9rem;
  background: rgba(221, 127, 93, 0.14);
  color: var(--charcoal);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  line-height: 1.45;
}

.offer-pill strong {
  color: var(--terracotta);
  font-weight: 600;
}

/* ---------- Topic list ---------- */

.topic-list {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 800px) {
  .topic-list {
    grid-template-columns: 1fr 1fr;
  }
}

.topic {
  padding: var(--space-md);
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  box-shadow: 0 0 0 transparent;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out),
    border-color 0.4s var(--ease), background-color 0.4s var(--ease);
}

.topic:hover {
  transform: translateY(-3px);
  background: #fff;
  box-shadow: 0 8px 28px rgba(70, 77, 72, 0.08);
  border-color: rgba(70, 77, 72, 0.06);
}

.topic.reveal.is-visible:hover {
  transform: translateY(-3px);
}

@media (prefers-reduced-motion: reduce) {
  .topic,
  .topic:hover,
  .topic.reveal.is-visible:hover {
    transition: none;
    transform: none;
  }
}

.topic h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  margin-bottom: 0;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.topic h3 + p {
  margin-top: 0.65rem;
}

.topic p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- Audience stats ---------- */

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

@media (min-width: 800px) {
  .stat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-block strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.15rem);
  font-weight: 700;
  letter-spacing: 0;
  color: var(--terracotta);
  margin-bottom: 0.4rem;
}

.stat-block span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.audience-layout {
  display: grid;
  gap: var(--space-md);
  align-items: start;
}

.audience-layout .section-header {
  margin-bottom: var(--space-sm);
}

.audience-layout__cta {
  margin-top: var(--space-md);
}

.audience-breakdown--offset {
  padding-top: 2.5rem;
}

.stat-grid--audience {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: none;
  margin-bottom: 0;
  gap: 1.25rem 1.75rem;
}

.audience-breakdown {
  display: grid;
  gap: 0.75rem;
  width: 100%;
  max-width: none;
}

.audience-row {
  --accent: var(--dusty-rose);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem 1.5rem;
  padding: 1.25rem 1.5rem 1.25rem 1.35rem;
  background: var(--white);
  border: 1px solid rgba(70, 77, 72, 0.1);
  border-radius: var(--radius-lg);
  border-left: 0.35rem solid var(--accent);
  box-shadow: none;
  transform: translateY(0);
  transition:
    transform var(--hover-duration) var(--ease-out),
    box-shadow var(--hover-duration) var(--ease-out),
    border-color var(--hover-duration-fast) var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .audience-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(70, 77, 72, 0.08);
    border-color: rgba(70, 77, 72, 0.16);
  }

  .audience-row:hover .audience-row__fill {
    filter: brightness(1.06);
  }

  .audience-row:hover .audience-row__value {
    color: var(--accent);
  }
}

.audience-row--rose {
  --accent: var(--dusty-rose);
}

.audience-row--sage {
  --accent: var(--sage-deep);
}

.audience-row--terra {
  --accent: var(--terracotta);
}

.audience-row--khaki {
  --accent: var(--khaki);
}

.audience-row__main {
  min-width: 0;
  display: grid;
  gap: 0.7rem;
}

.audience-row__label {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  line-height: 1.3;
}

.audience-row__track {
  width: 100%;
  height: 0.5rem;
  border-radius: 999px;
  background: rgba(70, 77, 72, 0.1);
  overflow: hidden;
}

.audience-row__fill {
  display: block;
  height: 100%;
  width: var(--pct, 0%);
  border-radius: inherit;
  background: var(--accent);
  transform-origin: left center;
  transform: scaleX(0);
  transition:
    transform 0.9s var(--ease-out),
    filter var(--hover-duration-fast) var(--ease);
}

.audience-breakdown.reveal.is-visible .audience-row__fill {
  transform: scaleX(1);
}

.audience-row__value {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  line-height: 1;
  min-width: 3.5ch;
  text-align: right;
  transition: color var(--hover-duration-fast) var(--ease);
}

@media (min-width: 960px) {
  .audience-layout {
    grid-template-columns: minmax(16rem, 0.9fr) minmax(0, 1.3fr);
    gap: clamp(2.5rem, 5vw, 4.5rem);
    align-items: start;
  }

  .audience-layout .section-header {
    margin-bottom: var(--space-md);
    max-width: none;
  }

  .stat-grid--audience {
    gap: 1.75rem 2rem;
  }
}

@media (max-width: 520px) {
  .audience-row {
    padding: 1.05rem 1.15rem 1.05rem 1.05rem;
    gap: 0.85rem 1rem;
  }

  .audience-row__value {
    font-size: clamp(1.55rem, 8vw, 1.9rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .audience-row__fill {
    transform: none;
    transition: none;
  }
}

/* Partnerships — reach / engagement */
.section--charcoal .eyebrow--on-dark {
  color: var(--terracotta);
}

.reach-layout .section-header {
  max-width: 40rem;
}

.reach-heroes {
  display: grid;
  gap: 1.75rem;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
  width: 100%;
}

@media (min-width: 720px) {
  .reach-heroes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.75rem, 3.5vw, 3rem);
  }
}

.reach-hero strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6.5vw, 4.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--beige);
  margin-bottom: 0.5rem;
  background: none;
  padding: 0;
}

.reach-hero span {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242, 240, 233, 0.62);
}

.reach-discovery {
  width: 100%;
  max-width: none;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.reach-discovery__label {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242, 240, 233, 0.55);
}

.reach-discovery__bar {
  display: flex;
  width: 100%;
  height: 0.85rem;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(242, 240, 233, 0.12);
}

.reach-discovery__out,
.reach-discovery__in {
  display: block;
  height: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 1s var(--ease-out);
}

.reach-discovery__out {
  width: var(--out, 60%);
  background: var(--terracotta);
  transition-delay: 0.08s;
}

.reach-discovery__in {
  width: var(--in, 40%);
  background: var(--sage);
  transition-delay: 0.22s;
}

.reach-discovery.reveal.is-visible .reach-discovery__out,
.reach-discovery.reveal.is-visible .reach-discovery__in {
  transform: scaleX(1);
}

.reach-discovery__legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.65rem 1.5rem;
  margin-top: 0.85rem;
  font-size: 0.95rem;
  color: rgba(242, 240, 233, 0.78);
}

.reach-discovery__legend strong {
  color: var(--beige);
  font-weight: 600;
  background: none;
  padding: 0;
}

.reach-discovery__legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.reach-discovery__swatch {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  flex-shrink: 0;
}

.reach-discovery__swatch--out {
  background: var(--terracotta);
}

.reach-discovery__swatch--in {
  background: var(--sage);
}

.reach-detail {
  list-style: none;
  margin: 0;
  padding: clamp(1.35rem, 3vw, 1.75rem) 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem 1.5rem;
  width: 100%;
  max-width: none;
  border-top: 1px solid rgba(242, 240, 233, 0.14);
}

@media (min-width: 800px) {
  .reach-detail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem 2rem;
  }
}

@media (min-width: 1100px) {
  .reach-detail {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.reach-detail li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.reach-detail strong {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--dusty-rose);
  background: none;
  padding: 0;
}

.reach-detail span {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(242, 240, 233, 0.55);
}

@media (prefers-reduced-motion: reduce) {
  .reach-discovery__out,
  .reach-discovery__in {
    transform: none;
    transition: none;
  }
}

/* ---------- Newsletter capture ---------- */

.newsletter-capture {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: var(--space-sm);
}

.newsletter-capture input[type="email"] {
  flex: 1 1 12rem;
  min-width: 0;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(242, 240, 233, 0.25);
  border-radius: var(--radius);
  background: rgba(242, 240, 233, 0.08);
  color: var(--beige);
  font: inherit;
  font-size: 0.9rem;
}

.newsletter-capture input::placeholder {
  color: rgba(242, 240, 233, 0.45);
}

.newsletter-capture input:focus {
  outline: none;
  border-color: var(--terracotta);
}

.newsletter-capture--on-light {
  justify-content: center;
  max-width: 26rem;
  width: 100%;
  margin-inline: auto;
  margin-top: var(--space-sm);
}

.newsletter-capture--on-light input[type="email"] {
  border-color: rgba(70, 77, 72, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
}

.newsletter-capture--on-light input::placeholder {
  color: rgba(70, 77, 72, 0.45);
}

.newsletter-capture--on-light input:focus {
  border-color: var(--terracotta);
  background: #fff;
}

.newsletter-capture--on-light .btn {
  flex: 1 1 auto;
}

/* ---------- Footer 3-col ---------- */

.footer__grid {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 800px) {
  .footer__grid {
    grid-template-columns: 0.85fr 1.7fr 1fr;
  }
}

.footer__subhead {
  margin-top: var(--space-md);
}

.footer__col .footer-note {
  color: rgba(242, 240, 233, 0.65);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: var(--space-sm);
}

.footer__newsletter-row {
  display: flex;
  align-items: center;
  gap: 1.15rem 1.35rem;
  margin-top: var(--space-sm);
}

.footer__newsletter-logo {
  flex: 0 0 auto;
  display: block;
  line-height: 0;
  transition: opacity 0.25s var(--ease), transform 0.35s var(--ease-out);
}

.footer__newsletter-logo img {
  display: block;
  height: 9rem;
  width: auto;
}

.footer__newsletter-logo:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.footer__newsletter-row .newsletter-capture {
  flex: 0 1 20rem;
  width: 20rem;
  max-width: 100%;
  min-width: 0;
  margin-top: 0;
  flex-direction: column;
  align-items: stretch;
  gap: 0.55rem;
}

.footer__newsletter-row .newsletter-capture input[type="email"] {
  flex: none;
  width: 100%;
}

.footer__newsletter-row .newsletter-capture .btn {
  width: 100%;
  padding-inline: 1.15rem;
  font-size: 0.85rem;
  white-space: nowrap;
}

@media (max-width: 799px) {
  .footer__grid {
    gap: var(--space-md);
  }

  .footer__col--newsletter {
    margin-bottom: 0;
  }

  .footer__newsletter-row {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0.35rem;
    gap: 0.75rem;
  }

  .footer__newsletter-logo img {
    height: 4.25rem;
  }

  .footer__newsletter-row .newsletter-capture {
    flex: 0 0 auto;
    width: 100%;
    max-width: 20rem;
    height: auto;
    margin-bottom: 0;
  }

  .footer__bottom {
    margin-top: 0.85rem;
    padding-top: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal-left,
  .reveal-scale {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .stack__item {
    position: relative;
    top: auto;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
  }

  .hero__media {
    transform: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ---------- Utility ---------- */

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

.br-desktop {
  display: none;
}

@media (min-width: 800px) {
  .br-desktop {
    display: block;
  }
}

.text-center {
  text-align: center;
}

.mt-sm {
  margin-top: var(--space-sm);
}
.mt-md {
  margin-top: var(--space-md);
}
.mt-lg {
  margin-top: var(--space-lg);
}

.mb-0 {
  margin-bottom: 0;
}

/* ---------- 404 ---------- */

.not-found {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  padding-block: var(--space-xl);
}

.not-found__inner {
  max-width: 36rem;
  text-align: left;
}

.not-found h1 {
  margin-bottom: 0;
}

.not-found__lede {
  margin-bottom: var(--space-md);
}

.not-found .btn-group {
  margin-top: var(--space-sm);
}

/* ---------- Legal / privacy ---------- */

.legal-doc {
  max-width: 42rem;
}

.legal-doc__meta {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(70, 77, 72, 0.12);
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.legal-doc h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  margin: var(--space-md) 0 var(--space-sm);
}

.legal-doc ul {
  margin: 0 0 var(--space-sm);
  padding-left: 1.25rem;
}

.legal-doc li {
  margin-bottom: 0.55rem;
  color: var(--text-muted);
}

.footer__bottom a {
  color: rgba(242, 240, 233, 0.65);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  transition: color var(--hover-duration-fast) var(--ease);
}

.footer__bottom a:hover {
  color: var(--dusty-rose);
}

/* ---------- Back to top ---------- */

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.7rem 0.95rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--cream);
  border: 1px solid rgba(70, 77, 72, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(70, 77, 72, 0.12);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.65rem);
  pointer-events: none;
  transition:
    opacity 0.35s var(--ease),
    visibility 0.35s var(--ease),
    transform 0.4s var(--ease-out),
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    border-color 0.25s var(--ease);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

.back-to-top:hover {
  background: #fff;
  color: var(--terracotta);
  border-color: rgba(221, 127, 93, 0.35);
  transform: translateY(-2px);
}

.back-to-top:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}

@media (max-width: 520px) {
  .back-to-top {
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 0.65rem 0.8rem;
    font-size: 0.68rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  .back-to-top:hover {
    transform: none;
  }
}

/* ---------- Cookie consent (GDPR territories) ---------- */

.cookie-banner {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 80;
  width: min(22.5rem, calc(100vw - 2rem));
  padding: 1.15rem 1.2rem 1.2rem;
  background: var(--cream);
  color: var(--charcoal);
  border: 1px solid rgba(70, 77, 72, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 36px rgba(70, 77, 72, 0.16);
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.45s var(--ease-out),
    opacity 0.35s var(--ease);
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner p {
  margin: 0 0 0.95rem;
  font-size: 0.88rem;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: var(--text-muted);
}

.cookie-banner a {
  color: var(--charcoal);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-banner__actions .btn {
  flex: 1 1 auto;
  min-width: 6.5rem;
  font-size: 0.78rem;
  padding: 0.65rem 0.9rem;
}

.cookie-banner__actions .btn--secondary {
  background: transparent;
  border-color: rgba(70, 77, 72, 0.22);
  color: var(--charcoal);
  box-shadow: none;
}

@media (max-width: 520px) {
  .cookie-banner {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner {
    transition: none;
  }
}

/* ---------- Contact modal ---------- */

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}

.contact-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(70, 77, 72, 0.48);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 0;
  cursor: pointer;
}

.contact-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 34rem);
  max-height: min(92vh, 48rem);
  overflow: auto;
  overscroll-behavior: contain;
  background: var(--cream);
  border: 1px solid rgba(70, 77, 72, 0.08);
  border-radius: 0.65rem;
  box-shadow: var(--shadow-layer);
  padding: clamp(1.5rem, 3.5vw, 2.15rem);
  transform: translateY(12px) scale(0.985);
  transition: transform 0.4s var(--ease-out);
}

.contact-modal.is-open .contact-modal__dialog {
  transform: none;
}

.contact-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--charcoal);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.contact-modal__close:hover {
  background: rgba(70, 77, 72, 0.08);
  color: var(--terracotta);
}

.contact-modal__logo {
  display: block;
  width: min(11.5rem, 58%);
  height: auto;
  margin: 0.15rem auto 1.35rem;
}

.contact-modal__intro {
  text-align: center;
  margin: 0 0 1.35rem;
}

.contact-modal__intro h2 {
  font-size: clamp(1.55rem, 3vw, 1.9rem);
  margin: 0 0 0.4rem;
}

.contact-modal__intro p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.contact-form {
  display: grid;
  gap: 1.05rem;
}

.contact-form__field {
  display: grid;
  gap: 0.4rem;
}

.contact-form__field > span,
.contact-form__legend {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.contact-form__hint {
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="url"],
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(70, 77, 72, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font: inherit;
  font-size: 0.92rem;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.contact-form textarea {
  min-height: 6.5rem;
  resize: vertical;
  line-height: 1.55;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(70, 77, 72, 0.42);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--terracotta);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(221, 127, 93, 0.14);
}

.contact-form__options {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-form__option {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.85rem;
  border: 1.5px solid rgba(70, 77, 72, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.contact-form__option:hover {
  border-color: rgba(221, 127, 93, 0.45);
  background: #fff;
}

.contact-form__option:has(:checked) {
  border-color: var(--terracotta);
  background: color-mix(in srgb, var(--terracotta) 8%, #fff);
}

.contact-form__option input {
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--terracotta);
  flex: 0 0 auto;
  margin: 0;
}

.contact-form__option span {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.35;
}

.contact-form__actions {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

.contact-form__actions .btn {
  width: 100%;
}

/* Testimonial.to embed */
.section--testimonials {
  overflow-x: clip;
}

.section--testimonials .container {
  min-width: 0;
}

.testimonialto-embed {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.testimonialto-embed iframe {
  display: block;
  width: 1px;
  min-width: 100%;
  border: 0;
}

@media (max-width: 799px) {
  .section--testimonials .container {
    width: 100%;
    overflow-x: clip;
  }

  .section--testimonials .section-header {
    width: min(100% - (var(--gutter) * 2), var(--max));
    margin-inline: auto;
  }

  .testimonialto-embed {
    width: 100%;
    max-width: none;
    padding-inline: 0.5rem;
    box-sizing: border-box;
  }

  .testimonialto-embed iframe {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }

  .testimonialto-cta {
    width: min(100% - (var(--gutter) * 2), var(--max));
    margin-inline: auto;
  }
}

.testimonialto-cta {
  margin-top: calc(var(--space-md) + 1.7em);
}

.contact-form__note {
  margin: 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.contact-form__feedback {
  margin: 0;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  line-height: 1.5;
}

.contact-form__feedback--error {
  background: rgba(221, 127, 93, 0.12);
  border: 1px solid rgba(221, 127, 93, 0.35);
  color: var(--charcoal);
}

.contact-form__feedback--success {
  background: rgba(202, 206, 189, 0.45);
  border: 1px solid rgba(70, 77, 72, 0.12);
  color: var(--charcoal);
}

.contact-form__field.is-invalid input,
.contact-form__field.is-invalid textarea {
  border-color: var(--terracotta);
}

.contact-form__field-error {
  margin: 0;
  font-size: 0.78rem;
  color: var(--terracotta);
}

.contact-form__actions .btn.is-loading {
  opacity: 0.75;
  pointer-events: none;
}

.contact-form--success {
  text-align: center;
  padding: 1.5rem 0.5rem 0.75rem;
}

.contact-form--success h3 {
  font-size: 1.45rem;
  margin: 0 0 0.65rem;
}

.contact-form--success p {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  line-height: 1.55;
}

body.contact-modal-open {
  overflow: hidden;
}

@media (max-width: 520px) {
  .contact-modal {
    padding: 0.65rem;
    align-items: end;
  }

  .contact-modal__dialog {
    width: 100%;
    max-height: 92vh;
    border-radius: 0.65rem 0.65rem 0.35rem 0.35rem;
    padding: 1.35rem 1.15rem 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-modal,
  .contact-modal__dialog {
    transition: none;
  }
}
