/* ============================================================
   CASTORE — Site Stylesheet
   Personal brand: biomedical educator, coach, speaker.
   Aesthetic: dark warm charcoal, gold, editorial serif.
   ============================================================ */

:root {
  /* Color tokens */
  --bg-0: #0E0C0A;
  --bg-1: #13110E;
  --bg-2: #181410;
  --bg-3: #1F1A14;
  --gold: #C9A86A;
  --gold-soft: #D4B26A;
  --gold-deep: #8A7549;
  --gold-faint: rgba(201, 168, 106, 0.16);
  --gold-line: rgba(201, 168, 106, 0.22);
  --cream: #E8DCC4;
  --cream-dim: #B8AC93;
  --muted: #6E6453;

  /* Type */
  --display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --serif: "Spectral", "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --script: "Caveat", "Dancing Script", cursive;

  /* Layout */
  --max: 1440px;
  --gutter: clamp(20px, 4vw, 64px);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-0);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-0);
  background-image:
    radial-gradient(ellipse at top right, rgba(201, 168, 106, 0.06), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(201, 168, 106, 0.03), transparent 50%),
    url("../img/texture.png");
  background-size: auto, auto, 480px 480px;
  background-attachment: fixed, fixed, fixed;
  background-blend-mode: normal, normal, overlay;
  min-height: 100vh;
}

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

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
a:hover { color: var(--gold-soft); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Typography utilities ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
}

.label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  color: var(--gold);
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.005em;
}

h1 { font-size: clamp(2.4rem, 6vw, 5.2rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 1.6vw, 1.4rem); }

p { margin: 0 0 1em; }

/* ---------- Layout ---------- */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 12, 10, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gold-line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--gold);
}

.logo .wordmark {
  font-family: var(--display);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
  padding-left: 2px;
}

.logo .laurel {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links a { white-space: nowrap; }

.nav-links a {
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--gold); }

.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
  min-height: 44px;
}
.cta:hover { background: var(--gold); color: var(--bg-0); }
.cta .arrow { font-size: 1.2em; line-height: 1; }

/* Hamburger */
.hamburger {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
  color: var(--gold);
}
.hamburger svg { width: 24px; height: 24px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(60px, 8vw, 110px) 0 clamp(40px, 6vw, 80px);
  overflow: hidden;
}
.hero .wrap { position: relative; z-index: 1; }

/* Strength backdrop on the left half of the hero.
   Sepia-toned, more visible, with a dark scrim layered
   underneath the copy so the headline stays legible. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0 48% 0 0;
  background: url("../img/strength-bg.jpg") left center / cover no-repeat;
  opacity: 0.50;
  filter: sepia(0.42) hue-rotate(-8deg) saturate(0.92) brightness(0.95) contrast(1.05);
  mask-image: linear-gradient(to right, #000 0%, #000 65%, transparent 100%),
              linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, #000 0%, #000 65%, transparent 100%),
                      linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
  pointer-events: none;
  z-index: 0;
}

/* Legibility scrim — sits between the backdrop and the copy.
   Darkens the area directly under the headline and CTAs while
   letting the image read clearly toward the edges. */
.hero::after {
  content: "";
  position: absolute;
  inset: 0 48% 0 0;
  background:
    linear-gradient(to right,
      rgba(14,12,10,0.55) 0%,
      rgba(14,12,10,0.35) 45%,
      rgba(14,12,10,0) 100%),
    radial-gradient(ellipse at 22% 55%, rgba(14,12,10,0.45), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 600px;
}

.hero-eyebrow {
  width: 80px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(2.8rem, 8.5vw, 7.5rem);
  color: var(--gold);
  font-weight: 500;
  font-style: italic;
  line-height: 0.96;
  letter-spacing: -0.01em;
  margin-bottom: 36px;
  text-wrap: balance;
}
.hero-title .word {
  display: inline-block;
}

.hero-eyebrow-top {
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-eyebrow-top::before {
  content: "";
  width: 60px; height: 1px;
  background: var(--gold);
  display: inline-block;
}

.hero-sub {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  line-height: 1.55;
  color: var(--cream);
  max-width: 460px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.ghost-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--gold-line);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
  min-height: 44px;
}
.ghost-link:hover { color: var(--gold); border-color: var(--gold); }
.ghost-link .arrow { color: var(--gold); }

/* Hero portrait + overlays */
.hero-visual {
  position: relative;
  height: 100%;
  min-height: 560px;
  overflow: visible;
}

.hero-portrait {
  position: absolute;
  inset: 0;
  background: url("../img/hero-portrait.png") center/cover no-repeat;
  mask-image: linear-gradient(to bottom, #000 84%, transparent 100%),
              linear-gradient(to right, transparent 0%, #000 10%, #000 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 84%, transparent 100%),
                      linear-gradient(to right, transparent 0%, #000 10%, #000 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

/* Cell overlay removed per request — keep rule hidden so any
   stale markup or cached pages do not show the graphic. */
.hero-mito { display: none !important; }

/* Thought-stream — Krebs cycle, equations, helix, orbitals.
   Matched to the same translucent warm gold tone as the
   line-art mitochondrion baked into the portrait background. */
.thought-stream {
  position: absolute;
  top: -2%;
  left: -10%;
  width: 78%;
  max-width: 520px;
  opacity: 0.32;
  pointer-events: none;
  filter: sepia(0.35) hue-rotate(-8deg) saturate(0.85) brightness(0.95)
          drop-shadow(0 0 12px rgba(201,168,106,0.12));
  z-index: 2;
  mix-blend-mode: screen;
}

.hero-mito-label {
  display: none !important;
  text-shadow: 0 2px 10px rgba(14,12,10,0.8);
}

.adaptive-chart {
  position: absolute;
  right: -8%;
  top: 38%;
  width: 200px;
  pointer-events: none;
  z-index: 3;
  background: rgba(14,12,10,0.55);
  backdrop-filter: blur(2px);
  padding: 12px 14px;
  border: 1px solid var(--gold-line);
}
.adaptive-chart .label-line {
  color: var(--gold-deep);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.adaptive-chart svg { width: 100%; height: 90px; }

/* Inline variant — used on landing hero, anchored under the CTAs.
   Widened to match the headline width (extends just past “Adapt”). */
.adaptive-chart--inline {
  position: static;
  right: auto;
  top: auto;
  width: min(560px, 100%);
  margin-top: 36px;
  background: rgba(14,12,10,0.55);
  backdrop-filter: blur(2px);
}
.adaptive-chart--inline svg { height: 120px; }

.handwritten {
  position: absolute;
  bottom: 6%;
  right: 3%;
  font-family: var(--script);
  font-size: clamp(1.5rem, 1.9vw, 2rem);
  line-height: 1.1;
  color: var(--gold-soft);
  text-align: left;
  pointer-events: none;
  max-width: 280px;
  z-index: 3;
  text-shadow: 0 2px 10px rgba(14,12,10,0.8);
}

/* ---------- Stats strip ---------- */
.stats {
  background: linear-gradient(180deg, var(--bg-1), var(--bg-2));
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  padding: 36px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1fr 1.3fr 1.4fr;
  gap: 36px;
  align-items: center;
}

.stat-num {
  font-family: var(--display);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  font-style: italic;
}
.stat-num sup { font-size: 0.5em; vertical-align: top; }
.stat-lbl {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: 8px;
  line-height: 1.5;
}

.trust {
  display: flex;
  align-items: center;
  gap: 18px;
}
.trust-icons { color: var(--gold); flex-shrink: 0; }
.trust-text {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
  line-height: 1.5;
}

.seal {
  width: 96px;
  height: 96px;
  color: var(--gold);
  margin: 0 auto;
  display: block;
  opacity: 0.9;
}

.tagline {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--cream);
  line-height: 1.6;
}
.tagline strong { color: var(--gold); font-weight: 500; }

/* ---------- Offerings ---------- */
.offerings {
  padding: 60px 0 80px;
}
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.offer {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.offer-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}
.offer-icon {
  width: 38px;
  height: 38px;
  color: var(--gold);
  flex-shrink: 0;
}
.offer-num {
  font-family: var(--display);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--gold);
  margin-left: auto;
}
.offer-title {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 4px;
}
.offer-desc {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--cream-dim);
  line-height: 1.55;
  margin: 0 0 10px;
}
.learn-more {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--gold-line);
  padding-bottom: 6px;
  width: max-content;
  font-weight: 500;
  transition: gap 0.25s var(--ease), color 0.25s var(--ease);
}
.learn-more:hover { gap: 14px; color: var(--gold-soft); }

/* ---------- North Star ---------- */
.north-star {
  position: relative;
  padding: 90px 0 110px;
  overflow: hidden;
  border-top: 1px solid var(--gold-line);
  background: linear-gradient(180deg, var(--bg-0), var(--bg-1));
}
.north-star-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.vitruvian-bg {
  position: absolute;
  left: 28%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 460px;
  height: 460px;
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
}
.quote-eyebrow {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.quote-eyebrow::before { content:""; width:36px; height:1px; background:var(--gold-deep); display:inline-block; }
.pull-quote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  color: var(--gold-soft);
  line-height: 1.3;
  font-weight: 400;
  position: relative;
  padding-left: 40px;
}
.pull-quote::before {
  content: "\201C";
  position: absolute;
  left: -4px;
  top: -16px;
  font-size: 5rem;
  color: var(--gold-deep);
  line-height: 1;
}

.subscribe {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.subscribe-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.subscribe-text {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--cream);
  max-width: 440px;
}
.subscribe-fineprint {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--cream-dim);
  margin: 8px 0 0;
  opacity: 0.7;
}
.form-row {
  display: flex;
  gap: 0;
  border: 1px solid var(--gold-line);
  background: rgba(255,255,255,0.02);
  border-radius: 2px;
  overflow: hidden;
  max-width: 480px;
  transition: border-color 0.25s var(--ease);
}
.form-row:focus-within { border-color: var(--gold); }
.form-row input[type="email"] {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 16px 20px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 14px;
  outline: none;
  min-width: 0;
}
.form-row input::placeholder { color: var(--muted); }
.form-row button {
  background: var(--gold);
  color: var(--bg-0);
  border: 0;
  padding: 0 28px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s var(--ease);
  min-height: 44px;
}
.form-row button:hover { background: var(--gold-soft); }
.form-msg {
  font-size: 13px;
  font-family: var(--serif);
  color: var(--gold-soft);
  min-height: 1.4em;
}
.form-msg.error { color: #d99670; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--gold-line);
  padding: 50px 0 36px;
  background: var(--bg-1);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
}
.footer-nav {
  display: flex;
  gap: 28px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--cream-dim);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.footer-nav a:hover { color: var(--gold); }
.legal {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-align: right;
}
.footer-logo {
  font-family: var(--display);
  letter-spacing: 0.32em;
  font-size: 18px;
  color: var(--gold);
  text-transform: uppercase;
}

/* ---------- Generic inner-page sections ---------- */
.page-hero {
  padding: 90px 0 50px;
  border-bottom: 1px solid var(--gold-line);
}
.page-hero h1 {
  font-style: italic;
  margin-bottom: 24px;
}
.page-hero .lede {
  max-width: 680px;
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--cream);
}
.section { padding: 70px 0; border-bottom: 1px solid var(--gold-line); }
.section:last-of-type { border-bottom: 0; }
.section h2 { margin-bottom: 28px; font-style: italic; }
.section p { font-family: var(--serif); color: var(--cream); max-width: 720px; line-height: 1.7; }

.two-col {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: start;
}
.two-col img { border: 1px solid var(--gold-line); }

/* About page: hero with Mom on the right, then copy + stacked photos --- */
.about-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 60px;
  align-items: center;
}
.about-hero-copy { max-width: 760px; }
.about-hero-photo { margin: 0; }
.about-hero-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border: 1px solid var(--gold-line);
  background: #0c0c0c;
  /* Warm sepia tone to match the Julie / Jeter / Hannah treatment. */
  filter: sepia(0.22) brightness(0.97) contrast(1.04);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 60px;
  align-items: start;
}
.about-intro { max-width: 760px; }

.about-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-self: start;
}
.about-stack__cell { margin: 0; }
.about-stack__cell img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border: 1px solid var(--gold-line);
  background: #0c0c0c;
  /* Muted, warm tone that harmonises with the cream/gold palette */
  filter: saturate(0.5) sepia(0.18) brightness(0.96) contrast(1.02);
}
/* Mom -- keep her warmer/cleaner since she's already B&W */
.about-stack__cell--anchor img {
  filter: contrast(1.04);
}
/* Julie photo is B&W at source, so the shared sepia filter renders cool/ashy.
   Push the sepia and warmth harder so she matches Jeter & Hannah's honey tone. */
.about-stack__cell--julie img {
  filter: sepia(0.55) saturate(1.2) brightness(1.02) contrast(1.04) hue-rotate(-6deg);
}

/* Mentoring page -- Testimonials ---------------------------------- */
.testimonials-section { padding-top: 30px; }
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-top: 36px;
}
.testimonial {
  margin: 0;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
.testimonial--reverse {
  grid-template-columns: minmax(0, 1fr) 240px;
}
.testimonial--reverse .testimonial__photo { order: 2; }
.testimonial--reverse .testimonial__quote { order: 1; }

.testimonial__photo {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--gold-line);
  background: #0c0c0c;
  /* Already pre-toned at export, but enforce the look across browsers. */
  filter: contrast(1.02);
}

.testimonial__quote {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--cream);
  position: relative;
  padding-left: 28px;
}
.testimonial__quote::before {
  content: "\201C";
  position: absolute;
  left: -6px;
  top: -18px;
  font-family: var(--serif);
  font-size: 4.2rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.55;
}
.testimonial__headline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.45rem;
  line-height: 1.25;
  color: var(--gold);
  margin: 0 0 14px;
}
.testimonial__quote p { margin: 0 0 14px; }
.testimonial__quote figcaption {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--gold-line);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial__name {
  font-family: var(--serif);
  font-style: italic;
  color: var(--cream);
  font-size: 1.05rem;
}
.testimonial__title {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* Insights essays ------------------------------------------------- */
.insights-essays-section { padding-top: 30px; }
.insight-article {
  max-width: 740px;
  margin: 0 auto;
  padding: 70px 0;
  border-top: 1px solid var(--gold-line);
}
.insight-article:first-of-type { border-top: 0; padding-top: 30px; }
.insight-article .insight-head { margin-bottom: 36px; }
.insight-article .insight-head .kicker {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.insight-article h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-style: italic;
  color: var(--cream);
  margin: 0 0 22px;
}
.insight-article .lede {
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.6;
  color: var(--cream);
  max-width: 680px;
}
.insight-article h3 {
  font-family: var(--sans);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--cream);
  margin: 44px 0 14px;
  text-transform: none;
}
.insight-article p,
.insight-article li {
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.78;
  color: var(--cream);
}
.insight-article p { margin: 0 0 18px; max-width: 680px; }
.insight-article ul,
.insight-article ol { margin: 0 0 22px; padding-left: 22px; }
.insight-article li { margin-bottom: 10px; }
.insight-article blockquote {
  margin: 28px 0;
  padding: 4px 0 4px 22px;
  border-left: 2px solid var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--cream);
}
.insight-article a {
  color: var(--cream);
  text-decoration: underline;
  text-decoration-color: var(--gold-line);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease;
}
.insight-article a:hover { text-decoration-color: var(--gold); }
.insight-article aside {
  position: relative;
  padding: 24px 28px;
  margin: 28px 0;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--gold-line);
}
.insight-article aside::before {
  content: attr(data-label);
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.insight-takeaway::before { content: "The immediate takeaway"; }
.insight-summary::before { content: "The 80/20 summary"; }
.insight-teachback::before { content: "Teach it back"; }
.insight-takeaway p,
.insight-summary li,
.insight-teachback li {
  font-size: 1rem;
  line-height: 1.65;
}
.insight-takeaway p { margin-bottom: 0; }
.insight-summary ul,
.insight-teachback ol,
.insight-teachback ul { margin: 0; padding-left: 20px; }
.insight-foot {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--gold-line);
  font-family: var(--serif);
  font-style: italic;
  color: var(--cream-dim);
}
.insight-foot a {
  display: inline-block;
  margin-top: 10px;
  font-style: normal;
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
}
.insight-foot a:hover { color: var(--cream); }
@media (max-width: 740px) {
  .insight-article { padding: 50px 0; }
  .insight-article aside { padding: 20px; }
  .insight-article h2 { font-size: 1.7rem; }
}

.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.pillar {
  border: 1px solid var(--gold-line);
  padding: 30px;
  background: rgba(255,255,255,0.015);
}
.pillar h3 {
  color: var(--gold);
  font-style: italic;
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.pillar p {
  font-family: var(--serif);
  color: var(--cream-dim);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}
.pillar .num {
  font-family: var(--display);
  font-size: 0.9rem;
  color: var(--gold-deep);
  letter-spacing: 0.22em;
  margin-bottom: 10px;
  display: block;
}

.list-articles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.article-card {
  display: block;
  border: 1px solid var(--gold-line);
  background: rgba(255,255,255,0.015);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
  color: inherit;
}
.article-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.article-card .thumb {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.article-card .body { padding: 24px 26px 28px; }
.article-card .meta {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
}
.article-card h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 10px;
  line-height: 1.2;
}
.article-card p {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--cream-dim);
  line-height: 1.6;
  margin: 0;
}

.resource-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.resource-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--gold-line);
}
.resource-list h3 {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 6px;
}
.resource-list p {
  font-family: var(--serif);
  color: var(--cream-dim);
  font-size: 0.92rem;
  margin: 0;
}

.kicker {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
  display: inline-block;
}

/* ---------- Mobile nav drawer ---------- */
.drawer {
  position: fixed;
  inset: 0;
  background: var(--bg-0);
  z-index: 60;
  display: none;
  flex-direction: column;
  padding: 24px var(--gutter);
}
.drawer.open { display: flex; }
.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
.drawer-close {
  background: transparent;
  border: 0;
  color: var(--gold);
  width: 44px; height: 44px;
  cursor: pointer;
}
.drawer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.drawer ul a {
  color: var(--cream);
  font-size: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--display);
  font-style: italic;
}
.drawer .cta { margin-top: 36px; align-self: flex-start; }

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1180px) {
  .stats-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px 48px;
  }
  .stats-inner > :last-child { grid-column: 1 / -1; }
  /* 8-tab nav doesn't fit comfortably below this width; switch to drawer. */
  .nav-links { display: none; }
  .hamburger { display: inline-flex; align-items: center; justify-content: center; }
  .nav .cta { display: none; }
}

@media (max-width: 1023px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-visual { min-height: 480px; }
  .hero-portrait { mask-image: linear-gradient(to bottom, #000 90%, transparent 100%); -webkit-mask-image: linear-gradient(to bottom, #000 90%, transparent 100%); }
  .hero-mito { width: 70%; max-width: 380px; }
  .thought-stream { width: 70%; max-width: 420px; opacity: 0.28; }
  .handwritten { right: 4%; bottom: 6%; }
  .offerings-grid { grid-template-columns: repeat(2, 1fr); gap: 50px 40px; }
  .north-star-inner { grid-template-columns: 1fr; gap: 50px; }
  .vitruvian-bg { left: 80%; opacity: 0.1; }
  .two-col { grid-template-columns: 1fr; }
  .about-hero-layout { grid-template-columns: 1fr; gap: 28px; }
  .about-hero-photo { max-width: 280px; margin: 0 auto; }
  .testimonial,
  .testimonial--reverse {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .testimonial--reverse .testimonial__photo { order: 1; }
  .testimonial--reverse .testimonial__quote { order: 2; }
  .testimonial__photo { max-width: 260px; }
  .testimonials { gap: 48px; }
  .about-layout { grid-template-columns: 1fr; gap: 36px; }
  .about-stack {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }
  .about-stack__cell { width: calc(33.333% - 10px); max-width: 200px; }
  .pillars { grid-template-columns: 1fr; }
  .list-articles { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: inline-flex; align-items: center; justify-content: center; }
  .nav .cta { display: none; }
}

@media (max-width: 639px) {
  :root { --gutter: 22px; }
  /* On mobile the hero is single-column, so let the backdrop
     span the full width and fade out at the bottom. */
  .hero::before {
    inset: 0;
    opacity: 0.33;
    mask-image: linear-gradient(to bottom, #000 0%, #000 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 60%, transparent 100%);
  }
  .hero::after {
    inset: 0;
    background:
      linear-gradient(to bottom,
        rgba(14,12,10,0.55) 0%,
        rgba(14,12,10,0.4) 50%,
        rgba(14,12,10,0.7) 100%);
  }
  .stats-inner { grid-template-columns: 1fr; gap: 30px; text-align: left; }
  .stats-inner > div { text-align: left; }
  .seal { margin: 0; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 18px; }
  .legal { text-align: center; }
  .hero { padding-top: 36px; padding-bottom: 24px; }
  .hero-eyebrow-top { font-size: 0.85rem; }
  .hero-sub { font-size: 1rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 14px; }
  .hero-visual { min-height: 440px; }
  .hero-mito { display: none; }
  .hero-mito-label { display: none; }
  .thought-stream { opacity: 0.22; }
  .adaptive-chart { display: none; }
  .adaptive-chart--inline { display: block; width: 100%; max-width: 280px; margin-top: 28px; }
  .handwritten { font-size: 1.4rem; max-width: 230px; bottom: 4%; right: 6%; }
  .form-row { flex-direction: column; }
  .form-row button { width: 100%; padding: 14px; }
  .resource-list li { grid-template-columns: 1fr; }
  .vitruvian-bg { width: 280px; height: 280px; left: 50%; opacity: 0.08; }
}

/* ============================================================
   Speaking hero — copy + stage photo
   ============================================================ */
.speaking-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.speaking-hero__copy { min-width: 0; }
.speaking-hero__photo {
  margin: 0;
  position: relative;
  /* No border, no card frame — mask is applied to the image only so the caption stays fully visible. */
}
.speaking-hero__photo img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 50%, transparent 92%);
          mask-image: radial-gradient(ellipse at center, #000 50%, transparent 92%);
  /* keep original photo coloring */
}
.speaking-hero__photo figcaption {
  position: static;
  margin-top: 18px;
  padding: 0;
  background: none;
  /* Stronger title — gold, larger, wider tracking. */
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
}
@media (max-width: 860px) {
  .speaking-hero__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .speaking-hero__photo { order: -1; }
}

/* ============================================================
   Mentoring hero — copy + Brian Shaw photo
   ============================================================ */
.mentoring-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.mentoring-hero__copy { min-width: 0; }
.mentoring-hero__photo {
  margin: 0 auto;
  position: relative;
  max-width: 440px;
  width: 100%;
}
.mentoring-hero__photo img {
  display: block;
  width: 100%;
  height: auto;
  /* Toned down, warm sepia to flow with the page. */
  filter: saturate(0.42) sepia(0.32) brightness(0.95) contrast(1.04);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 48%, transparent 94%);
          mask-image: radial-gradient(ellipse at center, #000 48%, transparent 94%);
}
.mentoring-hero__photo figcaption {
  position: static;
  margin-top: 18px;
  padding: 0;
  background: none;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
}
@media (max-width: 860px) {
  .mentoring-hero__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .mentoring-hero__photo { order: -1; max-width: 360px; }
}

/* ============================================================
   Training hero — copy + DRIVE studio photo
   ============================================================ */
.training-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.training-hero__copy { min-width: 0; }
.training-hero__photo { max-width: 420px; }
@media (max-width: 860px) {
  .training-hero__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .training-hero__photo { order: -1; max-width: 340px; }
}

/* Inline tribute variant — fits inside the "What you get" column. */
.mentor-inline {
  max-width: 380px;
  margin: 36px auto 0;
}
.mentor-inline figcaption {
  font-size: 12px;
  letter-spacing: 0.26em;
}

/* ============================================================
   Engagement list — past & upcoming speaking
   ============================================================ */
.engagement-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.engagement {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid var(--gold-line);
}
.engagement:last-child { border-bottom: 1px solid var(--gold-line); }
.engagement__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.engagement__meta time {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.engagement__where {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.engagement__body h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
  color: var(--cream);
  margin: 0 0 10px;
  line-height: 1.2;
}
.engagement__body p {
  margin: 0 0 12px;
  color: var(--cream-dim);
}
@media (max-width: 720px) {
  .engagement {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .engagement__meta { flex-direction: row; align-items: baseline; gap: 14px; }
  .engagement__meta time { font-size: 22px; }
}

/* ============================================================
   Podcast list — appearances & co-hosted
   ============================================================ */
.lede-small {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--cream-dim);
  max-width: 64ch;
  margin: 12px 0 0;
}
.podcast-updated {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 24px 0 0;
}
.podcast-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}
.podcast-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid var(--gold-line);
}
.podcast-list .podcast-row:last-child { border-bottom: 1px solid var(--gold-line); }
.podcast-row__date {
  font-family: var(--display);
  font-size: 18px;
  color: var(--gold);
  font-weight: 500;
}
.podcast-row__title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.3;
  margin: 0 0 4px;
}
.podcast-row__show {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.podcast-row__ep {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--muted);
  margin-left: 8px;
}
.podcast-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: flex-end;
}
.podcast-link {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
  white-space: nowrap;
}
.podcast-link:hover {
  color: var(--gold-soft);
  border-bottom-color: var(--gold);
}
.podcast-link .arrow {
  display: inline-block;
  transition: transform 0.2s var(--ease);
  margin-left: 4px;
}
.podcast-link:hover .arrow { transform: translateX(3px); }
@media (max-width: 860px) {
  .podcast-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .podcast-links { justify-content: flex-start; }
}

/* ============================================================
   Schedule a Consult — session chooser
   ============================================================ */
.section--tight { padding-top: 40px; }

.session-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 8px;
}
@media (max-width: 860px) {
  .session-grid { grid-template-columns: 1fr; gap: 20px; }
}

.session-card {
  position: relative;
  display: block;
  padding: 36px 36px 32px;
  background: linear-gradient(180deg, rgba(232,220,196,0.025), rgba(232,220,196,0.01));
  border: 1px solid var(--gold-line);
  border-radius: 4px;
  text-decoration: none;
  color: var(--cream);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
  overflow: hidden;
}
.session-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(201,168,106,0.08), transparent 60%);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}
.session-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201,168,106,0.55);
  background: linear-gradient(180deg, rgba(232,220,196,0.045), rgba(232,220,196,0.015));
  box-shadow: 0 24px 50px -24px rgba(0,0,0,0.8);
}
.session-card:hover::before { opacity: 1; }

.session-card--feature {
  background: linear-gradient(180deg, rgba(201,168,106,0.07), rgba(201,168,106,0.015));
  border-color: rgba(201,168,106,0.42);
}

.session-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.session-card__eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.session-card__duration {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
  padding: 4px 10px;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
}

.session-card__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin: 0 0 4px;
  color: var(--cream);
}
.session-card__subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--gold);
  margin: 0 0 16px;
  opacity: 0.85;
}
.session-card__copy {
  font-family: var(--serif);
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--cream-dim);
  margin: 0 0 22px;
}
.session-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.session-card__cta .arrow {
  display: inline-block;
  transition: transform 220ms ease;
}
.session-card:hover .session-card__cta .arrow { transform: translateX(4px); }

.session-fineprint {
  margin-top: 36px;
  text-align: center;
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--cream-dim);
  opacity: 0.75;
  letter-spacing: 0.01em;
}
.session-fineprint a { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--gold-line); }
.session-fineprint a:hover { border-bottom-color: var(--gold); }

@media (max-width: 540px) {
  .session-card { padding: 28px 24px; }
  .session-card__title { font-size: 28px; }
}

/* ============================================================
   In-Person Training page extras
   ============================================================ */
.training-fact {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--gold-line);
}
.training-fact:last-child { border-bottom: 1px solid var(--gold-line); }
.training-fact dt {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.training-fact dd {
  margin: 0;
  color: var(--cream);
}
@media (max-width: 720px) {
  .training-fact { grid-template-columns: 1fr; gap: 4px; }
}

/* ============================================================
   Approach — pillars with centered Castore Method emblem
   ============================================================ */
.pillars-with-mark {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.pillars--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.method-mark {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.method-mark::before {
  content: "";
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(201,168,106,0.16), rgba(201,168,106,0) 65%);
  filter: blur(8px);
  z-index: 0;
}
.method-mark img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 50%;
  display: block;
}
@media (max-width: 980px) {
  .pillars-with-mark {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .method-mark { order: -1; }
  .method-mark img { max-width: 280px; }
}
@media (max-width: 640px) {
  .pillars--2col { grid-template-columns: 1fr; }
}

/* ============================================================
   Approach hero — copy + Castore Method emblem
   ============================================================ */
.approach-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.approach-hero__copy { min-width: 0; }
.approach-hero__mark img { max-width: 360px; }
@media (max-width: 980px) {
  .approach-hero__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .approach-hero__mark { order: -1; }
  .approach-hero__mark img { max-width: 240px; }
}
