/* Legacy Construct — Production Profile
   Responsive, dependency-free styling for modern browsers and iOS Safari. */

:root {
  --black: #050505;
  --black-2: #0a0a0a;
  --black-3: #101010;
  --panel: #121212;
  --panel-hi: #171717;
  --gold: #d7ad4a;
  --gold-bright: #f0cc74;
  --gold-deep: #9c7526;
  --ivory: #f4efe5;
  --muted: #a9a49a;
  --line: rgba(215, 173, 74, .21);
  --line-soft: rgba(255, 255, 255, .08);
  --container: 1240px;
  --header-h: 84px;
  --radius: 2px;
  --ease: cubic-bezier(.2,.75,.25,1);
}

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

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ivory);
  background:
    radial-gradient(circle at 12% 18%, rgba(215,173,74,.055), transparent 24rem),
    var(--black);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.modal-open { overflow: hidden; }

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

::selection { background: var(--gold); color: #080808; }

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 9999;
  padding: 12px 16px;
  background: var(--gold);
  color: #050505;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: none; }

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(92px, 10vw, 150px) 0;
}

.section-header {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  margin-bottom: 64px;
}

.section-label {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .24em;
  padding-top: 12px;
}

.section-title-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  gap: 56px;
  align-items: end;
}

.section-title-wrap h2,
.contact h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .98;
  font-size: clamp(42px, 5.8vw, 78px);
}

.section-title-wrap h2 span,
.contact h2 span { color: var(--gold); }

.section-title-wrap p {
  margin: 0 0 3px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 15px;
  max-width: 520px;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: background .35s ease, border-color .35s ease, transform .35s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(5,5,5,.88);
  border-color: var(--line-soft);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.nav-shell {
  width: min(calc(100% - 48px), 1380px);
  min-height: var(--header-h);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(215,173,74,.22);
}

.brand-copy { display: grid; gap: 2px; }
.brand-copy strong {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
  white-space: nowrap;
}
.brand-copy small {
  color: #a8a093;
  font-size: 9px;
  letter-spacing: .1em;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.desktop-nav a {
  position: relative;
  color: #d2cec6;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 10px 0;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 2px;
  height: 1px;
  background: var(--gold);
  transition: right .25s var(--ease);
}
.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after { right: 0; }

.nav-cta {
  justify-self: end;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(215,173,74,.65);
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}
.nav-cta:hover { background: var(--gold); color: #070707; }

.menu-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(7,7,7,.6);
  color: white;
  position: relative;
}
.menu-toggle span {
  position: absolute;
  left: 12px;
  width: 18px;
  height: 1px;
  background: var(--gold-bright);
  transition: transform .25s ease, top .25s ease;
}
.menu-toggle span:first-child { top: 17px; }
.menu-toggle span:last-child { top: 25px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }

.mobile-menu {
  position: absolute;
  top: calc(var(--header-h) - 1px);
  left: 0; right: 0;
  padding: 18px 24px 28px;
  background: rgba(5,5,5,.98);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
  color: #eee8dc;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: #070707;
}

.hero-media,
.hero-shade,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-media { z-index: -3; }
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.7) contrast(1.08) brightness(.72);
  transform: scale(1.01);
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5,5,5,.94) 0%, rgba(5,5,5,.78) 38%, rgba(5,5,5,.22) 74%, rgba(5,5,5,.5) 100%),
    linear-gradient(0deg, rgba(5,5,5,.94) 0%, transparent 48%, rgba(5,5,5,.3) 100%);
}

.hero-grid {
  z-index: 2;
  opacity: .22;
  background-image:
    linear-gradient(rgba(215,173,74,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215,173,74,.09) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
  -webkit-mask-image: linear-gradient(90deg, black, transparent 72%);
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-top: calc(var(--header-h) + 70px);
  padding-bottom: 92px;
}

.hero-logo {
  display: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .22em;
  margin-bottom: 24px;
}
.eyebrow::before {
  content: "";
  width: 48px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  margin: 0;
  max-width: 980px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(64px, 9.8vw, 142px);
  line-height: .83;
  letter-spacing: -.055em;
  font-weight: 400;
  text-wrap: balance;
}
.hero h1 em {
  color: var(--gold);
  font-weight: 400;
}

.hero-lede {
  max-width: 690px;
  margin: 32px 0 0;
  color: #d6d0c5;
  line-height: 1.75;
  font-size: clamp(15px, 1.35vw, 19px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .17em;
  transition: transform .25s var(--ease), background .25s ease, color .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }
.button-gold { background: var(--gold); color: #080808; }
.button-gold:hover { background: var(--gold-bright); }
.button-ghost { background: rgba(5,5,5,.34); color: var(--ivory); border-color: rgba(255,255,255,.32); }
.button-ghost:hover { border-color: var(--gold); color: var(--gold-bright); }

.hero-metrics {
  display: flex;
  gap: 0;
  margin-top: 58px;
  max-width: 720px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.hero-metrics > div {
  min-width: 180px;
  padding: 18px 28px 0 0;
  margin-right: 28px;
}
.hero-metrics strong {
  display: block;
  color: var(--gold-bright);
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 27px;
  line-height: 1;
}
.hero-metrics span {
  display: block;
  color: #aaa398;
  margin-top: 7px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.scroll-cue {
  position: absolute;
  right: 32px;
  bottom: 36px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: rotate(90deg) translateX(-50%);
  transform-origin: right bottom;
  color: #a39d92;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.scroll-cue i { width: 46px; height: 1px; background: var(--gold); }

/* About / manifesto */
.intro {
  background:
    linear-gradient(180deg, #070707, #0b0b0b 45%, #080808);
  border-top: 1px solid var(--line-soft);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.manifesto-card {
  min-height: 270px;
  padding: 30px 28px 34px;
  border-right: 1px solid var(--line);
}
.manifesto-card:last-child { border-right: 0; }
.manifesto-card > span {
  color: var(--gold);
  font: 400 24px/1 Georgia, serif;
}
.manifesto-card h3 {
  margin: 72px 0 12px;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 400;
}
.manifesto-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 13px;
}

/* Services */
.services {
  border-top: 1px solid rgba(255,255,255,.04);
  background:
    linear-gradient(rgba(255,255,255,.015), rgba(255,255,255,0)),
    var(--black);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}

.service-card {
  position: relative;
  min-height: 330px;
  padding: 30px;
  background:
    linear-gradient(140deg, rgba(215,173,74,.025), transparent 45%),
    var(--black-3);
  overflow: hidden;
  transition: background .3s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto -70px -70px auto;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(215,173,74,.12);
  transform: rotate(45deg);
  transition: transform .45s var(--ease), border-color .3s ease;
}
.service-card:hover {
  background:
    linear-gradient(140deg, rgba(215,173,74,.07), transparent 48%),
    #131313;
}
.service-card:hover::before {
  transform: rotate(45deg) translate(-12px,-12px);
  border-color: rgba(215,173,74,.36);
}

.service-number {
  position: absolute;
  right: 24px;
  top: 22px;
  color: #5e584f;
  font: 400 13px/1 Georgia, serif;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
}

.service-card h3 {
  margin: 82px 0 14px;
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 23px;
  line-height: 1.15;
}
.service-card p {
  margin: 0;
  max-width: 340px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 13px;
}

/* Work */
.work {
  background: #090909;
  border-top: 1px solid rgba(255,255,255,.05);
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.4fr .9fr;
  grid-template-rows: minmax(280px, 440px) auto;
  gap: 18px;
}

.project-card {
  position: relative;
  appearance: none;
  border: 0;
  padding: 0;
  background: #111;
  color: white;
  text-align: left;
  cursor: zoom-in;
  overflow: hidden;
  min-height: 440px;
}
.project-card.project-wide { grid-row: span 2; min-height: 720px; }

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s var(--ease), filter .35s ease;
}
.project-card:hover img { transform: scale(1.025); filter: brightness(.85); }

.project-overlay {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 70px 28px 26px;
  background: linear-gradient(transparent, rgba(3,3,3,.84));
}
.project-overlay small,
.video-meta small {
  display: block;
  color: var(--gold-bright);
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .16em;
  margin-bottom: 7px;
}
.project-overlay h3 {
  margin: 0;
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 26px;
}
.project-arrow {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(215,173,74,.52);
  color: var(--gold-bright);
  font-size: 18px;
}

.work-statement {
  min-height: 260px;
  padding: 34px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at 100% 0, rgba(215,173,74,.10), transparent 50%),
    #0e0e0e;
}
.gold-line { width: 46px; height: 1px; background: var(--gold); margin-bottom: 22px; }
.work-statement p {
  margin: 0;
  max-width: 440px;
  color: #c8c2b7;
  font-family: Georgia, serif;
  font-size: clamp(20px, 2.3vw, 30px);
  line-height: 1.3;
}
.work-statement strong { color: var(--gold-bright); font-weight: 400; }

.video-heading {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin: 94px 0 28px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.video-heading span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.video-heading h3 {
  margin: 8px 0 0;
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 34px;
}
.video-heading p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
  text-align: right;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  align-items: start;
}

.video-card {
  position: relative;
  padding: 0;
  border: 1px solid var(--line-soft);
  background: #111;
  color: white;
  cursor: pointer;
  overflow: hidden;
  text-align: left;
  min-height: 420px;
  transition: border-color .25s ease, transform .3s var(--ease);
}
.video-card:hover { border-color: rgba(215,173,74,.55); transform: translateY(-3px); }
.video-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.video-landscape { grid-column: span 7; aspect-ratio: 16/9; min-height: 0; }
.video-portrait { grid-column: span 5; aspect-ratio: 4/5; min-height: 0; }

.video-card:nth-child(3) { grid-column: span 5; }
.video-card:nth-child(4) { grid-column: span 7; }

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease), filter .35s ease;
}
.video-card:hover img { transform: scale(1.025); filter: brightness(.78); }

.video-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.05) 48%, rgba(0,0,0,.88) 100%),
    linear-gradient(90deg, rgba(0,0,0,.18), transparent 50%);
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 62px;
  height: 62px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(240,204,116,.72);
  background: rgba(5,5,5,.52);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background .2s ease, transform .25s ease;
}
.video-card:hover .play-button { background: var(--gold); transform: translate(-50%,-50%) scale(1.06); }
.play-button i {
  width: 0; height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid var(--gold-bright);
  margin-left: 3px;
}
.video-card:hover .play-button i { border-left-color: #080808; }

.video-meta {
  position: absolute;
  left: 26px;
  bottom: 24px;
  right: 24px;
}
.video-meta strong {
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 400;
}

/* Process */
.process {
  background:
    radial-gradient(circle at 83% 25%, rgba(215,173,74,.07), transparent 28rem),
    #070707;
  border-top: 1px solid var(--line-soft);
}

.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.process-list li {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 48px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}
.process-list li > span {
  color: var(--gold);
  font: 400 31px/1 Georgia, serif;
}
.process-list li > div {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 46px;
}
.process-list h3 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 27px;
  font-weight: 400;
}
.process-list p {
  margin: 0;
  color: var(--muted);
  max-width: 590px;
  font-size: 13px;
  line-height: 1.75;
}

/* Contact */
.contact {
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.contact-media,
.contact-overlay { position: absolute; inset: 0; z-index: -2; }
.contact-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.35) saturate(.55) brightness(.62); }
.contact-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5,5,5,.96) 0%, rgba(5,5,5,.84) 48%, rgba(5,5,5,.36) 100%),
    linear-gradient(0deg, rgba(5,5,5,.7), transparent 65%);
}

.contact .section-label { margin-bottom: 20px; padding: 0; }
.contact h2 { max-width: 900px; font-size: clamp(50px, 7.5vw, 104px); }
.contact > .container > p {
  max-width: 640px;
  margin: 28px 0 0;
  color: #c9c2b6;
  font-size: 16px;
  line-height: 1.75;
}

.contact-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.contact-actions span {
  max-width: 390px;
  color: #8f897f;
  font-size: 11px;
  line-height: 1.6;
}

/* Footer */
.site-footer {
  padding: 36px 0;
  background: #030303;
  border-top: 1px solid var(--line-soft);
}
.footer-grid {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 32px;
  align-items: center;
}
.footer-brand img {
  width: 150px;
  height: 92px;
  object-fit: cover;
  object-position: center;
}
.footer-copy p {
  margin: 0 0 7px;
  color: #b4aea4;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.footer-copy small { color: #666159; font-size: 10px; }
.back-top {
  color: var(--gold-bright);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .13em;
}

/* Modal */
.media-modal[hidden] { display: none; }
.media-modal {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: grid;
  place-items: center;
  padding: 24px;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.91);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.modal-panel {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  max-height: calc(100svh - 48px);
  overflow: auto;
  background: #090909;
  border: 1px solid rgba(215,173,74,.32);
  box-shadow: 0 35px 100px rgba(0,0,0,.6);
}
.modal-toolbar {
  min-height: 78px;
  padding: 15px 18px 15px 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.modal-toolbar small {
  color: var(--gold);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.modal-toolbar h2 {
  margin: 4px 0 0;
  font: 400 20px/1.2 Georgia, serif;
}
.modal-close {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--gold-bright);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.modal-stage {
  background: #000;
  min-height: 240px;
  display: grid;
  place-items: center;
}
.modal-stage video,
.modal-stage img {
  width: 100%;
  max-height: calc(100svh - 160px);
  object-fit: contain;
  background: #000;
}
.modal-stage video { min-height: 300px; }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .nav-shell { grid-template-columns: 1fr auto; }
  .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .section-header { grid-template-columns: 150px 1fr; gap: 28px; }
  .section-title-wrap { grid-template-columns: 1fr; gap: 24px; }
  .manifesto-grid { grid-template-columns: repeat(2, 1fr); }
  .manifesto-card:nth-child(2) { border-right: 0; }
  .manifesto-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .project-card.project-wide { min-height: 600px; }
  .video-landscape,
  .video-card:nth-child(4) { grid-column: span 7; }
  .video-portrait,
  .video-card:nth-child(3) { grid-column: span 5; }
  .process-list li { grid-template-columns: 150px 1fr; gap: 28px; }
}

@media (max-width: 760px) {
  :root { --header-h: 72px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 82px 0; }
  .nav-shell { width: calc(100% - 28px); }
  .brand img { width: 46px; height: 46px; }
  .brand-copy strong { font-size: 11px; }
  .brand-copy small { font-size: 8px; }

  .hero { min-height: 100svh; }
  .hero-media video { object-position: 55% center; }
  .hero-shade {
    background:
      linear-gradient(180deg, rgba(5,5,5,.4) 0%, rgba(5,5,5,.5) 34%, rgba(5,5,5,.96) 84%, #050505 100%),
      linear-gradient(90deg, rgba(5,5,5,.72), rgba(5,5,5,.12));
  }
  .hero-grid { background-size: 56px 56px; opacity: .18; }
  .hero-content { padding-top: 120px; padding-bottom: 44px; }
  .eyebrow { font-size: 8px; margin-bottom: 18px; letter-spacing: .16em; }
  .eyebrow::before { width: 28px; }
  .hero h1 { font-size: clamp(56px, 18vw, 82px); line-height: .88; }
  .hero-lede { margin-top: 22px; font-size: 14px; line-height: 1.65; }
  .hero-actions { margin-top: 26px; }
  .button { min-height: 48px; padding-inline: 17px; font-size: 9px; }
  .hero-metrics {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-metrics > div {
    min-width: 0;
    padding-right: 8px;
    margin-right: 0;
  }
  .hero-metrics strong { font-size: 23px; }
  .hero-metrics span { font-size: 8px; line-height: 1.35; }
  .scroll-cue { display: none; }

  .section-header { grid-template-columns: 1fr; gap: 12px; margin-bottom: 38px; }
  .section-label { padding-top: 0; }
  .section-title-wrap { gap: 20px; }
  .section-title-wrap h2 { font-size: clamp(42px, 13vw, 58px); }
  .section-title-wrap p { font-size: 14px; line-height: 1.7; }

  .manifesto-grid { grid-template-columns: 1fr; }
  .manifesto-card {
    min-height: auto;
    padding: 25px 4px 28px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .manifesto-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .manifesto-card:last-child { border-bottom: 0; }
  .manifesto-card h3 { margin: 32px 0 9px; font-size: 21px; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 285px; padding: 25px; }
  .service-card h3 { margin-top: 64px; }

  .photo-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .project-card,
  .project-card.project-wide { min-height: 380px; }
  .project-card.project-wide { aspect-ratio: 4/5; }
  .project-card:not(.project-wide) { aspect-ratio: 4/5; }
  .project-overlay { padding: 70px 20px 20px; }
  .project-overlay h3 { font-size: 22px; }
  .work-statement { min-height: 235px; padding: 26px; }

  .video-heading {
    display: block;
    margin: 66px 0 22px;
  }
  .video-heading h3 { font-size: 30px; }
  .video-heading p { margin-top: 12px; text-align: left; }

  .video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .video-card,
  .video-landscape,
  .video-portrait,
  .video-card:nth-child(3),
  .video-card:nth-child(4) {
    grid-column: auto;
    width: 100%;
  }
  .video-landscape,
  .video-card:nth-child(4) { aspect-ratio: 16/10; }
  .video-portrait,
  .video-card:nth-child(3) { aspect-ratio: 4/5; }
  .play-button { width: 56px; height: 56px; }
  .video-meta { left: 20px; bottom: 18px; }
  .video-meta strong { font-size: 22px; }

  .process-list li {
    grid-template-columns: 54px 1fr;
    gap: 14px;
    padding: 28px 0;
  }
  .process-list li > div { grid-template-columns: 1fr; gap: 9px; }
  .process-list li > span { font-size: 24px; }
  .process-list h3 { font-size: 23px; }
  .process-list p { font-size: 12px; }

  .contact { min-height: 620px; }
  .contact h2 { font-size: clamp(52px, 15vw, 72px); }
  .contact > .container > p { font-size: 14px; }
  .contact-actions { align-items: flex-start; flex-direction: column; }

  .footer-grid { grid-template-columns: 1fr auto; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand img { width: 150px; height: 88px; }
  .footer-copy p { line-height: 1.5; }

  .media-modal { padding: 8px; }
  .modal-panel { max-height: calc(100svh - 16px); }
  .modal-toolbar { min-height: 68px; padding: 12px 12px 12px 15px; }
  .modal-toolbar h2 { font-size: 16px; }
  .modal-toolbar small { font-size: 7px; }
  .modal-close { width: 40px; height: 40px; }
  .modal-stage video { min-height: 0; }
  .modal-stage video,
  .modal-stage img { max-height: calc(100svh - 100px); }
}

@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; }
}

@supports (padding: max(0px)) {
  .site-header { padding-top: env(safe-area-inset-top); }
  .mobile-menu { padding-bottom: max(28px, env(safe-area-inset-bottom)); }
}


/* Additional portfolio media — existing website styling remains unchanged */
.media-addition-heading{margin-top:92px}

.media-addition-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.media-addition-card{
  position:relative;
  appearance:none;
  border:1px solid var(--line-soft);
  padding:0;
  background:#111;
  color:white;
  text-align:left;
  cursor:zoom-in;
  overflow:hidden;
  aspect-ratio:4/5;
  min-height:380px;
}

.media-addition-card:nth-child(4){
  grid-column:span 2;
  aspect-ratio:16/9;
}

.media-addition-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .65s var(--ease),filter .35s ease;
}

.media-addition-card:hover img{
  transform:scale(1.025);
  filter:brightness(.84);
}

.media-addition-overlay{
  position:absolute;
  inset:auto 0 0;
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:20px;
  padding:70px 24px 22px;
  background:linear-gradient(transparent,rgba(3,3,3,.86));
}

.media-addition-overlay small{
  display:block;
  color:var(--gold-bright);
  text-transform:uppercase;
  font-size:9px;
  font-weight:750;
  letter-spacing:.16em;
  margin-bottom:7px;
}

.media-addition-overlay h3{
  margin:0;
  font-family:Georgia,serif;
  font-weight:400;
  font-size:23px;
  line-height:1.16;
}

@media(max-width:900px){
  .media-addition-grid{grid-template-columns:repeat(2,1fr)}
  .media-addition-card:nth-child(4){grid-column:span 2}
}

@media(max-width:600px){
  .media-addition-heading{margin-top:66px}
  .media-addition-grid{grid-template-columns:1fr;gap:14px}
  .media-addition-card,
  .media-addition-card:nth-child(4){
    grid-column:auto;
    width:100%;
    aspect-ratio:4/5;
    min-height:360px;
  }
  .media-addition-card:nth-child(4){aspect-ratio:16/10}
  .media-addition-overlay{padding:64px 20px 19px}
  .media-addition-overlay h3{font-size:21px}
}
