@font-face { font-family: "Archivo"; src: url("../assets/fonts/archivo-latin.woff2") format("woff2"); font-weight: 400 700; font-display: swap; }
@font-face { font-family: "Fraunces"; src: url("../assets/fonts/fraunces-latin.woff2") format("woff2"); font-weight: 600 700; font-display: swap; }
@font-face { font-family: "IBM Plex Mono"; src: url("../assets/fonts/ibm-plex-mono-500-latin.woff2") format("woff2"); font-weight: 500; font-display: swap; }

:root {
  --ink: #14304e;
  --night: #071522;
  --gold: #c29a4b;
  --paper: #f2eee5;
  --chalk: #fbfaf6;
  --sky: #dce8ed;
  --slate: #526576;
  --line: rgba(20, 48, 78, .2);
  --display: "Fraunces", Georgia, serif;
  --body: "Archivo", Arial, sans-serif;
  --mono: "IBM Plex Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body.v2 {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
.v2 a { color: inherit; text-decoration: none; }
.v2 section[id] { scroll-margin-top: 76px; }
.v2 ::selection { color: var(--night); background: var(--gold); }
.v2 :focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.v2 img { display: block; width: 100%; height: 100%; object-fit: cover; }
.v2 h1, .v2 h2, .v2 h3, .v2 p, .v2 figure { margin: 0; }
.v2 h1, .v2 h2, .v2 h3 { font-family: var(--display); font-weight: 600; line-height: .93; letter-spacing: -.055em; }

.v2-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  height: 76px;
  padding: 0 clamp(20px, 4vw, 68px);
  align-items: center;
  justify-content: space-between;
  color: var(--chalk);
  background: rgba(7, 21, 34, .97);
  border-bottom: 1px solid rgba(242, 238, 229, .14);
}
.v2-brand { display: flex; align-items: center; gap: 11px; font-family: var(--display); font-size: 25px; font-weight: 600; }
.v2-brand svg { width: 17px; fill: var(--gold); }
.v2-nav { display: flex; align-items: center; gap: clamp(18px, 2.1vw, 34px); }
.v2-nav a { color: rgba(251, 250, 246, .76); font-family: var(--mono); font-size: 12px; letter-spacing: .07em; text-transform: uppercase; }
.v2-nav a:hover, .v2-nav a[aria-current="page"] { color: var(--chalk); }
.v2-review-link { padding: 10px 14px; border: 1px solid rgba(194,154,75,.5); }
.v2-menu { display: none; width: 43px; height: 43px; color: var(--chalk); background: transparent; border: 1px solid rgba(242,238,229,.25); font-size: 22px; }

.v2-kicker { display: flex; align-items: center; gap: 13px; color: var(--gold); font-family: var(--mono); font-size: 12px; line-height: 1.3; letter-spacing: .1em; text-transform: uppercase; }
.v2-kicker::before { width: 28px; height: 1px; background: currentColor; content: ""; }
.v2-hero {
  display: grid;
  min-height: calc(100svh - 76px);
  background: var(--chalk);
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
}
.v2-hero-copy { display: flex; padding: clamp(56px, 7vw, 105px) clamp(28px, 5.5vw, 92px); justify-content: center; flex-direction: column; }
.v2-hero h1 { max-width: 8.2ch; margin-top: 28px; font-size: clamp(68px, 7.5vw, 118px); }
.v2-hero h1 em { color: var(--gold); font-style: normal; }
.v2-hero-copy > p:last-of-type { max-width: 39ch; margin-top: 28px; color: var(--slate); font-size: clamp(18px, 1.35vw, 21px); }
.v2-actions { display: flex; margin-top: 34px; align-items: center; gap: 24px; flex-wrap: wrap; }
.v2-button { display: inline-flex; min-height: 52px; padding: 0 21px; align-items: center; color: var(--night) !important; background: var(--gold); font-weight: 700; font-size: 15px; }
.v2-text-link { padding-bottom: 5px; border-bottom: 1px solid var(--ink); font-family: var(--mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.v2-hero-media { position: relative; min-height: 600px; overflow: hidden; }
.v2-hero-media::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(7,21,34,.72)); content: ""; }
.v2-hero-media figcaption { position: absolute; right: 36px; bottom: 28px; left: 36px; z-index: 2; padding-top: 12px; color: var(--chalk); border-top: 1px solid rgba(251,250,246,.45); font-size: 15px; }
.v2-hero-media figcaption.v2-live-caption { display: flex; align-items: end; justify-content: space-between; gap: 28px; }
.v2-live-caption span:last-child { max-width: 31ch; color: var(--gold); font-family: var(--mono); font-size: 11px; line-height: 1.5; letter-spacing: .05em; text-align: right; text-transform: uppercase; }

@keyframes v2-rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes v2-reveal { from { opacity: .5; clip-path: inset(0 0 100% 0); } to { opacity: 1; clip-path: inset(0 0 0 0); } }
.v2-hero-copy > * { animation: v2-rise .65s both; }
.v2-hero-copy > :nth-child(2) { animation-delay: .08s; }
.v2-hero-copy > :nth-child(3) { animation-delay: .16s; }
.v2-hero-copy > :nth-child(4) { animation-delay: .24s; }
.v2-hero-media img { animation: v2-reveal .82s cubic-bezier(.2,.75,.2,1) both; }

/* Homepage signature: the original full-bleed yard hero, now carrying a live intake. */
.v2-photo-hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 76px);
  padding: clamp(105px, 11vh, 145px) clamp(24px, 5vw, 82px) clamp(105px, 12vh, 150px);
  align-items: center;
  color: var(--chalk);
  background: var(--night);
  grid-template-columns: minmax(0, 1fr) minmax(330px, .58fr);
  gap: clamp(45px, 8vw, 130px);
  isolation: isolate;
  overflow: hidden;
}
.v2-photo-hero > img { position: absolute; inset: 0; z-index: -3; width: 100%; height: 100%; object-fit: cover; object-position: center; animation: v2-reveal .82s cubic-bezier(.2,.75,.2,1) both; }
.v2-photo-hero::before { position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg,rgba(3,13,22,.94) 0%,rgba(3,13,22,.73) 43%,rgba(3,13,22,.2) 77%),linear-gradient(0deg,rgba(3,13,22,.62),transparent 45%); content: ""; }
.v2-photo-hero-copy { position: relative; z-index: 2; max-width: 790px; }
.v2-photo-hero-copy > * { animation: v2-rise .65s both; }
.v2-photo-hero-copy > :nth-child(2) { animation-delay: .08s; }
.v2-photo-hero-copy > :nth-child(3) { animation-delay: .16s; }
.v2-photo-hero-copy > :nth-child(4) { animation-delay: .24s; }
.v2-photo-hero h1 { max-width: 7.6ch; margin-top: 26px; font-size: clamp(72px,8.3vw,130px); }
.v2-photo-hero h1 em { color: var(--gold); font-style: normal; }
.v2-photo-hero-copy > p:last-of-type { max-width: 42ch; margin-top: 28px; color: rgba(251,250,246,.79); font-size: clamp(18px,1.35vw,21px); }
.v2-photo-hero .v2-text-link { border-color: rgba(251,250,246,.55); }
.v2-intake {
  position: relative;
  z-index: 2;
  width: min(100%, 440px);
  justify-self: end;
  color: var(--ink);
  background: rgba(251,250,246,.97);
  box-shadow: 22px 25px 0 rgba(194,154,75,.9), 0 28px 80px rgba(0,0,0,.3);
  animation: v2-rise .7s .22s both;
}
.v2-intake-head { display: flex; min-height: 58px; padding: 0 20px; align-items: center; justify-content: space-between; color: var(--chalk); background: var(--night); }
.v2-intake-head strong { font-size: 14px; }
.v2-intake-head span { display: flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 10px; letter-spacing: .05em; text-transform: uppercase; }
.v2-intake-head i { width: 8px; height: 8px; background: #62a879; border-radius: 50%; box-shadow: 0 0 0 5px rgba(98,168,121,.12); }
.v2-intake-body { display: flex; min-height: 430px; padding: 25px 22px 22px; background: linear-gradient(rgba(220,232,237,.35),rgba(242,238,229,.7)); flex-direction: column; gap: 13px; }
.v2-message { max-width: 86%; padding: 13px 15px; border: 1px solid rgba(20,48,78,.11); background: var(--chalk); font-size: 15px; line-height: 1.45; opacity: 0; transform: translateY(10px); animation: v2-message-in .4s forwards; }
.v2-message small { display: block; margin-top: 5px; color: var(--slate); font-family: var(--mono); font-size: 9px; text-align: right; }
.v2-message.customer { align-self: flex-end; background: #dce9df; animation-delay: .62s; }
.v2-message.cumhacht { align-self: flex-start; animation-delay: 1.02s; }
.v2-message.customer.second { animation-delay: 1.42s; }
.v2-intake-result { margin-top: auto; padding: 14px 15px; border-left: 5px solid var(--gold); background: var(--ink); color: var(--chalk); opacity: 0; animation: v2-message-in .45s 1.82s forwards; }
.v2-intake-result span { display: block; color: var(--gold); font-family: var(--mono); font-size: 9px; letter-spacing: .06em; text-transform: uppercase; }
.v2-intake-result strong { display: block; margin-top: 4px; font-size: 16px; }
@keyframes v2-message-in { to { opacity: 1; transform: translateY(0); } }
.v2-photo-proof { position: absolute; right: clamp(24px,5vw,82px); bottom: 25px; left: clamp(24px,5vw,82px); z-index: 2; display: flex; padding-top: 13px; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(251,250,246,.45); font-size: 14px; }
.v2-photo-proof span:last-child { color: var(--gold); font-family: var(--mono); font-size: 10px; letter-spacing: .05em; text-transform: uppercase; }

.v2-ribbon { display: flex; min-height: 78px; padding: 20px clamp(22px, 5vw, 82px); align-items: center; justify-content: space-between; gap: 30px; color: var(--night); background: var(--gold); }
.v2-ribbon strong { font-family: var(--display); font-size: clamp(26px, 2.5vw, 40px); line-height: 1; }
.v2-ribbon span { max-width: 52ch; font-size: 16px; }

.v2-docket { display: grid; min-height: 700px; background: var(--night); grid-template-columns: .78fr 1.22fr; }
.v2-docket-intro { display: flex; padding: clamp(60px, 7vw, 105px) clamp(28px, 5vw, 78px); justify-content: center; flex-direction: column; color: var(--chalk); }
.v2-docket h2 { max-width: 7.5ch; margin-top: 24px; font-size: clamp(62px, 6.8vw, 105px); }
.v2-docket h2 em { color: var(--gold); font-style: normal; }
.v2-docket-intro p:last-child { max-width: 35ch; margin-top: 26px; color: rgba(251,250,246,.7); }
.v2-docket-sheet { position: relative; display: flex; margin: clamp(34px, 4vw, 62px) clamp(28px, 5vw, 82px) clamp(34px, 4vw, 62px) 0; padding: clamp(42px, 5vw, 76px); justify-content: space-between; color: var(--ink); background: var(--chalk); box-shadow: 20px 20px 0 var(--gold); flex-direction: column; }
.v2-docket-sheet::after { position: absolute; top: 0; right: 14px; width: 10px; height: 100%; opacity: .14; background: repeating-linear-gradient(var(--ink) 0 2px, transparent 2px 6px); content: ""; }
.v2-docket-label { color: #87651f; font-family: var(--mono); font-size: 12px; letter-spacing: .09em; text-transform: uppercase; }
.v2-route-sentence { max-width: 10ch; margin-top: 28px; font-family: var(--display); font-size: clamp(46px, 5.8vw, 88px); font-weight: 600; line-height: .98; letter-spacing: -.045em; }
.v2-route-sentence b { color: var(--gold); font-weight: inherit; }
.v2-docket-foot { display: flex; margin-top: 45px; padding-top: 18px; justify-content: space-between; gap: 25px; border-top: 6px solid var(--ink); color: var(--slate); font-size: 15px; }

/* Homepage job route: one photographic operating line, not another dashboard. */
.v2-journey-sheet { padding: 0; overflow: hidden; }
.v2-journey-sheet::after { z-index: 5; }
.v2-journey-head { display: flex; min-height: 68px; padding: 0 42px 0 32px; align-items: center; justify-content: space-between; gap: 24px; font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.v2-journey-head span { color: #87651f; }
.v2-journey-head strong { color: var(--ink); font-weight: 600; }
.v2-journey-stage { position: relative; min-height: 520px; overflow: hidden; background: var(--ink); isolation: isolate; }
.v2-journey-stage::after { position: absolute; z-index: -1; inset: 0; background: linear-gradient(180deg, rgba(6,22,36,.16) 0%, rgba(6,22,36,.28) 34%, rgba(6,22,36,.91) 100%); content: ""; }
.v2-journey-stage > img { position: absolute; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: 54% center; filter: saturate(.82) contrast(1.04); }
.v2-journey-thesis { position: absolute; z-index: 2; top: 36px; left: 32px; display: flex; color: var(--chalk); font-family: var(--display); font-size: clamp(44px, 4.4vw, 68px); font-weight: 600; line-height: .93; letter-spacing: -.045em; flex-direction: column; text-shadow: 0 2px 22px rgba(4,18,30,.36); }
.v2-journey-thesis strong { color: #e4b95e; font-weight: inherit; }
.v2-journey-path { position: absolute; z-index: 1; inset: 0; width: 100%; height: 100%; overflow: visible; }
.v2-journey-path path { fill: none; stroke: #e1b45a; stroke-width: 5; stroke-linecap: round; stroke-dasharray: 1420; stroke-dashoffset: 1420; filter: drop-shadow(0 2px 4px rgba(4,18,30,.45)); animation: v2-route-draw 1.8s .2s cubic-bezier(.55,.08,.3,1) forwards; }
.v2-journey-route { position: absolute; z-index: 3; inset: 0; }
.v2-journey-node { position: absolute; display: grid; width: 150px; color: var(--chalk); grid-template-columns: 16px 1fr; column-gap: 8px; filter: drop-shadow(0 2px 5px rgba(4,18,30,.7)); }
.v2-journey-node i { display: block; width: 16px; height: 16px; margin-top: 1px; border: 4px solid var(--chalk); border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 3px rgba(184,146,74,.3); grid-row: 1 / span 2; }
.v2-journey-node span { font-family: var(--display); font-size: 20px; font-weight: 600; line-height: 1; }
.v2-journey-node b { margin-top: 5px; color: rgba(251,250,246,.88); font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: .03em; line-height: 1.35; text-transform: uppercase; }
.v2-journey-node.node-1 { left: 4.4%; bottom: 80px; }
.v2-journey-node.node-2 { left: 25.5%; bottom: 178px; }
.v2-journey-node.node-3 { left: 46.8%; bottom: 116px; }
.v2-journey-node.node-4 { left: 67.6%; bottom: 202px; }
.v2-journey-node.node-5 { right: 2.6%; bottom: 133px; }
.v2-journey-node.node-5 i { animation: v2-current-pulse 2.2s ease-out infinite; }
.v2-journey-foot { display: flex; min-height: 68px; padding: 0 42px 0 32px; align-items: center; justify-content: space-between; gap: 24px; color: var(--slate); font-size: 14px; }
.v2-journey-foot > span { display: flex; align-items: center; gap: 9px; }
.v2-journey-foot > span i { width: 8px; height: 8px; border-radius: 50%; background: #487c61; box-shadow: 0 0 0 4px rgba(72,124,97,.12); }
@keyframes v2-route-draw { to { stroke-dashoffset: 0; } }
@keyframes v2-current-pulse { 50% { box-shadow: 0 0 0 10px rgba(225,180,90,0); } }

.v2-photo-statement { display: grid; min-height: 690px; grid-template-columns: 1.15fr .85fr; background: var(--sky); }
.v2-photo-statement.v2-reverse { grid-template-columns: .85fr 1.15fr; }
.v2-photo-statement.v2-reverse .v2-statement-copy { order: -1; }
.v2-statement-media { position: relative; min-height: 610px; overflow: hidden; }
.v2-statement-media figcaption { position: absolute; right: 28px; bottom: 26px; left: 28px; padding: 12px 15px; color: var(--chalk); background: rgba(7,21,34,.88); font-size: 15px; }
.v2-statement-copy { display: flex; min-width: 0; padding: clamp(52px, 5vw, 78px); justify-content: center; flex-direction: column; }
.v2-statement-copy h2 { max-width: 8.5ch; margin-top: 24px; padding-bottom: .12em; font-size: clamp(52px, 4.7vw, 74px); line-height: 1; }
.v2-statement-copy h2 em { color: #9a722c; font-style: normal; }
.v2-statement-copy h2 + p { max-width: 37ch; margin-top: 42px; color: var(--slate); }
.v2-proof-line { margin-top: 34px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--ink); font-weight: 700; }

.v2-typeline { padding: clamp(55px, 6vw, 90px) clamp(24px, 5vw, 82px); color: var(--chalk); background: var(--ink); overflow: hidden; }
.v2-typeline p { font-family: var(--display); font-size: clamp(48px, 7vw, 112px); line-height: 1; letter-spacing: -.045em; white-space: normal; }
.v2-typeline p span { color: var(--gold); }
.v2-typeline small { display: block; max-width: 54ch; margin-top: 24px; color: rgba(251,250,246,.7); font-size: 17px; }

.v2-role { display: grid; min-height: 720px; color: var(--chalk); background: var(--night); grid-template-columns: .95fr 1.05fr; }
.v2-role-paper { display: flex; margin: clamp(42px,5vw,72px) 0 clamp(42px,5vw,72px) clamp(24px,5vw,82px); padding: clamp(42px,5vw,76px); justify-content: space-between; color: var(--ink); background: var(--chalk); box-shadow: 20px 20px 0 var(--gold); flex-direction: column; }
.v2-role-paper h2 { max-width: 8ch; margin-top: 25px; font-size: clamp(58px,6.5vw,100px); }
.v2-role-paper p { max-width: 38ch; margin-top: 25px; color: var(--slate); }
.v2-role-load { display: flex; padding: clamp(60px,7vw,105px); justify-content: center; flex-direction: column; }
.v2-role-load h3 { max-width: 9ch; margin-top: 22px; font-size: clamp(54px,5.5vw,84px); }
.v2-role-load h3 em { color: var(--gold); font-style: normal; }
.v2-role-load p { max-width: 38ch; margin-top: 25px; color: rgba(251,250,246,.7); }
.v2-load-words { margin-top: 40px; color: var(--gold); font-family: var(--display); font-size: clamp(27px,3vw,44px); line-height: 1.25; }

/* Supporting pages: distinct editorial systems, sharing one operational voice. */
.v2-control-hero { position: relative; display: grid; min-height: 700px; color: var(--chalk); background: var(--night); grid-template-columns: .9fr 1.1fr; overflow: hidden; }
.v2-control-copy { display: flex; min-width: 0; padding: clamp(70px,7vw,110px) clamp(30px,5vw,80px); justify-content: center; flex-direction: column; }
.v2-control-copy h1 { max-width: 7.7ch; margin-top: 26px; font-size: clamp(70px,7vw,108px); }
.v2-control-copy h1 em { color: var(--gold); font-style: normal; }
.v2-control-copy > p:last-of-type { max-width: 39ch; margin-top: 28px; color: rgba(251,250,246,.73); }
.v2-control-image { position: relative; min-height: 700px; overflow: hidden; }
.v2-control-image::after { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(7,21,34,.28),transparent 38%),linear-gradient(0deg,rgba(7,21,34,.76),transparent 55%); content: ""; }
.v2-control-image img { filter: saturate(.78) contrast(1.04); }
.v2-control-image figcaption { position: absolute; z-index: 2; top: 30px; right: 32px; max-width: 33ch; color: var(--night); font-family: var(--mono); font-size: 10px; letter-spacing: .05em; text-align: right; text-transform: uppercase; }
.v2-exception-strip { position: absolute; z-index: 3; right: clamp(26px,4vw,64px); bottom: 36px; width: min(43vw,470px); color: var(--ink); background: rgba(251,250,246,.97); box-shadow: 16px 18px 0 rgba(194,154,75,.92); }
.v2-exception-strip header { display: flex; min-height: 52px; padding: 0 20px; align-items: center; justify-content: space-between; color: var(--chalk); background: var(--night); font-family: var(--mono); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.v2-exception-strip header strong { display: flex; align-items: center; gap: 8px; color: rgba(251,250,246,.72); font-weight: 500; }
.v2-exception-strip header i { width: 7px; height: 7px; border-radius: 50%; background: #61a276; box-shadow: 0 0 0 4px rgba(97,162,118,.13); }
.v2-exception-strip > div { display: grid; min-height: 78px; padding: 13px 20px; align-items: center; border-bottom: 1px solid var(--line); grid-template-columns: 1fr auto; }
.v2-exception-strip > div span { font-family: var(--display); font-size: 24px; font-weight: 600; }
.v2-exception-strip > div strong { font-family: var(--display); font-size: 29px; line-height: 1; }
.v2-exception-strip > div small { color: var(--slate); font-family: var(--mono); font-size: 9px; letter-spacing: .03em; text-transform: uppercase; grid-column: 1 / -1; }

.v2-ops-ledger { display: grid; min-height: 690px; padding: clamp(45px,5vw,72px) clamp(24px,5vw,82px); align-items: center; background: var(--sky); grid-template-columns: .75fr 1.25fr; gap: clamp(35px,5vw,80px); }
.v2-ops-intro h2 { max-width: 9ch; margin-top: 24px; font-size: clamp(62px,6vw,94px); }
.v2-ops-intro h2 em { color: #9a722c; font-style: normal; }
.v2-ops-intro > p:last-child { max-width: 34ch; margin-top: 28px; color: var(--slate); }
.v2-ops-console { color: var(--ink); background: var(--chalk); box-shadow: 20px 20px 0 var(--gold); }
.v2-ops-console header { display: flex; min-height: 78px; padding: 16px 24px; align-items: center; justify-content: space-between; gap: 25px; color: var(--chalk); background: var(--night); }
.v2-ops-console header div { display: flex; flex-direction: column; }
.v2-ops-console header span { color: var(--gold); font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.v2-ops-console header strong { margin-top: 3px; font-family: var(--display); font-size: 25px; }
.v2-ops-console header > b { font-family: var(--mono); font-size: 9px; font-weight: 500; letter-spacing: .05em; text-transform: uppercase; }
.v2-ops-row { display: grid; min-height: 78px; padding: 15px 24px; align-items: center; border-bottom: 1px solid var(--line); grid-template-columns: 1fr 1.15fr auto; gap: 22px; }
.v2-ops-row span { color: var(--slate); font-size: 13px; }
.v2-ops-row strong { font-family: var(--display); font-size: 21px; line-height: 1.1; }
.v2-ops-row b { min-width: 62px; color: #487c61; font-family: var(--mono); font-size: 9px; font-weight: 500; letter-spacing: .05em; text-align: right; text-transform: uppercase; }
.v2-ops-row.is-alert { border-left: 6px solid var(--gold); background: #eee4cf; }
.v2-ops-row.is-alert b { color: #9a722c; }
.v2-ops-console footer { display: flex; min-height: 70px; padding: 15px 24px; align-items: center; justify-content: space-between; gap: 25px; color: var(--slate); font-size: 13px; }
.v2-ops-console footer strong { color: var(--ink); }

.v2-image-cut { position: relative; display: flex; min-height: 650px; padding: clamp(65px,7vw,105px) clamp(24px,6vw,96px); align-items: center; color: var(--chalk); background: var(--night); isolation: isolate; overflow: hidden; }
.v2-image-cut > img { position: absolute; z-index: -2; inset: 0; object-position: center; }
.v2-image-cut::after { position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg,rgba(7,21,34,.94) 0%,rgba(7,21,34,.76) 43%,rgba(7,21,34,.12) 78%),linear-gradient(0deg,rgba(7,21,34,.58),transparent 50%); content: ""; }
.v2-image-cut > div { max-width: 620px; }
.v2-image-cut h2 { max-width: 9ch; margin-top: 22px; font-size: clamp(60px,6.5vw,98px); }
.v2-image-cut h2 em { color: var(--gold); font-style: normal; }
.v2-image-cut div > p:not(.v2-kicker) { max-width: 38ch; margin-top: 24px; color: rgba(251,250,246,.78); }
.v2-image-cut div > strong { display: block; margin-top: 30px; padding-top: 16px; border-top: 1px solid rgba(251,250,246,.35); font-size: 17px; }
.v2-image-cut > small { position: absolute; right: clamp(24px,5vw,82px); bottom: 26px; color: rgba(251,250,246,.72); font-family: var(--mono); font-size: 10px; letter-spacing: .05em; text-transform: uppercase; }
.v2-platform-cut > img { object-position: 63% center; }

.v2-market-hero { position: relative; display: flex; min-height: 720px; padding: clamp(72px,8vw,120px) clamp(24px,5vw,82px); align-items: center; color: var(--chalk); background: var(--night); isolation: isolate; overflow: hidden; }
.v2-market-hero > img { position: absolute; z-index: -3; inset: 0; object-position: center; filter: saturate(.84) contrast(1.03); }
.v2-market-hero::after { position: absolute; z-index: -2; inset: 0; background: linear-gradient(90deg,rgba(7,21,34,.95) 0%,rgba(7,21,34,.76) 45%,rgba(7,21,34,.22) 75%),linear-gradient(0deg,rgba(7,21,34,.64),transparent 48%); content: ""; }
.v2-market-copy { max-width: 720px; }
.v2-market-copy h1 { max-width: 8.4ch; margin-top: 26px; font-size: clamp(72px,7.8vw,120px); }
.v2-market-copy h1 em { display: block; color: var(--gold); font-style: normal; }
.v2-market-copy > p:last-of-type { max-width: 40ch; margin-top: 27px; color: rgba(251,250,246,.78); }
.v2-market-brief { position: absolute; right: clamp(26px,5vw,78px); bottom: 52px; width: min(38vw,430px); color: var(--ink); background: rgba(251,250,246,.97); box-shadow: 14px 16px 0 var(--gold); }
.v2-market-brief header { min-height: 48px; padding: 16px 20px; color: var(--gold); background: var(--night); font-family: var(--mono); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.v2-market-brief > div { display: grid; min-height: 62px; padding: 13px 20px; align-items: center; border-bottom: 1px solid var(--line); grid-template-columns: 80px 1fr; gap: 16px; }
.v2-market-brief span { color: var(--slate); font-family: var(--mono); font-size: 9px; letter-spacing: .05em; text-transform: uppercase; }
.v2-market-brief strong { font-family: var(--display); font-size: 20px; line-height: 1.1; }
.v2-market-brief strong i { display: inline-block; width: 8px; height: 8px; margin-right: 8px; border-radius: 50%; background: #487c61; }
.v2-market-caption { position: absolute; right: clamp(26px,5vw,78px); top: 30px; max-width: 34ch; font-family: var(--mono); font-size: 10px; letter-spacing: .04em; text-align: right; text-transform: uppercase; }

.v2-commercial-spine { display: grid; min-height: 690px; color: var(--ink); background: var(--chalk); grid-template-columns: 1.18fr .82fr; }
.v2-commercial-spine > figure { position: relative; min-height: 690px; overflow: hidden; }
.v2-commercial-spine > figure::after { position: absolute; inset: 0; background: linear-gradient(0deg,rgba(7,21,34,.93) 0%,rgba(7,21,34,.2) 62%,transparent); content: ""; }
.v2-commercial-spine > figure img { filter: saturate(.78); }
.v2-spine-line { position: absolute; z-index: 2; right: 7%; bottom: 122px; left: 7%; height: 4px; background: var(--gold); box-shadow: 0 2px 8px rgba(7,21,34,.35); }
.v2-spine-line i { position: absolute; top: -7px; width: 18px; height: 18px; border: 4px solid var(--chalk); border-radius: 50%; background: var(--gold); }
.v2-spine-line i:nth-child(1) { left: 0; }.v2-spine-line i:nth-child(2) { left: 32%; }.v2-spine-line i:nth-child(3) { left: 64%; }.v2-spine-line i:nth-child(4) { right: 0; }
.v2-spine-label { position: absolute; z-index: 3; bottom: 44px; width: 22%; color: var(--chalk); }
.v2-spine-label span { display: block; font-family: var(--display); font-size: 22px; font-weight: 600; }
.v2-spine-label b { display: block; margin-top: 4px; color: rgba(251,250,246,.72); font-family: var(--mono); font-size: 8px; font-weight: 500; letter-spacing: .03em; line-height: 1.35; text-transform: uppercase; }
.v2-spine-label.label-1 { left: 7%; }.v2-spine-label.label-2 { left: 31%; }.v2-spine-label.label-3 { left: 56%; }.v2-spine-label.label-4 { right: 2%; }
.v2-commercial-copy { display: flex; padding: clamp(52px,5vw,80px); justify-content: center; flex-direction: column; background: var(--paper); }
.v2-commercial-copy h2 { max-width: 8.5ch; margin-top: 22px; font-size: clamp(58px,5.1vw,80px); }
.v2-commercial-copy h2 em { color: #9a722c; font-style: normal; }
.v2-commercial-copy > p { max-width: 35ch; margin-top: 28px; color: var(--slate); }
.v2-commercial-copy > strong { margin-top: 30px; padding-top: 16px; border-top: 1px solid var(--line); }
.v2-capacity-cut { justify-content: flex-end; text-align: left; }
.v2-capacity-cut::after { background: linear-gradient(270deg,rgba(7,21,34,.94) 0%,rgba(7,21,34,.74) 44%,rgba(7,21,34,.08) 78%),linear-gradient(0deg,rgba(7,21,34,.52),transparent 50%); }
.v2-capacity-cut > div { width: min(48%,620px); }
.v2-capacity-meter { display: grid; margin-top: 34px; color: rgba(251,250,246,.8); font-family: var(--mono); font-size: 9px; letter-spacing: .05em; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; text-transform: uppercase; }
.v2-capacity-meter i { position: relative; display: block; height: 5px; background: rgba(251,250,246,.25); overflow: hidden; }
.v2-capacity-meter i b { position: absolute; inset: 0 22% 0 0; background: var(--gold); animation: v2-meter-in 1.2s ease-out both; }
@keyframes v2-meter-in { from { transform: translateX(-100%); } }

.v2-fit-hero { position: relative; display: grid; min-height: 720px; color: var(--chalk); background: var(--night); grid-template-columns: .82fr 1.18fr; overflow: hidden; }
.v2-fit-copy { display: flex; min-width: 0; padding: clamp(64px,6vw,94px) clamp(28px,5vw,76px) 170px; justify-content: center; flex-direction: column; }
.v2-fit-copy h1 { max-width: 7.4ch; margin-top: 24px; font-size: clamp(67px,6.8vw,104px); }
.v2-fit-copy h1 em { display: block; color: var(--gold); font-style: normal; }
.v2-fit-copy > p:last-of-type { max-width: 37ch; margin-top: 27px; color: rgba(251,250,246,.74); }
.v2-fit-collage { display: grid; min-width: 0; grid-template-columns: 1fr 1fr; grid-template-rows: 1.35fr .65fr; gap: 3px; }
.v2-fit-collage figure { position: relative; min-height: 0; overflow: hidden; }
.v2-fit-collage figure::after { position: absolute; inset: 0; background: linear-gradient(0deg,rgba(7,21,34,.74),transparent 58%); content: ""; }
.v2-fit-collage .v2-fit-main { grid-column: 1 / -1; }
.v2-fit-collage img { transition: transform .7s ease; }
.v2-fit-collage figure:hover img { transform: scale(1.025); }
.v2-fit-collage figcaption { position: absolute; z-index: 2; right: 20px; bottom: 17px; left: 20px; color: var(--chalk); font-family: var(--mono); font-size: 10px; letter-spacing: .04em; text-transform: uppercase; }
.v2-fit-hero > aside { position: absolute; bottom: 35px; left: clamp(28px,5vw,76px); display: flex; align-items: baseline; gap: 15px; }
.v2-fit-hero > aside strong { color: var(--gold); font-family: var(--display); font-size: 62px; line-height: 1; }
.v2-fit-hero > aside span { max-width: 16ch; color: rgba(251,250,246,.66); font-family: var(--mono); font-size: 9px; line-height: 1.4; letter-spacing: .05em; text-transform: uppercase; }
.v2-fit-sentence { position: relative; min-height: 570px; padding: clamp(65px,7vw,105px) clamp(24px,6vw,96px); color: var(--chalk); background: var(--ink); overflow: hidden; }
.v2-fit-sentence::after { position: absolute; right: -8vw; bottom: -16vw; width: 42vw; height: 42vw; border: 1px solid rgba(194,154,75,.25); border-radius: 50%; box-shadow: 0 0 0 7vw rgba(194,154,75,.06),0 0 0 14vw rgba(194,154,75,.035); content: ""; }
.v2-fit-sentence h2 { position: relative; z-index: 1; max-width: 14ch; margin-top: 24px; font-size: clamp(58px,6.1vw,94px); }
.v2-fit-sentence h2 em { color: var(--gold); font-style: normal; }
.v2-fit-sentence > p:not(.v2-kicker) { position: relative; z-index: 1; max-width: 47ch; margin-top: 30px; color: rgba(251,250,246,.72); }
.v2-fit-sentence > span { position: absolute; z-index: 2; right: clamp(24px,6vw,96px); bottom: 45px; max-width: 34ch; padding-top: 14px; border-top: 1px solid rgba(251,250,246,.32); color: var(--gold); font-family: var(--mono); font-size: 10px; letter-spacing: .05em; text-transform: uppercase; }
.v2-fit-cut > img { object-position: 60% center; }

.v2-office-hero { position: relative; display: flex; min-height: 720px; padding: clamp(72px,8vw,118px) clamp(24px,5vw,82px); align-items: center; color: var(--chalk); background: var(--night); isolation: isolate; overflow: hidden; }
.v2-office-hero > img { position: absolute; z-index: -3; inset: 0; object-position: center; filter: saturate(.82); }
.v2-office-hero::after { position: absolute; z-index: -2; inset: 0; background: linear-gradient(90deg,rgba(7,21,34,.96) 0%,rgba(7,21,34,.78) 45%,rgba(7,21,34,.23) 75%),linear-gradient(0deg,rgba(7,21,34,.62),transparent 50%); content: ""; }
.v2-office-copy { max-width: 690px; }
.v2-office-copy h1 { max-width: 8.5ch; margin-top: 25px; font-size: clamp(72px,7.6vw,116px); }
.v2-office-copy h1 em { display: block; color: var(--gold); font-style: normal; }
.v2-office-copy > p:last-of-type { max-width: 38ch; margin-top: 27px; color: rgba(251,250,246,.77); }
.v2-vacancy-paper { position: absolute; right: clamp(24px,5vw,76px); bottom: 48px; width: min(38vw,440px); padding: 28px; color: var(--ink); background: rgba(251,250,246,.98); box-shadow: 15px 17px 0 var(--gold); transform: rotate(-1.1deg); }
.v2-vacancy-paper header { display: flex; padding-bottom: 14px; border-bottom: 1px solid var(--line); flex-direction: column; }
.v2-vacancy-paper header span,.v2-vacancy-paper footer span { color: #87651f; font-family: var(--mono); font-size: 9px; letter-spacing: .06em; text-transform: uppercase; }
.v2-vacancy-paper header strong { margin-top: 4px; font-family: var(--display); font-size: 23px; }
.v2-vacancy-paper p { margin-top: 20px; font-family: var(--display); font-size: 31px; font-weight: 600; line-height: 1.25; letter-spacing: -.025em; }
.v2-vacancy-paper mark { margin: 0 -.02em; padding: 0 .03em; color: inherit; background: none; box-shadow: inset 0 -.22em 0 rgba(194,154,75,.55); -webkit-box-decoration-break: clone; box-decoration-break: clone; }
.v2-vacancy-paper footer { display: flex; margin-top: 23px; padding-top: 14px; align-items: end; justify-content: space-between; gap: 15px; border-top: 5px solid var(--ink); }
.v2-vacancy-paper footer strong { font-size: 13px; }
.v2-office-hero > small { position: absolute; bottom: 24px; left: clamp(24px,5vw,82px); color: rgba(251,250,246,.65); font-family: var(--mono); font-size: 9px; letter-spacing: .05em; text-transform: uppercase; }
.v2-office-route { display: grid; min-height: 650px; color: var(--chalk); background: var(--night); grid-template-columns: 1.12fr .88fr; }
.v2-office-route > figure { position: relative; min-height: 650px; overflow: hidden; }
.v2-office-route > figure::after { position: absolute; inset: 0; background: linear-gradient(0deg,rgba(7,21,34,.72),transparent 55%); content: ""; }
.v2-office-route figcaption { position: absolute; z-index: 2; right: 28px; bottom: 24px; left: 28px; padding-top: 12px; border-top: 1px solid rgba(251,250,246,.42); font-size: 14px; }
.v2-office-route-copy { display: flex; min-width: 0; padding: clamp(55px,5vw,82px); justify-content: center; flex-direction: column; }
.v2-office-route-copy h2 { max-width: 8.2ch; margin-top: 23px; font-size: clamp(58px,5.5vw,86px); }
.v2-office-route-copy h2 em { color: var(--gold); font-style: normal; }
.v2-office-route-copy > p { max-width: 36ch; margin-top: 27px; color: rgba(251,250,246,.72); }
.v2-load-track { position: relative; display: grid; margin-top: 45px; padding-top: 22px; border-top: 3px solid var(--gold); font-family: var(--mono); font-size: 9px; letter-spacing: .04em; grid-template-columns: repeat(5,1fr); text-transform: uppercase; }
.v2-load-track i { position: absolute; top: -8px; left: 0; width: 13px; height: 13px; border: 3px solid var(--chalk); border-radius: 50%; background: var(--gold); animation: v2-load-run 4.8s ease-in-out infinite; }
.v2-load-track span { color: rgba(251,250,246,.68); }
.v2-load-track span:last-child { color: var(--gold); text-align: right; }
@keyframes v2-load-run { 50% { left: calc(100% - 13px); } }
.v2-office-cut { justify-content: flex-end; }
.v2-office-cut::after { background: linear-gradient(270deg,rgba(7,21,34,.95) 0%,rgba(7,21,34,.76) 46%,rgba(7,21,34,.16) 78%); }
.v2-office-cut > div { width: min(50%,650px); }

.v2-compact-cta { min-height: 430px; padding-top: clamp(62px,6vw,90px); padding-bottom: clamp(62px,6vw,90px); }
.v2-compact-cta h2 { font-size: clamp(58px,6.4vw,96px); }

/* One photographic canvas; the controls change the operational moment in place. */
.v2-field-reel { position: relative; min-height: 780px; color: var(--chalk); background: var(--night); overflow: hidden; }
.v2-reel-media { position: absolute; inset: 0; }
.v2-reel-media::after { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(7,21,34,.92),rgba(7,21,34,.35) 58%,rgba(7,21,34,.08)),linear-gradient(0deg,rgba(7,21,34,.7),transparent 48%); content: ""; }
.v2-reel-media img { transition: opacity .28s ease, transform .8s ease; }
.v2-reel-media img.is-changing { opacity: .25; transform: scale(1.015); }
.v2-reel-content { position: relative; z-index: 2; display: flex; min-height: 780px; padding: clamp(65px,8vw,120px) clamp(24px,6vw,100px); justify-content: flex-end; flex-direction: column; }
.v2-reel-content h2 { max-width: 8ch; margin-top: 24px; font-size: clamp(60px,7.5vw,115px); }
.v2-reel-content > p:not(.v2-kicker) { max-width: 38ch; margin-top: 25px; color: rgba(251,250,246,.76); }
.v2-reel-controls { display: flex; margin-top: 38px; gap: 10px; flex-wrap: wrap; }
.v2-reel-controls button { min-height: 48px; padding: 0 17px; color: rgba(251,250,246,.72); background: rgba(7,21,34,.66); border: 1px solid rgba(251,250,246,.38); font: 500 11px/1 var(--mono); letter-spacing: .05em; text-transform: uppercase; cursor: pointer; }
.v2-reel-controls button:hover, .v2-reel-controls button[aria-pressed="true"] { color: var(--night); background: var(--gold); border-color: var(--gold); }
.v2-reel-caption { position: absolute; right: clamp(24px,5vw,82px); bottom: 26px; z-index: 3; max-width: 36ch; color: var(--chalk); font-size: 14px; text-align: right; }

.v2-cta { display: grid; min-height: 500px; padding: clamp(72px,8vw,120px) clamp(24px,7vw,120px); align-items: end; color: var(--chalk); background: var(--ink); grid-template-columns: 1fr .55fr; gap: 60px; }
.v2-cta h2 { max-width: 9ch; margin-top: 22px; font-size: clamp(62px,7.5vw,116px); }
.v2-cta h2 em { color: var(--gold); font-style: normal; }
.v2-cta aside p { max-width: 35ch; color: rgba(251,250,246,.72); }

.v2-footer { display: flex; min-height: 120px; padding: 30px clamp(20px,4vw,68px); align-items: center; justify-content: space-between; gap: 25px; color: rgba(251,250,246,.62); background: var(--night); border-top: 1px solid rgba(251,250,246,.14); font-size: 14px; }
.v2-footer nav { display: flex; gap: 25px; }
.v2-review-note { position: fixed; right: 14px; bottom: 14px; z-index: 55; padding: 9px 12px; color: var(--night); background: var(--gold); font-family: var(--mono); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }

.v2-index { min-height: calc(100svh - 76px); color: var(--chalk); background: var(--night); }
.v2-index-head { display: grid; padding: clamp(55px,7vw,105px) clamp(24px,5vw,82px) 45px; grid-template-columns: 1fr .7fr; gap: 60px; align-items: end; }
.v2-index h1 { max-width: 8ch; margin-top: 22px; font-size: clamp(68px,8vw,124px); }
.v2-index-head > p { max-width: 37ch; color: rgba(251,250,246,.7); }
.v2-index-nav { border-top: 1px solid rgba(251,250,246,.2); }
.v2-index-nav a { display: grid; min-height: 112px; padding: 22px clamp(24px,5vw,82px); align-items: center; border-bottom: 1px solid rgba(251,250,246,.2); grid-template-columns: 110px 1fr auto; gap: 28px; transition: background .2s ease; }
.v2-index-nav a:hover { color: var(--night); background: var(--gold); }
.v2-index-nav span { font-family: var(--mono); font-size: 12px; text-transform: uppercase; }
.v2-index-nav strong { font-family: var(--display); font-size: clamp(31px,3vw,47px); line-height: 1; }
.v2-index-nav b { font-size: 16px; }

@media (max-width: 1180px) {
  .v2-journey-sheet { min-height: 760px; padding: 0; }
  .v2-journey-stage { min-height: 620px; }
  .v2-journey-stage > img { object-position: 58% center; }
  .v2-journey-path { display: none; }
  .v2-journey-route { top: 230px; right: auto; bottom: 30px; left: 42px; width: calc(100% - 64px); border-left: 3px solid #e1b45a; }
  .v2-journey-node { left: -10px !important; right: auto !important; bottom: auto !important; width: 260px; }
  .v2-journey-node.node-1 { top: -2px; }
  .v2-journey-node.node-2 { top: 76px; }
  .v2-journey-node.node-3 { top: 154px; }
  .v2-journey-node.node-4 { top: 232px; }
  .v2-journey-node.node-5 { top: 310px; }
}

@media (max-width: 960px) {
  .v2-nav { display: none; }
  .v2-menu { display: block; }
  .v2-nav.is-open { position: absolute; top: 75px; right: 0; left: 0; display: flex; padding: 28px; align-items: flex-start; background: var(--night); flex-direction: column; }
  .v2-hero, .v2-docket, .v2-photo-statement, .v2-photo-statement.v2-reverse, .v2-role, .v2-cta { grid-template-columns: 1fr; }
  .v2-hero { min-height: 0; }
  .v2-hero-copy { min-height: 620px; }
  .v2-hero-media { min-height: 540px; }
  .v2-docket-sheet { margin: 0 24px 64px; }
  .v2-journey-sheet { min-height: 760px; padding: 0; }
  .v2-journey-stage { min-height: 620px; }
  .v2-journey-stage > img { object-position: 58% center; }
  .v2-journey-path { display: none; }
  .v2-journey-route { top: 230px; right: auto; bottom: 30px; left: 42px; width: calc(100% - 64px); border-left: 3px solid #e1b45a; }
  .v2-journey-node { left: -10px !important; right: auto !important; bottom: auto !important; width: 260px; }
  .v2-journey-node.node-1 { top: -2px; }
  .v2-journey-node.node-2 { top: 76px; }
  .v2-journey-node.node-3 { top: 154px; }
  .v2-journey-node.node-4 { top: 232px; }
  .v2-journey-node.node-5 { top: 310px; }
  .v2-photo-statement.v2-reverse .v2-statement-copy { order: 0; }
  .v2-role-paper { margin: 55px 24px 0; }
  .v2-cta { gap: 35px; }
  .v2-index-head { grid-template-columns: 1fr; }
  .v2-photo-hero { grid-template-columns: 1fr; gap: 50px; }
  .v2-intake { justify-self: start; }
  .v2-control-hero, .v2-ops-ledger, .v2-commercial-spine, .v2-fit-hero, .v2-office-route { grid-template-columns: 1fr; }
  .v2-control-copy { min-height: 610px; }
  .v2-control-image { min-height: 640px; }
  .v2-exception-strip { width: min(70vw,500px); }
  .v2-ops-ledger { padding-bottom: 76px; }
  .v2-ops-console { min-width: 0; }
  .v2-market-hero { min-height: 940px; align-items: flex-start; }
  .v2-market-copy { padding-top: 30px; }
  .v2-market-brief { width: min(72vw,500px); }
  .v2-market-caption { display: none; }
  .v2-commercial-spine > figure { min-height: 620px; }
  .v2-commercial-copy { min-height: 570px; }
  .v2-capacity-cut > div, .v2-office-cut > div { width: min(62%,650px); }
  .v2-fit-copy { min-height: 640px; }
  .v2-fit-collage { min-height: 680px; }
  .v2-fit-hero > aside { top: 520px; bottom: auto; }
  .v2-office-hero { min-height: 980px; align-items: flex-start; }
  .v2-office-copy { padding-top: 25px; }
  .v2-vacancy-paper { width: min(72vw,470px); }
  .v2-office-route > figure { min-height: 570px; }
  .v2-office-route-copy { min-height: 590px; }
}

@media (max-width: 620px) {
  body.v2 { font-size: 17px; }
  .v2 section[id] { scroll-margin-top: 66px; }
  .v2-header { height: 66px; padding: 0 19px; }
  .v2-brand { font-size: 23px; }
  .v2-hero-copy { min-height: 570px; padding: 56px 20px; }
  .v2-hero h1 { font-size: clamp(55px,16vw,70px); }
  .v2-kicker { font-size: 11px; }
  .v2-hero-media { min-height: 430px; }
  .v2-hero-media figcaption { right: 20px; bottom: 20px; left: 20px; font-size: 14px; }
  .v2-hero-media figcaption.v2-live-caption { align-items: flex-start; flex-direction: column; gap: 8px; }
  .v2-live-caption span:last-child { max-width: none; font-size: 10px; text-align: left; }
  .v2-ribbon { padding: 20px; align-items: flex-start; flex-direction: column; }
  .v2-ribbon span { font-size: 15px; }
  .v2-docket { min-height: 0; }
  .v2-docket-intro { padding: 65px 20px 45px; }
  .v2-docket h2 { font-size: 57px; }
  .v2-docket-sheet { margin: 0 20px 58px; padding: 36px 24px; box-shadow: 11px 12px 0 var(--gold); }
  .v2-journey-sheet { min-height: 0; padding: 0; }
  .v2-journey-head { min-height: 60px; padding: 0 28px 0 18px; font-size: 9px; }
  .v2-journey-stage { min-height: 590px; }
  .v2-journey-stage > img { object-position: 62% center; }
  .v2-journey-thesis { top: 30px; left: 20px; font-size: 48px; }
  .v2-journey-route { top: 225px; left: 28px; width: calc(100% - 44px); }
  .v2-journey-node { width: 245px; grid-template-columns: 16px 1fr; }
  .v2-journey-node span { font-size: 19px; }
  .v2-journey-node b { font-size: 10px; }
  .v2-journey-foot { min-height: 76px; padding: 14px 28px 14px 18px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 7px; font-size: 13px; }
  .v2-route-sentence { font-size: 46px; }
  .v2-docket-foot { flex-direction: column; }
  .v2-statement-media { min-height: 430px; }
  .v2-statement-copy { padding: 62px 20px; }
  .v2-statement-copy h2 { font-size: 56px; }
  .v2-typeline { padding: 55px 20px; }
  .v2-typeline p { font-size: 49px; }
  .v2-role-paper { min-height: 570px; margin: 55px 20px 0; padding: 35px 24px; box-shadow: 11px 12px 0 var(--gold); }
  .v2-role-paper h2 { font-size: 54px; }
  .v2-role-load { padding: 64px 20px; }
  .v2-role-load h3 { font-size: 52px; }
  .v2-cta { min-height: 560px; padding: 70px 20px; }
  .v2-cta h2 { font-size: 60px; }
  .v2-footer { align-items: flex-start; flex-direction: column; }
  .v2-footer nav { flex-wrap: wrap; }
  .v2-review-note { right: 8px; bottom: 8px; font-size: 8px; }
  .v2-index-head { padding: 58px 20px 38px; }
  .v2-index h1 { font-size: 64px; }
  .v2-index-nav a { min-height: 104px; padding: 20px; grid-template-columns: 42px 1fr; gap: 14px; }
  .v2-index-nav a b { display: none; }
  .v2-photo-hero { min-height: 1060px; padding: 92px 20px 90px; align-content: start; gap: 40px; }
  .v2-photo-hero > img { object-position: 67% center; }
  .v2-photo-hero::before { background: linear-gradient(180deg,rgba(3,13,22,.97) 0%,rgba(3,13,22,.9) 49%,rgba(3,13,22,.52) 76%,rgba(3,13,22,.8) 100%); }
  .v2-photo-hero h1 { font-size: clamp(56px,16vw,68px); }
  .v2-photo-hero-copy > p:last-of-type { font-size: 17px; }
  .v2-intake { width: calc(100% - 11px); box-shadow: 11px 12px 0 var(--gold),0 22px 55px rgba(0,0,0,.3); }
  .v2-intake-body { min-height: 390px; padding: 18px 16px; }
  .v2-message { font-size: 14px; }
  .v2-photo-proof { position: absolute; right: 20px; bottom: 18px; left: 20px; align-items: flex-start; flex-direction: column; gap: 5px; }
  .v2-field-reel, .v2-reel-content { min-height: 680px; }
  .v2-reel-content { padding: 64px 20px 110px; }
  .v2-reel-content h2 { font-size: 56px; }
  .v2-reel-controls { display: grid; grid-template-columns: 1fr; }
  .v2-reel-controls button { justify-content: flex-start; text-align: left; }
  .v2-reel-caption { right: 20px; bottom: 22px; left: 20px; max-width: none; text-align: left; }
  .v2-control-copy { min-height: 590px; padding: 62px 20px 90px; }
  .v2-control-copy h1 { font-size: 62px; }
  .v2-control-image { min-height: 560px; }
  .v2-control-image figcaption { top: 18px; right: 18px; max-width: 28ch; font-size: 8px; }
  .v2-exception-strip { right: 20px; bottom: 28px; width: calc(100% - 51px); box-shadow: 11px 12px 0 var(--gold); }
  .v2-exception-strip > div { min-height: 70px; }
  .v2-exception-strip > div span { font-size: 21px; }
  .v2-exception-strip > div strong { font-size: 25px; }
  .v2-ops-ledger { padding: 60px 20px 72px; gap: 40px; }
  .v2-ops-intro h2 { font-size: 57px; }
  .v2-ops-console { box-shadow: 11px 12px 0 var(--gold); }
  .v2-ops-console header { padding: 14px 16px; }
  .v2-ops-console header > b { display: none; }
  .v2-ops-row { min-height: 82px; padding: 13px 16px; grid-template-columns: 1fr auto; gap: 4px 14px; }
  .v2-ops-row span { font-size: 12px; }
  .v2-ops-row strong { font-size: 19px; grid-column: 1 / -1; }
  .v2-ops-row b { min-width: 0; }
  .v2-ops-console footer { align-items: flex-start; flex-direction: column; gap: 3px; }
  .v2-image-cut { min-height: 710px; padding: 70px 20px 92px; align-items: flex-end; }
  .v2-image-cut::after { background: linear-gradient(0deg,rgba(7,21,34,.98) 0%,rgba(7,21,34,.86) 56%,rgba(7,21,34,.18) 100%); }
  .v2-image-cut h2 { font-size: 57px; }
  .v2-image-cut > small { right: 20px; bottom: 18px; left: 20px; }
  .v2-platform-cut > img { object-position: 65% center; }
  .v2-market-hero { min-height: 1020px; padding: 70px 20px; align-items: flex-start; }
  .v2-market-hero::after { background: linear-gradient(180deg,rgba(7,21,34,.97),rgba(7,21,34,.8) 58%,rgba(7,21,34,.44)); }
  .v2-market-copy { padding-top: 0; }
  .v2-market-copy h1 { font-size: 62px; }
  .v2-market-brief { right: 20px; bottom: 52px; width: calc(100% - 51px); box-shadow: 11px 12px 0 var(--gold); }
  .v2-commercial-spine > figure { min-height: 670px; }
  .v2-spine-line { top: 245px; right: auto; bottom: auto; left: 40px; width: 4px; height: 340px; }
  .v2-spine-line i { top: auto; left: -7px !important; right: auto !important; }
  .v2-spine-line i:nth-child(1) { top: 0; }.v2-spine-line i:nth-child(2) { top: 32%; }.v2-spine-line i:nth-child(3) { top: 64%; }.v2-spine-line i:nth-child(4) { bottom: 0; }
  .v2-spine-label { left: 68px !important; right: auto !important; bottom: auto; width: 250px; }
  .v2-spine-label.label-1 { top: 227px; }.v2-spine-label.label-2 { top: 337px; }.v2-spine-label.label-3 { top: 447px; }.v2-spine-label.label-4 { top: 557px; }
  .v2-spine-label span { font-size: 21px; }
  .v2-spine-label b { font-size: 9px; }
  .v2-commercial-copy { min-height: 600px; padding: 64px 20px; }
  .v2-commercial-copy h2 { font-size: 56px; }
  .v2-capacity-cut, .v2-office-cut { justify-content: flex-start; }
  .v2-capacity-cut::after, .v2-office-cut::after { background: linear-gradient(0deg,rgba(7,21,34,.98) 0%,rgba(7,21,34,.86) 58%,rgba(7,21,34,.18) 100%); }
  .v2-capacity-cut > div, .v2-office-cut > div { width: 100%; }
  .v2-capacity-meter { grid-template-columns: 1fr; gap: 8px; }
  .v2-fit-copy { min-height: 720px; padding: 65px 20px 150px; }
  .v2-fit-copy h1 { font-size: 59px; }
  .v2-fit-collage { min-height: 780px; grid-template-columns: 1fr; grid-template-rows: repeat(3,260px); }
  .v2-fit-collage .v2-fit-main { grid-column: auto; }
  .v2-fit-hero > aside { top: 640px; left: 20px; }
  .v2-fit-hero > aside strong { font-size: 54px; }
  .v2-fit-sentence { min-height: 680px; padding: 68px 20px 125px; }
  .v2-fit-sentence h2 { font-size: 52px; }
  .v2-fit-sentence > span { right: 20px; bottom: 38px; left: 20px; }
  .v2-fit-cut > img { object-position: 60% center; }
  .v2-office-hero { min-height: 1080px; padding: 70px 20px; align-items: flex-start; }
  .v2-office-hero::after { background: linear-gradient(180deg,rgba(7,21,34,.97),rgba(7,21,34,.83) 55%,rgba(7,21,34,.44)); }
  .v2-office-copy { padding-top: 0; }
  .v2-office-copy h1 { font-size: 62px; }
  .v2-vacancy-paper { right: 20px; bottom: 65px; width: calc(100% - 51px); padding: 22px; box-shadow: 11px 12px 0 var(--gold); }
  .v2-vacancy-paper p { font-size: 25px; }
  .v2-office-hero > small { bottom: 20px; left: 20px; }
  .v2-office-route > figure { min-height: 470px; }
  .v2-office-route-copy { min-height: 610px; padding: 64px 20px; }
  .v2-office-route-copy h2 { font-size: 55px; }
  .v2-load-track { font-size: 8px; gap: 4px; }
  .v2-compact-cta { min-height: 520px; }
  .v2-compact-cta h2 { font-size: 58px; }
}

@media (prefers-reduced-motion: reduce) {
  .v2-journey-path path { stroke-dashoffset: 0; animation: none; }
  .v2-journey-node.node-5 i { animation: none; }
  .v2-capacity-meter i b, .v2-load-track i { animation: none; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .v2-index-nav a, .v2-reel-media img { transition: none; } .v2-hero-copy > *, .v2-hero-media img, .v2-photo-hero-copy > *, .v2-photo-hero > img, .v2-intake, .v2-message, .v2-intake-result { animation: none; opacity: 1; transform: none; } }
