@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,500;0,6..96,600;0,6..96,700;1,6..96,400&family=Jost:wght@200;300;400;500&display=swap');

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

:root {
  --ink: #1c1c1e;
  --navy: #f5f3ef;        /* main background — warm white */
  --navy-deep: #e7e4dd;   /* grey band */
  --slate: #4a4b52;       /* mid-grey accent */
  --powder: #6d6e74;      /* muted text — grey */
  --powder-dim: #9a9ba0;  /* faint grey */
  --cream: #1c1c1e;       /* primary text — dark */
  --cream-soft: #35363c;
  --paper: #ffffff;       /* white band / gate */
  --gold: #a98f63;
  --line: rgba(28, 28, 30, 0.14);
  --nav-height: 76px;
  --display: 'Bodoni Moda', 'Didot', Georgia, serif;
  --sans: 'Jost', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--navy);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  letter-spacing: 0.02em;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--cream); }
a:hover { color: var(--powder); }

/* ─────────────── NAV ─────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(245, 243, 239, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
}

.nav-logo {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-decoration: none;
  color: var(--cream);
  text-transform: uppercase;
  padding-left: 0.34em;
}

.nav-links {
  display: flex;
  gap: clamp(24px, 4vw, 52px);
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.25s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--powder); }
.nav-links a.active::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
  margin-right: -10px;
  touch-action: manipulation;
}
.hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--cream);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height); left: 0; right: 0; bottom: 0;
  background: var(--navy-deep);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--display);
  font-size: 38px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
}

/* ─────────────── PAGE HERO (gallery pages) ─────────────── */
.page-head {
  padding: calc(var(--nav-height) + clamp(48px, 9vw, 120px)) clamp(24px, 6vw, 80px) clamp(30px, 5vw, 60px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.page-head .kicker {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--powder-dim);
  margin-bottom: 20px;
}
.page-head h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(52px, 11vw, 150px);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.page-head h1 .dot { color: var(--gold); }
.page-head .lede {
  max-width: 300px;
  font-size: 12.5px;
  line-height: 2;
  color: var(--powder);
  letter-spacing: 0.04em;
  text-align: right;
}

/* ─────────────── GALLERY GRID ─────────────── */
main { min-height: calc(100vh - var(--nav-height)); }

.gallery {
  padding: clamp(20px, 4vw, 48px) clamp(24px, 6vw, 80px) clamp(60px, 9vw, 120px);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.gallery-col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--navy-deep);
  touch-action: manipulation;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.7s cubic-bezier(0.2,0.7,0.2,1), opacity 0.5s;
  opacity: 0;
}
.gallery-item img.loaded { opacity: 1; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(18,22,31,0.35), transparent 45%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }

/* ─────────────── LIGHTBOX ─────────────── */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(12, 15, 21, 0.97);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw; max-height: 88vh;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.4s;
  box-shadow: 0 30px 90px rgba(0,0,0,0.6);
}
.lightbox-img.loaded { opacity: 1; }
.lightbox-close {
  position: absolute; top: 24px; right: 32px;
  font-size: 30px; color: #ece7dd;
  cursor: pointer; background: none; border: none;
  font-weight: 200; line-height: 1;
  opacity: 0.6; transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: #ece7dd;
  font-size: 30px; cursor: pointer;
  opacity: 0.45; transition: opacity 0.2s;
  padding: 20px; font-weight: 200;
  touch-action: manipulation;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { opacity: 1; }
.lightbox-counter {
  position: absolute; bottom: 26px; left: 50%;
  transform: translateX(-50%);
  color: rgba(236,231,221,0.55);
  font-size: 11px; letter-spacing: 0.24em;
}

/* ─────────────── FOOTER ─────────────── */
.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: clamp(32px, 5vw, 56px) clamp(24px, 6vw, 80px);
  border-top: 1px solid var(--line);
  text-align: center;
}
.site-footer .foot-brand {
  display: block;
  align-self: stretch;
  width: auto;
  height: auto;
  margin-inline: calc(-1 * clamp(24px, 6vw, 80px));
}
.site-footer .foot-brand text {
  font-family: var(--display);
  font-weight: 700;
  font-size: 150px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  fill: var(--cream);
}
.site-footer .foot-copyright {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--powder-dim);
}
.foot-socials { display: flex; gap: 28px; }
.footer-social {
  display: flex; align-items: center; gap: 9px;
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; text-decoration: none;
  color: var(--powder-dim);
  transition: color 0.25s;
  touch-action: manipulation;
}
.footer-social:hover { color: var(--cream); }

/* ─────────────── CONTACT PAGE ─────────────── */
.contact-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--nav-height));
  min-height: calc(100dvh - var(--nav-height));
  flex-direction: column;
  gap: 26px;
  text-align: center;
  padding: 100px 40px 60px;
}
.contact-page .kicker {
  font-size: 11px; letter-spacing: 0.34em;
  text-transform: uppercase; color: var(--powder-dim);
}
.contact-page h1 {
  font-family: var(--display);
  font-size: clamp(44px, 9vw, 110px);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 0.95;
}
.contact-page p {
  font-size: 13px; letter-spacing: 0.06em;
  color: var(--powder); max-width: 420px; line-height: 2;
}
.contact-email {
  font-family: var(--display);
  font-size: clamp(22px, 4vw, 34px);
  letter-spacing: 0.04em;
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: color 0.25s, letter-spacing 0.4s;
}
.contact-email:hover { color: var(--gold); letter-spacing: 0.08em; }

/* contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: min(560px, 100%);
  margin-top: 14px;
  text-align: left;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 560px) {
  .contact-form .form-row { grid-template-columns: 1fr; }
}
.contact-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-form .bot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-form label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--powder-dim);
}
.contact-form input,
.contact-form textarea {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px; /* ≥16px prevents iOS auto-zoom on focus */
  letter-spacing: 0.04em;
  color: var(--cream);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 10px 0 12px;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.3s;
}
.contact-form textarea { resize: vertical; line-height: 1.8; }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.form-submit {
  align-self: center;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  background: transparent;
  border: 1px solid var(--line);
  padding: 16px 42px;
  min-height: 48px;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, letter-spacing 0.4s;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.form-submit:hover {
  border-color: var(--gold);
  color: var(--gold);
  letter-spacing: 0.34em;
}
.form-submit:disabled { opacity: 0.5; cursor: default; }
.form-status {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--powder);
  min-height: 1em;
}

/* ─────────────── PAGE FADE ─────────────── */
.page-fade { animation: fadeIn 0.7s ease forwards; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─────────────── SCROLL REVEAL ─────────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(38px);
    transition: opacity 1s cubic-bezier(0.2,0.7,0.2,1),
                transform 1s cubic-bezier(0.2,0.7,0.2,1);
    will-change: opacity, transform;
  }
  .reveal.in { opacity: 1; transform: none; }

  /* staggered children (filmstrip cells, review figs, gallery run) */
  .reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s cubic-bezier(0.2,0.7,0.2,1),
                transform 0.9s cubic-bezier(0.2,0.7,0.2,1);
  }
  .reveal-stagger.in > * { opacity: 1; transform: none; }
  .reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
  .reveal-stagger.in > *:nth-child(2) { transition-delay: 0.16s; }
  .reveal-stagger.in > *:nth-child(3) { transition-delay: 0.27s; }
  .reveal-stagger.in > *:nth-child(4) { transition-delay: 0.38s; }

  /* big serif titles slide in with a soft mask feel */
  .reveal-title {
    opacity: 0;
    transform: translateY(46px);
    transition: opacity 1.2s cubic-bezier(0.2,0.7,0.2,1),
                transform 1.2s cubic-bezier(0.2,0.7,0.2,1);
  }
  .reveal-title.in { opacity: 1; transform: none; }

  /* hero entrance on load */
  .hero-title { animation: heroRise 1.3s cubic-bezier(0.2,0.7,0.2,1) both; }
  .hero-title .rule { transform-origin: left; animation: ruleGrow 1.1s 0.5s cubic-bezier(0.2,0.7,0.2,1) both; }
  .hero-aside { animation: heroRise 1.2s 0.25s cubic-bezier(0.2,0.7,0.2,1) both; }
  .hero-scroll { animation: fadeIn 1s 0.6s ease both; }
}

@keyframes heroRise {
  from { opacity: 0; transform: translateY(48px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes ruleGrow {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 0.5; }
}

/* ═════════════ GATE (index) ═════════════ */
.gate {
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--paper);
  color: var(--ink);
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  overflow: hidden;
}
.gate-inner {
  position: relative;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 130px 1fr;
}
/* left rail */
.gate-rail {
  position: relative;
  border-right: 1px solid rgba(18,22,31,0.28);
  padding: 40px 0 40px 0;
}
.gate-time {
  position: absolute;
  left: 26px; bottom: 46px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: flex;
  align-items: flex-end;
  gap: 20px;
}
.gate-time .big {
  font-family: var(--display);
  font-size: 46px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
}
.gate-time .stack {
  display: flex; flex-direction: column; gap: 4px;
  font-family: var(--display);
  font-size: 18px; letter-spacing: 0.12em;
}
.gate-time .faint {
  position: absolute;
  left: 78px; bottom: 46px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--display);
  font-size: 40px;
  color: rgba(18,22,31,0.14);
  letter-spacing: 0.08em;
}
.gate-tag {
  position: absolute;
  top: 120px; left: 30px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(18,22,31,0.5);
}

/* right stage */
.gate-stage {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.gate-photo {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  clip-path: inset(0);
}
.gate-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
  display: block;
}
/* giant outlined word behind + overlapping */
.gate-word {
  position: absolute;
  z-index: 3;
  left: 24px; bottom: 8px;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(200px, 32vw, 400px);
  line-height: 0.74;
  letter-spacing: 0;
  color: transparent;
  -webkit-text-stroke: 2px #f0ede6;
  text-stroke: 2px #f0ede6;
  pointer-events: none;
  white-space: nowrap;
  opacity: 0.92;
}
.gate-headtag {
  position: absolute;
  z-index: 4;
  top: 60px; left: 20px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  max-width: 300px;
}
.gate-headtag .rule {
  width: 1px; height: 40px; background: var(--ink);
  margin: 0 auto 14px;
}
.gate-headtag h2 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.gate-headtag p {
  font-family: var(--display);
  font-size: 15px;
  line-height: 1.5;
  max-width: 210px;
  color: rgba(18,22,31,0.72);
}
/* enter button */
.gate-enter {
  position: absolute;
  z-index: 5;
  bottom: 40px; right: 40px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 26px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: gap 0.3s, background 0.3s;
}
.gate-enter:hover { gap: 22px; background: var(--slate); color: var(--paper); }
.gate-brand {
  position: absolute;
  z-index: 5;
  top: 34px; right: 40px;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
}

/* ═════════════ HOME LANDING ═════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 1; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  filter: saturate(0.92) brightness(1.0);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--navy) 4%, rgba(245,243,239,0.75) 26%, rgba(245,243,239,0.12) 58%, rgba(245,243,239,0.28) 100%);
}
.hero-scroll {
  position: absolute;
  z-index: 3;
  top: calc(var(--nav-height) + 30px);
  left: clamp(24px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--powder);
}
.hero-scroll .idx { color: var(--cream); font-weight: 400; }
.hero-scroll .mut { color: rgba(28,28,30,0.32); }
.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 clamp(24px, 6vw, 80px) clamp(48px, 8vw, 100px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(30px, 9.2vw, 178px);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  display: flex;
  align-items: baseline;
  gap: 0.15em;
  min-width: 0;
}
.hero-title .rule {
  flex: 1 1 0;
  height: 1px;
  background: var(--cream);
  min-width: 0;
  margin-bottom: 0.35em;
  opacity: 0.5;
}
.hero-aside {
  max-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-bottom: 0.5em;
}
.hero-aside p {
  font-size: 12px;
  line-height: 1.9;
  color: var(--powder);
  letter-spacing: 0.04em;
}
.hero-btn {
  width: 66px; height: 66px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(28,28,30,0.04);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}
.hero-btn:hover { background: rgba(28,28,30,0.08); transform: scale(1.06); }

/* section shells */
.band {
  padding: clamp(70px, 11vw, 150px) clamp(24px, 6vw, 80px);
  position: relative;
}
.band--deep { background: var(--navy-deep); }

.about {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}
.about-intro {
  grid-column: 1 / -1;
  max-width: 560px;
  font-size: 13px;
  line-height: 2.1;
  color: var(--powder);
  letter-spacing: 0.03em;
  margin-bottom: clamp(30px, 5vw, 60px);
}
.about-photo { overflow: hidden; }
.about-photo img {
  width: 100%; display: block;
  filter: saturate(0.9);
}
.about-right { position: relative; }
.about-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: clamp(24px, 4vw, 48px);
}
.about-cols p {
  font-size: 11.5px;
  line-height: 1.95;
  color: var(--powder);
  letter-spacing: 0.03em;
}
.about-bigtitle {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(60px, 12vw, 168px);
  line-height: 0.86;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-align: right;
}

/* dedicated about page */
.about-page {
  background: var(--paper);
  color: var(--ink);
}
.about-page-hero {
  min-height: 100vh;
  padding-top: var(--nav-height);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}
.about-page-copy {
  padding: clamp(72px, 10vw, 142px) clamp(28px, 6vw, 88px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.about-page-kicker {
  margin-bottom: clamp(34px, 6vw, 76px);
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(28, 28, 30, 0.48);
}
.about-page-copy h1 {
  max-width: 10.5ch;
  font-family: var(--display);
  font-size: clamp(54px, 6.8vw, 104px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.025em;
}
.about-page-copy h1 .dot { color: var(--gold); }
.about-page-lede {
  max-width: 42ch;
  margin-top: clamp(34px, 5vw, 64px);
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  line-height: 2;
  color: rgba(28, 28, 30, 0.66);
}
.about-page-image {
  min-height: calc(100vh - var(--nav-height));
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
}
.about-page-image img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: 100% center;
  filter: saturate(0.9);
}
.about-page-image figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  padding: 9px 12px;
  background: rgba(245, 243, 239, 0.86);
  backdrop-filter: blur(8px);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.about-page-story {
  padding: clamp(88px, 12vw, 170px) clamp(28px, 8vw, 120px);
  display: grid;
  grid-template-columns: minmax(120px, 0.55fr) minmax(280px, 1.2fr) minmax(140px, 0.55fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: start;
  background: var(--navy-deep);
}
.about-page-index {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--powder);
}
.about-page-index span {
  width: 42px;
  height: 1px;
  background: var(--line);
}
.about-page-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 54px);
}
.about-page-text p {
  font-size: 13px;
  line-height: 2.05;
  color: rgba(28, 28, 30, 0.72);
}
.about-page-signoff {
  align-self: end;
  font-family: var(--display);
  font-size: clamp(26px, 3.2vw, 46px);
  font-style: italic;
  line-height: 1.05;
  color: var(--gold);
}

/* filmstrip */
.strip-head {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 26px;
}
.strip-head .k {
  font-size: 11px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--powder-dim);
}
.strip-head .line { flex: 1; height: 1px; background: var(--line); }
.filmstrip {
  width: 100%;
  overflow: hidden;
}
.filmstrip-track {
  display: flex;
  width: max-content;
  animation: filmstrip-scroll var(--carousel-duration, 500s) linear infinite;
  will-change: transform;
}
.filmstrip-set {
  display: flex;
  gap: 16px;
  padding-right: 16px;
}
.filmstrip .cell {
  flex: 0 0 clamp(220px, 22.5vw, 320px);
  overflow: hidden;
  aspect-ratio: 3 / 4.4;
  background: var(--navy);
}
.filmstrip .cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2,0.7,0.2,1);
  filter: saturate(0.85) brightness(0.92);
}
.filmstrip .cell:hover img { transform: scale(1.06); }
.filmstrip:hover .filmstrip-track { animation-play-state: paused; }
@keyframes filmstrip-scroll {
  to { transform: translate3d(-50%, 0, 0); }
}
.strip-vlabel {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--powder-dim);
}

/* creative approach */
.band--paper { background: var(--paper); color: var(--ink); }
.approach {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.approach-photo > img {
  width: 100%;
  display: block;
  filter: saturate(0.9);
}
.approach-body {
  display: flex;
  flex-direction: column;
  gap: clamp(34px, 5vw, 64px);
}
.approach-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.approach-kicker {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(18,22,31,0.5);
}
.approach-lede {
  max-width: 15ch;
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.04;
}
.approach-copy {
  max-width: 420px;
  font-size: 12.5px;
  line-height: 2.05;
  color: rgba(18,22,31,0.72);
  letter-spacing: 0.02em;
}
.approach-figs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}
.approach-fig .thumb { overflow: hidden; }
.approach-fig img { width: 100%; display: block; }
.approach-caption {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  row-gap: 7px;
  margin-top: 16px;
}
.approach-number,
.approach-caption strong {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(18,22,31,0.5);
}
.approach-caption strong {
  color: var(--ink);
  font-weight: 500;
}
.approach-caption p {
  grid-column: 2;
  max-width: 34ch;
  font-size: 11px;
  line-height: 1.75;
  color: rgba(18,22,31,0.62);
}
.approach-title {
  grid-column: 1 / -1;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(48px, 12vw, 172px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-top: clamp(30px, 5vw, 60px);
}
.approach-title .dot { color: var(--gold); }

/* CTA */
.cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.cta .k { font-size: 11px; letter-spacing: 0.34em; text-transform: uppercase; color: var(--powder-dim); }
.cta h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 8vw, 96px);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  max-width: 14ch;
}
.cta-link {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  border: 1px solid var(--line);
  padding: 18px 40px;
  transition: background 0.3s, gap 0.3s;
}
.cta-link:hover { background: rgba(28,28,30,0.05); }

/* ─────────────── FLOATING MOBILE BAR ─────────────── */
.mobile-bar { display: none; }

/* ─────────────── RESPONSIVE ─────────────── */
@media (max-width: 1000px) {
  .about { grid-template-columns: 1fr; }
  .about-bigtitle { text-align: left; }
  .about-page-hero { grid-template-columns: 1fr; }
  .about-page-image { min-height: min(78vh, 820px); }
  .about-page-story { grid-template-columns: 1fr 2.2fr; }
  .about-page-signoff { grid-column: 2; }
  .approach { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .hamburger { display: none; }
  .mobile-menu { display: none; }

  .mobile-bar {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(14px + env(safe-area-inset-bottom));
    z-index: 90;
    display: flex;
    gap: 2px;
    padding: 5px;
    max-width: calc(100vw - 24px);
    background: rgba(245, 243, 239, 0.9);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border: 1px solid var(--line);
    box-shadow: 0 12px 32px rgba(28, 28, 30, 0.14);
  }
  .mobile-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 clamp(5px, 1.8vw, 10px);
    font-size: 9px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    color: var(--powder);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    transition: color 0.25s, background 0.25s;
  }
  .mobile-bar a.active {
    background: var(--cream);
    color: var(--navy);
  }

  /* keep content clear of the floating bar */
  .site-footer { padding-bottom: calc(clamp(32px, 5vw, 56px) + 78px + env(safe-area-inset-bottom)); }
  .contact-page { padding-bottom: calc(60px + 78px + env(safe-area-inset-bottom)); }

  .filmstrip .cell { flex-basis: min(72vw, 320px); }
  .about-cols { grid-template-columns: 1fr; }
  .about-page-copy { padding-top: 64px; }
  .about-page-story { grid-template-columns: 1fr; }
  .about-page-text { grid-template-columns: 1fr; }
  .about-page-signoff { grid-column: 1; margin-top: 12px; }
  .hero-inner { flex-direction: column; align-items: flex-start; }
  .gate-inner { grid-template-columns: 60px 1fr; }
  .gate-time .big { font-size: 34px; }
  .gate-time .faint { display: none; }
}
@media (max-width: 560px) {
  .gallery { padding-left: 20px; padding-right: 20px; }
  .approach-figs { grid-template-columns: 1fr; }
  .page-head { flex-direction: column; align-items: flex-start; }
  .page-head .lede { text-align: left; }
  .gate-inner { grid-template-columns: 44px 1fr; }
  .gate-headtag { display: none; }
  .gate-enter { right: 20px; bottom: 20px; }
  .contact-page { padding: 90px 24px 48px; gap: 22px; }
  .form-submit { align-self: stretch; }
  .foot-socials { gap: 20px; }
  .footer-social { min-height: 44px; }
  .about-page-image { min-height: 62vh; }
  .about-page-image figcaption { left: 14px; right: auto; bottom: 14px; }
}
