@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@300;400;500;600;700&family=Archivo+Black&display=swap');

@font-face {
  font-family: "Söhne Breit";
  src: local("Söhne Breit Halbfett"), local("Sohne Breit Halbfett");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --ink: #050604;
  --paper: #3f4828;
  --army: #3f4828;
  --army-deep: #252b18;
  --army-light: #7a8654;
  --muted: #c8cdbb;
  --line: rgba(255, 255, 255, 0.25);
  --mono: "Söhne Breit", "Sohne Breit", "Archivo", Arial, sans-serif;
  --sans: "Söhne Breit", "Sohne Breit", "Archivo", Arial, sans-serif;
  --display: "Söhne Breit", "Sohne Breit", "Archivo Black", "Arial Black", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: white;
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

::selection { color: white; background: var(--army-light); }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.progress {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 3px;
}
.progress span { display: block; width: 0; height: 100%; background: white; }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px 3vw;
  color: white;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.brand { font-family: var(--display); font-size: 15px; font-weight: 600; letter-spacing: -0.05em; }
.mobile-page-links { display: none; }
.site-header nav { display: flex; gap: 32px; }
.site-header nav a, .mini-cta { position: relative; padding: 7px 0; }
.site-header nav a::after, .mini-cta::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.site-header nav a:hover::after, .mini-cta:hover::after { transform: scaleX(1); transform-origin: left; }
.site-header nav a[aria-current="page"]::after { transform: scaleX(1); }
.mini-cta { justify-self: end; }

.hero {
  min-height: 100svh;
  overflow: hidden;
  color: white;
  background: var(--ink);
  padding: 120px 3vw 4vw;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .24;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(122,134,84,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122,134,84,.18) 1px, transparent 1px),
    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='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.2'/%3E%3C/svg%3E");
  background-size: 48px 48px, 48px 48px, 180px 180px;
}
.hero-meta {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.25);
  padding-top: 10px;
  font: 400 10px/1.3 var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-title {
  margin: clamp(40px, 6vw, 84px) 0 0;
  font-size: clamp(70px, 13.4vw, 210px);
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: .78;
}
.hero-title .line { display: block; }
.line-shift { padding-left: 7vw; color: white; -webkit-text-stroke: 1px white; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  width: 77%;
  margin: clamp(42px, 6vw, 84px) 0 48px auto;
}
.hero-copy { max-width: 580px; margin: 0; font-size: clamp(19px, 2.1vw, 32px); line-height: 1.28; letter-spacing: 0; }
.hero-actions { display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start; gap: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 255px;
  border: 0;
  border-radius: 100px;
  padding: 16px 20px;
  cursor: pointer;
  font: 500 11px/1 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-3px); }
.button-primary { color: white; background: var(--army); border: 1px solid white; }
.button-dark { color: white; background: var(--ink); border: 1px solid white; }
.availability { display: inline-flex; gap: 9px; align-items: center; color: #a2a29f; font: 400 10px/1.2 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.availability i { width: 7px; height: 7px; border-radius: 50%; background: white; box-shadow: 0 0 0 4px rgba(255,255,255,.12); }

.hero-window {
  min-height: clamp(240px, 31vw, 440px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  position: relative;
}
.frame { position: relative; overflow: hidden; isolation: isolate; }
.frame::before { content: ""; position: absolute; z-index: -1; inset: 0; opacity: .18; background: repeating-linear-gradient(135deg, transparent 0 34px, rgba(255,255,255,.1) 35px 36px); }
.frame-left { background: var(--army-deep); }
.frame-center { background: var(--ink); }
.frame-center::before { opacity: .3; background: linear-gradient(rgba(122,134,84,.24) 1px, transparent 1px), linear-gradient(90deg, rgba(122,134,84,.24) 1px, transparent 1px); background-size: 32px 32px; }
.frame-right { background: var(--army-light); }
.discipline-label { position: absolute; top: 50%; right: clamp(18px, 2vw, 30px); left: clamp(18px, 2vw, 30px); transform: translateY(-50%); color: white; font-family: var(--display); font-size: clamp(30px, 4vw, 64px); font-weight: 600; line-height: .9; letter-spacing: .1em; text-align: center; }
.timecode { position: absolute; z-index: 3; top: 12px; right: 14px; padding: 6px 8px; color: white; background: rgba(0,0,0,.55); font: 400 9px/1 var(--mono); letter-spacing: .12em; }

.work { padding: clamp(90px, 11vw, 170px) 3vw; color: white; background: var(--army); }
.section-heading { display: grid; grid-template-columns: 1fr 2.25fr; margin-bottom: clamp(60px, 8vw, 120px); }
.eyebrow { margin: 0; font: 500 10px/1.3 var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.section-heading h2, .about-intro h1, .about h2 { margin: 0; font-family: var(--display); font-size: clamp(44px, 6.5vw, 100px); font-weight: 600; line-height: 1.02; letter-spacing: -.025em; }
.work-banner {
  aspect-ratio: 16 / 9;
  margin: 0 0 clamp(78px, 10vw, 150px);
  overflow: hidden;
  background: var(--ink);
  border: 1px solid rgba(255,255,255,.35);
}
.work-banner video { width: 100%; height: 100%; display: block; object-fit: cover; }

.project { border-top: 1px solid rgba(255,255,255,.7); padding: 16px 0 clamp(72px, 9vw, 135px); }
.project-visual { min-height: clamp(320px, 47vw, 720px); position: relative; overflow: hidden; transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.project:hover .project-visual, .project:focus .project-visual { transform: scale(.99); }
.project:focus { outline: none; }
.project-index { position: absolute; z-index: 2; top: 16px; left: 18px; font: 500 10px/1 var(--mono); letter-spacing: .12em; }
.project-visual > p { position: absolute; z-index: 2; right: 18px; bottom: 16px; margin: 0; font: 500 10px/1 var(--mono); letter-spacing: .13em; }
.project-video {
  min-height: 0;
  aspect-ratio: 16 / 9;
  color: white;
  background: var(--ink);
  border: 1px solid rgba(255,255,255,.35);
}
.project-video iframe { width: 100%; height: 100%; border: 0; display: block; }
.project-video .project-index,
.watch-youtube {
  padding: 8px 10px;
  color: white;
  background: rgba(5,6,4,.82);
  backdrop-filter: blur(10px);
}
.watch-youtube {
  position: absolute;
  z-index: 3;
  right: 16px;
  bottom: 16px;
  font: 500 9px/1 var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}
.watch-youtube:hover { color: var(--ink); background: white; }
.short-stage { display: grid; place-items: center; min-height: clamp(580px, 68vw, 980px); padding: clamp(28px, 5vw, 74px); background: var(--army-deep); }
.short-video { width: min(100%, 520px); aspect-ratio: 9 / 16; }
.social-stage { position: relative; padding: clamp(70px, 8vw, 120px) clamp(18px, 3vw, 46px) clamp(28px, 4vw, 62px); background: var(--ink); }
.social-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(12px, 1.5vw, 24px); align-items: start; }
.social-embed { min-width: 0; overflow: hidden; background: white; }
.social-embed iframe { width: 100%; height: 720px; display: block; border: 0; background: white; }
.social-embed > a { display: flex; justify-content: space-between; padding: 13px 14px; color: white; background: var(--army-deep); font: 500 9px/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; transition: color .2s ease, background .2s ease; }
.social-embed > a:hover { color: var(--ink); background: white; }
.launch-visual { color: white; background: #050604; }
.launch-visual::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 80%, var(--army) 0 10%, transparent 35%), radial-gradient(circle at 85% 16%, var(--army-light) 0, transparent 30%); }
.lens { position: absolute; border-radius: 50%; border: clamp(25px,5vw,70px) solid rgba(255,255,255,.88); box-shadow: inset 0 0 90px rgba(0,0,0,.7), 0 0 80px rgba(255,255,255,.15); }
.lens-one { width: 43%; aspect-ratio: 1; left: 13%; top: 4%; }
.lens-two { width: 26%; aspect-ratio: 1; right: 12%; bottom: -3%; border-color: var(--army-light); }
.project-info { display: grid; grid-template-columns: 1.25fr 1fr; gap: 3vw; align-items: start; padding-top: 20px; }
.project-kicker { margin: 0 0 9px; color: var(--muted); font: 400 10px/1.3 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.project-info h3 { margin: 0; font-family: var(--display); font-size: clamp(32px, 4vw, 62px); font-weight: 600; line-height: 1.04; letter-spacing: -.015em; }
.project-info > p { max-width: 580px; margin: 2px 0 28px; font-size: clamp(15px, 1.4vw, 21px); line-height: 1.55; letter-spacing: .005em; }
.project-info ul { grid-column: 2; display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; list-style: none; }
.project-info li { border: 1px solid var(--line); border-radius: 100px; padding: 8px 11px; font: 400 9px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; }

.about-page-body { background: var(--ink); }
.about { color: white; background: var(--ink); padding: clamp(90px, 11vw, 170px) 3vw 30px; }
.about-page { min-height: 100svh; padding-top: clamp(120px, 11vw, 170px); }
.about-page .about-intro { padding-bottom: clamp(50px, 6vw, 90px); }
.about-page .about-body { width: 84%; padding-bottom: clamp(80px, 10vw, 140px); }
.about-intro { display: grid; grid-template-columns: 1fr 2.25fr; padding-bottom: clamp(60px, 8vw, 120px); }
.about-intro h1 em, .about h2 em { color: white; font-style: normal; -webkit-text-stroke: 1px white; }
.about-body { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: clamp(36px, 6vw, 90px); width: 77%; margin-left: auto; padding: 32px 0 clamp(100px, 12vw, 180px); border-top: 1px solid rgba(255,255,255,.4); }
.about-photo { position: relative; align-self: start; margin: 0; overflow: hidden; aspect-ratio: 4 / 5; background: var(--army-deep); }
.about-photo::after { content: ""; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 0 1px rgba(255,255,255,.2); }
.about-photo img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: 50% 50%; filter: saturate(.78) contrast(1.05); }
.about-photo figcaption { position: absolute; z-index: 2; right: 12px; bottom: 12px; left: 12px; padding: 9px 10px; color: white; background: rgba(5,6,4,.72); backdrop-filter: blur(8px); font: 500 9px/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.about-details { display: flex; flex-direction: column; gap: clamp(42px, 5vw, 72px); }
.about-copy { margin: 0; font-size: clamp(18px, 2vw, 29px); line-height: 1.45; letter-spacing: 0; }
.facts { margin: 0; }
.facts div { display: grid; grid-template-columns: .8fr 1.2fr; gap: 20px; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.25); }
.facts div:first-child { border-top: 0; padding-top: 0; }
.facts dt { color: rgba(255,255,255,.65); font: 400 9px/1.4 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.facts dd { margin: 0; font-size: 13px; }

.contact { display: grid; grid-template-columns: 1.5fr 1fr; align-items: end; gap: 6vw; color: white; background: var(--army); padding: clamp(50px, 7vw, 100px); }
.contact h2 { font-size: clamp(52px, 7.5vw, 118px); }
.contact-action { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
.contact-action > p { max-width: 390px; margin: 0; font-size: clamp(17px,1.8vw,25px); line-height: 1.3; }
.contact-links { display: flex; flex-wrap: wrap; gap: 14px 24px; }
.contact-email { display: inline-flex; align-items: center; gap: 10px; padding-bottom: 7px; border-bottom: 1px solid currentColor; font: 600 clamp(12px, 1.1vw, 16px)/1.2 var(--mono); letter-spacing: .03em; transition: opacity .2s ease; }
.contact-email:hover { opacity: .65; }
.project-form { width: 100%; display: grid; gap: 18px; padding-top: 8px; }
.project-form label { display: grid; gap: 8px; }
.project-form label > span { font: 500 9px/1 var(--mono); letter-spacing: .11em; text-transform: uppercase; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.project-form input,
.project-form select,
.project-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.55); border-radius: 0; padding: 13px 14px; color: white; background: rgba(5,6,4,.1); outline: none; font: 500 13px/1.35 var(--sans); transition: border-color .2s ease, background .2s ease; }
.project-form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, white 50%), linear-gradient(135deg, white 50%, transparent 50%); background-position: calc(100% - 17px) 53%, calc(100% - 12px) 53%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.project-form textarea { resize: vertical; min-height: 126px; }
.project-form input:focus,
.project-form select:focus,
.project-form textarea:focus { border-color: white; background-color: rgba(5,6,4,.2); }
.project-form textarea::placeholder { color: rgba(255,255,255,.58); }
.project-form option { color: white; background: var(--ink); }
.form-submit { width: 100%; margin-top: 4px; }
.project-form .form-note { margin: -6px 0 0; color: rgba(255,255,255,.7); font: 500 8px/1.5 var(--mono); letter-spacing: .07em; text-transform: uppercase; }
.copy-status { max-width: 330px; font: 400 9px/1.5 var(--mono); letter-spacing: .05em; text-transform: uppercase; }
footer { display: grid; grid-template-columns: 1fr 1fr auto; gap: 20px; padding: 28px 0 0; font: 400 9px/1.2 var(--mono); letter-spacing: .1em; text-transform: uppercase; }

.photo-page { background: var(--ink); }
.photo-journal { min-height: 100svh; padding: clamp(74px, 8vw, 120px) 3vw clamp(90px, 10vw, 150px); color: white; background: var(--ink); }
.photo-journal-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: 6vw; align-items: end; margin-bottom: clamp(74px, 10vw, 150px); padding-top: 18px; border-top: 1px solid rgba(255,255,255,.32); }
.photo-journal-heading h1 { margin: 0; font-family: var(--display); font-size: clamp(72px, 12vw, 188px); font-weight: 600; line-height: .78; letter-spacing: -.035em; }
.photo-journal-heading p { max-width: 440px; margin: 0 0 .15em; font-size: clamp(17px, 1.8vw, 27px); line-height: 1.28; }
.gallery-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-auto-flow: dense; gap: clamp(12px, 1.5vw, 26px); align-items: start; }
.photo-card { position: relative; margin: 0; }
.photo-trigger { width: 100%; display: block; margin: 0; padding: 0; overflow: hidden; color: inherit; background: var(--army-deep); border: 0; cursor: zoom-in; }
.photo-trigger img { width: 100%; height: auto; display: block; transition: transform .65s cubic-bezier(.2,.8,.2,1), filter .4s ease; }
.photo-trigger:hover img, .photo-trigger:focus-visible img { transform: scale(1.025); filter: contrast(1.04); }
.photo-trigger:focus-visible { outline: 2px solid white; outline-offset: 4px; }
.photo-a { z-index: 1; grid-column: 1 / span 5; }
.photo-b { grid-column: 7 / span 6; margin-top: 8vw; }
.photo-c { z-index: 2; grid-column: 4 / span 4; margin-top: -5vw; }
.photo-d { grid-column: 8 / span 5; margin-top: 5vw; }
.photo-e { grid-column: 1 / span 4; margin-top: -2vw; }
.photo-f { z-index: 2; grid-column: 5 / span 6; margin-top: 3vw; }
.photo-g { grid-column: 9 / span 4; margin-top: -6vw; }
.photo-h { grid-column: 2 / span 5; margin-top: 2vw; }
.photo-i { grid-column: 7 / span 5; margin-top: 7vw; }
.photo-j { z-index: 2; grid-column: 1 / span 6; margin-top: -3vw; }
.photo-k { grid-column: 8 / span 4; margin-top: 4vw; }

.photo-lightbox { width: min(92vw, 1500px); height: 92vh; margin: auto; padding: 38px; overflow: hidden; color: white; background: rgba(5,6,4,.98); border: 1px solid rgba(255,255,255,.25); }
.photo-lightbox::backdrop { background: rgba(0,0,0,.88); backdrop-filter: blur(8px); }
.photo-lightbox img { width: 100%; height: 100%; display: block; object-fit: contain; }
.lightbox-close { position: absolute; z-index: 2; top: 12px; right: 14px; width: 34px; height: 34px; padding: 0; color: white; background: rgba(5,6,4,.8); border: 1px solid rgba(255,255,255,.35); border-radius: 50%; cursor: pointer; font: 400 22px/1 var(--sans); }

.reel-page-body { background: var(--ink); }
.reel-page { min-height: 100svh; padding: clamp(120px, 11vw, 170px) 3vw clamp(70px, 8vw, 120px); color: white; background: var(--ink); }
.reel-heading { padding-top: 18px; margin-bottom: clamp(42px, 5vw, 76px); border-top: 1px solid rgba(255,255,255,.32); }
.reel-heading h1 { margin: 0; font-family: var(--display); font-size: clamp(70px, 11vw, 174px); font-weight: 600; line-height: .82; letter-spacing: -.035em; text-transform: uppercase; }
.reel-video { width: 100%; aspect-ratio: 16 / 9; overflow: hidden; background: var(--army-deep); border: 1px solid rgba(255,255,255,.28); }
.reel-video iframe { width: 100%; height: 100%; display: block; border: 0; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.8,.2,1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.hero-title .reveal:nth-child(2) { transition-delay: .1s; }

@media (max-width: 820px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  .site-header nav { display: none; }
  .mobile-page-links { display: flex; justify-self: center; gap: 14px; padding: 7px; }
  .hero { padding-top: 96px; }
  .hero-title { margin-top: 52px; font-size: 20vw; line-height: .82; }
  .line-shift { padding-left: 0; }
  .hero-grid, .about-body { width: 100%; grid-template-columns: 1fr; margin-left: 0; }
  .hero-actions { gap: 24px; }
  .hero-window { min-height: 0; grid-template-columns: 1fr; }
  .frame { min-height: 260px; }
  .section-heading, .about-intro { grid-template-columns: 1fr; gap: 34px; }
  .about-photo { aspect-ratio: 5 / 4; }
  .project-info { grid-template-columns: 1fr; gap: 24px; }
  .project-info ul { grid-column: 1; }
  .contact { grid-template-columns: 1fr; align-items: start; }
  .contact-action { width: 100%; }
  .social-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .social-embed iframe { height: 690px; }
  .photo-journal-heading { grid-template-columns: 1fr; gap: 34px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 12px; }
  .photo-a, .photo-b, .photo-c, .photo-d, .photo-e, .photo-f, .photo-g, .photo-h, .photo-i, .photo-j, .photo-k { grid-column: auto; margin-top: 0; }
  .photo-a, .photo-f, .photo-j { grid-column: span 2; }
  .photo-c, .photo-e, .photo-h, .photo-k { margin-top: 10vw; }
  .photo-lightbox { padding: 42px 16px 20px; }
  footer { grid-template-columns: 1fr auto; }
  footer span:nth-child(2) { display: none; }
}

@media (max-width: 520px) {
  .site-header, .hero, .work, .about { padding-left: 18px; padding-right: 18px; }
  .hero-meta span:last-child { display: none; }
  .mini-cta { font-size: 9px; }
  .hero-title { margin-top: 70px; }
  .hero-grid { margin-top: 48px; }
  .button { min-width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr; }
  .social-embed iframe { height: 720px; }
  .hero-window { min-height: 0; }
  .section-heading h2, .about-intro h1, .about h2 { font-size: 13.5vw; }
  .project { padding-bottom: 78px; }
  .project-visual { min-height: 300px; }
  .project-info { padding-top: 16px; }
  .about-photo { aspect-ratio: 1 / 1; }
  .photo-journal { padding: 70px 18px 80px; }
  .photo-journal-heading { margin-bottom: 70px; }
  .photo-journal-heading h1 { font-size: 18vw; }
  .reel-page { padding: 96px 18px 70px; }
  .reel-heading h1 { font-size: 17vw; }
  .mission-mark { font-size: 48vw; }
  .facts div { grid-template-columns: 1fr; gap: 6px; }
  .contact { padding: 46px 24px; }
}

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

/* Contained films and a quieter opening. */
.hero { min-height: auto; }
.hero-title { margin: clamp(36px, 5vw, 64px) 0 0; font-family: "Archivo", Arial, sans-serif; font-size: clamp(32px, 5.5vw, 80px); font-weight: 300; line-height: 1.12; letter-spacing: -.035em; }
.hero-surf { position: relative; aspect-ratio: 21 / 9; margin: 28px 0 0; }
.hero-grid { width: 100%; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); margin: 36px 0 48px; }
.hero-copy { max-width: 780px; font-size: clamp(19px, 1.8vw, 26px); line-height: 1.5; }
.hero-actions { justify-content: center; justify-self: end; }
.project-list { width: min(100%, 960px); margin-inline: auto; }
.project-video { width: min(100%, 800px); min-height: 0; margin-inline: auto; }
.short-stage { min-height: 0; padding: 28px; }
.short-video { width: min(100%, 300px); }
.project-info > p { font-size: clamp(16px, 1.4vw, 21px); }
@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-actions { justify-self: start; }
}
@media (max-width: 520px) {
  .hero-title { margin-top: 36px; }
  .hero-surf { margin-top: 24px; }
  .hero-grid { margin-top: 28px; }
  .project-video { min-height: 0; }
  .project-video .project-index { top: 8px; left: 8px; font-size: 9px; }
  .watch-youtube { right: 8px; bottom: 8px; }
}

/* Keep the photo journal beneath the shared navigation. */
.photo-page .photo-journal { padding-top: clamp(120px, 11vw, 170px); }
@media (max-width: 520px) {
  .photo-page .site-header { grid-template-columns: auto 1fr; row-gap: 8px; }
  .photo-page .mobile-page-links { justify-self: end; gap: 12px; }
  .photo-page .mini-cta { grid-column: 2; }
  .photo-page .photo-journal { padding-top: 130px; }
}

.photo-lightbox { width: 100vw; max-width: 100vw; height: 100dvh; max-height: 100dvh; border: 0; padding: 56px; }
.lightbox-prev, .lightbox-next { position: absolute; z-index: 2; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; background: rgba(5,6,4,.8); color: white; font: 32px/1 Arial,sans-serif; cursor: pointer; }
.lightbox-prev { left: 8px; }
.lightbox-next { right: 8px; }
.lightbox-close { width: 44px; height: 44px; }
.photo-lightbox button:focus-visible { outline: 2px solid white; outline-offset: 3px; }
@media (max-width: 520px) { .photo-lightbox { padding: 64px 8px; } .lightbox-prev, .lightbox-next { top: auto; bottom: 10px; transform: none; } }

.photo-banner { aspect-ratio: 21 / 9; overflow: hidden; background: var(--army-deep); margin-bottom: clamp(40px, 5vw, 76px); }
.photo-banner video { display: block; width: 100%; height: 100%; object-fit: cover; }

/* A varied, compact photo collage with uncropped photographs. */
.photo-page .gallery-grid { max-width: 1440px; margin-inline: auto; gap: clamp(18px, 3vw, 44px); align-items: start; }
@media (min-width: 901px) {
 .photo-page .photo-a { grid-column: 1 / span 3; margin-top: 0; }
 .photo-page .photo-b { grid-column: 5 / span 4; margin-top: 4vw; }
 .photo-page .photo-c { grid-column: 10 / span 3; margin-top: 1vw; }
 .photo-page .photo-d { grid-column: 2 / span 5; margin-top: 0; }
 .photo-page .photo-e { grid-column: 9 / span 3; margin-top: 3vw; }
 .photo-page .photo-f { grid-column: 1 / span 4; margin-top: 1vw; }
 .photo-page .photo-g { grid-column: 6 / span 3; margin-top: 0; }
 .photo-page .photo-h { grid-column: 10 / span 3; margin-top: 5vw; }
 .photo-page .photo-i { grid-column: 2 / span 3; margin-top: 0; }
 .photo-page .photo-j { grid-column: 6 / span 5; margin-top: 2vw; }
 .photo-page .photo-k { grid-column: 9 / span 3; margin-top: 0; }
}
@media (max-width: 900px) {
 .photo-page .gallery-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 22px 16px; }
 .photo-page .photo-card { grid-column: auto; margin-top: 0; }
 .photo-page .photo-card:nth-child(4n+2) { margin-top: 30px; }
 .photo-page .photo-card:nth-child(11n+4) { grid-column: span 2; width: 86%; justify-self: center; }
}
