/* ==========================================================================
   The Caton Collective — Cleats to Clarity
   Global stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500;1,600&display=swap');

:root {
  --black: #060708;
  --black-soft: #0d0f11;
  --gold: #D9A438;
  --cream: #ECE4D1;
  --gold-2: #C27A27;
  --white: #ffffff;

  --font-head: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Roboto Condensed', 'Arial', sans-serif;

  --maxw: 1200px;
  --nav-h: 116px;
}

/* ---------- Reset / base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; color-scheme: dark; }

/* Accessible focus states */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 2000;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 700;
  padding: 12px 20px;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

/* Touch / tap behaviour */
a, button, .btn, input, textarea, .nav-toggle {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(217, 164, 56, 0.25);
}

/* Balanced heading wrapping */
h1, h2, h3 { text-wrap: balance; }

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* Scroll-reveal fade-up */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.5px;
  text-transform: none;
}

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 64px; }

.gold { color: var(--gold); }
.cream { color: var(--cream); }
.italic-quote { font-style: italic; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 1px;
  text-transform: none;
  padding: 15px 30px;
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}
.btn:hover { background: var(--gold); color: var(--black); }
.btn-coming-soon { cursor: default; pointer-events: none; }

.btn-solid { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-solid:hover { background: var(--gold-2); border-color: var(--gold-2); color: var(--black); }

.btn-dark { background: var(--black); color: var(--cream); border-color: var(--black); }
.btn-dark:hover { background: #1c1d1f; color: var(--gold); border-color: #1c1d1f; }

.btn-block { display: block; width: 100%; }
.btn-group { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.btn-group .btn { min-width: 260px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: relative;
  z-index: 1000;
  background: var(--black);
}
.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  min-height: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 64px;
  gap: 20px;
}
.nav-list { display: flex; align-items: center; list-style: none; gap: 52px; }
.nav-left { justify-content: space-evenly; padding-right: 40px; }
.nav-right { justify-content: space-evenly; padding-left: 40px; }

.nav-list a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.5px;
  color: var(--cream);
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.nav-list a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-list a:hover { color: var(--gold); }
.nav-list a:hover::after { width: 100%; }
.nav-list a.active { color: var(--gold); }
.nav-list a.active::after { width: 100%; }

/* Nav dropdown */
.has-dropdown { position: relative; }
.nav-caret { font-size: 0.7em; margin-left: 5px; display: inline-block; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(8px);
  margin-top: 10px;
  background: var(--cream);
  border: none;
  list-style: none;
  min-width: 180px;
  padding: 4px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1100;
}
.dropdown::before { content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li { width: 100%; }
.dropdown a {
  display: block;
  padding: 7px 16px;
  white-space: nowrap;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 15px;
  color: var(--black);
}
.dropdown a::after { display: none; }
.dropdown a:hover { color: var(--gold-2); background: rgba(6, 7, 8, 0.06); }

.nav-logo { justify-self: center; display: flex; flex-direction: column; align-items: center; }
.nav-logo img { height: 92px; width: auto; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--cream); transition: 0.3s; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown menu (hidden on desktop) */
.mobile-menu {
  display: none;
  background: var(--black);
  border-bottom: 1px solid rgba(217,164,56,0.2);
}
.mobile-menu ul { list-style: none; }
.mobile-menu li { border-top: 1px solid rgba(236,228,209,0.08); }
.mobile-menu a {
  display: block;
  padding: 16px 28px;
  font-family: var(--font-head);
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--cream);
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--gold); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,7,8,0.72) 0%, rgba(6,7,8,0.38) 55%, rgba(6,7,8,0.18) 100%);
}
.hero-inner { position: relative; z-index: 2; padding-top: 96px; padding-bottom: 96px; }

.hero-eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 14px;
}
.hero-name {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  line-height: 1;
  margin-bottom: 20px;
  border-bottom: 3px solid var(--gold);
  padding-bottom: 16px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--gold);
  margin-bottom: 22px;
  max-width: 15ch;
}
.hero .hero-sub {
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 400;
  color: var(--white);
  max-width: 22ch;
  line-height: 1.25;
  margin-bottom: 30px;
}
.hero p.hero-lede { max-width: 46ch; color: var(--cream); margin-bottom: 30px; }

/* Full-width feature quote spanning a section's columns */
.story-quote {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.3;
  color: var(--gold);
  text-align: center;
  max-width: 24ch;
  margin: 6px auto 48px;
  padding-bottom: 26px;
  position: relative;
}
.story-quote::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--gold);
}
.story-quote.in-col {
  text-align: left;
  max-width: none;
  margin: 0 0 26px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  padding-bottom: 0;
  padding-top: 26px;
}
.story-quote.in-col::after { left: 0; top: 0; bottom: auto; transform: none; }

/* Hero book cover: 3D standing book with gentle float */
.hero-book-wrap {
  perspective: 1400px;
  animation: heroBookFloat 5.5s ease-in-out infinite;
}
.hero-book {
  width: 320px;
  max-width: 100%;
  display: block;
  border-radius: 2px 4px 4px 2px;
  transform: rotateY(-7deg) rotateX(2deg);
  transform-origin: center;
  box-shadow:
    0 0 34px rgba(217,164,56,0.28),
    -10px 18px 36px rgba(0,0,0,0.5),
    -3px 5px 12px rgba(0,0,0,0.4),
    inset 3px 0 5px rgba(0,0,0,0.3);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.55s ease;
}
.hero-book:hover {
  transform: rotateY(-2deg) rotateX(0deg) scale(1.04);
  box-shadow:
    0 0 48px rgba(217,164,56,0.45),
    -18px 28px 56px rgba(0,0,0,0.6),
    -6px 8px 18px rgba(0,0,0,0.5);
}
@keyframes heroBookFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-book-wrap { animation: none; }
  .hero-book { transition: none; }
}

/* Section spacing */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--gold);
  margin-bottom: 30px;
}
.section-title.center { text-align: center; }

/* ---------- Eyebrow / marquee band ---------- */
.tagline-band {
  background: var(--black);
  overflow: hidden;
  padding: 66px 24px;
  position: relative;
}
.tagline-band::before {
  content: '\201C';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 700;
  font-size: 15rem;
  line-height: 0;
  color: rgba(217,164,56,0.09);
  pointer-events: none;
  z-index: 0;
}
.tagline-band p {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  white-space: nowrap;
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.05rem, 3.6vw, 2.7rem);
  color: var(--gold);
  text-align: center;
  margin: 0 auto;
  line-height: 1.2;
}
.tagline-band p::before,
.tagline-band p::after {
  content: '';
  flex: none;
  width: 46px;
  height: 2px;
  background: var(--gold);
  opacity: 0.55;
}
@media (max-width: 560px) {
  .tagline-band p { gap: 14px; }
  .tagline-band p::before,
  .tagline-band p::after { width: 22px; }
}

/* ---------- Scrolling marquee ---------- */
.marquee {
  background: var(--black);
  overflow: hidden;
  padding: 30px 0;
  white-space: nowrap;
  display: flex;
}
.marquee-track {
  display: inline-flex;
  flex-shrink: 0;
  min-width: 100%;
  will-change: transform;
  animation: marquee-scroll 30s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  color: var(--cream);
  white-space: nowrap;
}
.marquee-item .sep { color: var(--gold); font-style: normal; margin: 0 1.4rem; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* Pull quote */
.pullquote {
  text-align: center;
  padding: 70px 0;
}
.pullquote p {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: var(--gold);
  max-width: 30ch;
  margin: 0 auto;
  line-height: 1.35;
}

/* Inline pull quote: single line with flanking gold rules */
.pullquote.inline-quote { padding: 60px 24px; }
.pullquote.inline-quote p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  white-space: nowrap;
  max-width: none;
  font-size: clamp(1.05rem, 3.4vw, 2.6rem);
  line-height: 1.2;
}
.pullquote.inline-quote p::before,
.pullquote.inline-quote p::after {
  content: '';
  flex: none;
  width: 46px;
  height: 2px;
  background: var(--gold);
  opacity: 0.55;
}
@media (max-width: 560px) {
  .pullquote.inline-quote p { gap: 14px; }
  .pullquote.inline-quote p::before,
  .pullquote.inline-quote p::after { width: 22px; }
}

/* Feature pull quote: watermark mark + attribution */
.pullquote.feature { position: relative; padding: 96px 0; overflow: hidden; }
.pullquote.feature .container { position: relative; z-index: 1; }
.pullquote.feature::before {
  content: '\201C';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 700;
  font-size: 17rem;
  line-height: 1;
  color: rgba(217,164,56,0.12);
  pointer-events: none;
  z-index: 0;
}
.pullquote.feature p { color: var(--cream); max-width: 22ch; }
.pullquote.feature .pq-attr {
  display: inline-block;
  margin-top: 30px;
  padding-top: 22px;
  position: relative;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.9rem;
  color: var(--gold);
}
.pullquote.feature .pq-attr::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 2px;
  background: var(--gold);
}

/* ---------- Grid helpers ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col.top { align-items: start; }

/* ---------- Cards ---------- */
.card-outline {
  border: 1px solid var(--gold);
  padding: 40px;
  background: rgba(217,164,56,0.02);
}
.card-outline h3 { font-size: 1.7rem; color: var(--gold); margin-bottom: 20px; }

.gold-box {
  background: var(--gold);
  color: var(--black);
  padding: 36px;
}
.gold-box h3 { color: var(--black); font-size: 1.4rem; margin-bottom: 18px; }
.gold-box ul { list-style: none; }
.gold-box li { margin-bottom: 10px; padding-left: 26px; position: relative; }
.gold-box li::before { content: '✓'; position: absolute; left: 0; font-weight: 700; }

.check-list { list-style: none; margin: 18px 0; }
.check-list li { padding-left: 26px; position: relative; margin-bottom: 8px; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ---------- Book intro: Identity Audit feature (Option B) ---------- */
.ia-eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.85rem;
  color: var(--gold-2);
  margin-bottom: 14px;
}
.ia-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 56px;
  align-items: start;
  margin-top: 26px;
}
.ia-left > p { max-width: 46ch; }
.ia-steps { list-style: none; margin: 34px 0 0; padding: 0; }
.ia-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid rgba(6,7,8,0.16);
}
.ia-steps li:last-child { border-bottom: 1px solid rgba(6,7,8,0.16); }
.ia-steps li svg {
  width: 26px;
  height: 26px;
  flex: none;
  fill: var(--gold-2);
  stroke: none;
}
.ia-steps li span { font-size: 1.08rem; }

/* Ruled bullet list (dark backgrounds) */
.ruled-list { list-style: none; margin: 14px 0 20px; padding: 0; }
.ruled-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 13px 0;
  border-top: 1px solid rgba(236,228,209,0.14);
}
.ruled-list li:last-child { border-bottom: 1px solid rgba(236,228,209,0.14); }
.ruled-list li::before {
  content: '';
  flex: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.ruled-list li span { font-size: 1.05rem; }

/* Inside the Book: ia-steps adapted to the gold box */
.gold-box .ia-steps { margin-top: 4px; }
.gold-box .ia-steps li { padding: 16px 0; padding-left: 0; margin-bottom: 0; border-top-color: rgba(6,7,8,0.22); }
.gold-box .ia-steps li:last-child { border-bottom-color: rgba(6,7,8,0.22); }
.gold-box .ia-steps li::before { content: none; }
.gold-box .ia-steps li svg { width: 22px; height: 22px; fill: var(--black); }
.gold-box .ia-steps li span { font-size: 1rem; }
.ia-card {
  background: var(--gold);
  color: var(--black);
  padding: 34px 32px 36px;
  border-top: 4px solid var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.ia-card .kicker {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  margin-bottom: 6px;
}
.ia-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: var(--black);
  margin-bottom: 22px;
}
.ia-card img {
  width: 78%;
  max-width: 230px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.ia-card .cap { font-size: 0.98rem; line-height: 1.45; margin: 24px 0; max-width: 28ch; }
.ia-card .btn { align-self: stretch; text-align: center; }

/* Resources: Identity Audit feature image on cream */
.ia-audit-img { display: flex; justify-content: center; }
.ia-audit-img img {
  width: 100%;
  max-width: 360px;
  display: block;
  box-shadow: 0 18px 44px rgba(6,7,8,0.28);
  border: 1px solid rgba(6,7,8,0.08);
}
/* Audit page gives this image top billing; Resources keeps the smaller default. */
#get-audit .ia-audit-img img { max-width: 440px; }

/* ---------- Watch & Listen: videos + podcast appearances ---------- */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 44px;
}
.media-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.media-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #141518 center / cover no-repeat;
  border: 1px solid rgba(217,164,56,0.28);
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.media-card:hover .media-thumb,
.media-card:focus-visible .media-thumb {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.media-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,7,8,0.1) 0%, rgba(6,7,8,0.55) 100%);
}
.media-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(217,164,56,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.25s ease, transform 0.25s ease;
}
.media-card:hover .media-play { background: var(--gold); transform: translate(-50%, -50%) scale(1.08); }
.media-play::after {
  content: '';
  width: 0;
  height: 0;
  margin-left: 4px;
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent var(--black);
}
.media-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
  color: var(--black);
  background: var(--gold);
  padding: 4px 10px;
}
.media-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.25;
  margin: 16px 0 6px;
}
.media-card:hover .media-title { color: var(--gold); }
.media-src { color: #b9b3a4; font-size: 0.92rem; }

/* ---------- Stat bar (home) ---------- */
.stat-bar { background: var(--cream); color: var(--black); }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1000px;
  margin: 0 auto;
}
.stat-item {
  padding: 26px 18px;
  text-align: center;
  border-right: 1px solid rgba(6,7,8,0.18);
  position: relative;
}
.stat-item:last-child { border-right: none; }

/* Staggered entrance for the achievements bar */
.stat-reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.stat-reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .stat-reveal { opacity: 1; transform: none; transition: none; }
}
.stat-item .stat-label {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 6px;
}
.stat-item .stat-val { font-size: 15px; }
.stat-grid.stats-6 { grid-template-columns: repeat(6, 1fr); max-width: 1200px; }
.stat-grid.stats-6 .stat-item { padding-top: 44px; padding-bottom: 44px; }
.stat-item .stat-lead {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.3px;
}

/* Yard markers under the stat bar */
.yard-band { background: var(--black); }
.yard-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1000px;
  margin: 0 auto;
  padding: 16px 0;
}
.yard-grid span {
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  letter-spacing: 3px;
  color: rgba(236, 228, 209, 0.16);
}

/* ---------- CTA band (gold) ---------- */
.cta-band { background: var(--gold); color: var(--black); position: relative; overflow: hidden; }
.cta-band .container { position: relative; z-index: 2; }
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
  padding: 70px 0;
}
.cta-inner h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--black); margin-bottom: 6px; }
.cta-inner .cta-sub { font-size: 1.25rem; font-weight: 700; font-family: var(--font-head); margin-bottom: 26px; }
.cta-inner .btn-group .btn { border-color: var(--black); color: var(--black); min-width: 240px; }
.cta-inner .btn-group .btn:hover { background: var(--black); color: var(--gold); }
.cta-inner .btn-group .btn.btn-dark { background: var(--black); color: var(--cream); border-color: var(--black); }
.cta-inner .btn-group .btn.btn-dark:hover { background: #1c1d1f; color: var(--gold); border-color: #1c1d1f; }
.cta-book img { width: 300px; box-shadow: 0 20px 50px rgba(0,0,0,0.45); }
/* Cover column: sits right against the copy, centres once stacked. */
.cover-col { display: flex; justify-content: flex-end; }
.cover-col.cover-mid { align-items: center; }

/* Book-cover base shadow + hover lift */
img[src="images/CleatsToClarity_BookCover.jpg"] {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
img[src="images/CleatsToClarity_BookCover.jpg"]:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 36px 72px rgba(0, 0, 0, 0.6);
}
@media (prefers-reduced-motion: reduce) {
  img[src="images/CleatsToClarity_BookCover.jpg"] { transition: none; }
  img[src="images/CleatsToClarity_BookCover.jpg"]:hover { transform: none; }
}

/* ---------- Mission / movement blocks ---------- */
.block-outline {
  border: 1px solid rgba(217,164,56,0.6);
  padding: 44px;
  height: 100%;
}
.block-outline h3 { color: var(--gold); font-size: 1.7rem; margin-bottom: 22px; }
.block-outline .lead { font-weight: 500; }

/* ---------- Work cards ---------- */
.work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.work-card img { width: 100%; height: 460px; object-fit: cover; margin-bottom: 24px; }
.work-card h3 { font-size: 1.8rem; color: var(--gold); margin-bottom: 16px; }

/* ---------- Resource cards ---------- */
.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.resource-card {
  border: 1px solid var(--gold);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.resource-card h3 { color: var(--gold); font-size: 1.3rem; margin-bottom: 16px; min-height: 2.6em; }
.resource-card p { flex: 1; font-size: 16px; }
.resource-card .btn { margin-top: 22px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
/* Social icon buttons */
.social-icons { list-style: none; display: flex; flex-wrap: wrap; gap: 14px; margin: 0; padding: 0; }
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(217,164,56,0.5);
  color: var(--gold);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.social-icons a:hover,
.social-icons a:focus-visible {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.social-icons svg { width: 20px; height: 20px; fill: currentColor; display: block; }

.contact-form { background: transparent; border: none; padding: 0; }
.contact-form h3 { color: var(--gold); font-size: 1.4rem; margin-bottom: 24px; }
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--cream);
}
.form-field input,
.form-field textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid rgba(236,228,209,0.25);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 12px 14px;
}
.form-field input:focus,
.form-field textarea:focus { outline: none; border-color: var(--gold); }
.form-field textarea { resize: vertical; min-height: 130px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); border-top: 1px solid rgba(217,164,56,0.15); padding: 70px 0 30px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
.footer-logo img { height: 96px; width: auto; margin-bottom: 10px; }
.footer-col h4 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 15px;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 16px; color: var(--cream); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-col p { font-size: 15px; color: #b9b3a4; }

.footer-sub label { display: block; font-size: 15px; margin-bottom: 8px; }
.footer-sub input {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 12px 14px;
  color: var(--black);
  font-family: var(--font-body);
  font-size: 15px;
  margin-bottom: 14px;
}
.footer-sub input:focus { outline: 2px solid var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(236,228,209,0.1);
  margin-top: 50px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: #8f897c;
}
.footer-bottom .legal-links { display: flex; gap: 28px; }
.footer-bottom a:hover { color: var(--gold); }

/* Placeholder box (identity audit visual on home) */
.placeholder-visual {
  background: var(--cream);
  min-height: 320px;
  width: 100%;
  background-size: cover;
  background-position: center;
}

/* Legal pages */
.legal-content { max-width: 820px; }
.legal-content .updated { color: #b9b3a4; font-size: 15px; margin-bottom: 36px; }
.legal-content h2 {
  font-size: 1.5rem;
  color: var(--gold);
  margin: 40px 0 14px;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p { margin-bottom: 16px; }
.legal-content ul { list-style: none; margin: 0 0 16px; }
.legal-content li { position: relative; padding-left: 22px; margin-bottom: 8px; }
.legal-content li::before { content: '\2022'; position: absolute; left: 0; color: var(--gold); }
.legal-content a { color: var(--gold); }
.legal-content a:hover { color: var(--gold-2); }

/* Utility */
.mt-40 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }
.small-note { font-size: 15px; color: #b9b3a4; }
.muted { color: #b9b3a4; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-inner { grid-template-columns: 1fr auto 1fr; }
  .nav-left, .nav-right { display: none; }
  .nav-toggle { display: flex; justify-self: start; }
  .nav-logo { justify-self: center; grid-column: 2; }
  .nav-logo img { height: 72px; }
  .mobile-menu { display: block; max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
  body.nav-open .mobile-menu { max-height: 80vh; }
}

@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  /* Once stacked, lead with the image. Use where the heading sits inside the
     copy column; where it's a sibling of the grid, .lead-img is needed. */
  .two-col.img-first > div:last-child { order: -1; }
  /* Once stacked, lead with the image — above the section heading too.
     display:contents lifts the grid's children up alongside the h2 so all
     three can be ordered together: image, heading, copy. */
  .lead-img .container { display: flex; flex-direction: column; }
  .lead-img .two-col { display: contents; }
  .lead-img .two-col > div:last-child { order: -1; margin-bottom: 30px; }
  .lead-img .two-col > div:first-child { order: 1; }
  /* Stacked feature photos run very tall at full width, so crop them to a
     band. Ratio, not a fixed height, keeps the crop proportional as the
     column narrows. The pair below picks which end gets trimmed. */
  .clip-img { aspect-ratio: 10 / 7; }
  .clip-img.clip-top { object-position: center bottom; }
  .clip-img.clip-bottom { object-position: center top; }
  /* Let these one-line quotes wrap here — the nowrap is what was forcing them
     to shrink. Each caps at its own desktop max so it never overshoots it. */
  .pullquote.inline-quote p { white-space: normal; font-size: clamp(1.9rem, 4.6vw, 2.6rem); }
  .tagline-band p { white-space: normal; font-size: clamp(1.9rem, 4.6vw, 2.7rem); }
  /* Hero keeps book beside copy on tablets; it stacks at 560 instead. */
  .two-col.hero-split { grid-template-columns: 1.15fr 0.85fr; gap: 32px; }
  /* Once stacked, this portrait shot is ~1150px tall at full width. Crop it
     to a band; the subject sits centred, so a centred crop keeps him whole. */
  .story-img { height: 520px; object-position: center; }
  /* Subject sits at the far right of this hero art, so a centred cover crop
     cuts him off as the viewport narrows. Anchor right; the left is just black. */
  .hero.hero-anchor-right { background-position: right center; }
  .ia-grid { grid-template-columns: 1fr; gap: 36px; }
  .media-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .work-grid { grid-template-columns: 1fr; gap: 40px; }
  .resource-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .cta-inner { grid-template-columns: 1fr; gap: 36px; text-align: left; }
  .cta-book { order: -1; }
  /* .cta-split keeps copy and cover side by side on tablet; stacks at 560.
     Buttons drop their min-width so they can't outgrow the narrower column. */
  .cta-inner.cta-split { grid-template-columns: 1fr auto; gap: 32px; }
  .cta-inner.cta-split .cta-book { order: 0; }
  .cta-inner.cta-split .btn-group .btn { min-width: 0; }
  .cta-book img { width: 220px; }
  /* Keep logo / Navigate / Connect on one row through tablet; stacks at 560. */
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
  /* .stats-6 listed explicitly: it out-specifies a bare .stat-grid override */
  .stat-grid, .stat-grid.stats-6 { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item { border-bottom: 1px solid rgba(6,7,8,0.15); }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .container { padding: 0 24px; }
  .nav-inner { padding: 0 20px; }
  .section { padding: 60px 0; }
  /* Longhand: .hero-inner shares its element with .container, and the
     padding shorthand would wipe out .container's side padding. */
  .hero-inner { padding-top: 64px; padding-bottom: 64px; }
  .two-col.hero-split { grid-template-columns: 1fr; gap: 28px; }
  /* Phone-only: lead with the cover. Scoped here rather than to .hero-split,
     which the home and book heroes share and must keep copy-first. */
  .two-col.mobile-img-first > div:last-child { order: -1; }
  .cover-col { justify-content: center; }
  /* At phone width the 520px box is taller than this portrait renders, so it
     crops nothing. A square crop actually bites and keeps the subject whole. */
  .story-img { height: auto; aspect-ratio: 1 / 1; }
  /* 460px is taller than a phone-width card is wide, so cover was slicing
     these landscape shots down to a narrow centre strip — cutting Dakota's
     face off the Speaking one. A shorter box keeps nearly the full frame. */
  .work-card img { height: 300px; }
  .cta-inner.cta-split { grid-template-columns: 1fr; gap: 36px; }
  .cta-inner.cta-split .cta-book { order: -1; }
  /* Stacked footer reads better centred than ragged-left. */
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-logo img { margin-left: auto; margin-right: auto; }
  .media-grid { grid-template-columns: 1fr; }
  .stat-grid, .stat-grid.stats-6 { grid-template-columns: 1fr; }
  .stat-item { border-right: none; }
  .btn-group .btn, .cta-inner .btn-group .btn { min-width: 0; width: 100%; }
  .card-outline, .block-outline, .gold-box { padding: 28px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .footer-bottom .legal-links { justify-content: center; }
}
