@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Variable.woff2") format("woff2");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-VariableItalic.woff2") format("woff2");
  font-weight: 300 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --ink: #0b0b0a;
  --ink-soft: #171714;
  --paper: #f4f0e7;
  --muted: #aaa79f;
  --line: rgba(244, 240, 231, .18);
  --accent: #ef6a4c;
  --accent-deep: #cf4d31;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: "Satoshi", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open,
body.lightbox-open { overflow: hidden; }

img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }

::selection { background: var(--accent); color: #fff; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 5px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform .2s;
}

.skip-link:focus { transform: translateY(0); }

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 900;
  width: 0;
  height: 3px;
  background: var(--accent);
}

.site-nav {
  position: fixed;
  z-index: 800;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  padding: 14px clamp(22px, 4vw, 64px);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, min-height .35s ease;
}

.site-nav.is-scrolled {
  min-height: 70px;
  background: rgba(11, 11, 10, .88);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.site-nav > .brand { position: relative; z-index: 2; }

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  color: var(--paper);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  transition: background .25s ease, color .25s ease, transform .5s var(--ease);
}

.brand:hover .brand-mark { background: var(--accent); transform: rotate(-8deg); }

.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong { font-size: 15px; font-weight: 600; letter-spacing: -.01em; }
.brand-copy small { margin-top: 5px; color: #bdb9b0; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 38px); }
.nav-links > a { position: relative; font-size: 12px; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.nav-links > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--accent);
  transition: right .35s var(--ease);
}
.nav-links > a:hover::after { right: 0; }

.nav-cta {
  padding: 12px 18px;
  border: 1px solid rgba(244, 240, 231, .55);
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.nav-cta:hover { background: var(--paper); border-color: var(--paper); color: var(--ink); }

.menu-toggle { display: none; border: 0; background: none; cursor: pointer; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #070707;
}

.hero-gallery {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 54% 46%;
  grid-template-rows: 53% 47%;
  gap: 3px;
  padding-left: 28%;
}

.hero-shot { position: relative; margin: 0; overflow: hidden; background: #151515; }
.hero-shot--portrait { grid-row: 1 / 3; }
.hero-shot img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.035); animation: hero-in 1.8s var(--ease) both; }
.hero-shot--event img { animation-delay: .12s; }
.hero-shot--aerial img { animation-delay: .24s; }
.hero-shot--portrait img { object-position: 50% 37%; }

@keyframes hero-in {
  from { opacity: 0; transform: scale(1.1); }
  to { opacity: 1; transform: scale(1.035); }
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 11, 10, .98) 0%, rgba(11, 11, 10, .96) 20%, rgba(11, 11, 10, .62) 48%, rgba(11, 11, 10, .05) 76%),
    linear-gradient(0deg, rgba(11, 11, 10, .78) 0%, transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(1100px, calc(100% - 44px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 118px 0 125px;
}

.kicker {
  margin: 0 0 22px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.hero-kicker { opacity: 0; animation: copy-in 1s .2s var(--ease) forwards; }

.hero h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3.2rem, 7.4vw, 7rem);
  font-weight: 380;
  letter-spacing: -.065em;
  line-height: .92;
  opacity: 0;
  animation: copy-in 1.1s .35s var(--ease) forwards;
}

.hero h1 em,
.stories h2 em,
.story-copy h3 em,
.contact-heading h2 em,
.manifesto-line em {
  color: var(--accent);
  font-weight: 360;
  font-style: italic;
}

.hero-intro {
  max-width: 580px;
  margin: 30px 0 0;
  color: #dbd6cc;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  line-height: 1.55;
  opacity: 0;
  animation: copy-in 1s .55s var(--ease) forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
  opacity: 0;
  animation: copy-in 1s .7s var(--ease) forwards;
}

@keyframes copy-in {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  background: none;
  color: var(--paper);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .35s var(--ease), background .25s ease, color .25s ease, border-color .25s ease;
}

.button span { font-size: 17px; transition: transform .3s var(--ease); }
.button:hover { transform: translateY(-3px); }
.button:hover span { transform: translate(3px, -3px); }
.button--primary { background: var(--accent); border-color: var(--accent); color: #fff; }
.button--primary:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.button--ghost { border-color: rgba(244, 240, 231, .45); }
.button--ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.hero-proof {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  padding: 21px clamp(22px, 4vw, 64px);
  border-top: 1px solid rgba(244, 240, 231, .2);
  color: #d0ccc3;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-proof span { display: flex; align-items: center; gap: 10px; }
.hero-proof span::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }

.section-pad { padding: clamp(90px, 11vw, 170px) clamp(22px, 6vw, 92px); }

.manifesto { display: grid; grid-template-columns: 1fr 3fr; gap: clamp(30px, 7vw, 120px); max-width: 1500px; margin: auto; }
.manifesto .kicker { padding-top: 16px; }
.manifesto-line { max-width: 980px; margin: 0; font-size: clamp(2.2rem, 5.2vw, 5.4rem); font-weight: 360; letter-spacing: -.055em; line-height: 1.02; }
.manifesto-copy { grid-column: 2; max-width: 620px; margin: 18px 0 0; color: var(--muted); font-size: 18px; line-height: 1.65; }

.manifesto-images {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: .8fr 1.25fr .9fr;
  align-items: end;
  gap: clamp(8px, 1.4vw, 22px);
  margin-top: clamp(35px, 6vw, 85px);
}

.manifesto-image {
  position: relative;
  min-height: 0;
  padding: 0;
  border: 0;
  background: #171714;
  overflow: hidden;
  cursor: zoom-in;
}

.manifesto-image--portrait { aspect-ratio: 4 / 5; }
.manifesto-image--event { aspect-ratio: 16 / 9; margin-bottom: clamp(20px, 4vw, 60px); }
.manifesto-image--nature { aspect-ratio: 4 / 5; }
.manifesto-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease), filter .5s ease; }
.manifesto-image--portrait img { object-position: 50% 35%; }
.manifesto-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.64), transparent 50%); }
.manifesto-image span { position: absolute; z-index: 2; left: 18px; bottom: 16px; font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.manifesto-image:hover img { transform: scale(1.045); filter: brightness(1.06); }

.ticker { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ticker-track { display: flex; align-items: center; width: max-content; padding: 18px 0; animation: ticker 30s linear infinite; }
.ticker span { padding: 0 24px; color: #d2cec5; font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.ticker i { color: var(--accent); font-size: 9px; font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.stories { max-width: 1600px; margin: auto; }
.stories-heading { display: grid; grid-template-columns: minmax(0, 2fr) minmax(260px, .7fr); align-items: end; gap: 50px; margin-bottom: 70px; }
.stories h2,
.open-brief h2,
.experience h2,
.contact-heading h2 { margin: 0; font-size: clamp(2.8rem, 6vw, 6.5rem); font-weight: 380; letter-spacing: -.06em; line-height: .98; }
.stories-heading > p { max-width: 400px; margin: 0 0 4px; color: var(--muted); font-size: 17px; line-height: 1.6; }

.story-tabs { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.story-tab { position: relative; padding: 24px 20px; border: 0; border-right: 1px solid var(--line); background: transparent; color: #8d8a83; text-align: left; font-size: clamp(1rem, 1.8vw, 1.4rem); cursor: pointer; transition: background .25s ease, color .25s ease; }
.story-tab:last-child { border-right: 0; }
.story-tab span { margin-right: 12px; color: var(--accent); font-size: 10px; letter-spacing: .14em; }
.story-tab::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -1px; height: 3px; background: var(--accent); transition: right .55s var(--ease); }
.story-tab:hover,
.story-tab.is-active { background: var(--ink-soft); color: var(--paper); }
.story-tab.is-active::after { right: 0; }

.story-panel { display: grid; grid-template-columns: minmax(260px, .65fr) minmax(0, 1.6fr); gap: clamp(40px, 7vw, 120px); padding-top: clamp(50px, 7vw, 100px); }
.story-panel[hidden] { display: none; }
.story-panel.is-active { animation: panel-in .75s var(--ease) both; }
@keyframes panel-in { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

.story-copy { align-self: center; }
.story-number { margin: 0 0 22px; color: var(--accent); font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.story-copy h3 { max-width: 8ch; margin: 0; font-size: clamp(2.5rem, 5vw, 5.5rem); font-weight: 360; letter-spacing: -.06em; line-height: .96; }
.story-copy > p:not(.story-number) { max-width: 430px; margin: 28px 0; color: #b8b4ab; font-size: 17px; line-height: 1.65; }
.story-tags { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; list-style: none; }
.story-tags li { padding: 8px 12px; border: 1px solid var(--line); color: #c6c2b9; font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }

.story-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: clamp(180px, 21vw, 360px); gap: 8px; }
.photo { position: relative; min-width: 0; padding: 0; border: 0; background: #171717; overflow: hidden; cursor: zoom-in; }
.photo--tall { grid-row: span 2; }
.photo--wide { grid-column: span 2; }
.photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease), filter .5s ease; }
.photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.65), transparent 46%); opacity: .55; transition: opacity .4s ease; }
.photo span { position: absolute; z-index: 2; left: 20px; bottom: 18px; font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; transform: translateY(6px); opacity: .75; transition: transform .4s var(--ease), opacity .4s ease; }
.photo:hover img { transform: scale(1.045); filter: brightness(1.06); }
.photo:hover::after { opacity: 1; }
.photo:hover span { transform: translateY(0); opacity: 1; }
.story-grid--liens .photo--tall img { object-position: center 28%; }
.story-grid--energie .photo--tall img { object-position: 50% 34%; }

.open-brief { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr); min-height: 780px; background: var(--paper); color: var(--ink); }
.open-brief-image { position: relative; min-height: 620px; overflow: hidden; }
.open-brief-image img { width: 100%; height: 100%; object-fit: cover; }
.open-brief-image p { position: absolute; left: 28px; right: 28px; bottom: 28px; margin: 0; padding: 16px 18px; background: rgba(11,11,10,.82); color: var(--paper); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(10px); }
.open-brief-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(60px, 8vw, 120px); }
.open-brief-copy > p:not(.kicker) { max-width: 600px; margin: 26px 0 36px; color: #605e58; font-size: 18px; line-height: 1.65; }

.intent-list { border-top: 1px solid rgba(11,11,10,.18); }
.intent-list a { display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 14px; padding: 20px 0; border-bottom: 1px solid rgba(11,11,10,.18); transition: color .25s ease, padding .35s var(--ease); }
.intent-list a:hover { padding-left: 10px; color: var(--accent-deep); }
.intent-list span { color: var(--accent-deep); font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.intent-list strong { font-size: clamp(1rem, 1.7vw, 1.3rem); font-weight: 520; }
.intent-list small { color: #77736b; font-size: 11px; letter-spacing: .06em; text-align: right; }

.experience { max-width: 1500px; margin: auto; }
.experience-heading { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 80px; }
.experience-heading .kicker { align-self: flex-start; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; padding: 0; margin: 0; background: var(--line); list-style: none; }
.steps li { min-height: 330px; padding: clamp(28px, 3vw, 46px); background: var(--ink); transition: background .3s ease, transform .45s var(--ease); }
.steps li:hover { z-index: 2; background: var(--ink-soft); transform: translateY(-8px); }
.steps span { color: var(--accent); font-size: 11px; font-weight: 700; letter-spacing: .18em; }
.steps h3 { margin: 80px 0 18px; font-size: clamp(1.6rem, 2.5vw, 2.5rem); font-weight: 420; letter-spacing: -.04em; }
.steps p { max-width: 360px; margin: 0; color: var(--muted); line-height: 1.65; }
.experience-link { display: flex; justify-content: flex-end; margin-top: 30px; }
.experience-link a { padding-bottom: 6px; border-bottom: 1px solid var(--accent); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.experience-link span { margin-left: 12px; color: var(--accent); }

.contact { display: grid; grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr); gap: clamp(60px, 9vw, 150px); padding: clamp(90px, 12vw, 180px) clamp(22px, 7vw, 110px); background: #151512; border-top: 1px solid var(--line); }
.contact-heading > p:not(.kicker) { max-width: 540px; margin: 30px 0; color: var(--muted); font-size: 18px; line-height: 1.65; }
.contact-heading > a { display: inline-block; padding-bottom: 5px; border-bottom: 1px solid var(--accent); font-size: 17px; }

.contact-form { align-self: center; display: grid; gap: 25px; }
.field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.contact-form label { display: grid; gap: 9px; color: #d6d1c7; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.contact-form input,
.contact-form select,
.contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid #59564f; border-radius: 0; outline: none; background: transparent; color: var(--paper); font-size: 16px; font-weight: 400; letter-spacing: 0; text-transform: none; transition: border-color .25s ease; }
.contact-form input,
.contact-form select { height: 50px; }
.contact-form textarea { min-height: 125px; padding: 14px 0; resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--accent); }
.contact-form option { color: var(--ink); }
.contact-form .button { justify-self: start; min-width: 230px; }
.form-note { margin: -12px 0 0; color: #77746e; font-size: 11px; }

.site-footer { display: grid; grid-template-columns: 1.4fr 1fr auto; align-items: center; gap: 28px; padding: 45px clamp(22px, 5vw, 72px); border-top: 1px solid var(--line); }
.brand--footer .brand-mark { width: 38px; height: 38px; }
.footer-links,
.footer-social { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-links a,
.footer-social a { color: #bbb7ae; font-size: 11px; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; transition: color .25s ease; }
.footer-links a:hover,
.footer-social a:hover { color: var(--accent); }
.site-footer > p { grid-column: 1 / -1; margin: 10px 0 0; color: #6e6b65; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }

.mobile-contact { display: none; }

.lightbox { position: fixed; z-index: 1200; inset: 0; display: grid; place-items: center; padding: 40px; background: rgba(6, 6, 5, .96); }
.lightbox[hidden] { display: none; }
.lightbox figure { display: grid; gap: 14px; max-width: min(92vw, 1400px); max-height: 88vh; margin: 0; }
.lightbox img { max-width: 100%; max-height: 80vh; margin: auto; object-fit: contain; }
.lightbox figcaption { color: #c2beb5; font-size: 12px; letter-spacing: .08em; text-align: center; }
.lightbox-close { position: absolute; top: 20px; right: 28px; width: 48px; height: 48px; border: 1px solid var(--line); background: transparent; font-size: 30px; cursor: pointer; transition: background .25s, color .25s; }
.lightbox-close:hover { background: var(--paper); color: var(--ink); }

.reveal { opacity: 0; transform: translateY(38px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1040px) {
  .nav-links { position: fixed; inset: 0; z-index: 1; flex-direction: column; align-items: flex-start; justify-content: center; padding: 100px 32px; background: var(--ink); opacity: 0; visibility: hidden; transform: translateY(-20px); transition: opacity .35s ease, visibility .35s ease, transform .5s var(--ease); }
  .nav-links.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-links > a { font-size: clamp(1.8rem, 6vw, 3.5rem); font-weight: 400; letter-spacing: -.035em; text-transform: none; }
  .nav-links .nav-cta { margin-top: 18px; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
  .menu-toggle { z-index: 2; display: grid; gap: 5px; width: 42px; height: 42px; place-content: center; }
  .menu-toggle > span:not(.sr-only) { display: block; width: 22px; height: 1px; background: var(--paper); transition: transform .3s ease, opacity .3s ease; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .hero-gallery { padding-left: 18%; }
  .hero-content { justify-content: flex-end; padding-bottom: 150px; }
  .hero h1 { font-size: clamp(3.2rem, 9vw, 6.2rem); }

  .manifesto { grid-template-columns: 1fr; }
  .manifesto .kicker { padding-top: 0; }
  .manifesto-copy { grid-column: 1; }

  .story-panel { grid-template-columns: 1fr; }
  .story-copy { display: grid; grid-template-columns: .75fr 1fr; gap: 20px 50px; align-items: start; }
  .story-number { grid-column: 1 / -1; }
  .story-copy h3 { max-width: 9ch; }
  .story-copy > p:not(.story-number) { margin: 0; }
  .story-tags { grid-column: 2; }

  .open-brief { grid-template-columns: .85fr 1.15fr; }
  .intent-list a { grid-template-columns: 38px 1fr; }
  .intent-list small { grid-column: 2; text-align: left; }

  .contact { grid-template-columns: 1fr; }
  .contact-heading { max-width: 840px; }

  .site-footer { grid-template-columns: 1fr auto; }
  .footer-links { display: none; }
}

@media (max-width: 720px) {
  .site-nav { min-height: 70px; padding-inline: 18px; }
  .brand-copy small { display: none; }
  .brand-mark { width: 38px; height: 38px; }

  .hero { min-height: 100svh; }
  .hero-gallery { grid-template-columns: 58% 42%; grid-template-rows: 58% 42%; padding-left: 0; }
  .hero-shot--portrait { grid-row: 1 / 3; }
  .hero-shot--portrait img { object-position: 52% 30%; }
  .hero-shade { background: linear-gradient(0deg, rgba(11,11,10,.97) 0%, rgba(11,11,10,.82) 39%, rgba(11,11,10,.18) 72%, rgba(11,11,10,.35) 100%); }
  .hero-content { width: calc(100% - 36px); padding: 96px 0 140px; }
  .hero h1 { font-size: clamp(2.8rem, 13.5vw, 4.6rem); line-height: .94; }
  .hero-intro { max-width: 520px; margin-top: 22px; font-size: 15px; }
  .hero-actions { margin-top: 25px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .button--ghost { display: none; }
  .hero-proof { justify-content: flex-start; gap: 16px; overflow: hidden; white-space: nowrap; }
  .hero-proof span:nth-child(3) { display: none; }

  .section-pad { padding: 80px 18px; }
  .manifesto-line { font-size: clamp(2.3rem, 11vw, 4rem); }
  .manifesto-copy { font-size: 16px; }
  .manifesto-images { grid-template-columns: 1fr 1fr; margin-top: 28px; }
  .manifesto-image--event { grid-column: 1 / -1; grid-row: 1; aspect-ratio: 16 / 10; margin-bottom: 0; }
  .manifesto-image--portrait,
  .manifesto-image--nature { aspect-ratio: 4 / 5; }

  .stories-heading { grid-template-columns: 1fr; gap: 25px; margin-bottom: 45px; }
  .stories h2,
  .open-brief h2,
  .experience h2,
  .contact-heading h2 { font-size: clamp(2.8rem, 12vw, 4.4rem); }

  .story-tabs { grid-template-columns: 1fr; border-bottom: 0; }
  .story-tab { padding: 17px 12px; border-right: 0; border-bottom: 1px solid var(--line); }
  .story-panel { gap: 35px; padding-top: 45px; }
  .story-copy { display: block; }
  .story-copy h3 { font-size: clamp(2.6rem, 12vw, 4.2rem); }
  .story-copy > p:not(.story-number) { margin: 24px 0; font-size: 16px; }
  .story-grid { grid-auto-rows: 48vw; gap: 5px; }
  .photo--tall { grid-row: span 2; }
  .photo span { left: 12px; bottom: 12px; }

  .open-brief { grid-template-columns: 1fr; min-height: 0; }
  .open-brief-image { min-height: 70svh; }
  .open-brief-copy { padding: 75px 18px; }
  .open-brief-copy > p:not(.kicker) { font-size: 16px; }

  .experience-heading { display: block; margin-bottom: 45px; }
  .steps { grid-template-columns: 1fr; }
  .steps li { min-height: 260px; }
  .steps h3 { margin-top: 55px; }
  .experience-link { justify-content: flex-start; }

  .contact { grid-template-columns: 1fr; gap: 55px; padding: 80px 18px 110px; }
  .contact-heading > p:not(.kicker) { font-size: 16px; }
  .field-row { grid-template-columns: 1fr; gap: 24px; }
  .contact-form .button { width: 100%; }

  .site-footer { grid-template-columns: 1fr; padding: 38px 18px 95px; }
  .footer-social { margin-top: 8px; }

  .mobile-contact { position: fixed; z-index: 750; left: 12px; right: 12px; bottom: 12px; display: flex; justify-content: space-between; padding: 15px 18px; background: var(--accent); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; box-shadow: 0 10px 35px rgba(0,0,0,.45); transition: transform .35s var(--ease), opacity .25s ease; }
  .mobile-contact.is-hidden { opacity: 0; transform: translateY(120%); pointer-events: none; }

  .lightbox { padding: 20px; }
  .lightbox-close { top: 10px; right: 10px; }
}

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