:root {
  color-scheme: light;
  --ink: #1e1e1e;
  --ink-soft: #51545a;
  --paper: #f2eee6;
  --paper-deep: #bbae9a;
  --white: #fbf8f1;
  --line: rgba(30, 30, 30, 0.16);
  --accent: #5a1e1e;
  --slate: #6d7075;
  --shadow: 0 24px 80px rgba(30, 30, 30, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.24;
  background-image:
    radial-gradient(rgba(30, 30, 30, 0.14) 0.7px, transparent 0.7px),
    radial-gradient(rgba(90, 30, 30, 0.1) 0.7px, transparent 0.7px);
  background-position:
    0 0,
    11px 13px;
  background-size: 22px 22px;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

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

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(132px, 1fr);
  align-items: center;
  gap: 32px;
  min-height: 84px;
  padding: 14px clamp(20px, 4vw, 64px);
  color: var(--ink);
  background: rgba(242, 238, 230, 0.9);
  box-shadow: 0 1px 0 rgba(30, 30, 30, 0.08);
  backdrop-filter: blur(18px);
  transition:
    color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    min-height 220ms ease;
}

.site-header.scrolled {
  min-height: 72px;
  color: var(--ink);
  background: rgba(242, 238, 230, 0.92);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-grid;
  gap: 5px;
}

.brand-wordmark {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.2vw, 2.2rem);
  font-weight: 500;
  letter-spacing: 0.24em;
  line-height: 0.9;
  text-transform: uppercase;
}

.brand::after {
  width: 38px;
  height: 1px;
  background: var(--accent);
  content: "";
}

.nav {
  justify-self: center;
  display: flex;
  gap: clamp(16px, 2.4vw, 34px);
  font-size: 0.72rem;
  font-weight: 650;
}

.nav a {
  padding-block: 8px;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  border-color: currentColor;
}

.header-socials {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-socials a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  align-items: center;
  border: 1px solid rgba(30, 30, 30, 0.2);
  border-radius: 999px;
  background: rgba(251, 248, 241, 0.42);
  color: var(--ink);
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.header-socials a:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--paper);
  transform: translateY(-2px);
}

.header-socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.header-socials a:nth-child(3) svg {
  width: 19px;
  height: 19px;
}

.header-cta {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(380px, 0.8fr) minmax(520px, 1.08fr);
  gap: clamp(30px, 4.2vw, 68px);
  min-height: auto;
  align-items: center;
  padding: clamp(42px, 5vw, 72px) clamp(20px, 6vw, 88px) clamp(44px, 5vw, 76px);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.hero-content {
  position: relative;
  align-self: center;
  width: min(660px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  color: var(--ink);
  font-size: clamp(3rem, 4.3vw, 4.75rem);
  line-height: 1.04;
  text-shadow: none;
}

.hero h1.hero-manifesto {
  display: grid;
  gap: clamp(10px, 1.2vw, 16px);
  max-width: 640px;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(1.9rem, 2.72vw, 3.55rem);
  font-weight: 750;
  line-height: 1;
  letter-spacing: clamp(0.055em, 0.62vw, 0.095em);
  text-transform: uppercase;
}

.hero h1.hero-manifesto span {
  display: block;
}

.hero h1.hero-manifesto::after {
  width: 58px;
  height: 3px;
  margin-top: clamp(18px, 2.5vw, 30px);
  content: "";
  background: var(--accent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(22px, 2.8vw, 34px);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  padding: 0 22px;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark:hover,
.button-light:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--paper);
}

.button-light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.button-ghost {
  color: var(--white);
}

.button-dark {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.text-link {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.text-link::after {
  content: "→";
  margin-left: 12px;
  transform: translateX(0);
  transition: transform 180ms ease;
}

.text-link:hover {
  color: var(--accent);
}

.text-link:hover::after {
  transform: translateX(4px);
}

.dark-link {
  margin-top: 8px;
}

.dark-link,
.light-link {
  min-height: 44px;
  align-items: center;
}

.hero-video {
  position: relative;
  width: 100%;
  aspect-ratio: 1.08 / 1;
  min-height: 560px;
  max-height: 700px;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0 56%, rgba(0, 0, 0, 0.84) 68%, transparent 88%);
  mask-image: radial-gradient(ellipse at center, #000 0 56%, rgba(0, 0, 0, 0.84) 68%, transparent 88%);
}

.hero-video::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 44%, transparent 0 36%, rgba(242, 238, 230, 0.22) 68%, rgba(242, 238, 230, 0.56) 100%),
    linear-gradient(180deg, rgba(242, 238, 230, 0.04), rgba(242, 238, 230, 0.26));
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  filter: saturate(0.68) contrast(0.88);
}

.service-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 0 clamp(20px, 6vw, 88px);
}

.service-band article {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 132px;
  align-content: center;
  border-left: 1px solid rgba(242, 238, 230, 0.22);
  padding: 28px 24px;
  text-align: center;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.service-band article::after {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.service-band article:last-child {
  border-right: 1px solid rgba(242, 238, 230, 0.22);
}

.service-band article:hover {
  background: rgba(255, 253, 244, 0.06);
  transform: translateY(-2px);
}

.service-band article:hover::after,
.service-band article:focus-within::after {
  opacity: 0.7;
  transform: scaleX(1);
}

.service-band article:focus-within {
  box-shadow: inset 0 0 0 2px var(--paper-deep);
}

.service-band article > a {
  position: absolute;
  inset: 0;
}

.service-band span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-band h3 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 850;
  text-transform: uppercase;
}

.service-band p {
  max-width: 250px;
  margin: 0;
  color: rgba(242, 238, 230, 0.72);
  font-size: 0.9rem;
  line-height: 1.5;
}

section:not(.hero) {
  padding: clamp(64px, 7vw, 104px) clamp(20px, 6vw, 88px);
}

.newsletter,
.contact-section,
.services-cta {
  padding-block: clamp(72px, 8vw, 112px);
}

section.service-band,
section.services-selector {
  padding-block: 0;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.66fr) minmax(390px, 0.84fr) minmax(300px, 0.6fr);
  gap: clamp(30px, 4.5vw, 66px);
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.about-section {
  border-bottom: 1px solid var(--line);
}

.about-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
}

h2 {
  font-size: clamp(2.15rem, 3.6vw, 3.8rem);
  line-height: 1.05;
}

h3 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.02;
}

.intro-copy {
  display: grid;
  gap: 22px;
  align-content: start;
  color: var(--ink-soft);
  font-size: clamp(0.98rem, 1.25vw, 1.1rem);
  line-height: 1.74;
}

.intro-copy .lead {
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2vw, 2.05rem);
  line-height: 1.22;
}

.bio-points {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.bio-points div {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 18px;
  padding: 16px 0;
}

.bio-points div + div {
  border-top: 1px solid var(--line);
}

.bio-points span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.bio-points p {
  margin: 0;
}

.about-title {
  display: grid;
  align-content: start;
  gap: clamp(26px, 4vw, 46px);
}

.about-media {
  display: grid;
  gap: 18px;
}

.about-performance {
  margin-top: clamp(30px, 4vw, 52px);
  padding-top: clamp(20px, 2.5vw, 30px);
  border-top: 1px solid var(--line);
}

.about-performance .section-kicker {
  max-width: 720px;
  margin-bottom: 18px;
}

.performance-images {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: stretch;
}

.performance-figure {
  display: grid;
  gap: 10px;
  margin: 0;
  align-content: start;
}

.performance-figure figcaption {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.intro-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow);
}

.intro-image.headshot {
  aspect-ratio: 0.86 / 1.08;
}

.intro-image.football {
  aspect-ratio: 1.08 / 1;
  object-position: center;
}

.intro-image.mamba {
  aspect-ratio: 1.08 / 1;
  object-position: center 28%;
}

.intro-copy p,
.newsletter p,
.contact-copy p,
.service-panel p {
  margin: 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(300px, 1.3fr);
  gap: clamp(36px, 7vw, 96px);
  margin-bottom: clamp(36px, 5vw, 68px);
}

.services {
  background: var(--white);
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(320px, 1.3fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
}

.service-tabs {
  display: grid;
  align-content: start;
  border-top: 1px solid var(--line);
}

.service-tab {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: center;
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  padding: 24px 0;
  text-align: left;
  font: inherit;
  font-size: clamp(1.05rem, 1.7vw, 1.4rem);
  cursor: pointer;
}

.service-tab span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
}

.service-tab.active {
  color: var(--accent);
}

.service-panel {
  min-height: 460px;
  background: var(--ink);
  color: var(--paper);
  padding: clamp(28px, 5vw, 64px);
  box-shadow: var(--shadow);
}

.panel-label {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-panel h3 {
  margin-top: 42px;
}

.service-panel p:not(.panel-label) {
  max-width: 680px;
  margin-top: 28px;
  color: rgba(242, 238, 230, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.75;
}

.service-panel ul {
  display: grid;
  gap: 14px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.service-panel li {
  border-top: 1px solid rgba(242, 238, 230, 0.2);
  padding-top: 14px;
}

.philosophy {
  background: var(--paper-deep);
}

.philosophy-stack {
  display: grid;
  gap: 22px;
}

.philosophy-stack div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.philosophy-stack span {
  color: var(--accent);
  font-weight: 850;
}

.philosophy-stack p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.7vw, 1.45rem);
  line-height: 1.55;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  justify-items: center;
  text-align: center;
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.newsletter p:not(.section-kicker) {
  max-width: 680px;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.7;
}

.contact-section {
  display: grid;
  justify-items: center;
  text-align: center;
  background: var(--white);
}

.contact-copy {
  display: grid;
  justify-items: center;
}

.services-editorial-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(360px, 0.72fr);
  gap: clamp(40px, 7vw, 112px);
  align-items: center;
  min-height: calc(100svh - 92px);
  border-bottom: 1px solid var(--line);
}

.services-editorial-copy {
  display: grid;
  gap: 26px;
  align-content: center;
}

.services-editorial-copy h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 5vw, 4.75rem);
  font-weight: 500;
  line-height: 1.02;
}

.services-editorial-copy p:not(.eyebrow),
.services-cta p:not(.section-kicker) {
  max-width: 740px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.45vw, 1.22rem);
  line-height: 1.72;
}

.services-hero-media,
.service-chapter-media {
  display: grid;
  gap: 14px;
  margin: 0;
}

.services-hero-media img {
  width: 100%;
  max-height: 760px;
  aspect-ratio: 0.82 / 1;
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow);
}

.services-hero-media figcaption,
.service-chapter-media figcaption {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.4;
  text-transform: uppercase;
}

.services-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: 1px solid var(--line);
}

.services-selector a {
  display: grid;
  gap: 12px;
  min-height: 112px;
  align-content: center;
  border-left: 1px solid var(--line);
  padding: 24px clamp(20px, 3vw, 38px);
  color: var(--ink);
  transition:
    background 180ms ease,
    color 180ms ease;
}

.services-selector a:last-child {
  border-right: 1px solid var(--line);
}

.services-selector span {
  color: var(--accent);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1;
}

.services-selector strong {
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.services-selector em {
  color: var(--ink-soft);
  font-style: normal;
  line-height: 1.45;
}

.services-selector a:hover {
  background: var(--ink);
  color: var(--paper);
}

.services-selector a:focus-visible {
  box-shadow: inset 0 0 0 2px var(--paper-deep);
}

.services-selector a:hover span,
.services-selector a:hover em {
  color: var(--paper-deep);
}

.service-chapter {
  display: grid;
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.service-chapter-development,
.service-chapter-speaking {
  grid-template-columns: minmax(340px, 0.78fr) minmax(360px, 1fr);
}

.service-chapter-coaching {
  grid-template-columns: minmax(380px, 1fr) minmax(330px, 0.72fr);
  background: var(--ink);
  color: var(--paper);
}

.service-chapter-copy {
  display: grid;
  gap: 24px;
  align-content: center;
}

.service-chapter-copy h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.6rem, 4.2vw, 3.65rem);
  line-height: 1.04;
}

.service-chapter-copy p:not(.section-kicker) {
  max-width: 720px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.76;
}

.service-chapter-coaching .section-kicker,
.service-chapter-coaching .service-chapter-media figcaption {
  color: var(--paper-deep);
}

.service-chapter-coaching h2 {
  color: var(--paper);
}

.service-chapter-coaching .service-chapter-copy p:not(.section-kicker) {
  color: rgba(242, 238, 230, 0.68);
}

.service-chapter-media img {
  width: 100%;
  max-height: 680px;
  aspect-ratio: 1.2 / 0.82;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.service-fit {
  display: grid;
  align-content: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-fit span,
.service-outcomes span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-fit ul {
  display: grid;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-fit li {
  border-top: 1px solid var(--line);
  padding: 18px 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.25vw, 1.13rem);
  line-height: 1.55;
}

.service-outcomes {
  display: grid;
  gap: 12px;
  margin-top: 6px;
  border-top: 1px solid rgba(242, 238, 230, 0.2);
  border-bottom: 1px solid rgba(242, 238, 230, 0.2);
  padding: 22px 0;
}

.service-outcomes p {
  color: var(--paper);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.55;
}

.light-link {
  color: var(--paper);
}

.speaking-index {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.speaking-index div {
  display: grid;
  gap: 10px;
  min-height: 190px;
  align-content: end;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(20px, 3vw, 34px);
}

.speaking-index span {
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.speaking-index p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.mission-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(330px, 0.62fr);
  gap: clamp(42px, 7vw, 108px);
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.mission-hero-copy {
  display: grid;
  gap: 24px;
  align-content: center;
}

.mission-hero h1 {
  max-width: 860px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 4.4vw, 4.75rem);
  font-weight: 500;
  line-height: 1.04;
}

.mission-hero-copy p:not(.eyebrow),
.mission-bridge-copy p,
.mission-statement-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.28vw, 1.14rem);
  line-height: 1.76;
}

.mission-portrait {
  display: grid;
  gap: 14px;
  margin: 0;
}

.mission-portrait img {
  width: 100%;
  max-height: 780px;
  aspect-ratio: 0.72 / 1;
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow);
}

.mission-portrait figcaption {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: uppercase;
}

.mission-bridge {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.mission-bridge h2,
.mission-statement h2 {
  max-width: 760px;
  margin: 0;
}

.mission-bridge-copy,
.mission-statement-copy {
  display: grid;
  gap: 22px;
}

.mission-statement {
  border-bottom: 1px solid var(--line);
}

.mission-statement-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(390px, 1fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: start;
  margin-top: 22px;
}

.mission-growth-media {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 14px;
  margin: 0;
}

.mission-growth-media img {
  width: 100%;
  max-height: 760px;
  aspect-ratio: 0.76 / 1;
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow);
}

.mission-growth-media figcaption,
.about-hero-media figcaption,
.about-proof-image figcaption {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.4;
  text-transform: uppercase;
}

.mission-statement-copy h2 {
  margin-bottom: 28px;
}

.mission-statement-copy blockquote {
  margin: 10px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(24px, 4vw, 42px) 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.2vw, 3.45rem);
  line-height: 1.06;
}

.about-chapter {
  position: relative;
  display: grid;
  gap: clamp(34px, 5vw, 74px);
  border-bottom: 1px solid var(--line);
}

.about-chapter-label {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-chapter-label span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.about-chapter-label p,
.about-origin-copy p,
.about-football-copy p,
.about-mamba-copy p {
  margin: 0;
}

.about-origin-layout,
.about-football-layout,
.about-mamba-layout {
  display: grid;
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
}

.about-origin-layout {
  grid-template-columns: minmax(390px, 1fr) minmax(300px, 0.46fr);
}

.about-origin-copy,
.about-football-copy,
.about-mamba-copy {
  display: grid;
  gap: 24px;
  align-content: center;
}

.about-origin-copy h1 {
  max-width: 920px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5vw, 4.9rem);
  font-weight: 500;
  line-height: 1.02;
}

.about-origin-copy p:not(.eyebrow),
.about-football-copy p:not(.section-kicker),
.about-mamba-copy p:not(.section-kicker) {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.34vw, 1.18rem);
  line-height: 1.76;
}

.about-origin-portrait,
.about-football-hero,
.about-wide-proof,
.about-mamba-finish,
.about-mamba-trail {
  display: grid;
  gap: 14px;
  margin: 0;
}

.about-origin-portrait img {
  width: 100%;
  max-height: 720px;
  aspect-ratio: 0.76 / 1;
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow);
}

.about-origin-portrait figcaption,
.about-wide-proof figcaption,
.about-mamba-finish figcaption,
.about-mamba-trail figcaption {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.4;
  text-transform: uppercase;
}

.about-education {
  display: grid;
  gap: 0;
  margin-top: 8px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-education span {
  padding: 18px 0 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-education p {
  border-top: 1px solid var(--line);
  padding: 15px 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.about-football {
  background: var(--white);
}

.about-football-layout {
  grid-template-columns: minmax(420px, 1fr) minmax(320px, 0.58fr);
}

.about-football-hero img,
.about-wide-proof img {
  width: 100%;
  box-shadow: var(--shadow);
}

.about-football-hero img {
  width: auto;
  max-width: 100%;
  max-height: min(780px, 82vh);
  margin-inline: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: var(--paper);
}

.about-wide-proof img {
  object-fit: cover;
}

.about-football-proof-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 38px);
  align-items: start;
  margin-left: clamp(80px, 12vw, 180px);
}

.about-football-copy h2,
.about-mamba-copy h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.55rem, 4.1vw, 3.65rem);
  line-height: 1.05;
}

.about-wide-proof {
  margin-left: 0;
}

.about-wide-proof img {
  aspect-ratio: 1.5 / 1;
  object-position: center;
}

.about-mamba {
  background: var(--ink);
  color: var(--paper);
}

.about-mamba .section-kicker,
.about-mamba .about-chapter-label,
.about-mamba .about-mamba-finish figcaption,
.about-mamba .about-mamba-trail figcaption {
  color: var(--paper-deep);
}

.about-mamba .about-chapter-label span {
  border-color: rgba(242, 238, 230, 0.24);
  color: var(--paper);
}

.about-mamba-copy p:not(.section-kicker) {
  color: rgba(242, 238, 230, 0.72);
}

.about-mamba-copy h2 {
  color: var(--paper);
}

.about-mamba-metric {
  display: grid;
  gap: 10px;
  border-top: 1px solid rgba(242, 238, 230, 0.22);
  border-bottom: 1px solid rgba(242, 238, 230, 0.22);
  padding: clamp(20px, 3vw, 30px) 0;
}

.about-mamba-metric strong {
  color: var(--paper);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2.65rem, 4vw, 3.7rem);
  font-weight: 500;
  line-height: 0.95;
}

.about-mamba-metric span {
  max-width: 560px;
  color: var(--paper);
  font-size: clamp(0.98rem, 1.28vw, 1.12rem);
  font-weight: 850;
  line-height: 1.45;
}

.about-mamba-copy .about-mamba-metric p {
  max-width: 620px;
  color: rgba(242, 238, 230, 0.68);
  font-size: 0.78rem;
  line-height: 1.55;
}

.about-mamba-layout {
  grid-template-columns: minmax(320px, 0.68fr) minmax(420px, 1fr);
}

.about-mamba-copy .button {
  justify-self: start;
  margin-top: 8px;
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.about-mamba-images {
  display: grid;
  grid-template-columns: minmax(180px, 0.58fr) minmax(260px, 0.82fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: end;
}

.about-mamba-finish img,
.about-mamba-trail img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.about-mamba-finish img {
  aspect-ratio: 0.82 / 1;
  object-position: center;
}

.about-mamba-trail {
  margin-bottom: clamp(40px, 8vw, 110px);
}

.about-mamba-trail img {
  aspect-ratio: 0.72 / 1;
  object-position: center;
}

.services-cta {
  display: grid;
  justify-items: center;
  text-align: center;
  background: var(--ink);
  color: var(--paper);
}

.services-cta h2 {
  max-width: 780px;
  color: var(--paper);
  font-size: clamp(2.8rem, 4vw, 4rem);
  line-height: 1.05;
}

.services-cta p:not(.section-kicker) {
  color: rgba(242, 238, 230, 0.74);
}

.services-cta .button {
  margin-top: 34px;
}

.contact-copy p:not(.section-kicker) {
  max-width: 560px;
  margin-top: 24px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.contact-details {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.contact-details div {
  display: grid;
  gap: 4px;
}

.contact-details span {
  color: var(--ink);
  font-weight: 850;
}

.contact-details a {
  color: var(--ink-soft);
  font-weight: 750;
}

.contact-form {
  display: grid;
  gap: 18px;
  align-self: start;
  border-left: 1px solid var(--line);
  padding-left: clamp(24px, 5vw, 64px);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 750;
}

.compliance-note,
.footer small {
  display: block;
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.6;
}

.compliance-note {
  margin: 8px 0 0;
}

.footer small {
  margin-top: 16px;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(30, 30, 30, 0.2);
  border-radius: 22px;
  background: rgba(242, 238, 230, 0.76);
  color: var(--ink);
  padding: 18px 22px;
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 253, 244, 0.65);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

input:focus,
textarea:focus {
  outline: 0;
  border-color: rgba(90, 30, 30, 0.62);
  background: var(--white);
  box-shadow:
    inset 0 1px 0 rgba(255, 253, 244, 0.9),
    0 0 0 4px rgba(90, 30, 30, 0.14);
}

textarea {
  border-radius: 26px;
  resize: vertical;
}

.contact-form .button {
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(30, 30, 30, 0.14);
}

.footer {
  display: grid;
  grid-template-columns: minmax(180px, 0.9fr) repeat(3, minmax(140px, 1fr));
  align-items: start;
  gap: 28px;
  padding: 42px clamp(20px, 6vw, 88px);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.footer-monogram {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.85rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 18px;
}

.footer p {
  margin: 0 0 3px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer span,
.footer nav,
.footer-contact {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.footer nav,
.footer-contact {
  display: grid;
  gap: 10px;
}

.footer strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.footer-contact a {
  color: var(--ink-soft);
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-row a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(30, 30, 30, 0.28);
  background: rgba(255, 253, 244, 0.42);
  color: var(--ink);
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.social-row a:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
}

.social-row svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: 100%;
  height: 3px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(90, 30, 30, 0.34);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
}

.scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.scroll-reveal > * {
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.scroll-reveal:not(.is-visible) > * {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
}

.scroll-reveal.is-visible > *:nth-child(2) {
  transition-delay: 90ms;
}

.scroll-reveal.is-visible > *:nth-child(3) {
  transition-delay: 160ms;
}

.scroll-reveal.is-visible > *:nth-child(4) {
  transition-delay: 230ms;
}

.parallax-media {
  --parallax-y: 0px;
  transform: translate3d(0, var(--parallax-y), 0);
  will-change: transform;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal 720ms ease forwards;
}

.hero-note.reveal {
  animation-delay: 240ms;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .scroll-reveal,
  .scroll-reveal > *,
  .parallax-media {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    gap: 16px;
    min-height: 76px;
  }

  .brand-wordmark {
    font-size: 1.2rem;
    letter-spacing: 0.18em;
  }

  .nav {
    order: 3;
    grid-column: 1 / -1;
    justify-self: stretch;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .header-socials {
    justify-self: end;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 34px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 10vw, 4rem);
  }

  .hero h1.hero-manifesto {
    max-width: 100%;
    font-size: clamp(1.65rem, 7vw, 2.8rem);
    letter-spacing: 0.12em;
  }

  .hero-video {
    aspect-ratio: 4 / 5;
    min-height: 430px;
  }

  .about-main,
  .performance-images,
  .section-grid,
  .section-heading,
  .service-layout,
  .service-band,
  .services-editorial-hero,
  .services-selector,
  .service-chapter,
  .service-chapter-development,
  .service-chapter-coaching,
  .service-chapter-speaking,
  .speaking-index,
  .about-hero,
  .about-story,
  .about-proof-grid,
  .about-stats,
  .about-origin-layout,
  .about-football-layout,
  .about-football-proof-row,
  .about-mamba-layout,
  .about-mamba-images,
  .mission-hero,
  .mission-bridge,
  .mission-statement-grid,
  .newsletter,
  .contact-section,
  .footer {
    grid-template-columns: 1fr;
  }

  .about-media {
    position: static;
  }

  .about-performance {
    margin-top: 34px;
  }

  .service-band {
    padding: 0 20px;
  }

  .service-band article,
  .service-band article:last-child {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(242, 238, 230, 0.22);
  }

  .service-panel {
    min-height: auto;
  }

  .services-editorial-hero {
    min-height: auto;
    align-items: start;
  }

  .services-editorial-copy h1 {
    font-size: clamp(2.75rem, 9vw, 4rem);
  }

  .services-cta h2 {
    font-size: clamp(2.5rem, 8vw, 3.4rem);
  }

  .services-hero-media {
    max-width: 560px;
  }

  .services-hero-media img {
    max-height: 560px;
    aspect-ratio: 1 / 0.92;
    object-position: center 20%;
  }

  .services-selector a {
    min-height: 96px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .services-selector a:last-child {
    border-right: 0;
  }

  .service-chapter-coaching .service-chapter-media {
    order: 2;
  }

  .service-chapter-coaching .service-chapter-copy {
    order: 1;
  }

  .service-chapter-media img {
    max-height: 520px;
    aspect-ratio: 1.18 / 0.82;
  }

  .speaking-index div {
    min-height: auto;
  }

  .mission-hero h1 {
    font-size: clamp(2.65rem, 9vw, 4rem);
  }

  .mission-portrait {
    max-width: 520px;
  }

  .mission-growth-media {
    position: static;
    max-width: 560px;
  }

  .mission-growth-media img {
    max-height: 520px;
    aspect-ratio: 1 / 0.86;
    object-position: center 22%;
  }

  .about-origin-copy h1 {
    font-size: clamp(2.8rem, 10vw, 4.25rem);
  }

  .about-football-copy h2,
  .about-mamba-copy h2,
  .service-chapter-copy h2 {
    font-size: clamp(2.35rem, 8.4vw, 3.55rem);
  }

  .about-origin-portrait,
  .about-mamba-images {
    max-width: 560px;
  }

  .about-football-layout {
    align-items: start;
  }

  .about-football-proof-row,
  .about-wide-proof {
    margin-left: 0;
  }

  .about-wide-proof img,
  .about-football-hero img {
    aspect-ratio: 1.28 / 1;
  }

  .about-football-hero img {
    width: auto;
    aspect-ratio: auto;
    max-height: min(680px, 82vh);
    object-fit: contain;
  }

  .about-mamba-trail {
    margin-bottom: 0;
  }

  .contact-form {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 30px 0 0;
  }

  .footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 540px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .brand-wordmark {
    font-size: 1.05rem;
    letter-spacing: 0.14em;
  }

  .nav {
    gap: 18px;
    mask-image: linear-gradient(90deg, #000 85%, transparent);
  }

  .header-socials {
    gap: 7px;
  }

  .header-socials a {
    width: 34px;
    height: 34px;
  }

  .hero-actions,
  .button,
  .text-link {
    width: 100%;
    justify-content: center;
  }
}
