:root {
  --bg: #040404;
  --bg-soft: #0b0b0b;
  --panel: #101010;
  --panel-2: #141414;
  --text: #f3f2ee;
  --muted: #c6c4bd;
  --muted-soft: #8c8a84;
  --line: rgba(255,255,255,.12);
  --line-strong: rgba(255,255,255,.22);
  --max: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
strong { color: #fff; font-weight: 500; }

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 10%, rgba(255,255,255,.07), transparent 28rem),
    radial-gradient(circle at 80% 18%, rgba(255,255,255,.05), transparent 32rem),
    linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
}
.site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.12) 100%);
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 32px;
  backdrop-filter: blur(18px);
}
.header::after {
  content: "";
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 0;
  height: 1px;
  background: rgba(255,255,255,.10);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  letter-spacing: .02em;
}
.brand-text {
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text);
}
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav a,
.nav-cta {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav a:hover,
.nav-cta:hover { color: var(--text); }
.nav-cta {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--text);
  border-radius: 999px;
  padding: 12px 18px;
  cursor: pointer;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 104px 32px;
}
.work.section {
  max-width: none;
  width: 100%;
  padding-left: clamp(24px, 4vw, 70px);
  padding-right: clamp(24px, 4vw, 70px);
}
.work .section-head,
.work .section-cta {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.eyebrow {
  margin: 0 0 18px;
  font-size: 11px;
  letter-spacing: .30em;
  text-transform: uppercase;
  color: var(--text);
}
h1,h2,h3 { margin: 0; font-weight: 400; line-height: 1; }
h1,h2 { font-family: "Cormorant Garamond", Georgia, serif; }
h1 {
  font-size: clamp(70px, 10.4vw, 146px);
  letter-spacing: -.055em;
  text-transform: uppercase;
  max-width: 690px;
}
h2 {
  font-size: clamp(42px, 7vw, 92px);
  letter-spacing: -.05em;
}
h3 { font-size: 21px; font-weight: 500; }

.hero {
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: stretch;
}
.hero-shell {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(360px, 1.04fr);
  gap: clamp(54px, 7vw, 104px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding-top: 34px;
  padding-bottom: 72px;
}
.hero-copy {
  padding-top: 10px;
  max-width: 650px;
  position: relative;
  z-index: 4;
}
.hero-subtitle {
  margin: 26px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 3.2vw, 50px);
  line-height: 1.08;
  color: #fff;
}
.hero-text,
.manifesto-content p,
.section-head p,
.details-copy p,
.process-copy p,
.inquiry-panel p,
.legal p {
  color: var(--muted);
  font-size: 16px;
}
.hero-text {
  max-width: 520px;
  margin-top: 18px;
  font-size: 15px;
  letter-spacing: .02em;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 15px 24px;
  border: 1px solid var(--line-strong);
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: #f2f1ed;
  color: #050505;
  border-color: #f2f1ed;
}
.btn-secondary {
  background: transparent;
  color: var(--text);
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}
.hero-image-wrap {
  position: relative;
  width: min(100%, 540px);
  aspect-ratio: 4 / 5.15;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  background: #0e0e0e;
  box-shadow: 0 44px 150px rgba(0,0,0,.72);
}
.hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  z-index: 2;
  pointer-events: none;
}
.hero-image {
  filter: contrast(1.06) brightness(1.05) saturate(.66);
  transform: scale(1.015);
}
.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.30));
}
/* Since 2015 is now shown subtly in the hero eyebrow instead of over the image. */

.manifesto {
  display: grid;
  grid-template-columns: 24px minmax(0, 1.25fr) minmax(260px, .75fr);
  gap: 28px;
  align-items: start;
}
.manifesto-line {
  width: 1px;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,.60), transparent 82%);
  margin-left: 11px;
}
.manifesto-content h2 { max-width: 880px; }
.manifesto-content p { max-width: 760px; margin-top: 22px; }
.manifesto-meta {
  display: grid;
  gap: 22px;
  padding-top: 28px;
}
.manifesto-meta div {
  padding: 0 0 20px;
  border-bottom: 1px solid var(--line);
}
.manifesto-meta span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted-soft);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.manifesto-meta p,
.manifesto-meta a {
  margin: 0;
  color: var(--text);
  font-size: 15px;
}

.section-head {
  margin-bottom: 38px;
}
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(12px, 1.2vw, 22px);
  align-items: stretch;
  width: 100%;
  max-width: 1540px;
  margin-left: auto;
  margin-right: auto;
}
.editorial-card {
  position: relative;
  grid-column: span 4;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
  padding: 10px;
  min-height: 0;
}
.editorial-card.large {
  grid-column: span 4;
}
.editorial-card.wide {
  grid-column: span 4;
}
.editorial-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 1;
  border-radius: 15px;
  background: linear-gradient(180deg, rgba(0,0,0,.035), rgba(0,0,0,.18));
  pointer-events: none;
}
.editorial-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 4.85;
  object-fit: contain;
  border-radius: 15px;
  background: #050505;
  filter: grayscale(.12) brightness(1.10) contrast(1.03) sepia(.08) saturate(.74);
  transition: transform .9s ease, filter .9s ease;
}
.editorial-card:hover img {
  transform: scale(1.012);
  filter: grayscale(.08) brightness(1.13) contrast(1.04) sepia(.06) saturate(.80);
}
.section-cta {
  display: flex;
  justify-content: flex-end;
  margin-top: 22px;
}
.text-link {
  border-bottom: 1px solid rgba(255,255,255,.28);
  padding-bottom: 6px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.details {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: start;
}
.details-copy h2 { max-width: 620px; }
.details-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.detail-card {
  min-height: 240px;
  padding: 28px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
}
.detail-card span {
  display: block;
  margin-bottom: 34px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 36px;
  color: var(--text);
}
.detail-card p { color: var(--muted); font-size: 15px; }

.process-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 36px;
  padding: 42px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process-copy h2 { max-width: 780px; margin-bottom: 18px; }
.process-list {
  display: grid;
  gap: 14px;
  align-content: start;
}
.process-list div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.process-list strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
  font-weight: 500;
}
.process-list span {
  color: var(--text);
  font-size: 16px;
}

.inquiry-panel {
  padding: 54px 0 6px;
  max-width: 760px;
}
.inquiry-panel h2 { margin-bottom: 20px; }
.inquiry-panel p { margin-bottom: 26px; }

.footer {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(0, 1fr);
  gap: 38px;
  padding-top: 56px;
  padding-bottom: 60px;
  border-top: 1px solid var(--line);
}
.footer-left h2 { font-size: clamp(40px, 7vw, 82px); }
.footer-left p { color: var(--muted); }
.footer-right {
  display: grid;
  gap: 12px;
  align-content: start;
}
.footer-right > a {
  color: var(--muted);
  width: fit-content;
  border-bottom: 1px solid rgba(255,255,255,.22);
  padding-bottom: 3px;
}
.footer-right > a:hover { color: var(--text); border-color: rgba(255,255,255,.60); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.footer-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--muted);
  font-size: 13px;
}
.footer-links a:hover { color: var(--text); border-color: var(--line-strong); }

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  padding: 18px;
}
.modal.is-open { display: grid; place-items: center; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(16px);
}
.modal-panel {
  position: relative;
  z-index: 1;
  width: min(940px, 100%);
  height: min(86vh, 920px);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 34px 120px rgba(0,0,0,.62);
}
.modal-panel iframe { width: 100%; height: 100%; border: 0; background: #fff; }
.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.92);
  cursor: pointer;
  font-size: 26px;
}

.legal { max-width: 900px; }
.legal h1 { font-size: clamp(56px, 10vw, 104px); }
.legal h2 {
  margin-top: 42px;
  font-size: 34px;
}
.legal a { border-bottom: 1px solid rgba(255,255,255,.35); }
.note {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 14px !important;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .85s ease, transform .85s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-shell,
  .details,
  .process-shell,
  .footer,
  .manifesto {
    grid-template-columns: 1fr;
  }
  .hero-visual { justify-content: flex-start; }
  .manifesto-line { display: none; }
  .editorial-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .editorial-card,
  .editorial-card.large,
  .editorial-card.wide {
    grid-column: span 3;
  }
  .hero-shell {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .details-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 820px) {
  .header {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav { flex-wrap: wrap; gap: 14px; }
  .section { padding: 78px 20px; }
  .header { padding: 18px 20px; }
  .header::after { left: 20px; right: 20px; }
  .hero-shell {
    min-height: auto;
    padding-top: 26px;
  }
  .hero-image-wrap { width: 100%; max-width: 390px; }
  .editorial-grid,
  .details-grid {
    grid-template-columns: 1fr;
  }
  .editorial-card,
  .editorial-card.large,
  .editorial-card.wide {
    grid-column: auto;
  }
}
@media (max-width: 560px) {
  h1 { font-size: clamp(54px, 19vw, 88px); }
  h2 { font-size: clamp(40px, 13vw, 60px); }
  .hero-subtitle { font-size: 28px; }
  .nav-cta { padding: 10px 14px; }
  .hero-stamp strong { font-size: 24px; }
  .modal { padding: 8px; }
  .modal-panel { height: 94vh; border-radius: 16px; }
}
