/* =========================================================
   LENGERSDORF — v1.2
   Performance creatives for modern DTC & lifestyle brands
   Editorial luxury · Dark-first · Page-load curtain
   ========================================================= */

:root {
  /* Studio Black palette */
  --bg: #0a0908;
  --bg-2: #14110f;
  --bg-3: #1c1815;
  --surface: #1a1612;
  --cream: #f5f1ea;
  --cream-2: #ece5d8;
  --text: #f5f1ea;
  --text-dim: #a89e8e;
  --text-muted: #6b6357;
  --line: rgba(245, 241, 234, 0.10);
  --line-strong: rgba(245, 241, 234, 0.24);
  --accent: #c9a961;
  --accent-2: #d4b87a;
  --accent-soft: rgba(201, 169, 97, 0.12);

  /* Type */
  --serif: 'Fraunces', 'Times New Roman', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* Layout */
  --container: 1320px;
  --container-narrow: 980px;
  --gutter: clamp(20px, 4vw, 56px);
  --section-y: clamp(110px, 13vw, 200px);
  --radius: 4px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-mask: cubic-bezier(0.77, 0, 0.18, 1);
}

/* ---------- Reset ---------- */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.55;
  font-size: 16px;
  letter-spacing: 0.005em;
  overflow-x: hidden;
  font-feature-settings: "kern", "liga", "ss01";
}

img, video, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; background: none; border: none; cursor: inherit; color: inherit; }
ul, ol { list-style: none; }

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

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* =========================================================
   PAGE-LOAD CURTAIN
   ========================================================= */

.curtain {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 1.2s var(--ease-mask) 0.4s, opacity 0.3s linear 1.6s;
  border-bottom: 1px solid var(--line);
}

.curtain.is-leaving {
  transform: translateY(-100%);
  opacity: 0.96;
}

.curtain.is-gone { display: none; }

.curtain__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: curtainIntro 0.8s var(--ease-out) 0.15s forwards;
}

@keyframes curtainIntro {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.curtain__mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 64px;
  font-weight: 400;
  color: var(--accent);
  line-height: 0.9;
}

.curtain__name {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.42em;
  color: var(--cream);
}

.curtain__year {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.04;
  color: var(--cream);
  font-feature-settings: "ss01", "ss02";
}

h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

/* =========================================================
   GRAIN OVERLAY
   ========================================================= */

.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
}

/* =========================================================
   CUSTOM CURSOR
   ========================================================= */

@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, summary, [data-cursor] { cursor: none !important; }
}

.cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 998;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease;
  opacity: 0;
}

.cursor.is-visible { opacity: 1; }

.cursor__dot {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cream);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s ease;
}

.cursor__ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(245, 241, 234, 0.35);
  transition: width 0.32s var(--ease), height 0.32s var(--ease), border-color 0.3s ease;
}

.cursor.is-hover .cursor__dot { width: 0; height: 0; }
.cursor.is-hover .cursor__ring { width: 56px; height: 56px; border-color: var(--cream); }

.cursor.is-view .cursor__dot { width: 0; height: 0; }
.cursor.is-view .cursor__ring {
  width: 88px; height: 88px;
  border-color: var(--cream);
  background: rgba(201, 169, 97, 0.12);
}
.cursor::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease;
}
.cursor.is-view::after { content: "View"; opacity: 1; }

@media (hover: none), (pointer: coarse) {
  .cursor { display: none; }
}

/* =========================================================
   SCROLL PROGRESS
   ========================================================= */

.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--line);
  z-index: 100;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--accent);
  transition: width 0.1s linear;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: all 0.32s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn__arrow { transition: transform 0.32s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(3px); }

.btn--primary {
  background: var(--cream);
  color: var(--bg);
}
.btn--primary:hover { background: var(--accent); transform: translateY(-1px); }

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--line-strong);
  padding: 10px 18px;
  font-size: 12px;
}
.btn--ghost:hover {
  background: var(--cream);
  color: var(--bg);
  border-color: var(--cream);
}

.btn--text {
  background: transparent;
  color: var(--cream);
  padding: 14px 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  letter-spacing: 0.06em;
}
.btn--text:hover { color: var(--accent); border-bottom-color: var(--accent); }

.btn--lg { padding: 18px 36px; font-size: 14px; }

.btn--magnetic { will-change: transform; }
.btn--magnetic .btn__label,
.btn--magnetic .btn__arrow {
  display: inline-block;
  will-change: transform;
}

/* =========================================================
   NAV
   ========================================================= */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 20px 0;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: rgba(10, 9, 8, 0.78);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  padding: 12px 0;
  border-bottom-color: var(--line);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
}

.nav__brand-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}

.nav__brand-name {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.32em;
  color: var(--cream);
}

.nav__links {
  display: flex;
  gap: 36px;
  margin-left: auto;
  margin-right: 28px;
}

.nav__links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  position: relative;
  padding: 4px 0;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  transition: color 0.3s ease;
}
.nav__links a span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 10px;
  color: var(--accent);
  opacity: 0.7;
  font-weight: 400;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.32s var(--ease);
}
.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after { width: 100%; }

.nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.nav__status-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #76c893;
  box-shadow: 0 0 0 3px rgba(118, 200, 147, 0.16);
  animation: pulse 2.4s infinite;
}

.nav__toggle {
  display: none;
  width: 36px; height: 36px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 1px;
  background: var(--cream);
  transition: transform 0.3s ease;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  min-height: 100vh;
  padding: 140px var(--gutter) 80px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--mx, 80%) var(--my, 18%),
      rgba(201, 169, 97, 0.13), transparent 45%),
    radial-gradient(ellipse 60% 40% at 8% 88%,
      rgba(245, 241, 234, 0.04), transparent 60%),
    var(--bg);
  pointer-events: none;
  transition: background 0.4s ease;
}

.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px);
  background-size: calc(100% / 12) 100%;
  opacity: 0.5;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, transparent, black 22%, black 75%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 22%, black 75%, transparent);
}

.hero__inner {
  position: relative;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.hero__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero__index {
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  font-weight: 400;
}
.hero__index em {
  font-style: italic;
  color: var(--accent);
  font-size: 16px;
  margin-right: 4px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(245, 241, 234, 0.02);
  backdrop-filter: blur(8px);
}

.hero__eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #76c893;
  box-shadow: 0 0 0 4px rgba(118, 200, 147, 0.16);
  animation: pulse 2.4s infinite;
}

.hero__eyebrow-sep {
  color: var(--text-muted);
  margin: 0 4px;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(118, 200, 147, 0.16); }
  50% { box-shadow: 0 0 0 8px rgba(118, 200, 147, 0.04); }
}

/* Hero headline — mask-reveal words */

.hero__headline {
  font-size: clamp(58px, 10.5vw, 188px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.92;
  max-width: 1300px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero__line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.04em;
}

.hero__line--italic .hero__word em {
  font-style: italic;
  color: var(--cream);
  position: relative;
  padding-left: 1.4ch;
}

.hero__line--italic .hero__word em::before {
  content: "";
  position: absolute;
  left: 0; top: 0.62em;
  width: 1ch; height: 1px;
  background: var(--accent);
}

.hero__word {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.1s var(--ease-mask);
  will-change: transform;
}

[data-load-mask].is-revealed .hero__word,
.is-revealed[data-load-mask] {
  transform: translateY(0);
}

/* Generic hero load-fade */
[data-load] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  will-change: opacity, transform;
}
[data-load].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.hero__bottom {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  margin-top: 28px;
}

.hero__sub {
  font-size: clamp(15px, 1.25vw, 18px);
  color: var(--text-dim);
  max-width: 520px;
  line-height: 1.6;
}

.hero__cta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-self: end;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 4vw, 64px);
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.hero__meta div { display: flex; flex-direction: column; gap: 8px; }

.hero__meta-num {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.hero__meta small {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  right: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  transition: color 0.3s ease;
}
.hero__scroll:hover { color: var(--cream); }

.hero__scroll-line {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, transparent, var(--line-strong), var(--accent));
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 30%;
  background: var(--accent);
  animation: scrollLine 2.4s infinite var(--ease);
}

@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(330%); }
}

/* =========================================================
   MARQUEE
   ========================================================= */

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 36px 0;
  background: var(--bg-2);
  position: relative;
}

.marquee::before, .marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-2), transparent);
}
.marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-2), transparent);
}

.marquee__track {
  display: flex;
  gap: 44px;
  white-space: nowrap;
  animation: marquee 42s linear infinite;
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 40px);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: -0.015em;
  width: max-content;
}

.marquee__track em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}

.marquee__sep {
  color: var(--text-muted);
  font-style: normal;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================================
   PRESS / TRUSTED BY
   ========================================================= */

.press {
  padding: clamp(60px, 7vw, 100px) 0;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.press__label {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 36px;
}

.press__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
}

.press__logo {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2vw, 28px);
  color: var(--cream);
  font-weight: 400;
  letter-spacing: -0.015em;
  opacity: 0.55;
  transition: opacity 0.32s ease, color 0.32s ease;
  cursor: default;
}

.press__logo:hover {
  opacity: 1;
  color: var(--accent);
}

.press__note {
  margin-top: 28px;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  font-style: italic;
}
.press__note em { font-style: italic; color: var(--accent); }

/* =========================================================
   SECTION HEAD (shared)
   ========================================================= */

.section-head {
  margin-bottom: clamp(56px, 7vw, 112px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.section-head__left { display: flex; flex-direction: column; gap: 22px; }

.section-head h2 {
  font-size: clamp(40px, 6vw, 92px);
  font-weight: 300;
  letter-spacing: -0.03em;
  max-width: 900px;
  line-height: 1.02;
}

.section-head__right {
  font-size: clamp(15px, 1.15vw, 17px);
  color: var(--text-dim);
  max-width: 520px;
  line-height: 1.65;
  justify-self: end;
}

/* =========================================================
   MANIFESTO
   ========================================================= */

.manifesto {
  padding: var(--section-y) 0;
  border-bottom: 1px solid var(--line);
}

.manifesto__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.manifesto__head { display: flex; flex-direction: column; gap: 32px; }

.manifesto__headline {
  font-size: clamp(48px, 7vw, 112px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.manifesto__headline em { color: var(--accent); }

.manifesto__body {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 14px;
}

.manifesto__body p {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--text-dim);
  line-height: 1.65;
  max-width: 580px;
}

.manifesto__lead {
  color: var(--cream) !important;
  font-family: var(--serif);
  font-size: clamp(20px, 1.7vw, 26px) !important;
  line-height: 1.45 !important;
  letter-spacing: -0.01em;
  font-weight: 400;
}

.manifesto__sig {
  font-family: var(--serif);
  font-size: 15px !important;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--cream) !important;
}

.manifesto__sig-name {
  font-style: italic;
  font-weight: 400;
}

.manifesto__sig em {
  color: var(--text-dim);
  font-style: italic;
}

.manifesto__sig-sep {
  width: 24px; height: 1px;
  background: var(--accent);
}

/* =========================================================
   WORK
   ========================================================= */

.work {
  padding: var(--section-y) 0;
  border-bottom: 1px solid var(--line);
}

.work__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.work__tile {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.work__tile--lg { grid-column: span 6; }

@media (min-width: 900px) {
  .work__tile { grid-column: span 2; }
  .work__tile--lg { grid-column: span 6; }
}

.work__media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.4s var(--ease), transform 0.5s var(--ease);
}

.work__tile--lg .work__media { aspect-ratio: 16 / 9; }

.work__tile:hover .work__media {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.work__media::before {
  content: attr(data-label);
  position: absolute;
  top: 18px; left: 18px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 7px 12px;
  background: rgba(10, 9, 8, 0.6);
  border: 1px solid var(--line);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  font-weight: 500;
  z-index: 3;
}

.work__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 28%, rgba(201, 169, 97, 0.16), transparent 50%),
    radial-gradient(circle at 72% 72%, rgba(245, 241, 234, 0.04), transparent 50%);
  opacity: 0.7;
  transition: opacity 0.6s var(--ease);
}

.work__tile:hover .work__media::after { opacity: 1; }

.work__bigindex {
  position: absolute;
  bottom: -10px;
  right: 12px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(120px, 14vw, 200px);
  color: rgba(245, 241, 234, 0.05);
  font-weight: 300;
  line-height: 0.85;
  z-index: 0;
  user-select: none;
  pointer-events: none;
}

.work__placeholder {
  position: relative;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  z-index: 1;
}

.work__shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg,
    transparent 30%,
    rgba(245, 241, 234, 0.04) 50%,
    transparent 70%);
  transform: translateX(-100%);
  transition: transform 1.2s var(--ease);
  z-index: 1;
}

.work__tile:hover .work__shimmer { transform: translateX(100%); }

.work__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 9, 8, 0.55);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  z-index: 2;
}

.work__overlay span {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 12px 20px;
  border: 1px solid var(--cream);
  border-radius: 100px;
  transform: translateY(8px);
  transition: transform 0.4s var(--ease) 0.05s;
}

.work__tile:hover .work__overlay { opacity: 1; }
.work__tile:hover .work__overlay span { transform: translateY(0); }

.work__caption {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding-top: 4px;
}

.work__caption h3 {
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 400;
  margin-bottom: 6px;
  letter-spacing: -0.012em;
}

.work__caption p {
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.01em;
  line-height: 1.5;
}

.work__index {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--accent);
  flex-shrink: 0;
  padding-top: 4px;
}

/* =========================================================
   TESTIMONIAL
   ========================================================= */

.testimonial {
  padding: clamp(100px, 13vw, 180px) 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  position: relative;
  text-align: center;
}

.testimonial .eyebrow { justify-content: center; margin-bottom: 32px; }
.testimonial .eyebrow::before { display: none; }

.testimonial__mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(120px, 14vw, 200px);
  color: var(--accent);
  line-height: 0.6;
  margin-bottom: 12px;
  font-weight: 300;
  opacity: 0.5;
}

.testimonial__quote {
  font-family: var(--serif);
  font-size: clamp(28px, 4.2vw, 60px);
  font-weight: 300;
  letter-spacing: -0.022em;
  line-height: 1.18;
  color: var(--cream);
  max-width: 1100px;
  margin: 0 auto 48px;
  font-style: italic;
}

.testimonial__attr {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--accent-soft), var(--bg-3));
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 12px;
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.testimonial__name {
  font-size: 13px;
  color: var(--cream);
  letter-spacing: 0.04em;
  font-weight: 500;
}

.testimonial__role {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-top: 2px;
}

/* =========================================================
   APPROACH
   ========================================================= */

.approach {
  padding: var(--section-y) 0;
  border-bottom: 1px solid var(--line);
}

.approach__steps {
  display: flex;
  flex-direction: column;
}

.approach__steps li {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(32px, 5vw, 96px);
  padding: clamp(36px, 4.5vw, 64px) 0;
  border-top: 1px solid var(--line);
  position: relative;
}

.approach__steps li:last-child { border-bottom: 1px solid var(--line); }

.approach__num-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.approach__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 3vw, 44px);
  color: var(--accent);
  font-weight: 400;
  line-height: 1;
}

.approach__num-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.approach__body { max-width: 720px; }

.approach__body h3 {
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 300;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.approach__body p {
  font-size: clamp(15px, 1.15vw, 18px);
  color: var(--text-dim);
  line-height: 1.65;
}

/* =========================================================
   SERVICES
   ========================================================= */

.services {
  padding: var(--section-y) 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service {
  position: relative;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--line);
  transition: border-color 0.32s var(--ease), transform 0.5s var(--ease), background 0.32s var(--ease);
  overflow: hidden;
}

.service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--accent-soft), transparent 50%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}

.service:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}
.service:hover::before { opacity: 1; }

.service--featured {
  background: linear-gradient(180deg, rgba(201, 169, 97, 0.06), var(--bg-3));
  border-color: rgba(201, 169, 97, 0.3);
  transform: translateY(-12px);
}

.service__ribbon {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  padding: 5px 9px;
  border: 1px solid rgba(201, 169, 97, 0.4);
  border-radius: 100px;
  background: rgba(201, 169, 97, 0.08);
}

.service__inner {
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  height: 100%;
  position: relative;
  z-index: 1;
}

.service header { display: flex; flex-direction: column; gap: 8px; }

.service__tag {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.service h3 {
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-top: 4px;
}

.service__price {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 30px);
  color: var(--cream);
  font-weight: 400;
  letter-spacing: -0.015em;
  margin-top: 8px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.service__price span {
  font-size: 11px;
  font-family: var(--sans);
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.service__price small {
  font-size: 13px;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--text-dim);
  letter-spacing: 0;
  margin-left: -6px;
}

.service ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.service li {
  font-size: 14px;
  color: var(--text-dim);
  padding-left: 22px;
  position: relative;
  line-height: 1.55;
}

.service li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 1px;
  background: var(--accent);
}

.service__for {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  line-height: 1.45;
}

.service__cta {
  margin-top: auto;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--cream);
  padding-top: 8px;
  transition: color 0.3s ease, transform 0.3s var(--ease);
}
.service__cta:hover { color: var(--accent); transform: translateX(4px); }
.service__cta--strong { color: var(--accent); }

/* =========================================================
   ABOUT
   ========================================================= */

.about {
  padding: var(--section-y) 0;
  border-bottom: 1px solid var(--line);
}

.about__inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 112px);
  align-items: center;
}

.about__media { display: flex; flex-direction: column; gap: 16px; }

.about__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 25%, rgba(201, 169, 97, 0.18), transparent 60%);
}

.about__photo-label {
  position: relative;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  z-index: 1;
}

.about__photo-stamp {
  position: absolute;
  bottom: 18px;
  right: 18px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--accent);
  font-weight: 400;
  letter-spacing: 0.02em;
  z-index: 2;
  border: 1px solid rgba(201, 169, 97, 0.4);
  border-radius: 50%;
  width: 60px; height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-8deg);
  background: rgba(10, 9, 8, 0.4);
  backdrop-filter: blur(8px);
}

.about__photo-caption {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.about__copy { display: flex; flex-direction: column; gap: 22px; }

.about__copy h2 {
  font-size: clamp(36px, 4.8vw, 68px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.04;
}

.about__copy h2 em { color: var(--accent); }

.about__copy p {
  font-size: clamp(15px, 1.15vw, 17px);
  color: var(--text-dim);
  line-height: 1.65;
  max-width: 600px;
}

.about__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.about__list li {
  font-size: 14px;
  color: var(--cream);
  letter-spacing: 0.01em;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  align-items: baseline;
}

.about__list li span {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

/* =========================================================
   FAQ
   ========================================================= */

.faq {
  padding: var(--section-y) 0;
  border-bottom: 1px solid var(--line);
}

.faq__list {
  display: flex;
  flex-direction: column;
  max-width: var(--container-narrow);
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  transition: padding 0.3s ease;
}

.faq details:last-child { border-bottom: 1px solid var(--line); }

.faq summary {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.018em;
  color: var(--cream);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: clamp(20px, 2.4vw, 32px);
}

.faq summary span {
  display: inline-block;
  transition: color 0.3s ease;
}

.faq details:hover summary span { color: var(--accent); }

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 28px;
  color: var(--accent);
  font-weight: 200;
  transition: transform 0.4s var(--ease);
  flex-shrink: 0;
  width: 28px;
  text-align: center;
  line-height: 1;
}

.faq details[open] summary::after { transform: rotate(45deg); }

.faq details p {
  margin-top: 20px;
  max-width: 760px;
  font-size: clamp(14px, 1.1vw, 16px);
  color: var(--text-dim);
  line-height: 1.65;
}

/* =========================================================
   CONTACT
   ========================================================= */

.contact {
  padding: clamp(120px, 15vw, 240px) 0;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(201, 169, 97, 0.08), transparent 60%),
    var(--bg);
  position: relative;
}

.contact .eyebrow { justify-content: center; }
.contact .eyebrow::before { display: none; }

.contact__headline {
  font-size: clamp(48px, 7vw, 112px);
  font-weight: 300;
  letter-spacing: -0.03em;
  max-width: 1200px;
  margin: 24px auto 32px;
  line-height: 1.02;
}
.contact__headline em { color: var(--accent); }

.contact__sub {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--text-dim);
  max-width: 580px;
  margin: 0 auto 56px;
  line-height: 1.65;
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.contact__small {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  background: var(--bg-2);
  padding-top: 96px;
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.footer__inner { padding-bottom: 72px; }

.footer__cols {
  display: grid;
  grid-template-columns: 4fr 2fr 2fr 2fr;
  gap: clamp(32px, 5vw, 80px);
}

.footer__brand { display: flex; flex-direction: column; gap: 14px; }

.footer__logo {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.32em;
  color: var(--cream);
}

.footer__tagline {
  font-size: 14px;
  color: var(--text-dim);
  max-width: 320px;
  line-height: 1.55;
}

.footer__loc {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 8px;
}

.footer__cols > div:not(.footer__brand) {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__h {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 500;
}

.footer__cols a {
  font-size: 14px;
  color: var(--cream);
  transition: color 0.3s ease, transform 0.3s var(--ease);
  display: inline-block;
}

.footer__cols a:hover { color: var(--accent); transform: translateX(4px); }

.footer__marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 28px 0;
  background: var(--bg);
}

.footer__marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(40px, 8vw, 120px);
  letter-spacing: -0.025em;
  color: var(--cream);
  width: max-content;
  background: linear-gradient(180deg, var(--cream) 0%, rgba(245, 241, 234, 0.4) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer__marquee-sep {
  color: var(--accent);
  font-style: italic;
  font-family: var(--serif);
  -webkit-text-fill-color: var(--accent);
  font-weight: 400;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  padding-bottom: 28px;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  flex-wrap: wrap;
  gap: 12px;
}

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
  will-change: opacity, transform;
  transition-delay: calc(var(--i, 0) * 100ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  [data-load],
  .hero__word { opacity: 1; transform: none; transition: none; }
  .marquee__track,
  .footer__marquee-track,
  .nav__status-dot,
  .hero__eyebrow .dot,
  .hero__scroll-line::after,
  .curtain__inner { animation: none !important; }
  .curtain { transform: translateY(-100%); }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {
  .footer__cols { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; margin-bottom: 32px; }
}

@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__cta, .nav__status { display: none; }

  .hero__top { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero__bottom { grid-template-columns: 1fr; }
  .hero__cta { justify-self: stretch; }
  .hero__meta { grid-template-columns: repeat(2, 1fr); }
  .hero__scroll { display: none; }

  .section-head {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .section-head__right { justify-self: stretch; max-width: none; }

  .manifesto__grid { grid-template-columns: 1fr; }

  .work__grid { grid-template-columns: 1fr; }
  .work__tile, .work__tile--lg { grid-column: span 1 !important; }

  .approach__steps li {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services__grid { grid-template-columns: 1fr; }
  .service--featured { transform: none; }

  .about__inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero { padding-top: 130px; padding-bottom: 60px; }
  .hero__eyebrow {
    flex-wrap: wrap;
    font-size: 10px;
    padding: 8px 12px;
  }
  .hero__eyebrow-sep { display: none; }

  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    font-size: 10px;
  }

  .btn--lg { padding: 16px 28px; font-size: 13px; }

  .about__list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .press__logos { gap: 20px 28px; }
  .testimonial__attr { flex-direction: column; gap: 12px; text-align: center; }
}
