:root {
  --bg: #050505;
  --bg-soft: #111214;
  --bg-red: #0b0908;
  --ink: #f5f2eb;
  --muted: #c4beb4;
  --gold: #b89452;
  --gold-bright: #d8b46e;
  --scarlet: #8c7142;
  --line: rgba(216, 180, 110, 0.24);
  --panel: rgba(17, 18, 20, 0.82);
  --max: 1200px;
  --hero-slide-duration: 96s;
  --font-display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 70% 0%, rgba(216, 180, 110, 0.16), transparent 34rem),
    var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

body.motion-ready {
  --scroll-progress: 0;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  background: var(--gold-bright);
  color: #080808;
  left: 1rem;
  padding: 0.6rem 1rem;
  position: fixed;
  top: -4rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.scroll-progress {
  background: linear-gradient(90deg, #8c7142, #f6dc8b 48%, #b8893e);
  height: 3px;
  left: 0;
  position: fixed;
  top: 0;
  transform: scaleX(0);
  transform-origin: left center;
  width: 100%;
  z-index: 80;
}

.site-header {
  align-items: center;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.76), rgba(5, 5, 5, 0));
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 1.25rem clamp(1rem, 5vw, 4.5rem);
  position: fixed;
  right: 0;
  top: 0;
  transition: background 180ms ease, padding 180ms ease;
  z-index: 40;
}

.site-header.is-scrolled {
  backdrop-filter: blur(18px);
  background: rgba(5, 5, 5, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.78rem;
  padding-top: 0.78rem;
}

.brand img,
.site-footer img {
  filter: invert(1) sepia(0.36) saturate(1.8) brightness(1.18);
  height: 38px;
  object-fit: contain;
  opacity: 0.92;
  width: auto;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(0.72rem, 1.55vw, 1.45rem);
  text-transform: uppercase;
}

.site-nav a,
.site-footer nav a {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.05vw, 1.22rem);
  letter-spacing: 0;
  line-height: 1;
}

.site-nav a:hover,
.site-nav a:focus,
.site-footer nav a:hover,
.site-footer nav a:focus {
  color: var(--gold-bright);
}

.site-nav .motion-word {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.menu-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 34px;
  padding: 0;
  width: 34px;
}

.menu-toggle span {
  background: var(--gold-bright);
  display: block;
  height: 1.5px;
  margin: 7px auto;
  transition: opacity 160ms ease, transform 160ms ease;
  width: 22px;
}

body.nav-open .menu-toggle span:first-child {
  transform: translateY(4.25px) rotate(42deg);
}

body.nav-open .menu-toggle span:last-child {
  transform: translateY(-4.25px) rotate(-42deg);
}

.hero {
  background: linear-gradient(180deg, var(--bg-red), var(--bg));
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(7rem, 12vh, 9rem) clamp(1rem, 5vw, 4.5rem) 2rem;
  position: relative;
}

.hero-media {
  background:
    radial-gradient(circle at 62% 28%, rgba(216, 180, 110, 0.18), transparent 28rem),
    #050505;
  contain: paint;
  inset: 0;
  overflow: hidden;
  position: absolute;
}

.hero-media::after {
  background:
    radial-gradient(circle at 65% 30%, rgba(5, 5, 5, 0), rgba(5, 5, 5, 0.48) 35rem),
    linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.54) 34%, rgba(5, 5, 5, 0.08) 72%),
    linear-gradient(0deg, var(--bg) 0%, rgba(5, 5, 5, 0) 30%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-slide {
  animation: hero-ken-burns var(--hero-slide-duration) cubic-bezier(0.45, 0, 0.22, 1) infinite;
  height: 100%;
  object-fit: cover;
  object-position: var(--desktop-position, 56% 42%);
  opacity: 0;
  position: absolute;
  transform: translate3d(-0.35%, calc(var(--hero-shift, 0) * 1px), 0) scale(1.045);
  transform-origin: center;
  width: 100%;
  will-change: opacity, transform;
}

.hero-slide:first-child {
  opacity: 1;
}

.hero-slide:nth-child(1) {
  animation-delay: -2.24s;
}

.hero-slide:nth-child(2) {
  animation-delay: 5.76s;
}

.hero-slide:nth-child(3) {
  animation-delay: 13.76s;
}

.hero-slide:nth-child(4) {
  animation-delay: 21.76s;
}

.hero-slide:nth-child(5) {
  animation-delay: 29.76s;
}

.hero-slide:nth-child(6) {
  animation-delay: 37.76s;
}

.hero-slide:nth-child(7) {
  animation-delay: 45.76s;
}

.hero-slide:nth-child(8) {
  animation-delay: 53.76s;
}

.hero-slide:nth-child(9) {
  animation-delay: 61.76s;
}

.hero-slide:nth-child(10) {
  animation-delay: 69.76s;
}

.hero-slide:nth-child(11) {
  animation-delay: 77.76s;
}

.hero-slide:nth-child(12) {
  animation-delay: 85.76s;
}

.hero-wordmark {
  bottom: -0.18em;
  color: rgba(245, 242, 235, 0.16);
  font-family: var(--font-display);
  font-size: clamp(11rem, 32vw, 35rem);
  left: -0.08em;
  line-height: 0.72;
  pointer-events: none;
  position: absolute;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 1;
}

.hero-content {
  max-width: 780px;
  padding-top: clamp(4.5rem, 13vh, 9rem);
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.9;
  margin: 0;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(4.2rem, 10vw, 9rem);
  line-height: 0.92;
  max-width: 8ch;
}

.hero h1 span {
  display: block;
}

h2 {
  font-size: clamp(2.8rem, 7vw, 6.8rem);
  max-width: 12ch;
}

h3 {
  font-size: clamp(1.55rem, 3.4vw, 2.65rem);
}

p {
  margin: 0;
}

.hero-copy,
.standard-copy,
.video-copy p,
.academy-content p,
.store-copy p,
.partners-content p,
.contact-copy p,
.proof-item p,
.faq-grid p,
.product-card p,
.service-card p {
  color: var(--muted);
}

.hero-copy {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  max-width: 620px;
  margin-top: 1.35rem;
}

.hero-actions,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.button {
  align-items: center;
  border: 1px solid var(--line);
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.18rem;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button-primary {
  background: linear-gradient(180deg, #f6dc8b 0%, #d8b46e 52%, #b8893e 100%);
  border-color: rgba(255, 238, 174, 0.58);
  box-shadow: 0 0 28px rgba(216, 180, 110, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.32);
  color: #080808;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.025);
  color: var(--ink);
}

.button:hover,
.button:focus {
  border-color: var(--gold-bright);
  transform: translateY(-1px);
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.hero-stats {
  border: 1px solid var(--line);
  bottom: 2rem;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: var(--max);
  position: absolute;
  right: clamp(1rem, 5vw, 4.5rem);
  width: min(790px, calc(100% - 2rem));
  z-index: 3;
}

.hero-stats div,
.proof-item,
.service-card,
.faq-grid article,
.contact-form {
  background: rgba(17, 18, 20, 0.72);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.hero-stats div {
  overflow: hidden;
  padding: 1rem;
  position: relative;
}

.hero-stats div::after,
.service-card::before {
  background: linear-gradient(90deg, transparent, rgba(216, 180, 110, 0.2), transparent);
  content: "";
  inset: 0;
  position: absolute;
  transform: translateX(-120%);
}

.hero-stats strong {
  color: var(--gold-bright);
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 0.9;
}

.hero-stats span {
  color: var(--muted);
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  margin-top: 0.3rem;
  text-transform: uppercase;
}

section {
  padding: clamp(4.5rem, 9vw, 8.5rem) clamp(1rem, 5vw, 4.5rem);
}

main > section {
  position: relative;
}

main > section::before {
  background: linear-gradient(90deg, transparent, rgba(216, 180, 110, 0.34), transparent);
  content: "";
  height: 1px;
  left: clamp(1rem, 5vw, 4.5rem);
  opacity: 0;
  position: absolute;
  right: clamp(1rem, 5vw, 4.5rem);
  top: 0;
  transform: scaleX(0);
  transform-origin: left center;
}

.bio-section::after,
.accomplishments-section::after,
.hire-section::after,
.store-section::after,
.contact-section::after {
  background-image:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.68) 46%, rgba(5, 5, 5, 0.24)),
    var(--section-photo);
  background-position: center, var(--section-photo-position, center);
  background-size: cover, var(--section-photo-size, min(58vw, 760px) auto);
  background-repeat: no-repeat;
  content: "";
  inset: 0;
  opacity: var(--section-photo-opacity, 0.2);
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.bio-section::after {
  --section-photo: url("img/hero-slides/01-raf01-ramos-lift-wide.jpeg");
  --section-photo-position: right 66% bottom 10%;
  --section-photo-size: min(56vw, 720px) auto;
  --section-photo-opacity: 0.18;
}

.accomplishments-section::after {
  --section-photo: url("img/hero-slides/04-raf01-body-lock.jpeg");
  --section-photo-position: right 7% center;
  --section-photo-size: min(46vw, 560px) auto;
  --section-photo-opacity: 0.15;
}

.hire-section::after {
  --section-photo: url("img/hero-slides/02-raf01-shot-finish.jpeg");
  --section-photo-position: right 4% bottom 8%;
  --section-photo-size: min(42vw, 560px) auto;
  --section-photo-opacity: 0.14;
}

.store-section::after {
  --section-photo: url("img/hero-slides/10-raf01-ramos-lift-tight.jpeg");
  --section-photo-position: right 7% center;
  --section-photo-size: min(42vw, 560px) auto;
  --section-photo-opacity: 0.13;
}

.contact-section::after {
  --section-photo: url("img/hero-slides/07-raf02-arm-raised.jpeg");
  --section-photo-position: left 4% bottom 12%;
  --section-photo-size: min(46vw, 620px) auto;
  --section-photo-opacity: 0.12;
}

.bio-section > *,
.accomplishments-section > *,
.hire-section > *,
.store-section > *,
.contact-section > * {
  position: relative;
  z-index: 1;
}

.bio-section,
.standard-section,
.accomplishments-section,
.sources-section,
.hire-section,
.services-section,
.store-section,
.content-section,
.faq-section,
.contact-section {
  margin: 0 auto;
  max-width: calc(var(--max) + 9rem);
}

.bio-grid,
.standard-grid,
.contact-section {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
}

.bio-copy,
.standard-copy {
  display: grid;
  gap: 1rem;
  font-size: 1.08rem;
}

.bio-copy.compact {
  margin-top: 1.5rem;
}

.bio-copy p {
  color: var(--muted);
}

.proof-band {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.78)),
    url("img/hero-slides/12-raf01-handfight-tight.jpeg") right 8% center / min(42vw, 520px) auto no-repeat;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-block: 0;
}

.proof-item {
  min-height: 260px;
  padding: clamp(1.3rem, 3vw, 2rem);
}

.proof-item span,
.service-card span,
.product-card span {
  color: var(--scarlet);
  display: block;
  font-family: var(--font-display);
  font-size: 3.1rem;
  line-height: 1;
}

.proof-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.92;
  margin: 1rem 0;
  text-transform: uppercase;
}

.action-gallery {
  align-items: end;
  display: grid;
  gap: clamp(1rem, 3vw, 2rem);
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  margin: 0 auto;
  max-width: calc(var(--max) + 9rem);
  padding-block: clamp(3.4rem, 7vw, 6.4rem);
}

.action-gallery-copy {
  display: grid;
  gap: 0.85rem;
  max-width: 500px;
}

.action-gallery-copy h2 {
  max-width: 10ch;
}

.action-gallery-grid {
  display: grid;
  gap: 0.82rem;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
}

.action-frame,
.kinetic-strip figure,
.photo-interlude figure {
  background: #050505;
  border: 1px solid var(--line);
  contain: paint;
  display: grid;
  isolation: isolate;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.action-frame {
  min-height: 270px;
}

.action-frame-large {
  grid-row: span 2;
  min-height: 560px;
}

.action-frame img,
.kinetic-strip img,
.photo-interlude img {
  filter: saturate(0.9) contrast(1.06);
  grid-area: 1 / 1;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: var(--image-focus, center);
  transform: scale(1.04);
  transition: transform 1200ms cubic-bezier(0.16, 1, 0.3, 1), filter 900ms ease;
  width: 100%;
}

.action-frame::after,
.kinetic-strip figure::after,
.photo-interlude figure::after {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0), rgba(5, 5, 5, 0.08) 48%, rgba(5, 5, 5, 0.68)),
    linear-gradient(90deg, rgba(5, 5, 5, 0.32), rgba(5, 5, 5, 0.02));
  content: "";
  grid-area: 1 / 1;
  pointer-events: none;
  position: relative;
  z-index: 1;
}

.action-frame figcaption,
.kinetic-strip figcaption {
  align-self: end;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 2rem);
  grid-area: 1 / 1;
  line-height: 0.92;
  padding: 1rem;
  position: relative;
  text-transform: uppercase;
  z-index: 2;
}

.kinetic-strip {
  border-block: 1px solid var(--line);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0;
}

.kinetic-strip figure {
  border: 0;
  min-height: min(42vw, 520px);
}

.kinetic-strip figure:nth-child(even) {
  margin-top: clamp(1rem, 3vw, 2.4rem);
}

.kinetic-strip figure:nth-child(2) {
  min-height: min(46vw, 580px);
}

.kinetic-strip figure:nth-child(3) {
  min-height: min(38vw, 500px);
}

.photo-interlude {
  display: grid;
  gap: 1px;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  padding: 0;
}

.photo-interlude figure {
  border: 0;
  min-height: min(48vw, 620px);
}

.photo-interlude figure:first-child {
  min-height: min(44vw, 560px);
}

.action-frame:hover img,
.action-frame:focus-within img,
.kinetic-strip figure:hover img,
.photo-interlude figure:hover img {
  filter: saturate(1) contrast(1.08);
  transform: scale(1.01);
}

.media-band {
  align-items: end;
  background:
    radial-gradient(circle at 18% 0%, rgba(216, 180, 110, 0.14), transparent 30rem),
    linear-gradient(180deg, rgba(18, 16, 13, 0.96), rgba(5, 5, 5, 0.92)),
    #111214;
  border-block: 1px solid var(--line);
  display: grid;
  gap: 2rem;
  grid-template-columns: 0.72fr 1.28fr;
}

.video-copy {
  display: grid;
  gap: 1rem;
  max-width: 540px;
}

.video-frame {
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid var(--line);
  position: relative;
}

.video-frame::after {
  border: 2px solid rgba(216, 180, 110, 0.34);
  content: "";
  inset: -0.7rem;
  pointer-events: none;
  position: absolute;
}

.video-frame iframe {
  border: 0;
  height: 100%;
  width: 100%;
}

.split-section,
.academy-section {
  align-items: stretch;
  display: grid;
  gap: 0;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  padding-inline: 0;
}

.portrait-panel,
.academy-image {
  contain: paint;
  min-height: 660px;
  overflow: hidden;
}

.portrait-panel img,
.academy-image img {
  filter: saturate(0.88) contrast(1.05);
  height: 100%;
  object-fit: cover;
  object-position: 32% 42%;
  transform: scale(1.06);
  width: 100%;
}

.honors-panel,
.academy-content {
  align-self: center;
  padding: clamp(2rem, 6vw, 5.4rem);
}

.honor-columns {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2rem;
}

ul {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

li {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--muted);
  padding: 0.72rem 0;
}

.section-heading {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 0.68fr) minmax(320px, 1fr);
  margin-bottom: 2.5rem;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2 {
  max-width: 16ch;
}

.accomplishment-grid,
.source-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.accomplishment-card,
.source-grid a {
  background: rgba(17, 18, 20, 0.7);
  border: 1px solid var(--line);
  min-height: 420px;
  padding: clamp(1.25rem, 3vw, 2rem);
  backdrop-filter: blur(10px);
}

.accomplishment-card > span,
.source-grid span {
  color: var(--gold-bright);
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.accomplishment-card h3 {
  margin-bottom: 1rem;
}

.source-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.source-grid a {
  min-height: 220px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.source-grid a:hover,
.source-grid a:focus {
  background: rgba(216, 180, 110, 0.08);
  border-color: var(--gold-bright);
  transform: translateY(-2px);
}

.source-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.source-links a {
  border: 1px solid var(--line);
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 0.58rem 0.75rem;
  text-transform: uppercase;
}

.service-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  min-height: 390px;
  overflow: hidden;
  padding: clamp(1.25rem, 3vw, 2rem);
  position: relative;
}

.service-card h3 {
  margin-top: 1rem;
}

.service-card p {
  margin: 1rem 0 2rem;
}

.service-card a {
  border-bottom: 1px solid var(--line);
  color: var(--gold-bright);
  font-weight: 900;
  text-transform: uppercase;
}

.portfolio-services .service-card:first-child {
  background:
    linear-gradient(135deg, rgba(216, 180, 110, 0.14), rgba(17, 18, 20, 0.88)),
    var(--panel);
}

.academy-section {
  background: #0b0908;
  border-block: 1px solid var(--line);
}

.academy-content {
  display: grid;
  gap: 1.2rem;
}

.academy-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.academy-points span {
  border: 1px solid var(--line);
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 0.55rem 0.75rem;
  text-transform: uppercase;
}

.store-section {
  display: grid;
  gap: 2rem;
}

.store-copy {
  display: grid;
  gap: 1rem;
  max-width: 780px;
}

.product-grid,
.blog-grid,
.faq-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card,
.blog-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  display: grid;
  min-height: 430px;
  overflow: hidden;
}

.product-card img,
.blog-card img {
  aspect-ratio: 16 / 10;
  height: 100%;
  object-fit: cover;
  transition: transform 1200ms cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.product-card div,
.blog-card div {
  align-self: end;
  padding: clamp(1rem, 2.4vw, 1.5rem);
}

.product-card h3,
.blog-card h3 {
  margin: 0.4rem 0 0.75rem;
}

.blog-card p {
  color: var(--muted);
  margin: 0;
}

.blog-card {
  grid-template-areas: "card";
  isolation: isolate;
  position: relative;
}

.blog-card::after {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.05), rgba(5, 5, 5, 0.18) 36%, rgba(5, 5, 5, 0.88) 100%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.76), rgba(5, 5, 5, 0.1));
  content: "";
  grid-area: card;
  inset: 0;
  pointer-events: none;
  position: relative;
  z-index: 1;
}

.blog-card img,
.blog-card div {
  grid-area: card;
}

.blog-card img {
  aspect-ratio: auto;
  min-height: 100%;
  object-position: var(--image-focus, center);
}

.blog-card div {
  align-self: end;
  position: relative;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.75);
  z-index: 2;
}

img[src*="headlocks-to-homework"] {
  --image-focus: 36% 34%;
}

img[src*="building-unshakable-confidence"] {
  --image-focus: 52% 20%;
}

img[src*="strategies-for-leveraging"] {
  --image-focus: 45% 32%;
}

img[src*="the-interconnected-strength"] {
  --image-focus: 50% 22%;
}

img[src*="strategies-to-supercharge"] {
  --image-focus: 50% 30%;
}

img[src*="the-power-of-gratitude"] {
  --image-focus: 50% 18%;
}

img[src*="the-feet-a-crucial"] {
  --image-focus: 52% 30%;
}

img[src*="6bp9opazo6smfr3mzc1gmw8gzahig3"] {
  --image-focus: 52% 20%;
}

img[src*="weight-management-and-training"] {
  --image-focus: 22% 34%;
}

img[src*="a-dive-into-the-week"] {
  --image-focus: 54% 24%;
}

img[src*="growing-the-core"] {
  --image-focus: 50% 18%;
}

img[src*="my-faith-journey"] {
  --image-focus: 30% 28%;
}

img[src*="patience-learned"] {
  --image-focus: 25% 26%;
}

.blog-archive-page,
.article-page {
  background:
    radial-gradient(circle at 78% 0%, rgba(216, 180, 110, 0.12), transparent 34rem),
    var(--bg);
}

.blog-hero {
  min-height: min(720px, 86svh);
  overflow: hidden;
  padding: clamp(8rem, 16vh, 11rem) clamp(1rem, 5vw, 4.5rem) clamp(4rem, 8vw, 7rem);
  position: relative;
}

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

.blog-hero-media::after {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.64) 46%, rgba(5, 5, 5, 0.2)),
    linear-gradient(0deg, var(--bg) 0%, rgba(5, 5, 5, 0) 42%);
  content: "";
  inset: 0;
  position: absolute;
}

.blog-hero-media img {
  filter: saturate(0.84) contrast(1.06) brightness(0.72);
  height: 100%;
  object-fit: cover;
  object-position: var(--image-focus, center);
  transform: scale(1.04);
  width: 100%;
}

.blog-hero-copy {
  display: grid;
  gap: 1rem;
  max-width: 820px;
  position: relative;
  z-index: 1;
}

.blog-hero h1 {
  font-size: clamp(4rem, 8vw, 8rem);
  max-width: 12ch;
}

.blog-hero-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  max-width: 660px;
}

.archive-section,
.related-posts {
  margin: 0 auto;
  max-width: calc(var(--max) + 9rem);
}

.archive-section {
  padding-top: clamp(3rem, 6vw, 5rem);
}

.archive-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.archive-card {
  background: rgba(17, 18, 20, 0.78);
  border: 1px solid var(--line);
  display: grid;
  grid-template-areas: "card";
  isolation: isolate;
  min-height: 430px;
  overflow: hidden;
  position: relative;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.archive-card::after {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0), rgba(5, 5, 5, 0.1) 48%, rgba(5, 5, 5, 0.82) 100%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.42), rgba(5, 5, 5, 0.06));
  content: "";
  grid-area: card;
  pointer-events: none;
  position: relative;
  z-index: 1;
}

.archive-card-featured {
  grid-column: span 2;
}

.archive-card img {
  aspect-ratio: auto;
  filter: saturate(0.86) contrast(1.04);
  grid-area: card;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: var(--image-focus, center);
  transition: transform 1200ms cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.archive-card div {
  align-self: end;
  display: grid;
  gap: 0.32rem;
  grid-area: card;
  padding: clamp(0.9rem, 1.8vw, 1.25rem);
  position: relative;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.72);
  z-index: 2;
}

.archive-card span,
.article-back,
.article-meta,
.article-source,
.article-featured-image figcaption,
.related-grid span {
  color: var(--gold-bright);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.archive-card time {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.archive-card span,
.archive-card time {
  display: none;
}

.archive-card h2 {
  font-size: clamp(1.35rem, 2.45vw, 2.35rem);
  line-height: 0.98;
  margin: 0;
  max-width: 18ch;
}

.archive-card p {
  color: var(--muted);
  display: none;
  margin: 0;
}

.archive-card div::after {
  color: var(--gold-bright);
  content: "Read post";
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-top: 0.15rem;
  text-transform: uppercase;
}

.archive-card .motion-word,
.blog-card .motion-word,
.related-grid .motion-word {
  display: inline;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.archive-card:hover,
.archive-card:focus {
  background: rgba(216, 180, 110, 0.07);
  border-color: var(--gold-bright);
  transform: translateY(-2px);
}

.archive-card:hover img,
.archive-card:focus img,
.product-card:hover img,
.product-card:focus img,
.blog-card:hover img,
.blog-card:focus img {
  transform: scale(1.04);
}

.article-hero {
  min-height: min(520px, 68svh);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(6.5rem, 12vh, 8rem);
}

.article-hero .blog-hero-copy {
  gap: 0.8rem;
  max-width: 760px;
}

.article-hero h1 {
  font-size: clamp(3.2rem, 6.4vw, 5.8rem);
}

.article-back {
  border-bottom: 1px solid var(--line);
  justify-self: start;
  padding-bottom: 0.25rem;
}

.article-meta {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.85rem;
  letter-spacing: 0.08em;
}

.article-meta span {
  color: var(--gold-bright);
}

.article-shell {
  display: grid;
  gap: clamp(1.05rem, 2.6vw, 2rem);
  margin: 0 auto;
  max-width: 940px;
  padding: clamp(2.2rem, 5vw, 4rem) clamp(1rem, 5vw, 4.5rem);
}

.article-featured-image {
  border: 1px solid var(--line);
  margin: 0;
  overflow: hidden;
}

.article-featured-image img {
  aspect-ratio: 16 / 8.8;
  filter: saturate(0.9) contrast(1.04);
  object-fit: cover;
  object-position: var(--image-focus, center);
  width: 100%;
}

.article-featured-image figcaption {
  background: rgba(17, 18, 20, 0.88);
  color: var(--muted);
  padding: 0.65rem 0.85rem;
}

.article-copy-block {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.8rem;
  grid-template-columns: minmax(190px, 0.38fr) 1fr;
  padding-top: clamp(0.95rem, 2.2vw, 1.55rem);
}

.article-copy-block h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.45rem);
  margin: 0;
  max-width: 9ch;
}

.article-copy-block p {
  color: var(--muted);
  font-size: clamp(1rem, 1.55vw, 1.12rem);
  margin: 0;
}

.article-cta {
  background:
    linear-gradient(135deg, rgba(216, 180, 110, 0.16), rgba(17, 18, 20, 0.9)),
    var(--panel);
  border: 1px solid var(--line);
  display: grid;
  gap: 0.8rem;
  margin-top: 0.4rem;
  padding: clamp(1rem, 3vw, 1.8rem);
}

.article-cta h2 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  margin: 0;
  max-width: 14ch;
}

.article-source {
  color: var(--muted);
  letter-spacing: 0.08em;
}

.article-source a {
  border-bottom: 1px solid var(--line);
  color: var(--gold-bright);
}

.related-posts {
  padding-top: clamp(1.5rem, 3vw, 2.4rem);
}

.related-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.related-grid a {
  background: rgba(17, 18, 20, 0.72);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  justify-content: flex-end;
  isolation: isolate;
  min-height: 280px;
  overflow: hidden;
  padding: 0.9rem;
  position: relative;
}

.related-grid a::after {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.04), rgba(5, 5, 5, 0.18) 38%, rgba(5, 5, 5, 0.9) 100%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.68), rgba(5, 5, 5, 0.06));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.related-grid img {
  aspect-ratio: auto;
  filter: saturate(0.86) contrast(1.04);
  height: 100%;
  inset: 0;
  min-height: 100%;
  object-fit: cover;
  object-position: var(--image-focus, center);
  position: absolute;
  width: 100%;
  z-index: 0;
}

.related-grid span,
.related-grid strong {
  position: relative;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.76);
  z-index: 2;
}

.related-grid span {
  margin: 0;
}

.related-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  line-height: 0.95;
  margin: 0;
  text-transform: uppercase;
}

.partners-section {
  background: #050505;
  border-block: 1px solid var(--line);
  min-height: 720px;
  overflow: hidden;
}

.partners-background {
  inset: 0;
  position: absolute;
}

.partners-background::after {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.72)),
    rgba(5, 5, 5, 0.25);
  content: "";
  inset: 0;
  position: absolute;
}

.partners-background img {
  filter: grayscale(1) blur(7px) brightness(0.78) contrast(1.25);
  height: 100%;
  object-fit: cover;
  transform: scale(1.18);
  width: 100%;
}

.partners-content {
  display: grid;
  gap: 1.5rem;
  margin: 0 auto;
  max-width: var(--max);
  position: relative;
  z-index: 1;
}

.partners-content h2 {
  max-width: 11ch;
}

.partners-content p {
  max-width: 620px;
}

.sponsor-row {
  align-items: center;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.sponsor-row img {
  background: rgba(255, 255, 255, 0.94);
  height: 132px;
  object-fit: contain;
  padding: 1rem;
  width: 100%;
}

.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-card {
  min-height: 370px;
}

.blog-card-featured {
  grid-row: span 2;
}

.blog-card time {
  color: var(--gold-bright);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.faq-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.faq-grid article {
  padding: clamp(1rem, 2.4vw, 1.5rem);
}

.faq-grid h3 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  margin-bottom: 0.8rem;
}

.contact-section {
  align-items: start;
}

.contact-copy {
  display: grid;
  gap: 1rem;
}

.social-links a {
  border-bottom: 1px solid var(--line);
  color: var(--gold-bright);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 2rem);
}

.contact-form label {
  display: grid;
  gap: 0.42rem;
}

.contact-form span {
  color: var(--gold-bright);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  background: #050403;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--ink);
  padding: 0.9rem 1rem;
  width: 100%;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold-bright);
  outline: 0;
}

::placeholder {
  color: rgba(245, 242, 235, 0.46);
}

.honey {
  clip: rect(0 0 0 0);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.site-footer {
  align-items: end;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  padding: 2.2rem clamp(1rem, 5vw, 4.5rem);
}

.site-footer div {
  display: grid;
  gap: 0.8rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.6rem;
  justify-content: flex-end;
}

body.motion-ready .scroll-progress {
  transform: scaleX(var(--scroll-progress));
}

body.motion-ready [data-animate] {
  opacity: 0;
  transform: translate3d(0, 42px, 0);
  transition:
    opacity 850ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 950ms cubic-bezier(0.16, 1, 0.3, 1),
    clip-path 950ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 950ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform, clip-path, filter;
}

body.motion-ready [data-animate="slide-left"] {
  transform: translate3d(-58px, 0, 0);
}

body.motion-ready [data-animate="slide-right"] {
  transform: translate3d(58px, 0, 0);
}

body.motion-ready [data-animate="slide-down"] {
  transform: translate3d(0, -34px, 0);
}

body.motion-ready [data-animate="scale"] {
  filter: saturate(0.6) brightness(0.72);
  transform: scale(0.94);
}

body.motion-ready [data-animate="clip"] {
  clip-path: inset(0 100% 0 0);
  transform: translate3d(0, 0, 0);
}

body.motion-ready [data-animate="pop"] {
  transform: translate3d(0, 30px, 0) scale(0.88);
}

body.motion-ready [data-animate].is-visible {
  clip-path: inset(0 0 0 0);
  filter: none;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

body.motion-ready .action-frame[data-animate],
body.motion-ready .kinetic-strip figure[data-animate],
body.motion-ready .photo-interlude figure[data-animate] {
  opacity: 1;
  transform: scale(0.965);
}

body.motion-ready .action-frame[data-animate].is-visible,
body.motion-ready .kinetic-strip figure[data-animate].is-visible,
body.motion-ready .photo-interlude figure[data-animate].is-visible {
  transform: scale(1);
}

body.motion-ready [data-section-motion] {
  opacity: 0.72;
  transform: translate3d(0, 54px, 0) scale(0.985);
  transition:
    opacity 1000ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1000ms cubic-bezier(0.16, 1, 0.3, 1);
}

body.motion-ready [data-section-motion].section-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

body.motion-ready [data-section-motion].section-visible::before {
  opacity: 1;
  transform: scaleX(1);
  transition: opacity 500ms ease, transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
}

.motion-word {
  display: inline-block;
  opacity: 1;
}

body.motion-ready .motion-word {
  opacity: 0;
  transform: translate3d(0, 0.6em, 0) skewY(3deg);
  transition:
    opacity 640ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--delay, 0ms) + (var(--word-index, 0) * 54ms));
  will-change: opacity, transform;
}

body.motion-ready .is-visible .motion-word,
body.motion-ready .section-visible .motion-word {
  opacity: 1;
  transform: translate3d(0, 0, 0) skewY(0);
}

body.motion-ready .hero .motion-word {
  transform: translate3d(0, 0.72em, 0) skewY(4deg);
  transition-duration: 780ms;
}

body.motion-ready .hero-stats div[data-animate] {
  opacity: 1;
  transform: none;
}

body.motion-ready .hero-content .eyebrow,
body.motion-ready .hero-copy,
body.motion-ready .hero-actions {
  opacity: 0;
  transform: translate3d(-34px, 0, 0);
}

body.motion-ready .hero-content.is-visible .eyebrow,
body.motion-ready .hero-content.is-visible .hero-copy,
body.motion-ready .hero-content.is-visible .hero-actions {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 780ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 860ms cubic-bezier(0.16, 1, 0.3, 1);
}

body.motion-ready .hero-content.is-visible .hero-copy {
  transition-delay: 360ms;
}

body.motion-ready .hero-content.is-visible .hero-actions {
  transition-delay: 500ms;
}

body.motion-ready .hero-stats div.is-visible::after {
  animation: stat-sheen 1200ms cubic-bezier(0.16, 1, 0.3, 1) 250ms both;
}

body.motion-ready .service-card.is-visible::before {
  animation: stat-sheen 1200ms cubic-bezier(0.16, 1, 0.3, 1) 150ms both;
}

body.motion-ready .blog-card.is-visible img,
body.motion-ready .product-card.is-visible img,
body.motion-ready .portrait-panel.is-visible img,
body.motion-ready .academy-image.is-visible img,
body.motion-ready .action-frame.is-visible img,
body.motion-ready .kinetic-strip figure.is-visible img,
body.motion-ready .photo-interlude figure.is-visible img {
  transform: scale(1);
}

@keyframes stat-sheen {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(120%);
  }
}

@keyframes hero-ken-burns {
  0% {
    opacity: 0;
    transform: translate3d(-0.35%, calc(var(--hero-shift, 0) * 1px), 0) scale(1.045);
  }

  2.333% {
    opacity: 1;
  }

  8.333% {
    opacity: 1;
  }

  10.667% {
    opacity: 0;
    transform: translate3d(0.45%, calc(var(--hero-shift, 0) * 1px), 0) scale(1.105);
  }

  100% {
    opacity: 0;
    transform: translate3d(0.45%, calc(var(--hero-shift, 0) * 1px), 0) scale(1.105);
  }
}

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

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

  body.motion-ready [data-animate],
  body.motion-ready [data-section-motion],
  body.motion-ready .motion-word {
    clip-path: none;
    filter: none;
    opacity: 1;
    transform: none;
  }

  .hero-slide {
    animation: none !important;
    opacity: 0;
    transform: none !important;
  }

  .hero-slide:first-child {
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .service-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .blog-card-featured {
    grid-row: auto;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    background: rgba(5, 5, 5, 0.18);
    border: 0;
    display: block;
    position: relative;
    z-index: 51;
  }

  .menu-toggle span {
    height: 1.5px;
    margin-inline: auto;
    width: 22px;
  }

  .site-nav {
    align-items: flex-start;
    backdrop-filter: blur(22px);
    background: rgba(5, 5, 5, 0.95);
    border: 1px solid rgba(216, 180, 110, 0.24);
    flex-direction: column;
    gap: 0;
    justify-content: flex-start;
    opacity: 0;
    padding: 0.22rem 0.72rem 0.32rem;
    pointer-events: none;
    position: fixed;
    right: clamp(0.7rem, 4vw, 1.4rem);
    top: 5rem;
    transform: translate3d(0.4rem, -0.4rem, 0) scale(0.98);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    visibility: hidden;
    width: min(238px, calc(100vw - 1.4rem));
    z-index: 50;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) scale(1);
    visibility: visible;
  }

  .site-nav a {
    border-top: 1px solid rgba(216, 180, 110, 0.12);
    color: var(--gold-bright);
    display: block;
    font-size: 1.1rem;
    line-height: 1;
    max-width: 100%;
    padding: 0.54rem 0;
    width: 100%;
  }

  .site-nav a:first-child {
    border-top: 0;
  }

  .hero {
    min-height: 100svh;
    padding-bottom: 1.2rem;
  }

  .hero-content {
    padding-top: 5rem;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 4rem;
    position: relative;
    right: auto;
    width: 100%;
  }

  .standard-grid,
  .bio-grid,
  .action-gallery,
  .contact-section,
  .media-band,
  .split-section,
  .academy-section,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .proof-band,
  .accomplishment-grid,
  .source-grid,
  .action-gallery-grid,
  .product-grid,
  .blog-grid,
  .archive-grid,
  .article-copy-block,
  .related-grid,
  .sponsor-row {
    grid-template-columns: 1fr;
  }

  .archive-card-featured {
    grid-column: auto;
  }

  .blog-hero {
    min-height: 100svh;
  }

  .blog-hero-copy {
    padding-top: 26vh;
  }

  .article-hero {
    min-height: auto;
    padding-bottom: clamp(1.8rem, 5vh, 2.5rem);
    padding-top: clamp(5.25rem, 11vh, 6.5rem);
  }

  .article-hero .blog-hero-copy {
    padding-top: clamp(3.25rem, 8vh, 4.75rem);
  }

  .article-shell {
    max-width: none;
  }

  .article-copy-block h2 {
    max-width: 12ch;
  }

  .portrait-panel,
  .academy-image {
    min-height: 460px;
  }

  .service-card,
  .proof-item,
  .product-card,
  .blog-card {
    min-height: 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  body.motion-ready [data-animate="slide-left"],
  body.motion-ready [data-animate="slide-right"] {
    transform: translate3d(0, 42px, 0);
  }

  body.motion-ready .hero-content .eyebrow,
  body.motion-ready .hero-copy,
  body.motion-ready .hero-actions {
    transform: translate3d(0, 30px, 0);
  }

  .bio-section::after,
  .accomplishments-section::after,
  .hire-section::after,
  .store-section::after,
  .contact-section::after {
    background-image:
      linear-gradient(180deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.76) 56%, rgba(5, 5, 5, 0.44)),
      var(--section-photo);
    background-position: center, right -10vw bottom 10%;
    background-size: cover, min(82vw, 440px) auto;
    opacity: 0.12;
  }

  .proof-band {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.84)),
      url("img/hero-slides/12-raf01-handfight-tight.jpeg") right -18vw center / min(82vw, 440px) auto no-repeat;
  }

  .action-gallery {
    align-items: start;
  }

  .action-frame-large {
    grid-row: auto;
  }

  .kinetic-strip,
  .photo-interlude {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  body {
    line-height: 1.45;
  }

  .site-header {
    padding: 0.72rem 1rem;
  }

  .site-header.is-scrolled {
    padding: 0.62rem 1rem;
  }

  .brand img,
  .site-footer img {
    height: 30px;
  }

  .menu-toggle {
    height: 30px;
    width: 30px;
  }

  .menu-toggle span {
    margin-block: 6px;
    width: 18px;
  }

  .site-nav {
    top: 4.05rem;
    width: min(208px, calc(100vw - 1.4rem));
  }

  .site-nav a {
    font-size: 1rem;
    padding: 0.48rem 0;
  }

  section {
    padding: 3.15rem 1rem;
  }

  h1 {
    font-size: clamp(2.82rem, 13vw, 3.42rem);
    max-width: calc(100vw - 2rem);
  }

  h2 {
    font-size: clamp(1.92rem, 9.4vw, 2.82rem);
    line-height: 0.98;
  }

  h3 {
    font-size: clamp(1.35rem, 7.2vw, 2rem);
    line-height: 0.96;
  }

  .eyebrow,
  .section-kicker {
    font-size: 0.66rem;
    letter-spacing: 0.12em;
    margin-bottom: 0.72rem;
  }

  .button {
    font-size: 0.72rem;
    min-height: 38px;
    padding: 0.58rem 0.78rem;
    white-space: nowrap;
  }

  .hero {
    padding: 4.75rem 1rem 1.1rem;
  }

  .hero-slide {
    object-position: var(--mobile-position, 58% 34%);
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.03), rgba(5, 5, 5, 0.22) 36%, rgba(5, 5, 5, 0.74) 68%, var(--bg) 100%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.62), rgba(5, 5, 5, 0.08) 76%);
  }

  .hero-wordmark {
    bottom: 8.5rem;
    font-size: clamp(7.6rem, 42vw, 12rem);
    left: -0.15em;
    opacity: 0.58;
  }

  .hero-content {
    max-width: 328px;
    padding-top: min(37vh, 310px);
  }

  .hero-copy {
    font-size: 0.93rem;
    line-height: 1.45;
    margin-top: 0.8rem;
    max-width: min(315px, calc(100vw - 2rem));
  }

  .hero .eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.11em;
    max-width: min(340px, calc(100vw - 2rem));
  }

  .hero-actions,
  .social-links {
    gap: 0.55rem;
    margin-top: 1rem;
  }

  .hero-actions {
    flex-wrap: nowrap;
  }

  .hero-actions .button {
    flex: 1 1 0;
    min-width: 0;
  }

  .hero-stats {
    bottom: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1.15rem;
  }

  .hero-stats div {
    padding: 0.68rem;
  }

  .hero-stats strong {
    font-size: clamp(1.55rem, 10vw, 2.2rem);
  }

  .hero-stats span {
    font-size: 0.61rem;
    margin-top: 0.18rem;
  }

  .service-grid,
  .accomplishment-grid,
  .source-grid,
  .action-gallery-grid,
  .faq-grid,
  .archive-grid,
  .related-grid,
  .honor-columns {
    grid-template-columns: 1fr;
  }

  .bio-grid,
  .action-gallery,
  .standard-grid,
  .contact-section,
  .section-heading,
  .media-band {
    gap: 1.1rem;
  }

  .section-heading {
    margin-bottom: 1.35rem;
  }

  .bio-copy,
  .standard-copy {
    font-size: 0.96rem;
    gap: 0.72rem;
  }

  .proof-item,
  .service-card,
  .accomplishment-card,
  .source-grid a,
  .faq-grid article,
  .product-card div,
  .blog-card div {
    padding: 1rem;
  }

  .proof-item,
  .accomplishment-card,
  .source-grid a,
  .service-card {
    min-height: 0;
  }

  .proof-item span,
  .service-card span,
  .product-card span {
    font-size: 1.85rem;
  }

  .proof-item strong {
    font-size: 1.9rem;
    margin: 0.62rem 0;
  }

  .proof-item p,
  .service-card p,
  .action-gallery-copy p,
  .product-card p,
  .blog-card p,
  .video-copy p,
  .contact-copy p {
    line-height: 1.45;
    font-size: 0.92rem;
  }

  .accomplishment-card > span,
  .source-grid span {
    font-size: 0.63rem;
    letter-spacing: 0.12em;
    margin-bottom: 0.7rem;
  }

  .accomplishment-card li {
    font-size: 0.9rem;
    padding: 0.52rem 0;
  }

  .source-grid strong {
    font-size: 1.55rem;
    line-height: 0.98;
  }

  .split-section .honors-panel {
    order: 1;
  }

  .split-section .portrait-panel {
    order: 2;
  }

  .honors-panel,
  .academy-content {
    padding: 3.15rem 1rem;
  }

  .action-gallery {
    padding-block: 2.6rem;
  }

  .action-gallery-copy {
    gap: 0.45rem;
  }

  .action-frame,
  .action-frame-large {
    min-height: 245px;
  }

  .action-frame figcaption,
  .kinetic-strip figcaption {
    font-size: 1.12rem;
    padding: 0.72rem;
  }

  .kinetic-strip {
    grid-template-columns: 1fr 1fr;
  }

  .kinetic-strip figure,
  .kinetic-strip figure:nth-child(2),
  .kinetic-strip figure:nth-child(3) {
    min-height: 210px;
  }

  .kinetic-strip figure:nth-child(even) {
    margin-top: 0;
  }

  .photo-interlude {
    grid-template-columns: 1fr;
  }

  .photo-interlude figure,
  .photo-interlude figure:first-child {
    min-height: 280px;
  }

  .blog-hero {
    min-height: 78svh;
    padding: 4.75rem 1rem 2.25rem;
  }

  .blog-hero-media::after {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.06), rgba(5, 5, 5, 0.22) 30%, rgba(5, 5, 5, 0.82) 68%, var(--bg) 100%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.68), rgba(5, 5, 5, 0.08) 76%);
  }

  .blog-hero-copy {
    gap: 0.72rem;
    padding-top: min(30vh, 245px);
  }

  .article-hero .blog-hero-copy {
    padding-top: clamp(3rem, 8vh, 4.5rem);
  }

  .blog-hero h1 {
    font-size: clamp(2.16rem, 10.4vw, 2.92rem);
    line-height: 0.98;
    max-width: calc(100vw - 2rem);
  }

  .blog-hero-copy > p:not(.eyebrow) {
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .article-hero {
    min-height: 62svh;
  }

  .article-hero h1 {
    font-size: clamp(1.98rem, 8.9vw, 2.52rem);
    line-height: 1;
  }

  .related-grid a {
    min-height: 190px;
  }

  .archive-card {
    min-height: 225px;
  }

  .archive-card h2 {
    font-size: clamp(1.08rem, 5.1vw, 1.46rem);
    max-width: 24ch;
  }

  .archive-card div {
    gap: 0.24rem;
    padding: 0.78rem;
  }

  .archive-card div::after {
    font-size: 0.57rem;
  }

  .article-shell {
    padding-inline: 1rem;
    padding-top: 1.35rem;
  }

  .article-copy-block {
    gap: 0.45rem;
    padding-top: 0.88rem;
  }

  .article-copy-block h2 {
    font-size: 1.48rem;
    max-width: 14ch;
  }

  .article-copy-block p {
    font-size: 0.96rem;
    line-height: 1.52;
  }

  .article-featured-image img {
    aspect-ratio: 4 / 3;
  }

  .article-featured-image figcaption,
  .article-source {
    font-size: 0.66rem;
    line-height: 1.35;
  }

  .article-cta {
    gap: 0.55rem;
    padding: 1rem;
  }

  .article-cta h2 {
    font-size: 1.82rem;
  }

  .video-frame::after {
    inset: -0.35rem;
  }

  .portrait-panel,
  .academy-image {
    min-height: 310px;
  }

  .portrait-panel img,
  .academy-image img {
    object-position: 31% 34%;
    transform: scale(1.02);
  }

  .sponsor-row img {
    height: 112px;
  }

  .site-footer {
    gap: 1rem;
    padding: 1.4rem 1rem;
  }

  .site-footer p,
  .site-footer nav a {
    font-size: 0.92rem;
  }
}
