/* Gollance Moda Studio - homepage
   Tokens and spacing per design handoff. No accent color, no radius, no shadows. */

:root {
  --ground: #0b0b0b;
  --ground-video: #000000;
  --text-1: #f2efe9;  /* primary  */
  --text-2: #cfcbc4;  /* secondary */
  --text-3: #8a8783;  /* tertiary  */
  --text-4: #6f6c68;  /* quaternary */
  --text-hover: #f7f4ee;
  --rule-strong: rgba(242, 239, 233, .16);
  --rule-weak: rgba(242, 239, 233, .10);
  --underline: rgba(242, 239, 233, .35);

  --gutter: 64px;   /* page horizontal padding */
  --col-gap: 80px;  /* inter-column gap */
  --section: 150px; /* between major sections */

  --ease-move: cubic-bezier(.16, .84, .24, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ground);
  color: var(--text-1);
  font-family: 'Montserrat', system-ui, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; }

/* ---- Scroll / load reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .9s ease, transform .9s var(--ease-move);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-visible { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .project-media img { transition: none; }
}

/* ---- Shared caps label / caption ---- */
.label,
.eyebrow,
.caption-primary,
.showreel-caption span,
.project-caption span,
.work-pub {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-3);
}
.caption-primary { color: var(--text-1); }
.label--block { display: block; margin-bottom: 36px; }

/* ================= 1. Navigation ================= */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--gutter);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}
.wordmark { display: inline-flex; align-items: center; }
.wordmark-logo { height: 22px; width: auto; display: block; }
.nav-links { display: flex; gap: 38px; }
.nav-links a { transition: opacity .3s ease; }
.nav-links a:hover { opacity: .45; }
.nav-muted { opacity: .55; }

/* Hamburger toggle - hidden on desktop, shown < 900px */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 26px;
  height: 26px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text-1);
  transition: transform .3s ease, opacity .3s ease;
}
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-backdrop { display: none; }

/* ================= 2. Hero ================= */
.hero {
  padding: 120px var(--gutter) 96px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 420px);
  gap: var(--col-gap);
  align-items: end;
}
.hero h1 {
  margin: 0;
  font-weight: 200;
  font-size: clamp(2.125rem, 1.05rem + 2.75vw, 3.5rem); /* 34px → ~54px → 56px */
  line-height: 1.16;
  letter-spacing: -0.035em;
  max-width: 22ch;
}
.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-bottom: 10px;
}
.hero-body {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
  color: var(--text-2);
}
.eyebrow { margin: 0; }
.link-underline {
  align-self: flex-start;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-1);
  border-bottom: 1px solid var(--underline);
  padding-bottom: 7px;
  transition: opacity .3s ease;
}
.link-underline:hover { opacity: .5; }

/* ================= 3. Showreel ================= */
.showreel-frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ground-video);
}
.showreel-frame video {
  width: 100%;
  height: 100%;
  object-fit: contain; /* deliberate: reel letterboxes, never cropped */
}
.showreel-caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 22px var(--gutter) 0;
}

/* ================= 4. Approach ================= */
.approach {
  padding: var(--section) var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--col-gap);
}
.statement {
  margin: 0;
  font-weight: 300;
  font-size: clamp(1.375rem, 1.15rem + 0.8vw, 1.625rem); /* 22px → 26px */
  line-height: 1.45;
  letter-spacing: -0.005em;
  max-width: 34ch;
}

/* ================= Ruled section rows ================= */
.section-head { padding: 0 var(--gutter) 28px; }
.ruled-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid var(--rule-strong);
  padding-bottom: 18px;
}
.label-primary { color: var(--text-1); }

/* ================= 5. Latest Projects ================= */
.project-pair {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  padding: 0 var(--gutter);
  align-items: start;
}
.project { margin: 0; }
.project-link { display: block; color: inherit; }
.project-staggered { margin-top: 120px; } /* intentional stagger */
.project-media { overflow: hidden; }
.project-media img {
  width: 100%;
  height: auto;
  transition: transform 1.2s var(--ease-move);
}
.project-media--fixed { height: 620px; }
.project-media--fixed img { height: 100%; object-fit: cover; }
.project-media--feature { aspect-ratio: 1075 / 1512; } /* portrait placeholder; real image uses natural aspect */
.project-media--feature .media-placeholder { min-height: 0; }
.project:hover .project-media img { transform: scale(1.03); }
.project-caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
}
.project-num { color: var(--text-4); letter-spacing: 0.22em; margin-right: 14px; }
/* Placeholder for the not-yet-supplied "I Rise" still */
.media-placeholder {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #141414;
  color: var(--text-3);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}
.media-placeholder-note { color: var(--text-4); letter-spacing: 0.22em; }

/* ================= 6. Selected work index ================= */
.selected-work { padding: var(--section) var(--gutter) 0; }
.ruled-row--strong { padding-bottom: 20px; }
.work-index { display: flex; flex-direction: column; }
.work-row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 300px;
  align-items: baseline;
  gap: 32px;
  padding: 26px 0;
  border-bottom: 1px solid var(--rule-weak);
  color: var(--text-2);
  transition: padding-left .5s var(--ease-move), color .4s ease;
}
.work-row:hover { padding-left: 18px; color: var(--text-hover); }
.work-num {
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--text-4);
}
.work-title {
  font-weight: 300;
  font-size: 22px;
  letter-spacing: -0.005em;
  color: var(--text-1);
}
.work-pub { letter-spacing: 0.24em; }

/* ================= 7. Services & Clients ================= */
.services-clients {
  padding: var(--section) var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--col-gap);
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-weight: 300;
  font-size: 18px;
  letter-spacing: -0.005em;
}
.client-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-2);
}
.client-grid .muted { color: var(--text-4); }
.label--pubs { margin-top: 56px; margin-bottom: 0; }
.published-in {
  margin: 16px 0 0;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.01em;
}

/* ================= 8. Footer ================= */
.footer {
  border-top: 1px solid var(--rule-strong);
  padding: 72px var(--gutter) 52px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(200px, 320px);
  gap: var(--col-gap);
  align-items: end;
}
.footer-label { display: block; margin-bottom: 20px; }
.footer-email {
  font-weight: 300;
  font-size: 24px;
  letter-spacing: -0.005em;
  transition: opacity .3s ease;
}
.link-fade:hover { opacity: .5; }
.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-3);
}
.footer-ig { color: var(--text-1); }

/* ================= Project page ================= */
.project-hero {
  height: 86vh;
  min-height: 460px;
  overflow: hidden;
  background: var(--ground-video);
}
.project-hero img { width: 100%; height: 100%; object-fit: cover; }
.project-hero.is-video { height: auto; min-height: 0; aspect-ratio: 16 / 9; }
.project-hero video { width: 100%; height: 100%; object-fit: cover; display: block; }
/* YouTube background hero — full 16:9 frame, uncropped (as it appears on YouTube). */
.project-hero.is-youtube {
  position: relative;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 0;
  overflow: hidden;
  background: #000;
}
.project-hero.is-youtube iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}
/* Poster covers the first ~2s so YouTube's title flash never shows, then fades to the film. */
.project-hero.is-youtube .yt-cover {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 2;
  pointer-events: none;
  animation: ytCoverOut .8s ease 2s forwards;
}
@keyframes ytCoverOut { to { opacity: 0; visibility: hidden; } }
/* Vertical (9:16) film — centered on black, capped height */
.project-hero.is-video-portrait {
  height: auto;
  min-height: 0;
  aspect-ratio: auto;
  overflow: hidden;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}
.project-hero.is-video-portrait video {
  width: auto;
  height: min(84vh, 860px);
  max-width: 100%;
  object-fit: contain;
}

.project-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--col-gap);
  padding: var(--section) var(--gutter);
  align-items: start;
}
.project-intro h1 {
  margin: 0;
  font-weight: 200;
  font-size: clamp(2rem, 1rem + 2.5vw, 3.25rem); /* ~32 → ~52px */
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 18ch;
}
.project-meta-line { margin: 0 0 26px; }
.project-desc {
  margin: 0;
  font-weight: 300;
  font-size: clamp(1.0625rem, 0.95rem + 0.5vw, 1.1875rem); /* ~17 → 19px, readable for longer copy */
  line-height: 1.65;
  letter-spacing: -0.005em;
  color: var(--text-2);
  max-width: 46ch;
}

.project-gallery {
  padding: 0 var(--gutter) var(--section);
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.project-gallery figure { margin: 0; overflow: hidden; }
.gallery-full img { width: 100%; height: auto; }
.gallery-pair {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}
.gallery-pair figure { margin: 0; }
.gallery-pair img { width: 100%; height: 100%; object-fit: cover; display: block; }

.project-nextnav {
  border-top: 1px solid var(--rule-strong);
  padding: 60px var(--gutter);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}
.project-nextnav .next-title {
  font-weight: 300;
  font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2rem);
  letter-spacing: -0.01em;
  transition: opacity .3s ease;
}
.project-nextnav a:hover .next-title { opacity: .5; }

.project-scope {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--col-gap);
  padding: 0 var(--gutter) var(--section);
  align-items: start;
}
.scope-lead {
  margin: 18px 0 0;
  max-width: 34ch;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.65;
  letter-spacing: 0.01em;
  color: var(--text-3);
}
.scope-list { list-style: none; margin: 0; padding: 0; max-width: 460px; }
.scope-list li {
  padding: 13px 0;
  border-top: 1px solid var(--rule-weak);
  font-weight: 300;
  font-size: 14px;
  letter-spacing: -0.005em;
  color: var(--text-1);
}
.scope-list li:last-child { border-bottom: 1px solid var(--rule-weak); }

.project-credits { padding: 0 var(--gutter) var(--section); }
.credit-intro { margin: 22px 0 0; font-size: 13px; font-weight: 300; color: var(--text-3); letter-spacing: 0.01em; }
.credits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px 40px;
  max-width: 920px;
  margin-top: 32px;
}
.credit { display: flex; flex-direction: column; gap: 6px; }
.credit-role {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
}
.credit-name {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: -0.005em;
  color: var(--text-1);
}

/* ================= Projects index ================= */
.projects-index-head { padding: var(--section) var(--gutter) 40px; }
.projects-index-head h1 {
  margin: 0 0 18px;
  font-weight: 200;
  font-size: clamp(2.125rem, 1.05rem + 2.75vw, 3.5rem);
  line-height: 1.16;
  letter-spacing: -0.035em;
}
.proj-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px var(--col-gap);
  padding: 0 var(--gutter) var(--section);
}
.proj-tile-media {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #141414;
}
.proj-tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-move);
}
.proj-tile:hover .proj-tile-media img { transform: scale(1.03); }
.proj-tile-cap {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-top: 18px;
}
.proj-tile-num { font-size: 9.5px; letter-spacing: 0.22em; color: var(--text-4); }
.proj-tile-title {
  font-weight: 300;
  font-size: 18px;
  letter-spacing: -0.005em;
  color: var(--text-1);
}
.proj-tile-meta {
  margin-left: auto;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ================= Interior pages (services / approach / journal / contact) ================= */
.page-head { padding: var(--section) var(--gutter) 56px; }
.page-head .label { display: block; margin-bottom: 22px; }
.page-head h1 {
  margin: 0;
  font-weight: 200;
  font-size: clamp(1.875rem, 1rem + 2.3vw, 2.875rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}
.page-intro {
  margin: 34px 0 0;
  font-weight: 300;
  font-size: clamp(1.0625rem, 0.95rem + 0.45vw, 1.25rem);
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--text-2);
  max-width: 46ch;
}

/* Services */
.services-list { padding: 0 var(--gutter) var(--section); }
.service-block {
  display: grid;
  grid-template-columns: 56px minmax(0, 1.1fr) minmax(0, 1.5fr);
  gap: 40px;
  padding: 46px 0;
  border-top: 1px solid var(--rule-strong);
}
.services-list .service-block:last-child { border-bottom: 1px solid var(--rule-strong); }
.service-num { font-size: 9.5px; letter-spacing: 0.22em; color: var(--text-4); padding-top: 9px; }
.service-name { margin: 0; font-weight: 300; font-size: clamp(1.1875rem, 0.95rem + 0.8vw, 1.4375rem); letter-spacing: -0.01em; color: var(--text-1); }
.service-desc { margin: 0 0 26px; font-weight: 300; font-size: 14px; line-height: 1.65; color: var(--text-2); max-width: 44ch; }
.service-points { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.service-points li { font-size: 13px; font-weight: 300; letter-spacing: 0.01em; color: var(--text-3); }

/* Approach */
.approach-banner { padding: 0 var(--gutter) var(--section); margin: 0; display: flex; justify-content: center; }
.approach-banner img { width: 100%; max-width: 460px; height: auto; display: block; }
.approach-page { padding: 0 var(--gutter) var(--section); }
.approach-section { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.7fr); gap: var(--col-gap); padding: 60px 0; border-top: 1px solid var(--rule-strong); }
.essay-body p { margin: 0 0 20px; font-weight: 300; font-size: 14px; line-height: 1.75; color: var(--text-2); max-width: 62ch; }
.essay-body p:last-child { margin-bottom: 0; }
.clients-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 32px; font-size: 14px; font-weight: 300; line-height: 1.6; color: var(--text-2); max-width: 520px; }

/* Journal */
.journal-list { padding: 0 var(--gutter) var(--section); display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 64px var(--col-gap); align-items: start; }
.journal-card-media { overflow: hidden; background: #141414; }
.journal-card-media img { width: 100%; height: auto; display: block; transition: transform 1.2s var(--ease-move); }
.journal-card:hover .journal-card-media img { transform: scale(1.03); }
.journal-card-meta { display: flex; gap: 14px; padding-top: 16px; font-size: 9.5px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-3); }
.journal-card-title { margin: 8px 0 0; font-weight: 300; font-size: clamp(1.0625rem, 0.95rem + 0.45vw, 1.25rem); line-height: 1.3; letter-spacing: -0.01em; color: var(--text-1); max-width: 30ch; }

/* Article */
.article-wrap { padding: 0 var(--gutter); max-width: 860px; margin: 0 auto; }
.article-back { padding-top: 40px; }
.article-head { padding: 20px 0 44px; border-bottom: 1px solid var(--rule-strong); }
.article-head h1 { margin: 0; font-weight: 200; font-size: clamp(1.5rem, 1rem + 1.5vw, 2.125rem); line-height: 1.15; letter-spacing: -0.03em; max-width: 24ch; }
.article-meta { margin-top: 26px; font-size: 9.5px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: var(--text-3); }
.article-body { padding: 48px 0 var(--section); }
.article-body p { margin: 0 0 24px; font-weight: 300; font-size: 14px; line-height: 1.8; color: var(--text-2); }
.article-body h2 { margin: 52px 0 18px; font-weight: 500; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-3); }
.article-quote { margin: 44px 0; font-weight: 300; font-size: clamp(1.125rem, 1rem + 0.65vw, 1.4375rem); line-height: 1.42; letter-spacing: -0.01em; color: var(--text-1); }
.article-figure { margin: 44px 0; }
.article-figure img { width: 100%; height: auto; display: block; }
.article-figure figcaption { margin-top: 12px; font-size: 9.5px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: var(--text-3); }
/* Article images — one consistent 4:5 portrait plate, same width, evenly spaced */
.article-page { overflow-x: clip; }
.article-img { margin: 56px auto; width: 100%; }
.article-img img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; background: #141414; }

/* Contact */
.contact-grid { padding: 0 var(--gutter) var(--section); display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.2fr); gap: var(--col-gap); align-items: start; }
.contact-details { display: flex; flex-direction: column; gap: 34px; }
.contact-detail .label { display: block; margin-bottom: 12px; }
.contact-detail a, .contact-detail p { margin: 0; font-weight: 300; font-size: 15.5px; letter-spacing: -0.005em; color: var(--text-1); transition: opacity .3s ease; }
.contact-detail a:hover { opacity: .5; }

.contact-form { display: grid; gap: 24px; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field label { font-size: 9.5px; font-weight: 500; letter-spacing: 0.26em; text-transform: uppercase; color: var(--text-3); }
.field input, .field textarea {
  background: transparent; border: 0; border-bottom: 1px solid var(--rule-strong);
  color: var(--text-1); font-family: inherit; font-size: 14px; font-weight: 300;
  padding: 9px 0; outline: none; transition: border-color .3s ease;
}
.field input:focus, .field textarea:focus { border-color: var(--text-2); }
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-4); }
.form-submit {
  justify-self: start; margin-top: 6px; background: transparent; border: 1px solid var(--underline);
  color: var(--text-1); font-size: 9.5px; font-weight: 500; letter-spacing: 0.26em; text-transform: uppercase;
  padding: 15px 30px; cursor: pointer; transition: background .3s ease, color .3s ease;
}
.form-submit:hover { background: var(--text-1); color: var(--ground); }
.form-status { font-size: 13px; font-weight: 300; color: var(--text-2); min-height: 18px; }

/* ================= Tablet / mid-size (901–1180px) ================= */
@media (min-width: 901px) and (max-width: 1180px) {
  :root { --gutter: 48px; --col-gap: 56px; --section: 120px; }
  .hero { padding: 96px var(--gutter) 80px; }
}

/* ================= Responsive (< 900px) ================= */
@media (max-width: 900px) {
  :root { --gutter: 24px; --section: 96px; }

  .nav {
    align-items: center;          /* logo left, toggle right, one row */
    padding: 18px var(--gutter);
  }
  .wordmark-logo { height: 20px; }

  .nav-toggle { display: flex; }

  /* Nav links become a right-side drawer */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 30;
    height: 100vh;
    height: 100dvh;
    width: min(78vw, 300px);
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
    padding: 84px var(--gutter) 40px;
    background: #0e0e0e;
    border-left: 1px solid var(--rule-strong);
    font-size: 12px;
    transform: translateX(100%);
    transition: transform .4s var(--ease-move);
  }
  body.menu-open .nav-links { transform: translateX(0); }
  body.menu-open { overflow: hidden; }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 20;
    background: rgba(0, 0, 0, .55);
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease;
  }
  body.menu-open .nav-backdrop { opacity: 1; pointer-events: auto; }

  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 64px var(--gutter) 56px;
  }

  .approach,
  .services-clients { grid-template-columns: 1fr; gap: 40px; }

  .footer {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
  }
  .footer-email { font-size: 22px; word-break: break-word; }

  .project-pair { grid-template-columns: 1fr; gap: 56px; }
  .project-staggered { margin-top: 0; }
  .project-media--fixed { height: auto; }
  .project-media--fixed img { height: auto; }

  /* Work index: two lines per row (title, then publication) */
  .work-row {
    grid-template-columns: 40px 1fr;
    gap: 8px 20px;
  }
  .work-title { grid-column: 2; font-size: 20px; }
  .work-pub { grid-column: 2; }
  .work-row:hover { padding-left: 10px; }

  /* Project page */
  .project-hero { height: 62vh; min-height: 340px; }
  .project-intro { grid-template-columns: 1fr; gap: 28px; }
  .project-scope { grid-template-columns: 1fr; gap: 32px; }
  /* Keep the full-width / paired rhythm on mobile — don't collapse pairs to one column */
  .project-gallery { gap: 16px; }
  .gallery-pair { gap: 10px; }

  /* Projects index — keep a 2-up grid, stack the caption */
  .proj-grid { gap: 26px 12px; }
  .proj-tile-cap { flex-direction: column; align-items: flex-start; gap: 5px; padding-top: 12px; }
  .proj-tile-num { order: -1; }
  .proj-tile-title { font-size: 14px; }
  .proj-tile-meta { margin-left: 0; }

  /* Interior pages */
  .page-head { padding: 88px var(--gutter) 36px; }
  .service-block { grid-template-columns: 34px 1fr; gap: 6px 16px; padding: 34px 0; }
  .service-detail { grid-column: 1 / -1; margin-top: 18px; }
  .approach-section { grid-template-columns: 1fr; gap: 24px; }
  .journal-list { grid-template-columns: 1fr; gap: 44px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}
