/* =============================================================
   Eline Raad — Interior Architect
   Design system: Bone & Travertine. Quiet luxury, editorial type.
   ============================================================= */

:root {
  --bone: #f4efe6;
  --bone-2: #ece5d6;
  --travertine: #e6dbc9;
  --sand: #d8c9af;
  --ink: #0e0d0b;
  --ink-2: #1b1915;
  --ink-soft: #2a2622;
  --line: rgba(14, 13, 11, 0.12);
  --line-strong: rgba(14, 13, 11, 0.28);
  --muted: #6e655a;
  --terra: #b85c3e;
  --terra-deep: #8e4127;
  --brass: #a48a52;
  --brass-2: #c5a96a;

  --font-display: 'Cormorant Garamond', 'Italiana', Georgia, 'Times New Roman', serif;
  --font-italiana: 'Italiana', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --ease: cubic-bezier(0.65, 0.02, 0.05, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);

  --maxw: 1640px;
  --gutter: clamp(20px, 4vw, 60px);
  --radius: 2px;

  --header-h: 78px;
}

/* ---------- Reset ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html,
body {
  height: 100%;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: clip;
  scroll-behavior: auto;
}
html.lenis,
html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: clip; }

img, picture, svg, video, canvas { display: block; max-width: 100%; }
img { -webkit-user-drag: none; user-select: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }
ul { list-style: none; }
::selection { background: var(--ink); color: var(--bone); }

/* ---------- Type ---------- */
.ital { font-family: var(--font-display); font-style: italic; font-weight: 400; }

/* ---------- Noise & grain overlay ---------- */
.noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 9000;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.7 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

/* ---------- Cursor ---------- */
.cursor { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9500;
  transform: translate3d(-100px, -100px, 0); will-change: transform;
  mix-blend-mode: difference;
}
.cursor__dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--bone);
  transform: translate(-50%, -50%);
  transition: transform .25s var(--ease-soft), background .25s var(--ease-soft);
}
.cursor__ring {
  position: absolute; top: 0; left: 0;
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--bone);
  transform: translate(-50%, -50%);
  transition: width .35s var(--ease-soft), height .35s var(--ease-soft), opacity .25s;
}
.cursor__label {
  position: absolute; top: 22px; left: 22px;
  font-family: var(--font-body); font-size: 11px; letter-spacing: .08em;
  color: var(--bone); text-transform: uppercase;
  background: var(--ink); padding: 4px 9px; border-radius: 30px;
  opacity: 0; transform: translateY(4px);
  transition: opacity .25s, transform .25s;
  white-space: nowrap;
}
.cursor.is-hover .cursor__ring { width: 70px; height: 70px; }
.cursor.is-label .cursor__label { opacity: 1; transform: translateY(0); }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; left: 0; right: 0; bottom: 0; height: 2px;
  background: rgba(14,13,11,.08); z-index: 8500;
}
.scroll-progress span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--ink), var(--terra));
  transition: width .12s linear;
}

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0; background: var(--ink); color: var(--bone);
  z-index: 10000; display: grid; place-items: center;
  transition: clip-path 1s var(--ease) .15s, opacity .25s linear 1.15s;
  clip-path: inset(0 0 0 0);
}
.loader.is-out { clip-path: inset(0 0 100% 0); opacity: 0; pointer-events: none; }
.loader__inner { width: min(720px, 88vw); display: grid; gap: 22px; }
.loader__brand { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.loader__mark { font-family: var(--font-display); font-size: 38px; letter-spacing: .02em; }
.loader__mark i { font-style: italic; opacity: .6; }
.loader__sub { font-size: 11px; letter-spacing: .25em; text-transform: uppercase; opacity: .6; }
.loader__bar { height: 1px; background: rgba(244,239,230,.18); overflow: hidden; }
.loader__bar span { display: block; height: 100%; width: 0%; background: var(--bone); }
.loader__count { font-family: var(--font-display); font-size: 14px; letter-spacing: .25em; opacity: .7; text-align: right; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  height: var(--header-h);
  display: grid; grid-template-columns: auto 1fr auto auto; align-items: center;
  padding: 0 var(--gutter); gap: 28px;
  background: rgba(244,239,230,.6); backdrop-filter: blur(14px) saturate(1.05);
  -webkit-backdrop-filter: blur(14px) saturate(1.05);
  border-bottom: 1px solid var(--line);
  transition: transform .5s var(--ease), background .35s var(--ease);
}
.nav.is-hidden { transform: translateY(-110%); }
.nav.is-light { background: rgba(14,13,11,.65); color: var(--bone); border-bottom-color: rgba(244,239,230,.1); }
.nav.is-light .nav__brand-meta small,
.nav.is-light .nav__links a em { color: rgba(244,239,230,.55); }

.nav__brand { display: flex; align-items: center; gap: 14px; }
.nav__brand-mark { font-family: var(--font-display); font-size: 28px; line-height: 1; letter-spacing: .02em; }
.nav__brand-mark i { font-style: italic; opacity: .55; }
.nav__brand-meta { display: flex; flex-direction: column; }
.nav__brand-meta span { font-size: 13px; letter-spacing: .04em; font-weight: 500; }
.nav__brand-meta small { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }

.nav__links { display: flex; gap: 26px; justify-content: center; }
.nav__links a {
  position: relative; font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 0; display: inline-flex; gap: 6px; align-items: baseline;
}
.nav__links a em {
  font-style: normal; font-family: var(--font-display); font-size: 10px; opacity: .5; font-feature-settings: "tnum";
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: currentColor;
  transition: right .5s var(--ease);
}
.nav__links a:hover::after, .nav__links a.is-current::after { right: 0; }

.nav__cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px; border: 1px solid currentColor; border-radius: 100px;
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  transition: background .35s, color .35s, transform .35s;
}
.nav__cta:hover { background: var(--ink); color: var(--bone); }
.nav.is-light .nav__cta:hover { background: var(--bone); color: var(--ink); }

.nav__burger { display: none; width: 44px; height: 44px; position: relative; }
.nav__burger span { position: absolute; left: 10px; right: 10px; height: 1px; background: currentColor;
  transition: transform .4s var(--ease), top .25s; }
.nav__burger span:nth-child(1) { top: 18px; }
.nav__burger span:nth-child(2) { top: 26px; }
.nav__burger.is-open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { top: 22px; transform: rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.menu {
  position: fixed; inset: 0; background: var(--ink); color: var(--bone);
  z-index: 950; padding: calc(var(--header-h) + 40px) var(--gutter) 40px;
  display: none;
  transform: translateY(-100%);
  transition: transform .7s var(--ease);
}
.menu.is-open { transform: translateY(0); }
.menu__inner { display: flex; flex-direction: column; gap: 8px; }
.menu__caption { font-size: 10px; letter-spacing: .25em; text-transform: uppercase; color: rgba(244,239,230,.5); margin-bottom: 18px; }
.menu a {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 18px 0; border-bottom: 1px solid rgba(244,239,230,.1);
  font-family: var(--font-display); font-size: clamp(40px, 9vw, 72px); line-height: 1;
}
.menu a i { font-style: normal; font-family: var(--font-body); font-size: 12px; opacity: .5; letter-spacing: .2em; }
.menu__foot { margin-top: 30px; display: flex; gap: 22px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.menu__foot a { display: inline-flex; gap: 6px; align-items: center; padding: 0; border: 0; font-family: inherit; font-size: inherit; }

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  padding: calc(var(--header-h) + 30px) var(--gutter) 0;
  background: var(--bone); overflow: clip;
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: clamp(20px, 4vw, 80px);
  align-items: stretch;
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: .7; }
.hero__grain { position: absolute; inset: 0; background:
  radial-gradient(80% 60% at 20% 30%, rgba(184,92,62,.06), transparent 60%),
  radial-gradient(60% 50% at 90% 80%, rgba(164,138,82,.07), transparent 60%);
  pointer-events: none; z-index: 1; }

.hero__type {
  position: relative; z-index: 5; display: flex; flex-direction: column;
  padding: clamp(20px, 5vh, 60px) 0;
}
.hero__overline {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: var(--muted);
}
.hero__overline .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ink); }

.hero__title {
  font-family: var(--font-display); font-weight: 400; line-height: .98;
  font-size: clamp(54px, 9.4vw, 168px); letter-spacing: -0.02em;
  margin: 26px 0 24px; color: var(--ink);
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .word { display: inline-block; }
.hero__title .italic { font-style: italic; color: var(--ink-soft); }

.hero__lede { max-width: 480px; margin-top: auto; }
.hero__lede p { font-size: 16px; line-height: 1.65; color: var(--ink-soft); }
.hero__lede strong { color: var(--ink); font-weight: 500; }

.hero__actions { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }

.btn { display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 100px; font-size: 13px; letter-spacing: .08em;
  transition: transform .45s var(--ease), background .35s, color .35s; will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--ink); color: var(--bone); }
.btn--primary:hover { background: var(--terra-deep); }
.btn--ghost { border: 1px solid var(--line-strong); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.btn--xl { padding: 22px 36px; font-size: 14px; }

/* Hero stage slider */
.hero__stage { position: relative; z-index: 5; display: flex; flex-direction: column; justify-content: center; gap: 18px; padding: clamp(20px, 5vh, 60px) 0; }
.hero__frame {
  position: relative; aspect-ratio: 4 / 5; width: 100%; max-height: 78vh;
  overflow: hidden; border-radius: var(--radius);
  background: var(--travertine);
  box-shadow: 0 30px 80px -30px rgba(14,13,11,.5);
}
.hero__frame img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.06);
  transition: opacity 1.1s var(--ease), transform 8s linear;
}
.hero__frame img.is-active { opacity: 1; transform: scale(1); }
.hero__frame-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(14,13,11,.45));
}

.hero__meta {
  display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: center;
  padding-top: 16px; border-top: 1px solid var(--line);
}
.hero__meta-counter { font-family: var(--font-display); font-size: 36px; line-height: 1; }
.hero__meta-counter em { font-style: normal; font-size: 14px; color: var(--muted); margin-left: 4px; }
.hero__meta-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.hero__meta-label { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.hero__meta-title { font-family: var(--font-display); font-size: 22px; line-height: 1.15; }
.hero__meta-place { font-size: 12px; color: var(--muted); }
.hero__meta-nav { display: flex; gap: 8px; }
.hero__meta-nav button {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-strong);
  display: grid; place-items: center; transition: background .3s, color .3s, border-color .3s;
}
.hero__meta-nav button:hover { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.hero__progress { height: 1px; background: var(--line); overflow: hidden; }
.hero__progress span { display: block; height: 100%; width: 0%; background: var(--ink); transition: width .15s linear; }

/* Hero marquee */
.hero__marquee {
  position: absolute; left: 0; right: 0; bottom: 24px; z-index: 6;
  overflow: hidden; padding: 8px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.hero__marquee-track { display: flex; gap: 60px; white-space: nowrap; animation: marquee 40s linear infinite; will-change: transform; }
.hero__marquee-row { display: inline-flex; align-items: center; gap: 60px; font-family: var(--font-display); font-size: 22px; font-style: italic; color: var(--ink-soft); }
.hero__marquee-row i { display: inline-block; width: 6px; height: 6px; background: var(--brass); border-radius: 50%; }
@keyframes marquee { to { transform: translateX(-50%); } }

.hero__scroll {
  position: absolute; left: var(--gutter); bottom: 56px; z-index: 6;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft);
}
.hero__scroll i { animation: scrollDown 1.8s var(--ease) infinite; }
@keyframes scrollDown { 0%,100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(6px); opacity: .4; } }

/* ===========================================================
   MANIFESTO
   =========================================================== */
.manifesto { padding: clamp(80px, 14vw, 220px) var(--gutter); position: relative; }
.manifesto__rule { display: flex; align-items: center; gap: 18px; font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: var(--muted); margin-bottom: 50px; }
.manifesto__rule i { flex: 1; height: 1px; background: var(--line-strong); }
.manifesto__text {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(28px, 4.5vw, 72px); line-height: 1.18; letter-spacing: -0.01em;
  color: var(--ink); max-width: 1400px;
}
.manifesto__text .ital { color: var(--terra-deep); }
.manifesto__text [data-word] { display: inline-block; opacity: .12; transition: opacity .6s var(--ease); }
.manifesto__text [data-word].is-on { opacity: 1; }
.manifesto__signature {
  display: flex; flex-direction: column; margin-top: 60px;
  font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted);
}
.manifesto__signature span { color: var(--ink); margin-bottom: 4px; }

/* ===========================================================
   WORKS — horizontal scroll
   =========================================================== */
.works { padding: clamp(60px, 10vw, 120px) 0 0; position: relative; }
.works__head { padding: 0 var(--gutter); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 4vw, 60px); align-items: end; margin-bottom: clamp(40px, 6vw, 80px); }
.works__rule { grid-column: 1 / -1; display: flex; align-items: center; gap: 18px; font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: var(--muted); margin-bottom: 30px; }
.works__rule i { flex: 1; height: 1px; background: var(--line-strong); }
.works__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(40px, 6vw, 96px); line-height: 1.02; letter-spacing: -0.02em; }
.works__lede { font-size: 15px; color: var(--ink-soft); max-width: 420px; justify-self: end; }

.works__viewport { overflow: hidden; }
.works__track { display: flex; gap: clamp(20px, 3vw, 50px); padding: 0 var(--gutter); will-change: transform; }
.work {
  flex: 0 0 clamp(280px, 36vw, 520px); display: flex; flex-direction: column; gap: 18px;
  padding-top: 30px;
}
.work__index { display: flex; gap: 8px; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.work__media {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--travertine);
  border-radius: var(--radius); cursor: pointer;
}
.work__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease), filter .6s;
  filter: saturate(0.95);
}
.work:hover .work__media img { transform: scale(1.06); filter: saturate(1.05); }
.work__media-tag {
  position: absolute; top: 16px; left: 16px;
  background: rgba(244,239,230,.92); color: var(--ink);
  padding: 6px 12px; border-radius: 100px; font-size: 10px; letter-spacing: .15em; text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.work__body { display: flex; flex-direction: column; gap: 12px; }
.work__title { font-family: var(--font-display); font-size: clamp(26px, 3vw, 40px); font-weight: 400; line-height: 1.05; }
.work__title span { display: inline-block; position: relative; }
.work__title span::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -4px; height: 1px; background: var(--ink);
  transition: right .6s var(--ease);
}
.work:hover .work__title span::after { right: 0; }
.work__excerpt { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }
.work__meta { display: flex; gap: 24px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.work__meta em { display: block; font-style: normal; color: var(--ink); margin-bottom: 4px; font-size: 10px; letter-spacing: .2em; opacity: .55; }

.work--more { background: var(--ink); color: var(--bone); padding: 40px; border-radius: var(--radius); align-self: stretch; display: flex; align-items: center; }
.work--more__inner { display: flex; flex-direction: column; gap: 16px; }
.work--more__inner span { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; opacity: .55; }
.work--more__inner h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(28px, 3vw, 44px); line-height: 1.05; }
.work--more__inner h3 i { font-style: italic; opacity: .75; }
.work--more__inner p { font-size: 14px; opacity: .75; }
.work--more__inner .btn { margin-top: 10px; background: var(--bone); color: var(--ink); align-self: flex-start; }
.work--more__inner .btn:hover { background: var(--terra); color: var(--bone); }

.works__hint { padding: 30px var(--gutter); display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; }

/* ===========================================================
   APPROACH — sticky pin with stacked cards
   =========================================================== */
.approach { background: var(--ink); color: var(--bone); padding: clamp(60px, 10vw, 120px) 0; }
.approach__pin {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  padding: 0 var(--gutter);
  min-height: 100vh;
  align-items: center;
}
.approach__rule { display: flex; align-items: center; gap: 18px; font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: rgba(244,239,230,.5); margin-bottom: 30px; }
.approach__rule i { flex: 1; height: 1px; background: rgba(244,239,230,.15); }
.approach__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(48px, 6.5vw, 110px); line-height: .98; letter-spacing: -0.02em; }
.approach__title .ital { color: var(--brass-2); }
.approach__lede { margin-top: 26px; max-width: 380px; color: rgba(244,239,230,.7); font-size: 15px; line-height: 1.65; }
.approach__counter { font-family: var(--font-display); margin-top: 50px; font-size: 56px; line-height: 1; }
.approach__counter em { font-style: normal; font-size: 16px; opacity: .5; margin-left: 8px; }

.approach__right { position: relative; height: 70vh; min-height: 480px; }
.approach__cards { position: absolute; inset: 0; }
.apc {
  position: absolute; inset: 0; background: var(--bone); color: var(--ink);
  padding: clamp(28px, 4vw, 48px); border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.5);
  transform-origin: top center;
}
.apc header { display: flex; align-items: center; justify-content: space-between; }
.apc__n { font-family: var(--font-display); font-size: 28px; }
.apc__phase { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.apc h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(32px, 4vw, 56px); line-height: 1.02; }
.apc p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; max-width: 460px; }
.apc ul { margin-top: auto; display: flex; flex-direction: column; gap: 10px; padding-top: 22px; border-top: 1px solid var(--line); }
.apc li { font-size: 13px; letter-spacing: .04em; padding-left: 20px; position: relative; }
.apc li::before { content: ""; position: absolute; left: 0; top: .75em; width: 10px; height: 1px; background: var(--ink); }

/* ===========================================================
   STUDIO / ABOUT
   =========================================================== */
.studio { padding: clamp(80px, 14vw, 200px) var(--gutter); background: var(--bone-2); }
.studio__rule { display: flex; align-items: center; gap: 18px; font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: var(--muted); margin-bottom: 60px; }
.studio__rule i { flex: 1; height: 1px; background: var(--line-strong); }

.studio__grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(40px, 6vw, 100px); align-items: start; }
.studio__visual { display: flex; flex-direction: column; gap: 30px; position: sticky; top: 100px; }
.studio__visual-frame { position: relative; aspect-ratio: 4 / 5; overflow: hidden; border-radius: var(--radius); background: var(--travertine); }
.studio__visual-frame img { width: 100%; height: 100%; object-fit: cover; }
.studio__visual-tag { position: absolute; left: 16px; top: 16px; background: var(--bone); padding: 8px 14px; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; border-radius: 100px; }
.studio__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.studio__stats div { padding: 20px; background: var(--bone); border-radius: var(--radius); border: 1px solid var(--line); }
.studio__stats strong { display: block; font-family: var(--font-display); font-size: 36px; line-height: 1; }
.studio__stats span { display: block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

.studio__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(40px, 5.5vw, 88px); line-height: 1.02; margin-bottom: 30px; letter-spacing: -0.02em; }
.studio__title .ital { color: var(--terra-deep); }
.studio__text p { color: var(--ink-soft); font-size: 16px; line-height: 1.7; margin-bottom: 18px; max-width: 620px; }
.studio__text p em { font-style: italic; color: var(--ink); }

.studio__list { margin: 40px 0; padding-top: 30px; border-top: 1px solid var(--line); }
.studio__list h4 { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.studio__list ul { display: flex; flex-direction: column; gap: 14px; }
.studio__list li { display: flex; gap: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--line); font-size: 15px; }
.studio__list li em { font-family: var(--font-display); font-style: italic; color: var(--terra-deep); flex: 0 0 32px; }

/* ===========================================================
   SERVICES
   =========================================================== */
.services { padding: clamp(80px, 12vw, 180px) var(--gutter); background: var(--bone); }
.services__head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 70px; align-items: end; }
.services__rule { grid-column: 1 / -1; display: flex; align-items: center; gap: 18px; font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: var(--muted); margin-bottom: 30px; }
.services__rule i { flex: 1; height: 1px; background: var(--line-strong); }
.services__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(40px, 6vw, 96px); line-height: 1.02; letter-spacing: -0.02em; }
.services__title .ital { color: var(--terra-deep); }

.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.svc {
  position: relative; padding: clamp(32px, 4vw, 52px) clamp(24px, 3vw, 40px);
  background: var(--bone); display: flex; flex-direction: column; gap: 14px;
  min-height: 320px; overflow: hidden; transition: background .5s var(--ease), color .5s var(--ease);
}
.svc:hover { background: var(--ink); color: var(--bone); }
.svc:hover .svc__n, .svc:hover p { color: rgba(244,239,230,.65); }
.svc__n { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.svc h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(26px, 2.6vw, 38px); line-height: 1.05; }
.svc p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; max-width: 320px; }
.svc__icon {
  position: absolute; bottom: clamp(24px, 3vw, 40px); right: clamp(24px, 3vw, 40px);
  font-size: 36px; opacity: .12; transition: opacity .5s, transform .5s, color .5s;
}
.svc:hover .svc__icon { opacity: .85; transform: rotate(-8deg) scale(1.05); color: var(--brass-2); }

/* ===========================================================
   QUOTE MARQUEE
   =========================================================== */
.quote-marquee { background: var(--ink); color: var(--bone); padding: 30px 0; overflow: hidden; }
.quote-marquee__track { display: flex; gap: 40px; white-space: nowrap; animation: marquee 35s linear infinite; }
.quote-marquee__track span { font-family: var(--font-display); font-style: italic; font-size: clamp(32px, 5vw, 64px); }

/* ===========================================================
   JOURNAL — testimonials
   =========================================================== */
.journal { padding: clamp(80px, 12vw, 180px) var(--gutter); background: var(--bone-2); }
.journal__rule { display: flex; align-items: center; gap: 18px; font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: var(--muted); margin-bottom: 30px; }
.journal__rule i { flex: 1; height: 1px; background: var(--line-strong); }
.journal__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(36px, 5vw, 80px); line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 60px; max-width: 1000px; }
.journal__title .ital { color: var(--terra-deep); }

.journal__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 60px; }
.tcard { background: var(--bone); padding: clamp(28px, 3vw, 42px); border-radius: var(--radius); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 24px; }
.tcard blockquote p { font-family: var(--font-display); font-weight: 300; font-size: clamp(20px, 1.8vw, 26px); line-height: 1.35; color: var(--ink); }
.tcard blockquote em { font-style: italic; color: var(--terra-deep); }
.tcard figcaption { display: flex; flex-direction: column; gap: 4px; padding-top: 24px; border-top: 1px solid var(--line); }
.tcard figcaption strong { font-size: 14px; font-weight: 500; }
.tcard figcaption span { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

.journal__press { display: flex; gap: 40px; align-items: center; padding-top: 40px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.journal__press span { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.journal__press ul { display: flex; gap: 30px; flex-wrap: wrap; }
.journal__press li { font-family: var(--font-display); font-size: 18px; font-style: italic; color: var(--ink-soft); }

/* ===========================================================
   CONTACT
   =========================================================== */
.contact { position: relative; padding: clamp(100px, 14vw, 220px) var(--gutter); background: var(--ink); color: var(--bone); overflow: hidden; }
.contact__bg { position: absolute; inset: 0; opacity: .18; }
.contact__bg img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: screen; }
.contact > *:not(.contact__bg) { position: relative; z-index: 2; }

.contact__rule { display: flex; align-items: center; gap: 18px; font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: rgba(244,239,230,.5); margin-bottom: 50px; }
.contact__rule i { flex: 1; height: 1px; background: rgba(244,239,230,.18); }
.contact__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(56px, 9vw, 160px); line-height: .98; letter-spacing: -0.02em; margin-bottom: 40px; }
.contact__title .ital { color: var(--brass-2); }
.contact__title [data-word] { display: inline-block; opacity: .15; transition: opacity .6s var(--ease); }
.contact__title [data-word].is-on { opacity: 1; }
.contact__lede { max-width: 540px; color: rgba(244,239,230,.7); font-size: 16px; line-height: 1.65; margin-bottom: 70px; }

.contact__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid rgba(244,239,230,.15); margin-bottom: 60px; }
.cline {
  display: grid; grid-template-columns: 160px 1fr auto; align-items: center;
  padding: 28px 0; border-bottom: 1px solid rgba(244,239,230,.15);
  transition: padding .4s var(--ease), color .35s;
}
.cline:nth-child(odd) { padding-right: 20px; border-right: 1px solid rgba(244,239,230,.15); margin-right: 20px; }
.cline__label { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgba(244,239,230,.55); }
.cline__value { font-family: var(--font-display); font-size: clamp(22px, 2.2vw, 32px); }
.cline i { transition: transform .4s var(--ease); }
.cline:hover { color: var(--brass-2); padding-left: 18px; }
.cline:hover i { transform: rotate(-25deg); }

.contact__cta { display: flex; justify-content: flex-start; }

/* ===========================================================
   FOOTER
   =========================================================== */
.footer { background: var(--bone); color: var(--ink); padding: clamp(60px, 8vw, 100px) var(--gutter) 30px; }
.footer__big { padding: 30px 0 60px; border-bottom: 1px solid var(--line); }
.footer__big a {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(80px, 18vw, 320px); line-height: .85; letter-spacing: -0.04em;
  display: flex; align-items: flex-start; gap: 10px; position: relative;
}
.footer__big a i { font-style: italic; color: var(--terra-deep); }
.footer__big-up { font-style: normal !important; font-size: 22px !important; padding: 14px 18px; border: 1px solid var(--ink); border-radius: 100px; align-self: flex-start; transition: background .35s, color .35s; }
.footer__big a:hover .footer__big-up { background: var(--ink); color: var(--bone); }

.footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; padding: 60px 0; border-bottom: 1px solid var(--line); }
.footer__cols h6 { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; font-weight: 500; }
.footer__cols p, .footer__cols a { font-size: 14px; line-height: 1.7; color: var(--ink-soft); }
.footer__cols a:hover { color: var(--ink); text-decoration: underline; }
.footer__cols ul { display: flex; flex-direction: column; gap: 6px; }

.footer__base { display: flex; justify-content: space-between; gap: 20px; padding-top: 30px; font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); flex-wrap: wrap; }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 1100px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: inline-block; }
  .nav { grid-template-columns: 1fr auto; }
  .menu { display: block; }
  .hero { grid-template-columns: 1fr; gap: 24px; padding-top: calc(var(--header-h) + 16px); }
  .hero__stage { padding-top: 0; }
  .hero__frame { max-height: 60vh; aspect-ratio: 4 / 3; }
  .hero__marquee { display: none; }
  .hero__scroll { display: none; }
  .works__head { grid-template-columns: 1fr; }
  .works__lede { justify-self: start; }
  .approach__pin { grid-template-columns: 1fr; gap: 40px; min-height: auto; padding: 60px var(--gutter); }
  .approach__right { height: 60vh; min-height: 420px; }
  .studio__grid { grid-template-columns: 1fr; gap: 40px; }
  .studio__visual { position: relative; top: 0; }
  .studio__stats { grid-template-columns: repeat(3, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .services__head { grid-template-columns: 1fr; gap: 24px; }
  .journal__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .cline { grid-template-columns: 110px 1fr auto; padding: 22px 0; }
  .cline:nth-child(odd) { border-right: 0; margin-right: 0; padding-right: 0; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  :root { --gutter: 18px; --header-h: 64px; }
  .hero__title { font-size: clamp(48px, 13vw, 96px); margin: 18px 0 18px; }
  .hero__overline { gap: 8px; font-size: 10px; }
  .hero__overline .dot { width: 4px; height: 4px; }
  .hero__lede p { font-size: 15px; }
  .hero__meta { grid-template-columns: auto 1fr; row-gap: 14px; }
  .hero__meta-nav { grid-column: 1 / -1; }
  .hero__meta-title { font-size: 18px; }
  .hero__meta-counter { font-size: 28px; }
  .manifesto__text { font-size: clamp(24px, 7vw, 38px); }
  .works__title { font-size: clamp(34px, 9vw, 56px); }
  .work { flex-basis: 78vw; }
  .approach__right { height: auto; min-height: auto; }
  .approach__cards { position: relative; display: flex; flex-direction: column; gap: 16px; }
  .apc { position: relative; inset: auto; transform: none !important; opacity: 1 !important; }
  .studio__stats { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .svc { min-height: 220px; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__base { flex-direction: column; gap: 8px; }
  .menu a { font-size: clamp(36px, 11vw, 56px); }
  .nav__brand-meta { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .hero__marquee-track, .quote-marquee__track { animation: none; }
}
