:root {
  --red: #c81018;
  --red-deep: #8e0b12;
  --ink: #1c1714;
  --muted: #5e574f;
  --paper: #f3eee7;
  --paper-2: #e7e0d6;
  --white: #fcfaf7;
  --line: rgba(28, 23, 20, 0.14);
  --serif: "Newsreader", "Iowan Old Style", Georgia, serif;
  --sans: "Manrope", "Avenir Next", sans-serif;
  --header: 84px;
  --max: 1440px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3 { font-family: var(--serif); font-weight: 560; letter-spacing: -0.03em; line-height: 1.08; margin: 0; }
p { margin: 0; }
.otgs-development-site-front-end { display: none !important; }
.screen-reader, .skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.skip-link:focus {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  background: var(--ink);
  color: white;
  padding: 0.6rem 0.8rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(243, 238, 231, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}
.site-header::before {
  content: "";
  display: block;
  height: 3px;
  background: var(--red);
}
.site-header.is-stuck { border-bottom-color: var(--line); }
.header-bar {
  max-width: 1440px;
  margin: 0 auto;
  min-height: var(--header);
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand { display: flex; align-items: center; margin-right: auto; }
.brand-logo { width: 168px; height: auto; }
.nav-list {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list > li { position: static; }
.nav-list > li > a {
  display: block;
  padding: 10px 12px;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.nav-list > li > a:hover { color: var(--red); }
.header-tools { display: flex; align-items: center; gap: 14px; }
.lang-switch { display: flex; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; }
.lang-switch a { text-decoration: none; opacity: 0.4; }
.lang-switch a[aria-current="true"] { opacity: 1; }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  position: relative;
}
.nav-toggle-lines, .nav-toggle-lines::before, .nav-toggle-lines::after {
  content: "";
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
  position: absolute;
  left: 14px;
}
.nav-toggle-lines { top: 22px; }
.nav-toggle-lines::before { top: -6px; }
.nav-toggle-lines::after { top: 6px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-red { background: var(--red); color: white; }
.btn-red:hover { background: var(--red-deep); }
.btn-ghost { background: transparent; border-color: var(--line); }
.btn-light { background: var(--white); color: var(--ink); }

.has-panel:hover > .mega, .has-panel:focus-within > .mega { opacity: 1; visibility: visible; transform: translateY(0); }
.mega {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 3px);
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 30px 60px rgba(28, 23, 20, 0.08);
  padding: 28px 6vw 22px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
}
.mega-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; max-width: 1440px; margin: 0 auto; }
.mega-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); font-weight: 700; margin-bottom: 10px; }
.mega ul, .mega-simple { list-style: none; margin: 0; padding: 0; }
.mega a { text-decoration: none; }
.mega-col a { display: grid; grid-template-columns: 28px 1fr; gap: 6px; padding: 7px 0; font-size: 14.5px; line-height: 1.35; }
.mega-col a span { color: var(--muted); font-variant-numeric: tabular-nums; }
.mega-col a:hover { color: var(--red); }
.mega-simple { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 32px; max-width: 860px; }
.mega-simple a { display: block; padding: 8px 0; text-decoration: none; font-weight: 600; }
.mega-simple a:hover { color: var(--red); }
.mega-all { display: inline-block; margin-top: 16px; font-size: 13px; font-weight: 700; text-decoration: none; }
.mega-compact { padding-bottom: 28px; }

.hero, .page-hero, .section, .band, .cta-band, .certs, .site-footer, .contact-layout, .article-layout, .narrow, .pager {
  width: min(var(--max), calc(100% - 56px));
  margin-left: auto;
  margin-right: auto;
}
.hero {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 48px;
  align-items: end;
  padding: 54px 0 36px;
  width: min(1240px, calc(100% - 48px));
}
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.eyebrow a { text-decoration: none; }
.hero-title { font-size: clamp(46px, 6vw, 84px); max-width: 11ch; }
.lede { font-size: 18.5px; color: var(--muted); max-width: 46ch; margin-top: 22px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-panel {
  background: var(--ink);
  color: var(--white);
  min-height: 460px;
  border-radius: 28px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.hero-panel::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 42px solid var(--red);
  right: -70px;
  top: -80px;
  opacity: 0.95;
  clip-path: inset(0 0 46% 46%);
}
.hero-mark { width: 180px; margin-top: 20px; position: relative; z-index: 1; filter: drop-shadow(0 10px 20px rgba(0,0,0,.25)); }
.hero-photo { width: 100%; height: 240px; object-fit: cover; border-radius: 18px; position: relative; z-index: 1; }
.fact-list { display: grid; gap: 16px; margin: 28px 0 0; position: relative; z-index: 1; }
.fact-list div { display: grid; grid-template-columns: 120px 1fr; gap: 12px; border-top: 1px solid rgba(255,255,255,.16); padding-top: 12px; }
.fact-list dt { font-family: var(--serif); font-size: 22px; }
.fact-list dd { margin: 0; color: rgba(252,250,247,.72); font-size: 14px; }

.ticker { overflow: hidden; border-block: 1px solid var(--line); background: var(--white); margin-top: 18px; }
.ticker-track { display: flex; width: max-content; animation: ticker 48s linear infinite; }
.ticker-group { display: flex; }
.ticker span {
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ticker span::before { content: "●"; color: var(--red); margin-right: 28px; font-size: 8px; vertical-align: middle; }

.section { padding: 84px 0; }
.section-head { display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: end; margin-bottom: 28px; }
.section-head h2 { font-size: clamp(36px, 4vw, 56px); }
.section-head-light { color: var(--white); }
.text-link { font-weight: 700; text-decoration: none; font-size: 14px; }
.text-link:hover { color: var(--red); }

.service-index { display: grid; }
.index-group {
  grid-column: 1 / -1;
  margin: 28px 0 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.service-row {
  display: grid;
  grid-template-columns: 64px minmax(180px, 0.8fr) 1.4fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px 8px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background 0.3s var(--ease), padding 0.3s var(--ease);
}
.service-row:hover { background: rgba(255,255,255,.55); padding-left: 16px; }
.service-num { font-family: var(--serif); font-style: italic; color: var(--red); font-size: 22px; }
.service-name { font-weight: 700; font-size: 18px; letter-spacing: -0.02em; }
.service-sum { color: var(--muted); font-size: 15px; }
.service-go { font-size: 20px; transition: transform 0.3s var(--ease); }
.service-row:hover .service-go { transform: translateX(6px); color: var(--red); }

.band {
  width: 100%;
  background: var(--ink);
  color: var(--white);
  padding: 84px 0;
}
.band .section-head, .band .training-grid { width: min(var(--max), calc(100% - 48px)); margin-left: auto; margin-right: auto; }
.training-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.training-archive { padding-bottom: 80px; }
.training-card {
  display: block;
  min-height: 230px;
  padding: 24px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: rgba(255,255,255,.03);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}
.training-archive .training-card { background: var(--white); color: var(--ink); border-color: var(--line); }
.training-card:hover { transform: translateY(-6px); background: rgba(200, 16, 24, 0.16); }
.training-archive .training-card:hover { background: var(--white); border-color: var(--red); }
.training-card span { font-family: var(--serif); font-style: italic; color: #ffb4b0; font-size: 28px; }
.training-archive .training-card span { color: var(--red); }
.training-card h3 { font-size: 30px; margin: 18px 0 12px; max-width: 16ch; }
.training-card p { color: rgba(252,250,247,.72); font-size: 15px; }
.training-archive .training-card p { color: var(--muted); }

.about-teaser { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: center; }
.about-teaser h2 { font-size: clamp(40px, 5vw, 64px); margin-bottom: 8px; }
.about-visual {
  min-height: 360px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 42%, transparent 58px, var(--red) 59px, var(--red) 92px, transparent 93px),
    var(--paper-2);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.about-visual img:not(.about-mark) { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.about-mark { width: 150px; }
.about-visual p { position: absolute; font-family: var(--serif); font-size: 42px; }

.journal-grid, .journal-list { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.journal-list { padding-bottom: 80px; }
.journal-card {
  background: var(--white);
  border-radius: 24px;
  padding: 28px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.journal-card time { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.journal-card h2, .journal-card h3 { font-size: 32px; }
.journal-card a { text-decoration: none; }
.journal-card h2 a:hover, .journal-card h3 a:hover { color: var(--red); }
.journal-card p { color: var(--muted); }
.journal-card .text-link { margin-top: auto; }

.certs { padding: 10px 0 70px; text-align: center; }
.certs img { margin: 0 auto 12px; max-width: 640px; }
.certs p { color: var(--muted); font-size: 14px; }

.cta-band {
  background: var(--red);
  color: white;
  border-radius: 28px;
  padding: 36px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 72px;
}
.cta-band h2 { font-size: clamp(32px, 4vw, 48px); max-width: 16ch; }
.cta-band .eyebrow { color: rgba(255,255,255,.75); }

.page-hero { padding: 54px 0 10px; }
.page-hero h1 { font-size: clamp(40px, 5vw, 64px); max-width: 22ch; }
.page-hero-split { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 32px; align-items: end; width: min(1240px, calc(100% - 48px)); }
.display-num { font-style: italic; color: var(--red); margin-right: 8px; }
.wide-figure { width: min(1240px, calc(100% - 48px)); margin: 28px auto; }
.wide-figure img { width: 100%; border-radius: 24px; max-height: 560px; object-fit: cover; }
.article-layout { display: grid; grid-template-columns: 220px 1fr; gap: 40px; padding-bottom: 40px; }
.chapter-nav { position: sticky; top: 110px; align-self: start; }
.chapter-nav p { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; color: var(--muted); }
.chapter-nav ol { margin: 12px 0 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.chapter-nav a { text-decoration: none; font-size: 14px; color: var(--muted); }
.chapter-nav a:hover { color: var(--red); }
.narrow { width: min(760px, calc(100% - 48px)); margin: 10px auto 64px; }
.prose > * + * { margin-top: 1em; }
.prose h2, .article-body h2, .narrow h2 { font-size: 34px; margin: 1.6em 0 0.5em; }
.lead-prose { font-size: 19px; }
.callout {
  margin: 28px 0;
  padding: 18px 20px;
  border-left: 3px solid var(--red);
  background: var(--white);
  font-weight: 600;
}
.chapter { padding-top: 12px; }
.point-list { list-style: none; margin: 18px 0 0; padding: 0; }
.point-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.point-list strong { display: block; margin-bottom: 2px; }
.closing { margin-top: 28px; }
.pager {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 10px 0 48px;
}
.pager a { text-decoration: none; padding: 18px 0; border-top: 1px solid var(--line); }
.pager small { display: block; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; font-size: 11px; font-weight: 700; }
.pager-next { text-align: right; }
.split-notes { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 28px; }
.about-story p:first-child { font-size: 22px; }

.contact-layout { display: grid; grid-template-columns: 0.7fr 1.1fr; gap: 40px; padding: 20px 0 80px; }
.contact-facts { margin: 0; display: grid; gap: 18px; align-content: start; }
.contact-facts div { border-top: 1px solid var(--line); padding-top: 14px; }
.contact-facts dt { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.contact-facts dd { margin: 6px 0 0; font-size: 20px; font-family: var(--serif); }
.contact-facts a { text-decoration: none; }
.proposal {
  background: var(--white);
  border-radius: 28px;
  padding: 28px;
  display: grid;
  gap: 14px;
}
.proposal h2 { font-size: 36px; margin-bottom: 4px; }
.proposal p { color: var(--muted); }
.proposal label { display: grid; gap: 6px; font-size: 13px; font-weight: 700; }
.proposal input, .proposal textarea, .proposal select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 500;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-note { padding: 12px 14px; border-radius: 12px; }
.form-ok { background: #e7f6ec; color: #135c32; }
.form-bad { background: #fde8e8; color: var(--red-deep); }
.hp { position: absolute; left: -9999px; }

.site-footer { width: min(1240px, calc(100% - 48px)); padding-bottom: 28px; }
.footer-top { display: grid; grid-template-columns: 1.1fr 1.3fr 1fr 0.9fr; gap: 28px; border-top: 1px solid var(--line); padding-top: 36px; }
.footer-since { margin-top: 12px; color: var(--muted); }
.footer-label { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; margin-bottom: 10px; }
.site-footer ul { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 6px; }
.site-footer a { text-decoration: none; font-size: 14.5px; }
.site-footer a:hover { color: var(--red); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; border-top: 1px solid var(--line); margin-top: 10px; padding-top: 16px; color: var(--muted); font-size: 13px; }

.stage, .metrics, .bleed-frame {
  width: min(1440px, calc(100% - 56px));
  margin-left: auto;
  margin-right: auto;
}
.stage {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 36px 48px;
  align-items: end;
  padding: 36px 0 12px;
}
.stage-copy { min-width: 0; }
.stage-title {
  font-size: clamp(44px, 4.7vw, 68px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  max-width: min(14ch, 100%);
  overflow-wrap: break-word;
}
.stage-visual { position: relative; margin: 0 18px 18px 0; }
.stage-visual::before,
.bleed-frame::before {
  content: "";
  position: absolute;
  border: 1px solid var(--red);
  pointer-events: none;
}
.stage-visual::before { inset: 28px -18px -18px 28px; }
.stage-visual .frame,
.bleed-frame .frame { position: relative; z-index: 1; }

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.metrics div { padding: 26px 28px 28px; }
.metrics div + div { border-left: 1px solid var(--line); }
.metrics-value {
  font-family: var(--serif);
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.metrics-label { margin-top: 10px; max-width: 28ch; color: var(--muted); font-size: 14.5px; }

.frame {
  position: relative;
  display: block;
  margin: 0;
  overflow: hidden;
  background: #1c1714;
  aspect-ratio: var(--frame-ratio, 4 / 5);
}
.frame-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}
.frame img,
.frame-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.15s var(--ease);
}
.frame-health .frame-art {
  background:
    radial-gradient(46% 38% at 74% 18%, rgba(255, 236, 220, 0.92), transparent 70%),
    radial-gradient(40% 46% at 12% 86%, rgba(200, 16, 24, 0.42), transparent 72%),
    linear-gradient(165deg, #f0c2b2 0%, #8a4036 48%, #241614 100%);
}
.frame-safety .frame-art {
  background:
    radial-gradient(42% 36% at 28% 16%, rgba(255, 255, 255, 0.78), transparent 68%),
    radial-gradient(34% 40% at 84% 78%, rgba(200, 16, 24, 0.5), transparent 70%),
    linear-gradient(160deg, #ddd6cc 0%, #5e5850 46%, #1c1714 100%);
}
.frame-protection .frame-art {
  background:
    radial-gradient(40% 34% at 70% 16%, rgba(255, 214, 170, 0.85), transparent 68%),
    radial-gradient(48% 40% at 18% 88%, rgba(0, 0, 0, 0.28), transparent 70%),
    linear-gradient(155deg, #f3c7ae 0%, #c81018 40%, #3a0c10 100%);
}
.frame-measurement .frame-art {
  background:
    radial-gradient(48% 40% at 24% 18%, rgba(255, 255, 255, 0.8), transparent 68%),
    radial-gradient(36% 42% at 86% 82%, rgba(28, 23, 20, 0.35), transparent 72%),
    linear-gradient(165deg, #e7ebed 0%, #6d7c86 48%, #1d262c 100%);
}
.frame-technical .frame-art {
  background:
    radial-gradient(44% 36% at 68% 20%, rgba(255, 244, 220, 0.75), transparent 70%),
    radial-gradient(38% 40% at 12% 84%, rgba(200, 16, 24, 0.32), transparent 72%),
    linear-gradient(160deg, #ead7b8 0%, #8a6238 44%, #1c1714 100%);
}
.frame-hero .frame-art {
  background:
    radial-gradient(70% 42% at 50% 12%, rgba(255, 236, 210, 0.55), transparent 70%),
    linear-gradient(180deg, transparent 46%, rgba(20, 16, 14, 0.2) 47%, transparent 48%),
    linear-gradient(180deg, #cbb8a2 0%, #8d6b52 34%, #3a2a24 70%, #14110f 100%);
}
.frame-about .frame-art {
  background:
    radial-gradient(46% 40% at 38% 24%, rgba(255, 255, 255, 0.5), transparent 70%),
    radial-gradient(34% 36% at 82% 80%, rgba(200, 16, 24, 0.38), transparent 72%),
    linear-gradient(165deg, #f4e7da 0%, #b45648 50%, #1c1714 100%);
}
.frame-journal .frame-art {
  background:
    radial-gradient(42% 40% at 18% 16%, rgba(255, 255, 255, 0.72), transparent 68%),
    linear-gradient(150deg, #efe6da 0%, #8d8174 52%, #2a241f 100%);
}
.frame-place .frame-art,
.frame-ink .frame-art {
  background:
    radial-gradient(50% 32% at 50% 22%, rgba(255, 255, 255, 0.38), transparent 70%),
    linear-gradient(180deg, #d7d0c6 0%, #6e675f 52%, #1c1714 100%);
}
.frame:not(.has-photo)::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.22;
  background-image: radial-gradient(rgba(255, 255, 255, 0.7) 0.6px, transparent 0.6px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
}
.stage-visual .frame-art::before,
.bleed-frame .frame-art::before,
.studio-visual .frame-art::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 22%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 16px solid rgba(200, 16, 24, 0.92);
  right: 11%;
  top: 12%;
  clip-path: inset(0 0 48% 48%);
}
.frame-tag {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: rgba(255, 255, 255, 0.84);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.frame figcaption {
  position: absolute;
  z-index: 2;
  left: 16px;
  right: 16px;
  bottom: 16px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.shot .frame-tag,
.train .frame-tag,
.story .frame-tag,
.mega-feature .frame-tag { display: none; }

.mosaic {
  display: grid;
  grid-template-columns: 1.15fr 1.15fr 0.9fr;
  grid-template-rows: 330px 330px;
  grid-auto-rows: 300px;
  gap: 12px;
}
.shot {
  position: relative;
  display: block;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background: #1c1714;
}
.mosaic > .shot:first-child {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}
.shot:hover img,
.shot:hover .frame-art,
.train:hover img,
.train:hover .frame-art,
.story:hover img,
.story:hover .frame-art,
.mega-feature:hover img,
.mega-feature:hover .frame-art { transform: scale(1.06); }
.shot-copy {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  gap: 7px;
  padding: 72px 20px 18px;
  background: linear-gradient(to top, rgba(12, 10, 9, 0.9), rgba(12, 10, 9, 0));
}
.shot-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
}
.shot-name {
  font-family: var(--serif);
  font-size: clamp(26px, 2vw, 34px);
  letter-spacing: -0.03em;
  line-height: 1.02;
}
.mosaic > .shot:first-child .shot-name { font-size: clamp(38px, 3.5vw, 60px); max-width: 11ch; }
.shot-sum {
  display: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14.5px;
  line-height: 1.45;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mosaic > .shot:first-child .shot-sum,
.shot:hover .shot-sum,
.shot:focus-visible .shot-sum { display: -webkit-box; }
.shot-copy::before {
  content: "";
  position: absolute;
  left: 20px;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.45s var(--ease);
}
.shot:hover .shot-copy::before,
.shot:focus-visible .shot-copy::before { width: 46px; }

.band .section-head,
.band .reel { width: min(1440px, calc(100% - 56px)); margin-left: auto; margin-right: auto; }
.section-head-light .text-link { color: #fff; }
.section-head-light .text-link:hover { color: #ffb4b0; }
.reel { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.train {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 520px;
  padding: 22px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background: #1c1714;
}
.train::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top, rgba(12, 10, 9, 0.9) 0%, rgba(12, 10, 9, 0.12) 58%);
}
.train > :not(.frame) { position: relative; z-index: 2; }
.train-index { font-family: var(--serif); font-style: italic; font-size: 22px; color: #ffb4b0; }
.train h3 { font-size: clamp(26px, 2vw, 34px); margin-top: 8px; max-width: 12ch; }
.train p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14.5px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.studio { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 64px; align-items: center; }
.studio h2 { font-size: clamp(42px, 5vw, 72px); margin-bottom: 8px; }
.studio-visual { position: relative; }
.studio-year {
  position: absolute;
  z-index: 2;
  left: -16px;
  bottom: 28px;
  margin: 0;
  background: var(--red);
  color: #fff;
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1;
  padding: 12px 16px 10px;
}

.stories { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 28px; }
.story-link { display: block; text-decoration: none; }
.story-body { display: grid; gap: 8px; padding-top: 16px; }
.story time { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.story h2, .story h3 { font-size: clamp(28px, 3vw, 42px); }
.story h2:hover, .story h3:hover { color: var(--red); }
.story > p { color: var(--muted); margin-top: 10px; }
.story > .text-link { display: inline-block; margin-top: 14px; }

.bleed-frame { position: relative; margin-top: 28px; margin-bottom: 8px; }
.bleed-frame::before { inset: 18px -14px -14px 18px; }
.contact-side { display: grid; gap: 22px; align-content: start; }

.mega-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 32px;
  max-width: 1440px;
  margin: 0 auto;
}
.mega-feature {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 300px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}
.mega-feature span {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 6px;
  padding: 18px;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.02;
}
.mega-feature small {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.mega-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(12, 10, 9, 0.78), transparent 62%);
  pointer-events: none;
}

.stage-copy, .page-hero {
  animation: rise 0.9s var(--ease) both;
}
.shot, .train, .story, .stage-visual, .bleed-frame, .studio-visual {
  animation: rise 0.9s var(--ease) both;
}
@supports (animation-timeline: view()) {
  .shot, .train, .story, .bleed-frame, .studio-visual {
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }
}
.service-row:nth-child(2) { animation-delay: 0.04s; }
.service-row:nth-child(3) { animation-delay: 0.08s; }
.service-row:nth-child(4) { animation-delay: 0.12s; }

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@keyframes ticker {
  to { transform: translateX(-50%); }
}
body.nav-open { overflow: hidden; }
.nav-cta { display: none; }

@media (max-width: 1100px) {
  .nav-toggle { display: inline-flex; }
  .header-tools .btn { display: none; }
  .primary-nav {
    position: fixed;
    top: calc(var(--header) + 3px);
    left: 0;
    right: 0;
    height: calc(100dvh - var(--header) - 3px);
    z-index: 30;
    background: var(--paper);
    padding: 12px 22px 40px;
    overflow: auto;
    transform: translateY(8px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s var(--ease);
  }
  body.nav-open .primary-nav { opacity: 1; visibility: visible; transform: none; }
  .nav-list { flex-direction: column; align-items: stretch; }
  .nav-list > li > a { font-size: 28px; font-family: var(--serif); padding: 8px 0; }
  .nav-cta { display: block; margin-top: 12px; }
  .nav-cta .btn { font-family: var(--sans); font-size: 14px; width: fit-content; }
  .mega, .has-panel:hover > .mega, .has-panel:focus-within > .mega {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 0 12px;
    background: transparent;
    border: 0;
  }
  .mega-grid, .mega-simple { grid-template-columns: 1fr; }
  .hero, .page-hero-split, .about-teaser, .article-layout, .contact-layout, .journal-grid, .training-grid, .footer-top, .section-head, .stage, .studio, .stories, .metrics, .mega-layout {
    grid-template-columns: 1fr;
  }
  .mosaic { grid-template-columns: 1fr 1fr; }
  .mosaic > .shot:first-child { grid-column: 1 / -1; grid-row: auto; min-height: 480px; }
  .reel { grid-template-columns: 1fr 1fr; }
  .train { min-height: 420px; }
  .mega-feature { display: none; }
  .stage-title { max-width: 100%; font-size: clamp(46px, 11vw, 72px); }
  .mosaic { grid-template-rows: none; grid-auto-rows: minmax(280px, auto); }
  .studio-year { left: 12px; bottom: 16px; }
  .metrics div + div { border-left: 0; border-top: 1px solid var(--line); }
  .stage-visual { margin: 8px 12px 12px 0; }
  .hero-panel { min-height: 0; }
  .service-row { grid-template-columns: 42px 1fr; }
  .service-sum, .service-go { display: none; }
  .split-notes, .form-row, .pager, .footer-bottom { grid-template-columns: 1fr; display: grid; }
  .pager-next { text-align: left; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .chapter-nav { position: static; }
  .header-tools .btn { display: none; }
  body.nav-open .header-tools .btn { display: none; }
}

@media (max-width: 760px) {
  .mosaic, .reel, .stories { grid-template-columns: 1fr; }
  .mosaic > .shot:first-child { grid-column: auto; min-height: 520px; }
  .shot { min-height: 420px; }
  .stage, .metrics, .bleed-frame, .hero, .page-hero, .section, .cta-band, .certs, .site-footer, .contact-layout, .article-layout, .pager {
    width: min(var(--max), calc(100% - 32px));
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
