:root {
  --ink: #070707;
  --ink-soft: #0c0c0b;
  --ink-raised: #121210;
  --ivory: #f2ecdd;
  --paper: #e9e2d5;
  --copper: #b86a3c;
  --copper-bright: #cf7240;
  --muted: #9a958c;
  --line: rgba(242, 236, 221, 0.16);
  --line-dark: rgba(7, 7, 7, 0.18);
  --display: "Bebas Neue", "Arial Narrow", sans-serif;
  --sans: "Inter Tight", Arial, sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--copper);
  color: var(--ivory);
}

img,
video {
  max-width: 100%;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
.training-photo:focus-visible,
.cmtv-still:focus-visible {
  outline: 2px solid var(--copper-bright);
  outline-offset: 5px;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 94px;
  padding: 0 4vw;
  border-bottom: 1px solid var(--line);
  transition: background 240ms ease, backdrop-filter 240ms ease, height 240ms ease;
}

.site-header.scrolled,
.site-header.menu-active {
  height: 78px;
  background: rgba(7, 7, 7, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  color: var(--ivory);
  font: 400 31px/0.8 var(--display);
  letter-spacing: 0.02em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-left: 14px;
  border-left: 1px solid var(--line);
}

.brand-copy strong {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.1vw, 36px);
}

.site-header nav a {
  position: relative;
  padding: 10px 0;
  color: #d5d0c6;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header nav .nav-cta {
  padding: 13px 19px;
  border: 1px solid rgba(242, 236, 221, 0.52);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.site-header nav .nav-cta:hover {
  border-color: var(--ivory);
  background: var(--ivory);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--ivory);
  cursor: pointer;
  padding: 10px 0 10px 10px;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 1px;
  margin: 7px 0;
  background: currentColor;
  transition: transform 200ms ease;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 51% 49%;
  min-height: 790px;
  height: 100svh;
  padding-top: 94px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5.5vw 4.2vw 145px 6vw;
  background:
    radial-gradient(circle at 8% 22%, rgba(184, 106, 60, 0.08), transparent 28%),
    var(--ink);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow b {
  color: var(--copper-bright);
  font-weight: 600;
}

.eyebrow span {
  width: clamp(60px, 8vw, 132px);
  height: 1px;
  background: var(--copper);
}

.hero h1 {
  display: flex;
  flex-direction: column;
  margin: clamp(34px, 4.5vh, 58px) 0 12px;
  color: var(--ivory);
  font: 400 clamp(86px, 8.4vw, 138px)/0.8 var(--display);
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.hero h1 span:last-child {
  color: transparent;
  -webkit-text-stroke: 1px rgba(242, 236, 221, 0.74);
}

.hero-role {
  margin: 19px 0 0;
  color: #b0aba2;
  font-size: clamp(11px, 1.1vw, 15px);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-role i {
  margin: 0 6px;
  color: var(--copper-bright);
  font-style: normal;
}

.hero-intro {
  max-width: 560px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.6;
}

.hero-status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 21px;
}

.hero-status span {
  padding: 7px 11px;
  border: 1px solid rgba(242, 236, 221, 0.18);
  color: #aba69e;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-actions,
.profile-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 31px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 190px;
  padding: 17px 20px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button span {
  font-size: 16px;
  transition: transform 180ms ease;
}

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

.button:hover span {
  transform: translate(2px, -2px);
}

.button-primary {
  border-color: var(--copper);
  background: var(--copper);
  color: #fffaf1;
}

.button-primary:hover {
  border-color: var(--copper-bright);
  background: var(--copper-bright);
}

.button-outline {
  border-color: rgba(242, 236, 221, 0.52);
  background: transparent;
  color: var(--ivory);
}

.button-outline:hover {
  border-color: var(--ivory);
  background: var(--ivory);
  color: var(--ink);
}

.hero-visual {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #111;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.45), transparent 34%),
    linear-gradient(0deg, rgba(7, 7, 7, 0.66), transparent 43%);
  pointer-events: none;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(18, 11, 7, 0.08);
  mix-blend-mode: color;
  pointer-events: none;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  filter: saturate(0.8) contrast(1.08) brightness(0.82);
  transform: scale(1.015);
  animation: hero-image 1100ms cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes hero-image {
  from { opacity: 0; transform: scale(1.055); }
  to { opacity: 1; transform: scale(1.015); }
}

.frame-corners {
  position: absolute;
  inset: 6%;
  z-index: 3;
  background:
    linear-gradient(#9e9588, #9e9588) left top / 34px 1px no-repeat,
    linear-gradient(#9e9588, #9e9588) left top / 1px 34px no-repeat,
    linear-gradient(#9e9588, #9e9588) right top / 34px 1px no-repeat,
    linear-gradient(#9e9588, #9e9588) right top / 1px 34px no-repeat,
    linear-gradient(#9e9588, #9e9588) left bottom / 34px 1px no-repeat,
    linear-gradient(#9e9588, #9e9588) left bottom / 1px 34px no-repeat,
    linear-gradient(#9e9588, #9e9588) right bottom / 34px 1px no-repeat,
    linear-gradient(#9e9588, #9e9588) right bottom / 1px 34px no-repeat;
  opacity: 0.72;
  pointer-events: none;
}

.visual-label,
.timecode {
  position: absolute;
  z-index: 4;
  bottom: 9%;
  color: #d5d0c6;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.visual-label { left: 9%; }
.visual-label span { margin-right: 10px; color: var(--copper-bright); }
.timecode { right: 9%; color: #98938b; }

.hero-credentials {
  position: absolute;
  z-index: 5;
  bottom: 28px;
  left: 6vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: calc(45% - 6vw);
  border-top: 1px solid var(--line);
}

.hero-credentials span {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  padding: 15px 13px 0 0;
  color: #d3cec4;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-credentials small {
  color: #6f6c66;
  font-size: 7px;
  letter-spacing: 0.13em;
}

.scroll-note {
  position: absolute;
  z-index: 5;
  right: 1.6vw;
  top: 50%;
  display: flex;
  gap: 14px;
  color: #8f8980;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-decoration: none;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}

.marquee {
  position: relative;
  z-index: 4;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--ink-soft);
  color: var(--ivory);
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 19px 0;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  font: 400 17px var(--display);
  letter-spacing: 0.14em;
}

.marquee-track i {
  margin: 0 33px;
  color: var(--copper);
  font-size: 8px;
  font-style: normal;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section {
  padding: 124px 6vw;
  border-bottom: 1px solid var(--line);
}

.section-number {
  color: var(--copper-bright);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about,
.services,
.equipment,
.professional-profile,
.credentials {
  display: grid;
  grid-template-columns: minmax(130px, 0.72fr) 3fr;
  gap: 7vw;
}

.about {
  background:
    radial-gradient(circle at 90% 15%, rgba(184, 106, 60, 0.06), transparent 22%),
    var(--ink);
}

.about-content .lead {
  max-width: 1100px;
  margin: 0 0 66px;
  color: var(--ivory);
  font-size: clamp(34px, 4.5vw, 70px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7vw;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.about-grid p { margin: 0; }

.services {
  background: var(--ink-soft);
}

.service-list {
  border-top: 1px solid var(--line);
}

.service {
  display: grid;
  grid-template-columns: 54px 1fr 36px;
  gap: 22px;
  align-items: center;
  padding: 31px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 220ms ease, border-color 220ms ease;
}

.service:hover {
  padding-right: 8px;
  padding-left: 8px;
  border-color: rgba(184, 106, 60, 0.7);
}

.service-index {
  color: var(--copper-bright);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.service h2 {
  margin: 0 0 6px;
  color: var(--ivory);
  font-size: clamp(26px, 2.65vw, 44px);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.service p {
  max-width: 650px;
  margin: 0;
  color: #817e78;
  font-size: 13px;
  line-height: 1.55;
}

.service-icon {
  color: #77736c;
  font-size: 22px;
  text-align: right;
  transition: color 180ms ease, transform 180ms ease;
}

.service:hover .service-icon {
  color: var(--copper-bright);
  transform: translate(3px, -3px);
}

em {
  color: var(--copper-bright);
  font-family: var(--serif);
  font-weight: 500;
}

.training {
  background: #090908;
}

.training-heading,
.video-heading,
.work-heading {
  display: grid;
  grid-template-columns: minmax(130px, 0.72fr) 3fr;
  gap: 7vw;
  margin-bottom: 68px;
}

.training-kicker,
.video-kicker,
.profile-kicker {
  margin: 0;
  color: var(--copper-bright);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.training h2,
.featured-video h2,
.work h2,
.equipment h2,
.professional-profile h2,
.credentials h2,
.contact h2 {
  margin: 20px 0 27px;
  font: 400 clamp(68px, 7.5vw, 120px)/0.84 var(--display);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.training-intro,
.video-heading p:last-child {
  max-width: 700px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.training-details {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 1.4fr;
  gap: 24px;
  margin: 35px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.training-details dt {
  margin-bottom: 8px;
  color: #6f6b64;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.training-details dd {
  margin: 0;
  color: #d7d1c5;
  font-size: 12px;
  line-height: 1.6;
}

.training-video {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  margin: 0 0 clamp(58px, 8vw, 110px);
  padding: clamp(18px, 3vw, 38px);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(175, 95, 50, 0.12), transparent 42%),
    #0e0e0d;
}

.training-video-player {
  position: relative;
  width: min(100%, 430px);
  margin: 0 auto;
  overflow: hidden;
  background: #000;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

.training-video-player video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 720px;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  background: #000;
}

.training-video-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 9px 12px;
  color: #f5efe4;
  background: rgba(8, 8, 8, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.training-video-kicker {
  margin: 0 0 22px;
  color: var(--copper-bright);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.training-video-copy h3 {
  max-width: 680px;
  margin: 0 0 25px;
  color: var(--ivory);
  font-family: var(--display);
  font-size: clamp(38px, 5.1vw, 76px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.training-video-copy > p:not(.training-video-kicker) {
  max-width: 590px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.training-video-copy > span {
  display: inline-block;
  padding-top: 18px;
  color: #d7d1c5;
  border-top: 1px solid var(--line);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.training-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.training-photo {
  position: relative;
  grid-column: span 6;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(242, 236, 221, 0.08);
  background: #151514;
  cursor: zoom-in;
  contain-intrinsic-size: 620px 480px;
}

.training-photo::after,
.project-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, transparent 38%, rgba(255, 255, 255, 0.06), transparent 60%);
  pointer-events: none;
}

.training-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.03);
  transition: filter 600ms ease, transform 700ms cubic-bezier(.22, 1, .36, 1);
}

.training-photo:hover img {
  filter: saturate(1) contrast(1.04);
  transform: scale(1.025);
}

.training-wide {
  grid-column: span 12;
}

.training-wide img {
  aspect-ratio: 16 / 9;
}

.training-tall img {
  aspect-ratio: 4 / 5;
}

.training-full img {
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: #10100f;
}

.training-poster {
  grid-column: span 12;
  padding: clamp(18px, 4vw, 60px);
}

.training-poster img {
  max-height: 980px;
  margin: 0 auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.training-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 54px 21px 19px;
  background: linear-gradient(transparent, rgba(7, 7, 7, 0.9));
  color: #e9e2d5;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  pointer-events: none;
}

.training-photo figcaption span {
  margin-right: 13px;
  color: var(--copper-bright);
}

.academy-training {
  margin-top: clamp(110px, 13vw, 190px);
  padding-top: clamp(82px, 10vw, 140px);
  border-top: 1px solid var(--line);
}

.academy-heading {
  display: grid;
  grid-template-columns: minmax(130px, 0.72fr) 3fr;
  gap: 7vw;
  margin-bottom: clamp(48px, 7vw, 90px);
}

.academy-mark {
  display: flex;
  min-height: 180px;
  flex-direction: column;
  justify-content: space-between;
  align-self: start;
  padding: 18px;
  border: 1px solid rgba(207, 114, 64, 0.42);
  background:
    linear-gradient(145deg, rgba(207, 114, 64, 0.18), transparent 56%),
    #10100f;
}

.academy-mark span {
  color: var(--copper-bright);
  font: 500 clamp(58px, 6vw, 96px)/0.8 var(--display);
  letter-spacing: -0.04em;
}

.academy-mark small {
  color: #aaa49b;
  font-size: 7px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.17em;
}

.academy-details {
  grid-template-columns: 1fr 1fr 1.25fr;
}

.academy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-top: 34px;
}

.academy-actions .button-outline {
  color: var(--ivory);
}

.academy-diploma-link {
  padding: 10px 0;
  color: #d8d1c5;
  border-bottom: 1px solid rgba(216, 209, 197, 0.38);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease;
}

.academy-diploma-link:hover,
.academy-diploma-link:focus-visible {
  color: var(--copper-bright);
  border-color: var(--copper-bright);
}

.academy-focus {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0 0 34px;
  border: 1px solid var(--line);
  background: #0d0d0c;
}

.academy-focus span {
  min-height: 88px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  color: #d8d1c5;
  border-right: 1px solid var(--line);
  font-size: 8px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.academy-focus span::before {
  content: "●";
  align-self: flex-start;
  margin-right: auto;
  color: var(--copper-bright);
  font-size: 7px;
}

.academy-focus span:last-child {
  border-right: 0;
}

.academy-gallery .training-photo {
  background: #0d0d0c;
}

.academy-gallery-divider {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(120px, 0.7fr) minmax(260px, 1.35fr) minmax(280px, 1.4fr);
  gap: clamp(20px, 4vw, 58px);
  align-items: end;
  margin: clamp(50px, 8vw, 110px) 0 18px;
  padding: 0 0 28px;
  border-bottom: 1px solid var(--line);
}

.academy-gallery-divider span {
  color: var(--copper-bright);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.academy-gallery-divider h3 {
  margin: 0;
  color: var(--ivory);
  font: 500 clamp(38px, 4.5vw, 70px)/0.9 var(--display);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.academy-gallery-divider p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.academy-portrait-feature img {
  width: auto;
  max-width: 100%;
  max-height: 920px;
  margin: 0 auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.featured-video {
  background: var(--paper);
  color: var(--ink);
}

.featured-video .section-number {
  color: #9c4c27;
}

.featured-video .video-heading p:last-child {
  color: #5f5b54;
}

.video-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 690px;
  padding: 46px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% 42%, #393d3e, #151617 49%, #080808 80%);
}

.video-stage video {
  display: block;
  height: min(77vh, 800px);
  max-width: 100%;
  background: #000;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.62);
}

.video-side-label {
  position: absolute;
  bottom: 24px;
  left: 25px;
  color: #96928b;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.video-side-label span {
  margin-right: 10px;
  color: var(--copper-bright);
}

.reportage-video {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 5vw;
  align-items: center;
  margin-top: 72px;
  padding-top: 72px;
  border-top: 1px solid var(--line-dark);
}

.reportage-player {
  background: #080808;
  box-shadow: 0 24px 65px rgba(35, 20, 10, 0.18);
}

.reportage-player video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.reportage-copy h3 {
  margin: 14px 0 20px;
  font-size: clamp(28px, 3.2vw, 50px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.reportage-copy > p:not(.video-kicker) {
  color: #625e57;
  line-height: 1.7;
}

.reportage-credit {
  display: block;
  margin-top: 27px;
  padding-top: 17px;
  border-top: 1px solid var(--line-dark);
  color: #777168;
  font-size: 8px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.14em;
}

.firefighters-gallery {
  grid-column: 1 / -1;
  margin-top: clamp(18px, 3vw, 38px);
  padding-top: clamp(30px, 4vw, 54px);
  border-top: 1px solid var(--line-dark);
}

.firefighters-gallery-heading {
  display: grid;
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 1fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 27px;
}

.firefighters-gallery-heading p {
  margin: 0 0 7px;
  color: var(--copper-bright);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.firefighters-gallery-heading h4 {
  margin: 0;
  color: var(--ink);
  font: 400 clamp(38px, 4.7vw, 68px)/0.96 var(--display);
  letter-spacing: -0.02em;
}

.firefighters-gallery-heading h4 em {
  color: #8a857d;
  font-style: italic;
  font-weight: 300;
}

.firefighters-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.5vw, 20px);
}

.firefighters-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(7, 7, 7, 0.14);
  background: #111;
  box-shadow: 0 16px 36px rgba(35, 20, 10, 0.11);
}

.firefighters-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: opacity 220ms ease, transform 420ms ease;
}

.firefighters-photo:hover img {
  opacity: 0.94;
  transform: scale(1.018);
}

.firefighters-photo figcaption {
  display: flex;
  min-height: 60px;
  align-items: center;
  gap: 11px;
  padding: 14px 15px;
  background: #0b0c0e;
  color: #d7d2c9;
  font-size: 8px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.firefighters-photo figcaption span {
  color: var(--copper-bright);
}

.cmtv-showcase {
  margin-top: 72px;
  padding: clamp(32px, 4.7vw, 68px);
  border: 1px solid rgba(7, 7, 7, 0.16);
  background: #0b0c0e;
  color: var(--ivory);
  box-shadow: 0 34px 85px rgba(35, 20, 10, 0.2);
}

.cmtv-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.7fr);
  gap: 6vw;
  align-items: end;
  margin-bottom: 38px;
}

.cmtv-heading h3 {
  margin: 9px 0 0;
  font: 400 clamp(62px, 7.4vw, 116px)/0.82 var(--display);
  letter-spacing: -0.015em;
}

.cmtv-heading h3 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1px rgba(242, 236, 221, 0.67);
}

.cmtv-heading > p {
  margin: 0;
  color: #9b9891;
  font-size: 14px;
  line-height: 1.68;
}

.cmtv-media {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(250px, 0.5fr);
  gap: 18px;
}

.cmtv-player-shell {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #030303;
}

.cmtv-player-shell video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #030303;
}

.cmtv-player-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 8px 10px;
  border: 1px solid rgba(242, 236, 221, 0.52);
  background: rgba(7, 7, 7, 0.7);
  color: var(--ivory);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  pointer-events: none;
  backdrop-filter: blur(8px);
}

.cmtv-playlist {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  gap: 8px;
}

.cool-talent-showcase {
  border-color: rgba(232, 178, 79, 0.38);
  background:
    radial-gradient(circle at 84% 2%, rgba(255, 183, 61, 0.2), transparent 34%),
    radial-gradient(circle at 8% 94%, rgba(142, 57, 21, 0.22), transparent 36%),
    linear-gradient(145deg, #17130d 0%, #0b0c0e 54%, #08090a 100%);
}

.cool-talent-heading h3 {
  font-size: clamp(50px, 6vw, 92px);
}

.cool-talent-heading h3 em {
  color: #f1b94f;
  -webkit-text-stroke: 0;
}

.cool-talent-player-shell {
  border: 1px solid rgba(232, 178, 79, 0.25);
}

.cool-talent-player-badge {
  border-color: rgba(232, 178, 79, 0.75);
  color: #ffd98d;
}

.cool-talent-playlist {
  grid-template-rows: repeat(4, 1fr);
}

.baja-showcase {
  border-color: rgba(207, 114, 64, 0.38);
  background:
    radial-gradient(circle at 82% 7%, rgba(207, 114, 64, 0.18), transparent 34%),
    linear-gradient(145deg, #15100d 0%, #0b0c0e 58%, #08090a 100%);
}

.baja-heading h3 {
  font-size: clamp(54px, 6.5vw, 98px);
}

.baja-heading h3 em {
  color: var(--copper-bright);
  -webkit-text-stroke: 0;
}

.baja-player-shell {
  border: 1px solid rgba(207, 114, 64, 0.24);
}

.baja-player-badge {
  border-color: rgba(207, 114, 64, 0.72);
  color: #f1b087;
}

.baja-playlist {
  grid-template-rows: repeat(3, 1fr);
}

.baja-credit {
  margin: 27px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(242, 236, 221, 0.15);
  color: #8e8981;
  font-size: 8px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.14em;
}

.cmtv-clip {
  display: grid;
  grid-template-columns: 106px minmax(0, 1fr);
  align-items: stretch;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(242, 236, 221, 0.12);
  background: #141517;
  color: var(--ivory);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.cmtv-clip:hover,
.cmtv-clip:focus-visible {
  border-color: rgba(207, 114, 64, 0.72);
  background: #1b1918;
  transform: translateX(-3px);
}

.cmtv-clip.active {
  border-color: var(--copper-bright);
  background: #211914;
}

.cmtv-clip img {
  width: 100%;
  height: 100%;
  min-height: 82px;
  object-fit: cover;
  opacity: 0.75;
  transition: opacity 180ms ease;
}

.cmtv-clip.active img,
.cmtv-clip:hover img {
  opacity: 1;
}

.cmtv-clip > span {
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  gap: 5px 10px;
  padding: 12px 13px;
}

.cmtv-clip small {
  grid-column: 1 / -1;
  color: var(--copper-bright);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.cmtv-clip strong {
  overflow: hidden;
  font-size: 11px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cmtv-clip b {
  color: #77746f;
  font-size: 8px;
  font-weight: 600;
}

.cmtv-current {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(242, 236, 221, 0.15);
}

.cmtv-current span,
.cmtv-current small {
  color: #77746f;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.cmtv-current strong {
  font-size: 12px;
  font-weight: 600;
}

.cmtv-stills {
  margin-top: clamp(44px, 6vw, 84px);
  padding-top: clamp(34px, 4vw, 58px);
  border-top: 1px solid rgba(242, 236, 221, 0.15);
}

.cmtv-stills-heading {
  display: grid;
  grid-template-columns: minmax(170px, 0.45fr) minmax(0, 1fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 30px;
}

.cmtv-stills-heading p {
  margin: 0 0 8px;
  color: var(--copper-bright);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.cmtv-stills-heading h4 {
  margin: 0;
  font: 400 clamp(40px, 5vw, 74px)/0.94 var(--display);
  letter-spacing: -0.02em;
}

.cmtv-stills-heading h4 em {
  color: #9b9891;
  font-style: italic;
  font-weight: 300;
}

.cmtv-stills-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  align-items: start;
}

.cmtv-still {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(242, 236, 221, 0.13);
  background: #111214;
  cursor: zoom-in;
  transition: border-color 220ms ease, transform 220ms ease;
}

.cmtv-still:hover {
  border-color: rgba(207, 114, 64, 0.72);
  transform: translateY(-4px);
}

.cmtv-still img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #070809;
  transition: opacity 220ms ease, transform 420ms ease;
}

.cmtv-still:not(.cmtv-still-portrait) img {
  aspect-ratio: 4 / 3;
}

.cmtv-still:hover img {
  opacity: 0.94;
  transform: scale(1.012);
}

.cmtv-still figcaption {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  min-height: 58px;
  padding: 14px 17px;
  color: #d2cec4;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cmtv-still figcaption span {
  color: var(--copper-bright);
  font: 500 20px/1 var(--display);
}

.cool-talent-showcase .cool-talent-clip:hover,
.cool-talent-showcase .cool-talent-clip:focus-visible,
.cool-talent-showcase .cool-talent-still:hover {
  border-color: rgba(232, 178, 79, 0.78);
}

.cool-talent-showcase .cool-talent-clip.active {
  border-color: #e8b24f;
  background: #251d10;
}

.cool-talent-showcase .cool-talent-clip small,
.cool-talent-showcase .cool-talent-stills-heading p,
.cool-talent-showcase .cool-talent-still figcaption span {
  color: #e8b24f;
}

.cool-talent-stills-grid {
  align-items: stretch;
}

.cool-talent-still {
  display: grid;
  grid-template-rows: 1fr auto;
}

.cool-talent-still img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 28%, rgba(232, 178, 79, 0.11), transparent 40%),
    #050607;
}

.cool-talent-still-wide {
  grid-column: 1 / -1;
}

.cool-talent-still-wide img {
  max-height: 760px;
  aspect-ratio: 16 / 10;
  object-fit: contain;
}

.cool-talent-credit {
  margin: 28px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(242, 236, 221, 0.15);
  color: #928c80;
  font-size: 8px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.14em;
}

.cinco-showcase {
  border-color: rgba(239, 130, 190, 0.38);
  background:
    radial-gradient(circle at 12% 8%, rgba(239, 130, 190, 0.13), transparent 34%),
    radial-gradient(circle at 88% 90%, rgba(92, 211, 202, 0.08), transparent 30%),
    linear-gradient(145deg, #151013, #0a0b0c 65%);
}

.cinco-heading h3 {
  font-size: clamp(52px, 6.4vw, 96px);
}

.cinco-heading h3 em {
  color: #ef82be;
  font-style: normal;
  -webkit-text-stroke: 0;
}

.cinco-stills {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.cinco-stills-heading p,
.cinco-still figcaption span {
  color: #ef82be;
}

.cinco-stills-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  align-items: stretch;
}

.cinco-still {
  grid-column: span 4;
  display: grid;
  grid-template-rows: 1fr auto;
}

.cinco-still-wide {
  grid-column: span 6;
}

.cinco-still-hero {
  grid-column: 1 / -1;
}

.cinco-still img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.cinco-still-hero img {
  aspect-ratio: 16 / 7;
}

.cinco-still:hover {
  border-color: rgba(239, 130, 190, 0.8);
}

.cinco-credit {
  margin: 28px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(242, 236, 221, 0.15);
  color: #928c80;
  font-size: 8px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.14em;
}

.work {
  background: #f0eade;
  color: var(--ink);
}

.work .section-number {
  color: #9c4c27;
}

.work-heading {
  margin-bottom: 60px;
}

.work h2 {
  margin-top: 0;
  margin-bottom: 0;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5.5vw 20px;
}

.project-large {
  grid-column: 1 / -1;
}

.project-art {
  position: relative;
  height: auto;
  overflow: hidden;
  background: #262626;
}

.project-art img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
  transition: transform 700ms cubic-bezier(.22, 1, .36, 1);
}

.project-large .project-art img {
  aspect-ratio: 16 / 8.2;
}

.project:hover .project-art img {
  transform: scale(1.025);
}

.portrait-art img {
  object-position: center 40%;
}

.project-tag {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 9px 11px;
  border: 1px solid rgba(242, 236, 221, 0.6);
  background: rgba(7, 7, 7, 0.72);
  color: var(--ivory);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  backdrop-filter: blur(8px);
}

.project-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 17px;
  padding-top: 16px;
  border-top: 1px solid var(--line-dark);
}

.project-meta h3 {
  margin: 0 0 5px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.project-meta p,
.project-meta > span {
  margin: 0;
  color: #6e6962;
  font-size: 11px;
}

.equipment {
  background:
    radial-gradient(circle at 82% 30%, rgba(184, 106, 60, 0.08), transparent 25%),
    var(--ink);
}

.equipment h2 {
  margin-top: 20px;
  margin-bottom: 28px;
}

.equipment-kicker {
  margin: 0;
  color: var(--copper-bright);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.equipment-intro {
  max-width: 760px;
  margin: 0;
  color: #928e86;
  font-size: 16px;
  line-height: 1.7;
}

.professional-offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 48px;
}

.offer-card {
  position: relative;
  overflow: hidden;
  min-height: 670px;
  padding: clamp(30px, 4vw, 54px);
  border: 1px solid rgba(242, 236, 221, 0.15);
  background:
    linear-gradient(145deg, rgba(184, 106, 60, 0.08), transparent 42%),
    #0d0d0c;
}

.offer-card::after {
  content: attr(data-index);
  position: absolute;
  top: -18px;
  right: 18px;
  z-index: 0;
  color: rgba(242, 236, 221, 0.035);
  font: 500 clamp(130px, 14vw, 220px)/1 var(--display);
  pointer-events: none;
}

.offer-card > * {
  position: relative;
  z-index: 1;
}

.kit-offer {
  border-color: rgba(77, 205, 164, 0.42);
  background:
    linear-gradient(145deg, rgba(77, 205, 164, 0.13), transparent 44%),
    linear-gradient(320deg, rgba(72, 185, 232, 0.06), transparent 38%),
    #0d0d0c;
  box-shadow: inset 0 3px #4dcda4, 0 24px 70px rgba(0, 0, 0, 0.24);
}

.kit-offer .offer-card-header p {
  color: #80e4c2;
}

.offer-card-header {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.offer-card-header span {
  color: var(--copper-bright);
  font-size: 10px;
  font-weight: 700;
}

.offer-card-header p {
  margin: 0;
  color: #d4cec3;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.offer-card h3 {
  max-width: 620px;
  margin: 34px 0 22px;
  color: var(--ivory);
  font: 500 clamp(34px, 3.4vw, 54px)/0.98 var(--display);
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.offer-description {
  max-width: 620px;
  margin: 0;
  color: #969188;
  font-size: 14px;
  line-height: 1.72;
}

.work-disciplines {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  border: 1px solid var(--line);
  background: var(--line);
}

.work-disciplines strong {
  position: relative;
  overflow: hidden;
  min-height: 72px;
  display: flex;
  align-items: flex-end;
  padding: 17px;
  background: #10100f;
  color: #ded8cd;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.work-disciplines strong::before {
  content: "●";
  align-self: flex-start;
  margin-right: auto;
  color: var(--copper-bright);
  font-size: 7px;
}

.work-disciplines strong:nth-child(1) { box-shadow: inset 3px 0 #e9773f; }
.work-disciplines strong:nth-child(2) { box-shadow: inset 3px 0 #48b9e8; }
.work-disciplines strong:nth-child(1)::before { color: #e9773f; }
.work-disciplines strong:nth-child(2)::before { color: #48b9e8; }

.work-sectors {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 19px;
}

.work-sectors span,
.availability-tags span {
  padding: 9px 11px;
  border: 1px solid rgba(242, 236, 221, 0.16);
  color: #8c877f;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.equipment-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.equipment-list li {
  --equipment-accent: var(--copper-bright);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 76px;
  margin-bottom: 8px;
  padding: 9px 16px 9px 13px;
  border: 1px solid color-mix(in srgb, var(--equipment-accent) 36%, transparent);
  border-left: 4px solid var(--equipment-accent);
  background: linear-gradient(90deg, color-mix(in srgb, var(--equipment-accent) 12%, transparent), rgba(255,255,255,0.012) 58%);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.equipment-list li:hover {
  transform: translateX(4px);
  border-color: color-mix(in srgb, var(--equipment-accent) 66%, transparent);
  background: linear-gradient(90deg, color-mix(in srgb, var(--equipment-accent) 18%, transparent), rgba(255,255,255,0.018) 62%);
}

.equipment-list li > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--equipment-accent) 62%, transparent);
  border-radius: 50%;
  background: color-mix(in srgb, var(--equipment-accent) 11%, transparent);
  color: var(--equipment-accent);
  font-size: 8px;
  font-weight: 700;
}

.equipment-list li div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.equipment-list small {
  color: var(--equipment-accent);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.equipment-list strong {
  color: #e4ded3;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.equipment-list .equipment-camera { --equipment-accent: #e9773f; }
.equipment-list .equipment-lens { --equipment-accent: #48b9e8; }
.equipment-list .equipment-gimbal { --equipment-accent: #9b7be8; }
.equipment-list .equipment-monitor { --equipment-accent: #4dcda4; }

.kit-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 25px;
  padding: 9px 12px;
  border: 1px solid rgba(77, 205, 164, 0.34);
  background: rgba(77, 205, 164, 0.07);
  color: #80e4c2;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.kit-status span {
  font-size: 7px;
}

.availability-strip {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr 1fr;
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  margin-top: 14px;
  padding: 29px 31px;
  border: 1px solid rgba(184, 106, 60, 0.32);
  background: rgba(184, 106, 60, 0.055);
}

.availability-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.availability-label span {
  color: var(--copper-bright);
  font-size: 8px;
}

.availability-label small {
  color: #d8d1c5;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.availability-strip > p {
  margin: 0;
  color: #aaa59c;
  font-size: 13px;
  line-height: 1.65;
}

.availability-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.professional-profile {
  background: var(--ink-soft);
}

.professional-profile h2 {
  margin-bottom: 48px;
}

.profile-copy {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 6vw;
  padding-top: 31px;
  border-top: 1px solid var(--line);
}

.profile-lead {
  margin: 0;
  color: #e3ddd1;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.38;
  letter-spacing: -0.025em;
}

.profile-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  color: #89857d;
  font-size: 13px;
  line-height: 1.72;
}

.profile-columns p { margin: 0; }

.profile-phone {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: var(--ivory);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}

.profile-phone small {
  color: #77736c;
  font-size: 8px;
  letter-spacing: 0.17em;
}

.credentials {
  background:
    radial-gradient(circle at 86% 14%, rgba(168, 91, 52, 0.12), transparent 24%),
    #e9e2d7;
  color: var(--ink);
}

.credentials-content {
  min-width: 0;
}

.credentials-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.65fr);
  gap: 5vw;
  align-items: end;
  margin-bottom: 48px;
}

.credentials-kicker {
  grid-column: 1 / -1;
  margin: 0 0 -10px;
  color: #9c4c27;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.credentials h2 {
  margin-top: 20px;
  margin-bottom: 0;
}

.credentials-heading > p:last-child {
  max-width: 520px;
  margin: 0 0 5px;
  color: #5f5a53;
  font-size: 14px;
  line-height: 1.7;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 25px);
}

.credential-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid rgba(20, 18, 15, 0.14);
  background: #f5f0e7;
  box-shadow: 0 22px 60px rgba(37, 25, 16, 0.09);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.credential-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 75px rgba(37, 25, 16, 0.15);
}

.credential-preview {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 4 / 5;
  padding: clamp(14px, 1.8vw, 25px);
  overflow: hidden;
  border-bottom: 1px solid rgba(242, 236, 221, 0.12);
  background:
    linear-gradient(135deg, rgba(184, 106, 60, 0.11), transparent 36%),
    #101112;
}

.credential-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.32));
  transition: transform 320ms ease;
}

.credential-card:hover .credential-preview img {
  transform: scale(1.018);
}

.credential-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(19px, 2.2vw, 29px);
}

.credential-index {
  color: #9c4c27;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.credential-body h3 {
  margin: 13px 0 9px;
  font-size: clamp(20px, 1.7vw, 28px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.credential-body > p {
  margin: 0;
  color: #625d55;
  font-size: 12px;
  line-height: 1.65;
}

.credential-privacy {
  display: block;
  margin-top: 13px;
  color: #8b6b57;
  font-size: 8px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.credential-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
}

.credential-actions a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(20, 18, 15, 0.18);
  color: var(--ink);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.credential-actions a:first-child {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--ivory);
}

.credential-actions a:hover {
  border-color: #a85b34;
  background: #a85b34;
  color: #fff;
}

.contact {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 720px;
  padding: 116px 7vw;
  overflow: hidden;
  background: #a85b34;
  color: #170d08;
}

.contact-inner {
  position: relative;
  z-index: 3;
}

.contact .eyebrow,
.contact .eyebrow b,
.contact em {
  color: #24110a;
}

.contact .eyebrow span {
  background: rgba(36, 17, 10, 0.72);
}

.contact h2 {
  font-size: clamp(75px, 9vw, 145px);
}

.contact-inner > p:not(.eyebrow) {
  max-width: 590px;
  font-size: 15px;
  line-height: 1.65;
}

.button-light {
  margin-top: 18px;
  background: var(--ivory);
  color: var(--ink);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.contact-actions .button {
  margin-top: 0;
}

.button-whatsapp {
  border-color: #23110a;
  background: #23110a;
  color: var(--ivory);
}

.button-whatsapp span {
  color: inherit;
}

.button-whatsapp:hover {
  border-color: #3a1d12;
  background: #3a1d12;
}

.contact-email {
  display: block;
  width: max-content;
  margin-top: 15px;
  color: #23110a;
  font-size: 13px;
  font-weight: 600;
  text-underline-offset: 5px;
}

.contact-orbit {
  position: absolute;
  right: -8vw;
  display: grid;
  place-items: center;
  width: min(44vw, 700px);
  aspect-ratio: 1;
  border: 1px solid rgba(35, 17, 10, 0.28);
  border-radius: 50%;
}

.contact-orbit::before,
.contact-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(35, 17, 10, 0.18);
  border-radius: 50%;
}

.contact-orbit::before { inset: 13%; }
.contact-orbit::after { inset: 27%; }

.contact-orbit span {
  font: 400 min(12vw, 180px) var(--display);
  letter-spacing: -0.02em;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 34px;
  align-items: center;
  padding: 34px 4vw;
  background: var(--ink);
  color: #77736c;
  font-size: 10px;
}

footer .brand {
  color: var(--ivory);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(.22, 1, .36, 1), transform 700ms cubic-bezier(.22, 1, .36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.image-lightbox {
  width: min(92vw, 1280px);
  max-width: none;
  padding: 0;
  border: 1px solid rgba(242, 236, 221, 0.22);
  background: #080808;
  color: var(--ivory);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.8);
}

.image-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(10px);
}

.image-lightbox img {
  display: block;
  width: 100%;
  max-height: 84vh;
  object-fit: contain;
  background: #080808;
}

.image-lightbox p {
  margin: 0;
  padding: 17px 20px;
  color: #aca79f;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(242, 236, 221, 0.45);
  background: rgba(7, 7, 7, 0.8);
  color: var(--ivory);
  cursor: pointer;
  font: 600 9px var(--sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

@media (max-width: 1050px) {
  .site-header nav { gap: 18px; }
  .site-header nav a { font-size: 9px; }
  .hero h1 { font-size: clamp(78px, 9.2vw, 106px); }
  .hero-credentials { width: calc(47% - 6vw); }
}

@media (max-width: 850px) {
  .site-header,
  .site-header.scrolled,
  .site-header.menu-active {
    height: 72px;
    padding: 0 22px;
  }

  .brand-mark { font-size: 27px; }
  .brand-copy small { display: none; }
  .brand-copy strong { font-size: 10px; }

  .menu-toggle {
    position: relative;
    z-index: 28;
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-header nav {
    position: fixed;
    inset: 0;
    z-index: 27;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding: 100px 8vw 50px;
    background:
      radial-gradient(circle at 85% 16%, rgba(184, 106, 60, 0.15), transparent 30%),
      rgba(7, 7, 7, 0.98);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
  }

  .site-header nav.open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .site-header nav a,
  .site-header nav .nav-cta {
    width: 100%;
    padding: 14px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    color: var(--ivory);
    font: 400 36px/1 var(--display);
    letter-spacing: 0.03em;
  }

  .hero {
    display: block;
    min-height: 760px;
    height: 100svh;
    padding-top: 72px;
  }

  .hero-copy {
    position: relative;
    z-index: 4;
    justify-content: flex-end;
    height: 100%;
    padding: 120px 24px 156px;
    background: linear-gradient(0deg, rgba(7, 7, 7, 0.98) 0, rgba(7, 7, 7, 0.84) 38%, rgba(7, 7, 7, 0.14) 75%);
  }

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

  .hero-visual::before {
    background:
      linear-gradient(0deg, rgba(7, 7, 7, 0.95), transparent 62%),
      linear-gradient(90deg, rgba(7, 7, 7, 0.18), transparent 45%);
  }

  .hero-photo {
    object-position: 59% center;
    filter: saturate(0.75) contrast(1.08) brightness(0.72);
  }

  .hero .eyebrow { gap: 10px; }
  .hero .eyebrow span { width: 48px; }

  .hero h1 {
    margin-top: 25px;
    font-size: clamp(82px, 22vw, 120px);
  }

  .hero-role {
    max-width: 350px;
    font-size: 10px;
    line-height: 1.7;
  }

  .hero-intro {
    max-width: 470px;
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.48;
  }

  .hero-status { display: none; }
  .hero-actions { margin-top: 22px; }
  .hero-actions .button { min-width: 0; width: 50%; }
  .frame-corners { inset: 88px 17px 154px; opacity: 0.46; }
  .visual-label, .timecode { display: none; }

  .hero-credentials {
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    padding: 0 22px 18px;
    border-top: 1px solid var(--line);
    background: rgba(7, 7, 7, 0.9);
  }

  .hero-credentials span {
    padding-top: 14px;
    padding-right: 8px;
    font-size: 7px;
    line-height: 1.35;
  }

  .scroll-note { display: none; }
  .section { padding: 88px 22px; }

  .about,
  .services,
  .equipment,
  .professional-profile,
  .credentials,
  .training-heading,
  .video-heading,
  .work-heading {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .section-number { margin-bottom: 38px; }
  .about-content .lead { margin-bottom: 43px; font-size: 36px; }
  .about-grid { grid-template-columns: 1fr; gap: 20px; font-size: 14px; }
  .service { grid-template-columns: 34px 1fr 28px; gap: 12px; padding: 25px 0; }
  .service h2 { font-size: 27px; }
  .service p { font-size: 12px; }

  .training-heading,
  .video-heading,
  .work-heading { margin-bottom: 43px; }

  .training h2,
  .featured-video h2,
  .work h2,
  .equipment h2,
  .professional-profile h2,
  .credentials h2,
  .contact h2 {
    font-size: clamp(65px, 18vw, 92px);
  }

  .training-intro,
  .video-heading p:last-child { font-size: 14px; }
  .training-details { grid-template-columns: 1fr; gap: 20px; }
  .training-video {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 14px;
  }
  .training-video-player { width: min(100%, 390px); }
  .training-video-player video { max-height: 72vh; }
  .training-video-copy { padding: 4px 7px 18px; }
  .training-video-copy h3 { font-size: clamp(36px, 11vw, 58px); }
  .training-video-copy > p:not(.training-video-kicker) { font-size: 14px; }
  .training-gallery { grid-template-columns: 1fr; gap: 14px; }
  .training-photo,
  .training-wide,
  .training-poster { grid-column: auto; }
  .training-photo img,
  .training-wide img { aspect-ratio: 4 / 3; }
  .training-tall img { aspect-ratio: 4 / 5; }
  .training-full img { aspect-ratio: 4 / 5; object-fit: contain; }
  .training-poster { padding: 14px; }
  .training-poster img { aspect-ratio: auto; }
  .academy-training {
    margin-top: 90px;
    padding-top: 74px;
  }
  .academy-heading { grid-template-columns: 1fr; gap: 28px; }
  .academy-mark {
    min-height: 0;
    flex-direction: row;
    align-items: flex-end;
    gap: 20px;
  }
  .academy-mark span { font-size: 64px; }
  .academy-mark small { max-width: 120px; text-align: right; }
  .academy-details { grid-template-columns: 1fr; }
  .academy-focus { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .academy-focus span { min-height: 76px; border-bottom: 1px solid var(--line); }
  .academy-focus span:nth-child(2n) { border-right: 0; }
  .academy-focus span:last-child { grid-column: 1 / -1; border-bottom: 0; }
  .academy-gallery-divider {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 68px;
    padding-bottom: 22px;
  }
  .academy-gallery-divider h3 { font-size: clamp(44px, 13vw, 66px); }
  .academy-gallery-divider p { font-size: 12px; }
  .academy-portrait-feature img {
    width: auto;
    max-height: 78vh;
    aspect-ratio: auto;
  }
  .cool-talent-still-wide { grid-column: auto; }
  .cool-talent-still-wide img { max-height: 72vh; aspect-ratio: 4 / 5; }

  .video-stage { min-height: 0; padding: 20px 10px; }
  .video-stage video { width: 100%; height: auto; max-height: 78vh; }
  .video-side-label { display: none; }
  .cmtv-showcase { margin-top: 48px; padding: 30px 20px; }
  .cmtv-heading { grid-template-columns: 1fr; gap: 18px; margin-bottom: 26px; }
  .cmtv-heading h3 { font-size: 70px; }
  .cool-talent-heading h3 { font-size: 58px; line-height: 0.9; }
  .cinco-heading h3 { font-size: 58px; line-height: 0.9; }
  .baja-heading h3 { font-size: 58px; line-height: 0.9; }
  .cmtv-media { grid-template-columns: 1fr; }
  .cmtv-playlist { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: none; }
  .cmtv-clip { grid-template-columns: 92px minmax(0, 1fr); min-height: 92px; }
  .cmtv-stills-heading { grid-template-columns: 1fr; gap: 9px; }
  .cinco-stills-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cinco-still,
  .cinco-still-wide { grid-column: span 1; }
  .cinco-still-hero { grid-column: 1 / -1; }
  .reportage-video { grid-template-columns: 1fr; gap: 31px; margin-top: 48px; padding-top: 48px; }
  .reportage-copy h3 { font-size: 31px; }
  .firefighters-gallery-heading { grid-template-columns: 1fr; gap: 9px; }
  .firefighters-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .project-grid { grid-template-columns: 1fr; gap: 53px; }
  .project-large { grid-column: auto; }
  .project-art img,
  .project-large .project-art img { aspect-ratio: 4 / 3; }
  .project-meta h3 { font-size: 18px; }

  .professional-offer-grid,
  .availability-strip,
  .profile-copy { grid-template-columns: 1fr; gap: 35px; }
  .offer-card { min-height: 0; }
  .availability-strip { padding: 25px 22px; }
  .availability-tags { max-width: 520px; }
  .profile-columns { grid-template-columns: 1fr; gap: 18px; }
  .profile-actions { align-items: flex-start; flex-direction: column; }
  .credentials-heading { grid-template-columns: 1fr; gap: 18px; margin-bottom: 36px; }
  .credentials-kicker { margin-bottom: -4px; }
  .credentials-grid { grid-template-columns: 1fr; gap: 20px; }
  .credential-preview { aspect-ratio: 4 / 3; }

  .contact {
    min-height: 680px;
    padding: 95px 22px;
  }

  .contact h2 { font-size: clamp(76px, 22vw, 108px); }
  .contact-orbit { right: -35vw; width: 100vw; opacity: 0.36; }
  .contact-actions { flex-direction: column; align-items: flex-start; }

  footer {
    grid-template-columns: 1fr;
    gap: 17px;
    align-items: start;
    padding: 34px 22px;
  }

  .image-lightbox { width: 96vw; }
}

@media (max-width: 520px) {
  .cmtv-showcase { margin-right: -4vw; margin-left: -4vw; padding: 27px 14px; }
  .cmtv-heading h3 { font-size: 58px; }
  .cool-talent-heading h3 { font-size: 47px; }
  .cinco-heading h3 { font-size: 46px; }
  .baja-heading h3 { font-size: 50px; }
  .cmtv-playlist { grid-template-columns: 1fr; }
  .cmtv-clip { grid-template-columns: 112px minmax(0, 1fr); }
  .cmtv-current { grid-template-columns: 1fr auto; gap: 7px 12px; }
  .cmtv-current span { grid-column: 1 / -1; }
  .cmtv-stills { margin-top: 40px; padding-top: 30px; }
  .cmtv-stills-heading h4 { font-size: 42px; }
  .cmtv-stills-grid { grid-template-columns: 1fr; }
  .cinco-still,
  .cinco-still-wide,
  .cinco-still-hero { grid-column: auto; }
  .cinco-still-hero img { aspect-ratio: 4 / 3; }
  .cmtv-still figcaption { min-height: 54px; padding: 12px 13px; font-size: 8px; }
  .firefighters-gallery { margin-top: 14px; padding-top: 30px; }
  .firefighters-gallery-heading h4 { font-size: 42px; }
  .firefighters-gallery-grid { gap: 10px; }
  .firefighters-photo figcaption { min-height: 66px; padding: 11px 10px; font-size: 7px; }
  .hero-copy { padding-right: 20px; padding-left: 20px; }
  .hero h1 { font-size: clamp(78px, 22vw, 105px); }
  .hero-role i { margin: 0 3px; }
  .hero-actions { gap: 10px; }
  .hero-actions .button { padding: 15px 13px; font-size: 8px; }
  .hero-credentials { padding-right: 16px; padding-left: 20px; }
  .hero-credentials small { font-size: 6px; }
  .marquee-track { padding: 15px 0; font-size: 15px; }
  .about-content .lead { font-size: 33px; }
  .button { min-width: 180px; }
  .academy-actions { align-items: flex-start; flex-direction: column; }
  .academy-focus { grid-template-columns: 1fr; }
  .academy-focus span,
  .academy-focus span:nth-child(2n),
  .academy-focus span:last-child {
    grid-column: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .academy-focus span:last-child { border-bottom: 0; }
  .contact-email { font-size: 12px; }
  .credential-actions { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}
