/* ═══════════════════════════════════════════════════════════════
   BEYOND THE SMOOTH TALK — Global Styles
   Design: Dark cinematic hero w/ brain glow → Light structured sections
   Typography: Cormorant Garamond (display) + Outfit (body)
   Palette: Deep Black, Warm Gold, Ivory, Structured Greys
   ═══════════════════════════════════════════════════════════════ */

/* ─── CSS Custom Properties ──────────────────────────────────── */
:root {
  /* Brand Orange — warm amber-orange, not yellow-gold */
  --gold: #e07b39;
  --gold-light: #f09050;
  --gold-dark: #c86820;
  --gold-glow: rgba(224, 123, 57, 0.3);
  --gold-soft: rgba(224, 123, 57, 0.07);

  /* Dark tones */
  --black: #1c1c1e;
  --charcoal: #2c2c30;
  --dark-grey: #3a3a3e;
  --mid-grey: #6e6e72;
  --soft-grey: #aeaeb2;

  /* Light tones — hero and content backgrounds */
  --border-grey: #d8d5d0;
  --light-grey: #eceae6;
  --ivory: #f5f3ef;
  --smoke: #efefef;
  --white: #fafaf8;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", -apple-system, sans-serif;

  --section-pad: clamp(4rem, 10vw, 8rem);
  --container: 1200px;
  --gap: clamp(1.5rem, 3vw, 2rem);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration: 0.6s;
  --radius: 3px;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration) var(--ease-out);
}
ul,
ol {
  list-style: none;
}

/* ─── Utility ────────────────────────────────────────────────── */
.section-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.section-kicker {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-kicker::before,
.section-kicker::after {
  content: "";
  display: block;
  height: 1px;
  width: 28px;
  background: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
}

.section-header .section-kicker {
  justify-content: center;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(3rem, 5vw, 4rem);
}

.section-intro {
  font-size: 1rem;
  color: var(--mid-grey);
  line-height: 1.8;
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--duration) var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-icon {
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--ease-out);
}
.btn:hover .btn-icon {
  transform: translateX(4px);
}

.btn--primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  overflow: hidden;
  position: relative;
}

.btn--primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: none;
  pointer-events: none;
  animation: btnShimmer 3.5s ease-in-out infinite;
}

@keyframes btnShimmer {
  0% {
    left: -75%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  40% {
    left: 120%;
    opacity: 1;
  }
  41% {
    opacity: 0;
  }
  100% {
    left: 120%;
    opacity: 0;
  }
}

.btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(224, 123, 57, 0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

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

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

/* ═══════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.4s var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(12, 8, 4, 0.92) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border-bottom: 1px solid rgba(224, 123, 57, 0.15) !important;
}

/* Solid header for inner pages that have no dark hero behind it */
.site-header.is-solid {
  background: rgba(18, 12, 7, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(224, 123, 57, 0.15);
}

.site-header-dummy {
  background: rgba(12, 8, 4, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  padding: 0.75rem 0;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition:
    background 0.4s ease,
    backdrop-filter 0.4s ease,
    border-color 0.4s ease;
}

.header-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 1001;
  height: 74px; /* hug the artwork; clips the logo's transparent padding */
  overflow: hidden;
}

/* Image logo — sized to match the footer, with the PNG's transparent
   top/bottom padding pulled out of the box so it sits tight to the top */
.logo-img {
  height: 200px;
  width: auto;
  margin: -63px 0;
  display: block;
  transition: opacity 0.3s ease;
}

.logo-img:hover {
  opacity: 0.85;
}

.main-nav {
  display: flex;
  align-items: center;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  padding: 0.25rem 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}
.nav-link:hover,
.nav-link.is-active {
  color: var(--white);
}
.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}

.header-cta {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease-out);
}
.header-cta:hover {
  background: var(--gold);
  color: #ffffff;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.toggle-bar {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}
.mobile-toggle.is-open .toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}
.mobile-toggle.is-open .toggle-bar:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.is-open .toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* ═══════════════════════════════════════════════════════════════
   HERO — Full viewport dark with brain asset
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #1a1208;
  overflow: hidden;
}

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

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to right,
      rgba(15, 10, 5, 0.82) 0%,
      rgba(15, 10, 5, 0.55) 50%,
      rgba(15, 10, 5, 0.3) 100%
    ),
    linear-gradient(to top, rgba(15, 10, 5, 0.7) 0%, transparent 50%);
}

/* Hero canvas — particle orbs layer */

/* Ambient glow orbs in background */
.hero-ambient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.ambient-orb--left {
  width: 700px;
  height: 700px;
  top: -20%;
  left: -20%;
  background: radial-gradient(
    circle,
    rgba(224, 123, 57, 0.09) 0%,
    rgba(200, 100, 40, 0.04) 50%,
    transparent 70%
  );
  animation: ambientDrift1 25s ease-in-out infinite;
}

.ambient-orb--right {
  width: 600px;
  height: 600px;
  top: 0%;
  right: -10%;
  background: radial-gradient(
    circle,
    rgba(224, 123, 57, 0.07) 0%,
    transparent 65%
  );
  animation: ambientDrift2 30s ease-in-out infinite;
}

.ambient-orb--centre {
  width: 900px;
  height: 400px;
  bottom: -10%;
  left: 5%;
  background: radial-gradient(
    ellipse,
    rgba(180, 180, 190, 0.12) 0%,
    transparent 70%
  );
  animation: ambientDrift3 20s ease-in-out infinite;
}

@keyframes ambientDrift1 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(5%, 8%);
  }
}
@keyframes ambientDrift2 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  40% {
    transform: translate(-6%, 5%);
  }
  70% {
    transform: translate(3%, -4%);
  }
}
@keyframes ambientDrift3 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(4%, -6%);
  }
}

/* Brain asset — sits right-centre, large, partially bleeding off */
/* Brain image — black background disappears via mix-blend-mode: screen */
.hero-brain {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  max-width: 1000px;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  animation: brainReveal 2.2s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

.brain-img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(1.2) brightness(1.2);
}

@keyframes brainReveal {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Vignette — fades edges, especially left so text stays legible */

/* Hero content — centred over the brain */
.hero-content {
  position: relative;
  z-index: 5;
  max-width: 640px;
  padding: 8rem clamp(2rem, 4vw, 4rem) 7rem;
  margin: 0;
  text-align: left;
}

.hero-kicker {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 200, 150, 1);
  margin-bottom: 1.75rem;
  display: block;
  text-align: center;
  text-indent: 0.35em;
  text-shadow: 0 0 30px rgba(224, 123, 57, 0.8);
  opacity: 0;
  animation: fadeInUp 1s var(--ease-out) 0.6s forwards;
}

.hero-kicker::before {
  display: none;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  margin-bottom: 1.4rem;
  line-height: 1.15;
}

/* Slight stripe separating the headline from the description */
.hero-divider {
  width: 56px;
  height: 3px;
  border: none;
  border-radius: 2px;
  background: #b5591f;
  margin: 0 0 1.6rem;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-out) 1.2s forwards;
}

.title-line {
  display: block;
  color: var(--white);
  text-align: left;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-out) forwards;
}

.title-line--1 {
  font-size: clamp(2.4rem, 4.2vw, 3.5rem);
  letter-spacing: 0.01em;
  font-weight: 400;
  margin-bottom: 0;
  animation-delay: 0.8s;
}

.title-line--2 {
  font-size: clamp(2.4rem, 4.2vw, 3.5rem);
  letter-spacing: 0.01em;
  animation-delay: 1s;
}

.title-line--2 .hero-highlight {
  font-style: normal;
  background: linear-gradient(180deg, #e07b39 0%, #a04a15 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.25rem;
  text-align: center;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-out) 1.2s forwards;
}

.hero-subtitle em {
  font-style: normal;
  color: #f5a055;
  border-bottom: 1px solid rgba(245, 160, 85, 0.5);
  padding-bottom: 1px;
  text-shadow: 0 0 20px rgba(224, 123, 57, 0.4);
}

.hero-description {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 0 2.5rem;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-out) 1.4s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-out) 1.6s forwards;
}

/* Keep the two hero buttons side by side within the left-aligned column */
.hero-actions .btn {
  padding: 0.9rem 1.7rem;
  letter-spacing: 0.14em;
}

/* Deeper solid orange for the primary hero button (no gradient) */
.hero-actions .btn--primary {
  background: #b5591f;
  border-color: #b5591f;
}
.hero-actions .btn--primary:hover {
  background: #9c4a17;
  border-color: #9c4a17;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  text-decoration: none;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 2.4s forwards;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.scroll-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
}

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

.scroll-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.35s var(--ease-out);
  font-weight: 300;
}

.scroll-btn:hover .scroll-text {
  color: var(--gold-light);
}

/* Animated chevron arrow */
.scroll-chevron {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.scroll-chevron span {
  display: block;
  width: 12px;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
  transition: background 0.35s var(--ease-out);
}

.scroll-chevron span:first-child {
  transform: rotate(40deg) translateX(4px);
}
.scroll-chevron span:last-child {
  transform: rotate(-40deg) translateX(-4px);
}

/* Second chevron — offset, fainter, animated downward */
.scroll-chevron-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0.3;
  animation: chevronFade 1.8s ease-in-out infinite;
}

.scroll-chevron-2 span {
  display: block;
  width: 12px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

.scroll-chevron-2 span:first-child {
  transform: rotate(40deg) translateX(4px);
}
.scroll-chevron-2 span:last-child {
  transform: rotate(-40deg) translateX(-4px);
}

@keyframes chevronFade {
  0%,
  100% {
    opacity: 0.15;
    transform: translateY(-3px);
  }
  50% {
    opacity: 0.5;
    transform: translateY(2px);
  }
}

.scroll-btn:hover .scroll-chevron span,
.scroll-btn:hover .scroll-chevron-2 span {
  background: var(--gold-light);
}

@keyframes scrollPulse {
  0% {
    top: -100%;
  }
  100% {
    top: 200%;
  }
}

/* ═══════════════════════════════════════════════════════════════
   THE LEADERSHIP DECISION CHALLENGE — Heading + questions row
   ═══════════════════════════════════════════════════════════════ */
.challenge {
  padding: var(--section-pad) 0;
  background: var(--ivory);
}

.challenge-inner {
  display: flex;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 4.5rem);
}

.challenge-lead {
  flex: 0 0 clamp(220px, 25%, 320px);
}

.challenge-kicker {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
  white-space: nowrap;
}

.challenge-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 1.9vw, 1.85rem);
  line-height: 1.2;
  color: var(--charcoal);
}

.challenge-questions {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(1.25rem, 2vw, 2rem);
}

.challenge-item {
  text-align: center;
  transition: transform 0.4s var(--ease-out);
}
.challenge-item:hover {
  transform: translateY(-6px);
}
.challenge-icon {
  transition:
    color 0.4s var(--ease-out),
    transform 0.4s var(--ease-out);
}
.challenge-item:hover .challenge-icon {
  transform: scale(1.08);
  color: var(--gold-dark);
}
.challenge-item:hover .challenge-q {
  color: var(--dark-grey);
}
.challenge-q {
  transition: color 0.4s var(--ease-out);
}

.challenge-icon {
  height: 42px;
  margin-bottom: 1.1rem;
  color: var(--gold);
}

.challenge-icon .ch-icon {
  width: 40px;
  height: 40px;
}

.challenge-icon .ch-icon--shield {
  width: 34px;
  height: 34px;
}

.challenge-q {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--mid-grey);
}

.challenge-note {
  text-align: center;
  margin-top: clamp(3rem, 6vw, 5rem);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  color: var(--charcoal);
}

/* ═══════════════════════════════════════════════════════════════
   EXPERTISE — Boxed modern cards with icon sprite
   ═══════════════════════════════════════════════════════════════ */
.expertise {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.expertise-card {
  background: var(--white);
  padding: clamp(1.75rem, 2.5vw, 2.25rem);
  border-radius: 18px;
  border: 1px solid rgba(210, 205, 200, 0.7);
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.06),
    0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.expertise-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
  border-radius: 0 0 18px 18px;
}

.expertise-card:hover {
  background: var(--ivory);
  transform: translateY(-3px);
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.09),
    0 2px 8px rgba(224, 123, 57, 0.08);
}

.expertise-card:hover::after {
  transform: scaleX(1);
}

/* Icon sprite — each icon is ~25% width of the 4-icon sheet */
.card-icon-sprite {
  width: 52px;
  height: 52px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  position: relative;
}

.sprite {
  position: absolute;
  height: 100%;
  width: auto;
  /* The sheet is 4 icons wide. We show 1/4 at a time */
  /* Each icon is approx 384px wide in a 1536px sheet */
  /* We scale the image so 1 icon = 52px display */
}

/* Scale: display 52px, source icon ~384px → scale = 52/384 = 13.5% */
/* Full image width at that scale = 1536 × (52/384) = 208px */
.sprite {
  width: 208px; /* full sheet width when scaled to show 1 icon at 52px */
  height: auto;
  top: 0;
}

.sprite--brain {
  left: 0;
}
.sprite--bulb {
  left: -52px;
}
.sprite--gear {
  left: -104px;
}
.sprite--growth {
  left: -156px;
}

.card-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.3;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
  text-align: center;
}

.card-flow {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.85rem;
  text-transform: uppercase;
  text-align: center;
}

.card-desc {
  font-size: 0.86rem;
  color: var(--mid-grey);
  line-height: 1.75;
  text-align: center;
}

/* Results row beneath expertise cards */
.expertise-results {
  margin-top: 2.5rem;
  text-align: center;
}

.results-heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.result-item {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.6;
  text-align: center;
  padding: 1rem 0.75rem;
  border-top: 2px solid #e07b39;
}

/* ═══════════════════════════════════════════════════════════════
   FRAMEWORK — Sound of Leadership™ — 2×2 card grid
   ═══════════════════════════════════════════════════════════════ */
.framework {
  padding: var(--section-pad) 0;
  background: var(--ivory);
}

/* ─── Approach layout: steps (left) + soundwave (right) ─────────── */
.framework-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.framework-steps {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1px solid rgba(210, 205, 200, 0.7);
  border-radius: 18px;
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.05),
    0 1px 3px rgba(0, 0, 0, 0.03);
  transition: all 0.35s var(--ease-out);
}

.step:hover {
  border-color: rgba(224, 123, 57, 0.4);
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(224, 123, 57, 0.08);
  transform: translateX(4px);
}

.step-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 0.15rem;
}

.step-label {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--mid-grey);
  line-height: 1.7;
}

.framework-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 360px;
}

.framework-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

.framework-header-text {
  max-width: 680px;
}

.framework-header-visual {
  width: 280px;
  height: 280px;
  flex-shrink: 0;
}

.framework-header-visual .soundwave-svg {
  width: 100%;
  height: 100%;
}

.framework-intro {
  font-size: 1rem;
  color: var(--mid-grey);
  line-height: 1.8;
  margin-top: 1.25rem;
  margin-bottom: 2.5rem;
}

.framework-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 1.5rem;
}

.framework-card {
  background: var(--white);
  border: 1px solid rgba(210, 205, 200, 0.7);
  border-radius: 18px;
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  display: flex;
  gap: 1.25rem;
  align-items: stretch;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.framework-card-icon {
  align-self: flex-start;
}

.framework-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #e07b39, #a04a15);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s var(--ease-out);
}

.framework-card:hover {
  background: var(--ivory);
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.06),
    0 2px 8px rgba(224, 123, 57, 0.06);
}

.framework-card:hover::after {
  transform: scaleY(1);
}

.framework-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(224, 123, 57, 0.06);
  border: 1px solid rgba(224, 123, 57, 0.15);
  color: #e07b39;
}

.framework-card-icon .step-icon-svg {
  width: 26px;
  height: 26px;
}

.framework-card-number {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  display: block;
  margin-bottom: 0.25rem;
}

.framework-card-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}

.framework-card-label {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.framework-card-desc {
  font-size: 0.86rem;
  color: var(--mid-grey);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.framework-card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.framework-card-list-heading {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-top: auto;
  padding-top: 0.75rem;
  margin-bottom: 0.25rem;
}

.framework-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.framework-card-list li {
  font-size: 0.82rem;
  color: var(--mid-grey);
  line-height: 1.65;
  padding-left: 1rem;
  position: relative;
}

.framework-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #e07b39;
}

/* Orange highlight for "Sound of Leadership™" */
.text-orange {
  color: #e07b39;
}

/* ═══════════════════════════════════════════════════════════════
   SOUND OF LEADERSHIP™ — The Approach (vertical journey, Services)
   ═══════════════════════════════════════════════════════════════ */
.sol-framework {
  padding: var(--section-pad) 0;
  background: var(--ivory);
}

.sol-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
}
.sol-head .section-kicker {
  justify-content: center;
}

.sol-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.sol-layout .sol-steps {
  max-width: 520px;
  margin: 0;
}
.sol-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sol-visual .soundwave-graphic {
  max-width: 440px;
}

.sol-steps {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.sol-step {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 1.75rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.sol-step:last-of-type {
  margin-bottom: 0;
}

.sol-rail {
  position: relative;
  display: flex;
  justify-content: center;
}

/* Connector line linking the icons */
.sol-step .sol-rail::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 42px;
  bottom: -2.5rem;
  width: 2px;
  background: #d98a55;
  transform: translateX(-50%);
  z-index: 0;
}
/* Last step — icon column becomes a vertical stack: icon, connector,
   then the "Sound of Leadership™" label tucked directly beneath it */
.sol-step--end {
  margin-bottom: 0;
}
.sol-step--end .sol-rail {
  flex-direction: column;
  align-items: flex-start;
  overflow: visible;
}
.sol-step--end .sol-rail::before {
  display: none;
}

.sol-icon {
  position: relative;
  z-index: 1;
  width: 84px;
  height: 84px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, #e07b39 0%, #b4531b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 18px rgba(176, 83, 27, 0.28);
}

.sol-icon svg {
  width: 40px;
  height: 40px;
}

.sol-text {
  padding-top: 10px;
}

.sol-title {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.4rem;
  line-height: 1.1;
  color: #b85719;
  margin: 0;
}

.sol-sub {
  font-style: italic;
  color: var(--charcoal);
  font-size: 1.02rem;
  margin: 0.35rem 0 0.55rem;
}

.sol-desc {
  color: var(--mid-grey);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 36ch;
  margin: 0;
}

/* Flow terminus — tucked under the icon column (left-aligned, wraps to
   fit the column width) so the last paragraph's height can't push it down */
.sol-outro {
  position: relative;
  width: 108px;
  margin-top: 24px;
  text-align: left;
}
.sol-outro::before {
  content: "";
  position: absolute;
  top: -24px;            /* short connector from the base of the icon */
  left: 41px;
  height: 18px;
  width: 2px;
  background: #d98a55;
}

.sol-label {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b85719;
  font-size: 0.8rem;
  line-height: 1.3;
}

/* ═══════════════════════════════════════════════════════════════
   BOOK SECTION
   ═══════════════════════════════════════════════════════════════ */
.book-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.book-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.book-visual {
  width: 100%;
  display: block;
}

/* Full wraparound cover (back · spine · front) */
.book-full-cover {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  margin: 0 auto;
  border-radius: 2px;
  box-shadow:
    -16px 20px 50px rgba(0, 0, 0, 0.3),
    -4px 6px 16px rgba(0, 0, 0, 0.15);
}

.book-flip-wrapper {
  width: 100%;
  perspective: 1400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

/* ─── Flip Card ──────────────────────────────────────────────── */

.book-flip {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  transform-style: preserve-3d;
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
/* Pre-rendered 3D cover images (spine + shadow baked in) are ~3:4 */
.book-flip--render {
  aspect-ratio: 3 / 4;
}

.book-flip-wrapper:hover .book-flip {
  transform: rotateY(180deg);
}

.book-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 2px;
  overflow: hidden;
}

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

.book-face--front {
  box-shadow:
    -16px 20px 50px rgba(0, 0, 0, 0.3),
    -4px 6px 16px rgba(0, 0, 0, 0.15);
}

.book-face--back {
  transform: rotateY(180deg);
  box-shadow:
    16px 20px 50px rgba(0, 0, 0, 0.3),
    4px 6px 16px rgba(0, 0, 0, 0.15);
}

.book-spine {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 100%;
  background: linear-gradient(90deg, #1a0e08, #3d2817, #2a1a0e);
  transform: translateX(-17px);
  border-radius: 1px 0 0 1px;
  box-shadow: -3px 0 10px rgba(0, 0, 0, 0.4);
}

.book-flip-hint {
  order: -1; /* sit above the cover */
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888880;
  transition: opacity 0.3s;
}

.book-flip-wrapper:hover .book-flip-hint {
  opacity: 0;
}

/* Book info */
.book-subtitle {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.book-author {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--soft-grey);
  margin-bottom: 2rem;
}

.book-description {
  font-size: 0.93rem;
  color: var(--mid-grey);
  line-height: 1.85;
  margin-bottom: 1.1rem;
}

.book-description em {
  color: var(--gold);
  font-style: italic;
}

.book-details {
  display: flex;
  gap: 2.5rem;
  margin: 1.75rem 0;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border-grey);
  border-bottom: 1px solid var(--border-grey);
}

.detail-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--soft-grey);
  margin-bottom: 0.2rem;
}

.detail-value {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--charcoal);
}

.book-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.book-heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-grey);
}

.book-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1.25rem;
}

.book-list li {
  font-size: 0.93rem;
  color: var(--mid-grey);
  line-height: 1.85;
  padding-left: 1.2rem;
  position: relative;
}

.book-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #e07b39;
}

/* ═══════════════════════════════════════════════════════════════
   AUTHOR — About the Author
   ═══════════════════════════════════════════════════════════════ */
.author {
  padding: var(--section-pad) 0;
  background: var(--black);
}

.author .section-kicker {
  color: var(--gold);
  justify-content: center;
}

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

.author-layout {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.author-desc {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.85;
  margin-bottom: 1.1rem;
}

.author-desc strong {
  color: var(--white);
}

.author-philosophy {
  margin: 2rem 0;
  padding: 2rem 2.5rem;
  border-left: 3px solid #e07b39;
  border-right: 3px solid #e07b39;
  background: rgba(224, 123, 57, 0.05);
  border-radius: 4px;
}

.philosophy-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.philosophy-text strong {
  color: var(--gold);
  font-style: normal;
}

/* ═══════════════════════════════════════════════════════════════
   AVAILABILITY — Book distribution
   ═══════════════════════════════════════════════════════════════ */
.availability {
  padding: var(--section-pad) 0;
  background: var(--ivory);
}

.availability-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}

.availability-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 100px;
}

/* Founder insight quote (by the author) — sits below the devices image */
.founder-insight {
  width: 100%;
  max-width: 460px;
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-grey);
}
.founder-insight-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.founder-insight-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.45;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.founder-insight-cite {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid-grey);
}

.devices-img {
  width: 100%;
  max-width: 460px;
  height: auto;
}

.availability-content .section-kicker {
  justify-content: center;
}

.availability-content .section-title {
  text-align: center;
}

.availability-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.availability-channel {
  background: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: 14px;
  border: 1px solid rgba(210, 205, 200, 0.7);
}

.availability-channel--wide {
  grid-column: 1 / -1;
}

/* Amazon channels are clickable — link to the store */
.availability-channel--link {
  display: block;
  color: inherit;
  transition: border-color var(--duration) var(--ease-out),
              transform var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out);
}
/* Persistent link cue: gold, underlined title with a trailing arrow */
.availability-channel--link .channel-title {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(224, 123, 57, 0.4);
  text-underline-offset: 3px;
}
.availability-channel--link .channel-title::after {
  content: "\2197"; /* ↗ external link */
  display: inline-block;
  margin-left: 0.4rem;
  font-size: 0.85em;
  transition: transform var(--duration) var(--ease-out);
}
.availability-channel--link:hover,
.availability-channel--link:focus-visible {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(224, 123, 57, 0.12);
  outline: none;
}
.availability-channel--link:hover .channel-title,
.availability-channel--link:focus-visible .channel-title {
  color: var(--gold-dark);
  text-decoration-color: var(--gold-dark);
}
.availability-channel--link:hover .channel-title::after,
.availability-channel--link:focus-visible .channel-title::after {
  transform: translate(2px, -2px);
}

.channel-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}

.channel-detail {
  font-size: 0.88rem;
  color: var(--mid-grey);
  line-height: 1.7;
}

.channel-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.platform {
  font-size: 0.78rem;
  color: var(--mid-grey);
  background: var(--ivory);
  padding: 0.35rem 0.75rem;
  border-radius: 2rem;
  border: 1px solid var(--border-grey);
  line-height: 1.4;
}

.platform strong {
  color: var(--charcoal);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════
   STATS SECTION
   ═══════════════════════════════════════════════════════════════ */
.stats {
  padding: var(--section-pad) 0;
  background: var(--charcoal);
}

.stats-header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.stats .section-kicker {
  justify-content: center;
  color: var(--gold);
}
.stats .section-kicker::before,
.stats .section-kicker::after {
  background: var(--gold);
}

.stats .section-title {
  text-align: center;
  color: var(--white);
  margin-bottom: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(200, 149, 108, 0.15);
  border-radius: 4px;
  overflow: hidden;
}

.stat {
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(200, 149, 108, 0.12);
  transition: background 0.3s;
}

.stat:last-child {
  border-right: none;
}
.stat:hover {
  background: rgba(200, 149, 108, 0.05);
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--gold);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--gold);
}

.stat-label {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--soft-grey);
  margin-top: 0.6rem;
}

.stat-heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIAL
   ═══════════════════════════════════════════════════════════════ */
.testimonial {
  padding: var(--section-pad) 0;
  background: var(--ivory);
}

.testimonial-inner {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.12;
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.testimonial-quote p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  line-height: 1.65;
  color: var(--charcoal);
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-cite {
  display: block;
  margin-top: 2rem;
  font-style: normal;
}

.cite-name {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════ */
.cta {
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--charcoal);
  overflow: hidden;
}

/* CTA animated mesh canvas */
.cta-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

.cta-mesh {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}

.cta-orb--1 {
  width: 500px;
  height: 500px;
  top: -30%;
  left: -10%;
  background: radial-gradient(
    circle,
    rgba(224, 123, 57, 0.18) 0%,
    transparent 70%
  );
  animation: ambientDrift1 20s ease-in-out infinite;
}

.cta-orb--2 {
  width: 400px;
  height: 400px;
  bottom: -20%;
  right: 10%;
  background: radial-gradient(
    circle,
    rgba(200, 100, 40, 0.12) 0%,
    transparent 70%
  );
  animation: ambientDrift2 25s ease-in-out infinite;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-title em {
  color: var(--gold);
  font-style: italic;
}

.cta-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.site-footer {
  background: #16110b;
  border-top: 1px solid rgba(200, 149, 108, 0.1);
}
.footer-logo-img {
  height: 200px;
  margin-left: -10px;
  margin-top: -20px;
  width: auto;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--gap);
  padding: clamp(3rem, 5vw, 4rem) 0;
}

.footer-tagline {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 0.92rem;
  color: var(--soft-grey);
  margin-top: 0.5rem;
}

.footer-heading {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-nav ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-nav a,
.footer-contact a,
.footer-contact li {
  font-weight: 300;
  font-size: 0.83rem;
  color: var(--soft-grey);
  transition: color 0.3s var(--ease-out);
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--soft-grey);
  transition: all 0.3s var(--ease-out);
  border-radius: var(--radius);
}

.social-icon {
  width: 16px;
  height: 16px;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.73rem;
  color: var(--soft-grey);
}
.footer-credit {
  font-size: 0.68rem;
  color: var(--mid-grey);
}

.site-footer .logo-top {
  color: rgba(255, 255, 255, 0.7);
}
.site-footer .logo-smooth {
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.3;
    transform: scaleY(0.5);
  }
}

/* Scroll-triggered */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
}

[data-animate="fade-right"] {
  transform: translateX(-28px);
}
[data-animate="fade-left"] {
  transform: translateX(28px);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

[data-animate][data-delay="1"] {
  transition-delay: 0.12s;
}
[data-animate][data-delay="2"] {
  transition-delay: 0.24s;
}
[data-animate][data-delay="3"] {
  transition-delay: 0.36s;
}

/* ═══════════════════════════════════════════════════════════════
   EXPERTISE CARDS — SVG icon hover glow
   ═══════════════════════════════════════════════════════════════ */
.card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--gold);
  transition: all 0.4s var(--ease-out);
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(224, 123, 57, 0.08) 0%,
    rgba(180, 180, 190, 0.08) 100%
  );
  border: 1px solid rgba(200, 195, 190, 0.6);
  box-shadow:
    0 2px 10px rgba(0, 0, 0, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.icon-svg {
  width: 28px;
  height: 28px;
  transition:
    filter 0.4s var(--ease-out),
    transform 0.4s var(--ease-out);
}

.expertise-card:hover .card-icon {
  background: linear-gradient(
    135deg,
    rgba(224, 123, 57, 0.18) 0%,
    rgba(180, 180, 190, 0.1) 100%
  );
  border-color: rgba(224, 123, 57, 0.5);
  box-shadow:
    0 4px 16px rgba(224, 123, 57, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.expertise-card:hover .icon-svg {
  filter: drop-shadow(0 0 6px rgba(200, 149, 108, 0.8));
  transform: scale(1.1);
}

/* ═══════════════════════════════════════════════════════════════
   FRAMEWORK — Step icon styling
   ═══════════════════════════════════════════════════════════════ */
.step-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 195, 190, 0.5);
  border-radius: 12px;
  color: var(--gold);
  background: linear-gradient(
    135deg,
    rgba(224, 123, 57, 0.07) 0%,
    rgba(180, 180, 190, 0.07) 100%
  );
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.35s var(--ease-out);
}

.step-icon-svg {
  width: 22px;
  height: 22px;
  transition: filter 0.35s var(--ease-out);
}

.step:hover .step-icon {
  background: linear-gradient(
    135deg,
    rgba(224, 123, 57, 0.16) 0%,
    rgba(180, 180, 190, 0.08) 100%
  );
  border-color: var(--gold);
  box-shadow:
    0 4px 14px rgba(224, 123, 57, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.step:hover .step-icon-svg {
  filter: drop-shadow(0 0 4px rgba(200, 149, 108, 0.9));
}

/* ═══════════════════════════════════════════════════════════════
   SOUNDWAVE — Restored bouncy animation
   ═══════════════════════════════════════════════════════════════ */
.soundwave-graphic {
  width: 100%;
  max-width: 600px;
  filter: drop-shadow(0 0 24px rgba(224, 123, 57, 0.25));
}

.soundwave-svg {
  width: 100%;
  height: auto;
}

.pulse-ring {
  transform-origin: center;
  animation: pulseRing 4s var(--ease-in-out) infinite;
}
.ring-2 {
  animation-delay: 0.5s;
}
.ring-3 {
  animation-delay: 1s;
}

.bar {
  transform-origin: center;
  animation: soundBar 1.5s var(--ease-in-out) infinite alternate;
}
.bar-1 {
  animation-delay: 0s;
}
.bar-2 {
  animation-delay: 0.15s;
}
.bar-3 {
  animation-delay: 0.3s;
}
.bar-4 {
  animation-delay: 0.45s;
}
.bar-5 {
  animation-delay: 0.6s;
}
.bar-6 {
  animation-delay: 0.75s;
}
.bar-7 {
  animation-delay: 0.9s;
}

@keyframes pulseRing {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.45;
  }
}

@keyframes soundBar {
  0% {
    transform: scaleY(0.25);
  }
  100% {
    transform: scaleY(1);
  }
}

/* ═══════════════════════════════════════════════════════════════
   BOOK DETAILS — Readable ISBN / price
   ═══════════════════════════════════════════════════════════════ */
.book-details {
  display: flex;
  gap: 3rem;
  margin: 1.75rem 0;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border-grey);
  border-bottom: 1px solid var(--border-grey);
}

.detail-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--soft-grey);
  margin-bottom: 0.4rem;
}

.detail-value {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════════════════
   INNER PAGES — shared intro, Services, About
   ═══════════════════════════════════════════════════════════════ */

/* Intro band (replaces the hero on inner pages) */
.page-intro {
  padding: clamp(9rem, 13vw, 12rem) 0 clamp(2.5rem, 4vw, 3.5rem);
  background: var(--ivory);
  text-align: center;
}
.page-intro .section-kicker {
  justify-content: center;
}
.page-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.08;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.page-lead {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--mid-grey);
  max-width: 620px;
  margin: 0 auto;
}

/* Orange outline button */
.btn--gold-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--gold-outline:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

/* ─── Services ─── */
.services {
  padding: clamp(2.5rem, 5vw, 4rem) 0 var(--section-pad);
  background: var(--white);
}
.service {
  display: block;
  text-align: center;
  padding: clamp(2.75rem, 5vw, 4rem) 0;
  border-top: 1px solid var(--border-grey);
}
.service-aside {
  margin-bottom: 1.75rem;
}
.service-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.75rem, 4.5vw, 4rem);
  line-height: 1;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.service-name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--charcoal);
}
.service-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1.1rem;
}
.service-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--mid-grey);
  max-width: 88ch;
  margin: 0 auto 2rem;
}
.service-outcomes {
  display: inline-block;
  text-align: left;
}
.outcomes-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  text-align: center;
}
.outcomes-list {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}
.outcomes-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--dark-grey);
}
.outcomes-list li svg {
  color: var(--gold);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Prose-based service copy (Baseline / Lab / Measure & Sustain / Keynotes) */
.service-copy {
  max-width: 70ch;
  margin: 0 auto;
}
.service-copy p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--mid-grey);
  margin-bottom: 1.1rem;
}
.service-copy p:last-child {
  margin-bottom: 0;
}

/* Emphasised pull line inside a service */
.service-pull {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1.35;
  color: var(--charcoal);
  max-width: 40ch;
  margin: 1.9rem auto 0;
}

/* Closing tagline of a service */
.service-tagline {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2.1rem;
}

/* Executive Keynotes — no number; dash acts as a quiet marker */
.service--nonum .service-num {
  font-size: clamp(2rem, 3vw, 2.75rem);
  color: var(--border-grey);
}

/* Sound of Leadership™ framework embedded inside the Lab service */
.service-framework {
  max-width: 560px;
  margin: 2.6rem auto 0;
}
.service-framework-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 2.25rem;
}
.service-framework .sol-steps {
  text-align: left;
}

/* ─── Methodology journey (Services) ─── */
.evidence {
  padding: var(--section-pad) 0;
  background: var(--ivory);
  text-align: center;
}
.evidence-head {
  max-width: 680px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
}
.evidence-head .section-kicker {
  justify-content: center;
}
.evidence-flow {
  list-style: none;
  max-width: 440px;
  margin: 0 auto;
  display: grid;
  gap: 0.6rem;
}
.evidence-stage {
  background: var(--white);
  border: 1px solid var(--border-grey);
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
}
.evidence-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.evidence-stage-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.4vw, 1.55rem);
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}
.evidence-stage-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.98rem;
  color: var(--mid-grey);
}
.evidence-arrow {
  display: flex;
  justify-content: center;
  color: var(--gold);
}
.evidence-arrow svg {
  width: 22px;
  height: 22px;
}
.evidence-note {
  font-family: var(--font-body);
  font-weight: 300;
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--dark-grey);
  max-width: 52ch;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
}
.evidence-close {
  max-width: 44ch;
  margin: 1.75rem auto 0;
}
.evidence-close p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.4;
  color: var(--charcoal);
}
.evidence-close p:first-child {
  margin-bottom: 0.5rem;
  color: var(--mid-grey);
}

/* ─── About ─── */
.about-band {
  padding: clamp(2.5rem, 5vw, 4rem) 0 var(--section-pad);
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2.75rem, 5vw, 5rem);
  align-items: start;
}
.about-kicker {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.about-text p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.96rem;
  line-height: 1.8;
  color: var(--mid-grey);
  margin-bottom: 1rem;
}
.about-cta {
  margin-top: 1.75rem;
}
/* Book column — front cover beside the copy */
.about-book-media {
  display: flex;
  align-items: flex-start;
  gap: clamp(1rem, 1.5vw, 1.4rem);
}
.about-book-cover {
  flex: 0 0 auto;
  width: clamp(84px, 8vw, 118px);
  height: auto;
  border-radius: 2px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
}
.about-book-media .about-text p:last-child {
  margin-bottom: 0;
}
.about-quote-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.about-quote-head .about-kicker {
  margin-bottom: 0;
}
.about-quote-head .quote-mark {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.4;
}
.about-quote {
  position: relative;
  border: none;
}
.about-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  line-height: 1.5;
  color: var(--charcoal);
  margin-bottom: 1.4rem;
}
.about-quote cite {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid-grey);
}

/* ─── Contact ─── */
.contact {
  padding: clamp(2.5rem, 5vw, 4rem) 0 var(--section-pad);
  background: var(--white);
}
.contact-info {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.contact-info-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.contact-info-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--mid-grey);
}
.contact-details,
.contact-socials {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}
.contact-details {
  margin-top: 2rem;
}
/* Separate the socials from the contact info above */
.contact-socials {
  margin-top: 1.5rem;
}
.contact-details li,
.contact-socials li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid var(--border-grey);
  border-radius: 8px;
  background: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark-grey);
  transition: border-color 0.3s var(--ease-out);
}
.contact-details li:hover,
.contact-socials li:hover {
  border-color: var(--gold);
}
.contact-details a,
.contact-socials a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
}
.contact-details a:hover,
.contact-socials a:hover {
  color: var(--gold);
}
.contact-details svg,
.contact-socials svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-form-wrap {
  max-width: 620px;
  margin: clamp(2.5rem, 5vw, 3.5rem) auto 0;
}
.contact-form {
  display: grid;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-field label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid-grey);
}
.form-field label .optional {
  color: var(--soft-grey);
  letter-spacing: 0.06em;
  text-transform: none;
  font-weight: 300;
}
.form-field input,
.form-field textarea {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.98rem;
  color: var(--charcoal);
  background: var(--ivory);
  border: 1px solid var(--border-grey);
  border-radius: 4px;
  padding: 0.85rem 1rem;
  width: 100%;
  transition:
    border-color 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out);
}
.form-field textarea {
  resize: vertical;
  min-height: 150px;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(224, 123, 57, 0.12);
}
.contact-submit {
  justify-self: center;
  margin-top: 0.75rem;
}
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-error {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #a4341f;
  background: rgba(164, 52, 31, 0.08);
  border: 1px solid rgba(164, 52, 31, 0.25);
  border-radius: 4px;
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
}
.form-success {
  text-align: center;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--border-grey);
  border-radius: 14px;
  background: var(--ivory);
}
.form-success svg {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 1rem;
}
.form-success h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}
.form-success p {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--mid-grey);
  line-height: 1.7;
}

/* ─── Forms: reCAPTCHA notice & status (Lumani protocol) ─── */
.grecaptcha-badge { visibility: hidden !important; }
.captcha-notice {
  font-size: 0.72rem;
  font-weight: 300;
  color: #9a9aa0;
  line-height: 1.55;
  margin-top: 0.85rem;
}
.captcha-notice a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.form-status { font-size: 0.9rem; min-height: 1.4em; margin: 0.75rem 0; }
.form-status.is-success { color: #3f9d6b; }
.form-status.is-error { color: #c85454; }

/* Footer legal links */
.footer-legal { margin-top: 0.5rem; font-size: 0.8rem; }
.footer-legal a { color: var(--soft-grey); text-decoration: none; transition: color 0.3s ease; }
.footer-legal a:hover { color: var(--gold); }
.footer-legal span { color: rgba(255,255,255,0.25); margin: 0 0.5rem; }

/* ─── Legal pages (Privacy / Terms) ─── */
.legal {
  padding: clamp(2rem, 4vw, 3.5rem) 0 var(--section-pad);
  background: var(--white);
}
.legal-content {
  max-width: 72ch;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  color: var(--charcoal);
  margin: 2.25rem 0 0.75rem;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--mid-grey);
  margin-bottom: 1rem;
}
.legal-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.legal-updated { margin-top: 2.5rem; font-style: italic; color: var(--soft-grey); }
