/* ---------- EKSA — typography, palette, base layout ---------- */

:root {
  --coffee: #2A1810;          /* darkest — almost black coffee */
  --coffee-2: #3A2418;        /* slightly lighter for shadows on dark */
  --brown: #5C3A1E;           /* mid warm brown */
  --brown-2: #7A5333;         /* lighter brown for accents */
  --cream: #EFE7D8;           /* cream / paper */
  --cream-2: #E4DAC6;         /* slightly deeper cream */
  --bone: #F5EFE3;            /* near-white tint */
  --ink-soft: rgba(42, 24, 16, 0.55);
  --line: rgba(42, 24, 16, 0.18);
  --line-cream: rgba(239, 231, 216, 0.22);
}

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

html, body {
  background: var(--cream);
  color: var(--coffee);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

/* Subtle paper grain on cream bands — purely decorative, very low opacity */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><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.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* Scroll progress bar — slim line at the very top */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--cream);
  mix-blend-mode: difference;
  z-index: 70;
  pointer-events: none;
  transition: width 0.08s linear;
}

body { line-height: 1.5; }

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

/* ---------- Custom scrollbar ----------
   Thin pill-shaped scrollbar that matches the brand palette and stays
   visible on both cream and coffee backgrounds. Mid-brown thumb with
   a transparent border that doubles as a gutter, so the pill looks
   slim. Firefox only supports width + color. */
html {
  scrollbar-width: thin;
  scrollbar-color: rgba(120, 86, 60, 0.5) transparent;
  scrollbar-gutter: stable;
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-corner { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(120, 86, 60, 0.55);
  border: 2px solid transparent;
  border-radius: 999px;
  background-clip: content-box;
  transition: background-color 0.2s;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(120, 86, 60, 0.85);
  background-clip: content-box;
}

/* ---------- Lenis (smooth scroll) ---------- */
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: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

/* ---------- Type system ---------- */
.eyebrow {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--coffee);
}
.eyebrow.on-dark { color: var(--cream); }
.eyebrow .dot {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin: 0 14px 3px 0;
  opacity: 0.7;
}

.display {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  letter-spacing: -0.02em;
  /* line-height: 1 with Inter's tight intrinsic metrics gives a compact
     visual stack while leaving enough vertical room for Turkish
     descenders (ğ, ç) and ascender diacritics (İ, Ğ breve) so they
     never overlap with the line above or below. */
  line-height: 1;
  font-size: clamp(56px, 9.5vw, 168px);
}
.display em {
  font-style: italic;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  letter-spacing: -0.01em;
}

.h-section {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  font-size: clamp(40px, 6vw, 96px);
}
.h-section em {
  font-style: italic;
  font-family: "Inter", sans-serif;
  font-weight: 300;
}

.lead {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.55;
  letter-spacing: -0.005em;
  max-width: 52ch;
}

.mono {
  font-family: "JetBrains Mono", "Inter", monospace;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* word-by-word reveal driven by scroll progress */
.reveal-word {
  display: inline;
  opacity: 0.22;
  transition: opacity 0.4s ease;
  will-change: opacity;
}
.reveal-word.is-lit { opacity: 1; }

/* fade-up entrances (non-hero) */
.fu { opacity: 0; transform: translateY(28px); transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1), transform 1.1s cubic-bezier(0.22, 1, 0.36, 1); }
.fu.is-in { opacity: 1; transform: none; }
.fu.d2 { transition-delay: 0.12s; }
.fu.d3 { transition-delay: 0.24s; }
.fu.d4 { transition-delay: 0.36s; }
/* Hero .fu elements are always visible — no entrance dependency */
.hero .fu { opacity: 1; transform: none; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 22px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  mix-blend-mode: difference;
  color: var(--cream);
  transition: padding 0.4s ease;
}
.nav .brand { display: flex; align-items: center; gap: 10px; }
.nav .brand img { height: 22px; width: auto; filter: brightness(0) invert(1); }
.nav .links { display: flex; gap: 38px; }
.nav .links a {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  position: relative;
  opacity: 0.92;
  transition: opacity 0.3s;
  padding-bottom: 4px;
}
.nav .links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transition: right 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav .links a:hover { opacity: 1; }
.nav .links a:hover::after { right: 0; }
.nav .lang { font-size: 12px; letter-spacing: 0.22em; cursor: pointer; display: inline-flex; gap: 8px; align-items: center; }
.nav .lang a, .nav .lang span { opacity: 0.5; transition: opacity 0.3s; color: inherit; text-decoration: none; }
.nav .lang .active { opacity: 1; }
.nav .lang:hover a, .nav .lang:hover span { opacity: 0.9; }
.nav .lang:hover .active { opacity: 1; }
.nav .lang a:hover { opacity: 1; }

.nav.scrolled { padding: 14px 40px; }

/* ---------- Stacked sections framework ---------- *
   Hero sticks behind; the stack of subsequent sections each stick to top:0
   as you scroll. The next section naturally slides up from below the viewport
   (because its in-flow position is below the previous sticky section's space)
   and lands on top — like springs.estate. */
.hero {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: var(--coffee);
  color: var(--cream);
  z-index: 1;
}
.stack {
  position: relative;
  z-index: 2;
  background: transparent;
  isolation: isolate;
}
/* Every direct-child card sticks to the top as you scroll past it.
   Later cards in DOM paint over earlier ones, creating the stack. */
.stack > section,
.stack > .footer {
  position: sticky;
  top: 0;
  min-height: 100vh;
  overflow: hidden;
}
/* The marquee strip is a thin band, not a stacked card. */
.stack > .marquee-strip {
  position: relative;
  min-height: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}
.hero .bg {
  position: absolute; inset: -10% 0 -10% 0;
  width: 100%; height: 120%;
  background-size: cover;
  background-position: center;
  background-image: url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=2000&q=85&auto=format&fit=crop");
  will-change: transform;
  transform: translateY(0) scale(1.05);
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(42,24,16,0.55) 0%, rgba(42,24,16,0.25) 35%, rgba(42,24,16,0.65) 100%);
}
.hero .content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 120px 40px 50px;
}
.hero .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.hero .top .meta { display: flex; flex-direction: column; gap: 4px; max-width: 220px; }
.hero .bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 60px;
}
.hero h1 { color: var(--cream); }
.hero h1 .line {
  display: block;
}
.hero h1 .line > span {
  display: inline-block;
}

.hero h1 .line {
  /* Optional entrance: clip-path reveal that doesn't depend on JS or
     CSS animation tick (which is paused in hidden tabs). The text is
     always present and readable; the reveal just polishes the entrance. */
}
.hero .right-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  color: var(--cream);
  text-align: right;
}
.hero .right-block p { max-width: 36ch; font-weight: 300; opacity: 0.85; }

.scroll-cue {
  position: absolute;
  z-index: 3;
  left: 50%; bottom: 30px;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  color: var(--cream);
}
.scroll-cue .line {
  width: 1px; height: 56px;
  background: linear-gradient(180deg, transparent, var(--cream));
  animation: scrollLine 2.6s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  40% { transform: scaleY(1); transform-origin: top; }
  60% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.scroll-cue .label { font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; opacity: 0.75; }

/* ---------- Marquee strip ---------- */
.marquee-strip {
  background: var(--coffee);
  color: var(--cream);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--line-cream);
  border-bottom: 1px solid var(--line-cream);
}
.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
}
.marquee-track span {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 60px;
}
.marquee-track span::after {
  content: "✦";
  font-size: 9px;
  opacity: 0.5;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Manifesto / Intro ---------- */
.manifesto {
  background: var(--cream);
  padding: 200px 40px 220px;
  position: relative;
}
.manifesto .wrap {
  max-width: 1400px;
  margin: 0 auto;
}
.manifesto .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.manifesto .label-col {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.manifesto .label-col .num {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.3em;
}
.manifesto .big {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: clamp(36px, 4.6vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.02em;
}
.manifesto .big em {
  font-family: "Inter", sans-serif;
  font-style: italic;
  font-weight: 300;
}
.manifesto .body {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.manifesto .body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--coffee);
  opacity: 0.85;
}

/* ---------- About ---------- */
/* Sized to fit within the 100vh sticky-stack cap on common viewports
   (1366×768 and up). Compact paddings, tighter type, single-line headline
   so the headline + body + stats are all on screen at once. */
.about {
  background: var(--coffee);
  color: var(--cream);
  padding: 90px 40px 70px;
  position: relative;
}
.about .wrap { max-width: 1400px; margin: 0 auto; }

/* Top bar: section number on the left + parent-company badge on the right */
.about .top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line-cream);
  margin-bottom: 50px;
}
.about .top-bar .num {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.3em;
}
.about .parent {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.about .parent .lbl {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.55;
}
.about .parent .group-name {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 18px;
  border: 1px solid var(--line-cream);
  border-radius: 999px;
}
.about .parent .group-name::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cream);
  opacity: 0.55;
}

/* Editorial headline — compact enough to fit alongside body + stats */
.about .lead { margin-bottom: 50px; }
.about .about-h {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: clamp(40px, 5vw, 84px);
  letter-spacing: -0.025em;
  line-height: 1.02;
  color: var(--cream);
}
.about .about-h .l { display: block; }
.about .about-h em { font-style: italic; font-weight: 300; }

/* Two-column body description */
.about .body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin-bottom: 60px;
}
.about .body p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.8;
}
.about .body p strong { font-weight: 500; opacity: 1; }

/* Stats row */
.about .stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  border-top: 1px solid var(--line-cream);
  padding-top: 36px;
}
.about .stats-row .cell { display: flex; flex-direction: column; gap: 12px; }
.about .stats-row .cell .num {
  font-family: "Inter", sans-serif;
  font-weight: 200;
  font-size: clamp(40px, 4.2vw, 76px);
  letter-spacing: -0.04em;
  line-height: 1;
}
.about .stats-row .cell .num .suffix {
  font-size: 0.42em;
  vertical-align: super;
  opacity: 0.55;
  margin-left: 2px;
}
.about .stats-row .cell .label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.65;
}

/* ---------- Pinned image scaler ---------- */
.scaler {
  height: 220vh;
  position: relative;
  background: var(--coffee);
}
.scaler .stick {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scaler .frame {
  position: relative;
  width: 30%;
  height: 40%;
  overflow: hidden;
  will-change: width, height;
  border-radius: 2px;
}
.scaler .frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(42,24,16,0.5) 100%);
  pointer-events: none;
}
.scaler .frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.15);
}
.scaler .scaler-text {
  position: absolute;
  bottom: 60px; left: 0; right: 0;
  text-align: center;
  color: var(--cream);
  z-index: 3;
  pointer-events: none;
}
.scaler .scaler-text .l1 { font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; opacity: 0.85; margin-bottom: 16px; }
.scaler .scaler-text .l2 {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.scaler .scaler-text .l2 em { font-family: "Inter", sans-serif; font-style: italic; }

/* ---------- Projects (horizontal sticky scroll) ---------- */
.projects {
  background: var(--cream);
  position: relative;
}
.projects .hd {
  padding: 140px 40px 70px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
}
.projects .hd .meta { display: flex; flex-direction: column; gap: 18px; max-width: 38ch; }
.projects .hd .meta p { font-size: 14px; line-height: 1.6; opacity: 0.78; }
.projects .horizontal {
  position: relative;
  /* height is set in JS based on track width — defines scroll distance */
}
.projects .hsticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.projects .htrack {
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 40px;
  padding-right: 40px;
  gap: 32px;
  will-change: transform;
}
.project-card {
  position: relative;
  flex: 0 0 auto;
  width: 52vh;
  height: 72vh;
  border-radius: 2px;
  overflow: hidden;
  background: var(--coffee);
  color: var(--cream);
}
.project-card .img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.project-card:hover .img { transform: scale(1.1); }
.project-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(42,24,16,0.15) 0%, rgba(42,24,16,0) 30%, rgba(42,24,16,0.75) 100%);
  transition: opacity 0.5s;
}
.project-card .pmeta {
  position: absolute;
  z-index: 2;
  inset: auto 0 0 0;
  padding: 32px 32px 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  transition: padding 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.project-card:hover .pmeta { padding-bottom: 36px; }
.project-card .pmeta .name {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 38px;
  letter-spacing: -0.015em;
  line-height: 1;
}
.project-card .pmeta .name em { font-family: "Inter", sans-serif; font-style: italic; font-weight: 400; }
.project-card .pmeta .loc { font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; opacity: 0.78; margin-top: 12px; }
.project-card .pmeta .side {
  text-align: right;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.78;
  line-height: 1.7;
}
.project-card .pmeta .arrow,
.project-card .pmeta::after {
  content: "→";
  position: absolute;
  right: 28px;
  top: -56px;
  width: 44px; height: 44px;
  border: 1px solid rgba(239,231,216,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  opacity: 0;
  transform: translate(8px, -8px);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.project-card:hover .pmeta::after {
  opacity: 1;
  transform: translate(0, 0);
}
.project-card.intro .pmeta::after,
.project-card.end .pmeta::after { display: none; }
.project-card .ptop {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 2;
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.95;
}
.project-card .ptop .idx { font-family: "JetBrains Mono", monospace; }

/* The "intro" card before the project images */
.project-card.intro {
  background: var(--coffee);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 36px;
  width: 48vh;
}
.project-card.intro::after { display: none; }
.project-card.intro .ptop { position: static; padding: 0; }
.project-card.intro .title {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.project-card.intro .title em { font-family: "Inter", sans-serif; font-style: italic; }
.project-card.intro .foot { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.85; }

/* End card */
.project-card.end {
  background: var(--brown);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  width: 44vh;
}
.project-card.end::after { display: none; }
.project-card.end .arrow {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* ---------- Stats / numbers ---------- */
.stats {
  background: var(--coffee);
  color: var(--cream);
  padding: 160px 40px 180px;
  border-top: 1px solid var(--line-cream);
}
.stats .wrap { max-width: 1400px; margin: 0 auto; }
.stats .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  border-top: 1px solid var(--line-cream);
  padding-top: 60px;
  margin-top: 80px;
}
.stats .row .cell { display: flex; flex-direction: column; gap: 18px; }
.stats .row .num {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: clamp(54px, 7vw, 112px);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stats .row .label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.7;
}
.stats .heading { max-width: 18ch; }

/* ---------- Location ---------- */
.location {
  background: var(--cream);
  padding: 160px 40px 0;
  position: relative;
}
.location .wrap { max-width: 1400px; margin: 0 auto; }
.location .head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 90px;
  align-items: end;
}
.location .head .right p {
  font-size: 16px;
  line-height: 1.65;
  max-width: 44ch;
  opacity: 0.82;
}
.location .split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.location .map {
  position: relative;
  height: 720px;
  background: #d8cbb1;
  overflow: hidden;
}
.location .sticky-info {
  position: sticky;
  top: 120px;
  align-self: start;
  height: 720px;
  padding: 50px 30px;
  background: var(--coffee);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.location .sticky-info .item { display: flex; flex-direction: column; gap: 8px; padding: 22px 0; border-top: 1px solid var(--line-cream); }
.location .sticky-info .item:first-of-type { border-top: 1px solid var(--line-cream); }
.location .sticky-info .item .k { font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; opacity: 0.65; }
.location .sticky-info .item .v {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 26px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.location .sticky-info .item .v em { font-family: "Inter", sans-serif; font-style: italic; }
.location .sticky-info .top-row { display: flex; flex-direction: column; gap: 18px; }
.location .sticky-info .top-row .htitle {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: clamp(34px, 3.6vw, 52px);
  letter-spacing: -0.015em;
  line-height: 1.04;
}
.location .sticky-info .top-row .htitle em { font-family: "Inter", sans-serif; font-style: italic; }

.location .map svg { width: 100%; height: 100%; display: block; }

.location .tags {
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 12px;
  padding-bottom: 140px;
}
.location .tag {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

/* ---------- Contact ---------- */
.contact {
  background: var(--coffee);
  color: var(--cream);
  padding: 160px 40px 80px;
  position: relative;
  overflow: hidden;
}
.contact .wrap { max-width: 1400px; margin: 0 auto; position: relative; z-index: 2; }
.contact .lead-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 100px;
}
.contact .lead-row h2 { color: var(--cream); }
.contact .lead-row p { max-width: 38ch; opacity: 0.78; font-size: 16px; line-height: 1.6; }
.contact form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line-cream);
}
.contact .field { display: flex; flex-direction: column; gap: 12px; padding: 28px 0; border-bottom: 1px solid var(--line-cream); }
.contact .field.full { grid-column: 1 / -1; }
.contact .field:nth-child(odd) { padding-right: 40px; border-right: 1px solid var(--line-cream); }
.contact .field:nth-child(even) { padding-left: 40px; }
.contact .field.full:nth-child(odd) { border-right: none; padding-right: 0; }
.contact label { font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; opacity: 0.6; }
.contact input, .contact textarea {
  background: transparent;
  border: 0;
  color: var(--cream);
  font-family: inherit;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.01em;
  padding: 6px 0 10px;
  outline: none;
  border-bottom: 1px solid transparent;
  resize: vertical;
}
.contact input::placeholder, .contact textarea::placeholder { color: rgba(239, 231, 216, 0.35); }
.contact input:focus, .contact textarea:focus { border-bottom-color: var(--cream); }
.contact .submit-row {
  grid-column: 1 / -1;
  padding-top: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.contact .legal { font-size: 11px; opacity: 0.55; max-width: 50ch; letter-spacing: 0.04em; }
.contact button {
  background: var(--cream);
  color: var(--coffee);
  border: 0;
  padding: 22px 38px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  transition: background 0.4s, color 0.4s, padding 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}
.contact button span {
  display: inline-block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.contact button:hover { background: var(--brown-2); color: var(--cream); padding-right: 52px; }
.contact button:hover span { transform: translateX(6px); }

/* ---------- Footer ---------- */
.footer {
  background: var(--coffee);
  color: var(--cream);
  border-top: 1px solid var(--line-cream);
  padding: 70px 40px 30px;
}
.footer .wrap { max-width: 1400px; margin: 0 auto; }
.footer .cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 80px;
}
.footer .cols img { height: 28px; width: auto; margin-bottom: 28px; filter: brightness(0) invert(1); }
.footer .cols p { font-size: 14px; line-height: 1.55; opacity: 0.75; max-width: 28ch; }
.footer .cols h4 { font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; opacity: 0.55; margin-bottom: 20px; font-weight: 400; }
.footer .cols ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer .cols ul a { font-size: 15px; opacity: 0.92; }
.footer .bottom {
  border-top: 1px solid var(--line-cream);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.65;
  flex-wrap: wrap;
  gap: 20px;
}
.footer .giant {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: clamp(120px, 22vw, 360px);
  letter-spacing: -0.04em;
  line-height: 0.85;
  padding: 0 0 40px;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  color: var(--cream);
  opacity: 0.95;
}
.footer .giant em { font-family: "Inter", sans-serif; font-style: italic; }

/* ---------- Cursor ---------- */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--coffee);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 100;
  mix-blend-mode: difference;
  transition: width 0.25s, height 0.25s, background 0.25s;
}
.cursor.over-link { width: 36px; height: 36px; background: var(--cream); }
@media (max-width: 900px) { .cursor { display: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav { padding: 16px 22px; }
  .nav .links { display: none; }
  .hero .content { padding: 90px 22px 40px; }
  .hero .bottom { grid-template-columns: 1fr; gap: 24px; }
  .manifesto { padding: 100px 22px 120px; }
  .manifesto .grid { grid-template-columns: 1fr; gap: 50px; }
  .manifesto .label-col { position: static; }
  .manifesto .body { grid-template-columns: 1fr; gap: 22px; }
  .about { padding: 70px 22px 60px; }
  .about .top-bar { flex-direction: column; align-items: flex-start; gap: 14px; padding-bottom: 22px; margin-bottom: 32px; }
  .about .lead { margin-bottom: 36px; }
  .about .body { grid-template-columns: 1fr; gap: 18px; margin-bottom: 42px; }
  .about .body p { font-size: 14px; line-height: 1.55; }
  .about .stats-row { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; padding-top: 28px; }
  .about .stats-row .cell .num { font-size: clamp(36px, 9vw, 56px); }
  .projects .hd { padding: 90px 22px 50px; flex-direction: column; align-items: flex-start; }
  .stats { padding: 90px 22px 100px; }
  .stats .row { grid-template-columns: repeat(2, 1fr); gap: 60px 30px; }
  .location { padding: 90px 22px 0; }
  .location .head { grid-template-columns: 1fr; gap: 24px; }
  .location .split { grid-template-columns: 1fr; }
  .location .map { height: 460px; }
  .location .sticky-info { position: static; height: auto; padding: 32px 22px; }
  .contact { padding: 90px 22px 60px; }
  .contact .lead-row { grid-template-columns: 1fr; gap: 30px; }
  .contact form { grid-template-columns: 1fr; }
  .contact .field { border-right: 0 !important; padding: 24px 0 !important; }
  .footer .cols { grid-template-columns: 1fr 1fr; gap: 40px; padding-bottom: 50px; }
}
