/* palette: bg=#FFFFFF fg=#0A0A0A accent=#E63329 */
/* fonts: display="Archivo" body="Inter Tight" mono="JetBrains Mono" */

:root {
  --bg: #FFFFFF;
  --bg-alt: #F2F2EE;
  --fg: #0A0A0A;
  --fg-soft: #1F1F1F;
  --muted: #6B6B68;
  --accent: #E63329;
  --accent-deep: #B81A12;
  --border: rgba(10, 10, 10, 0.14);
  --border-strong: rgba(10, 10, 10, 0.28);
  --serif: 'Archivo', ui-sans-serif, sans-serif;
  --sans: 'Inter Tight', ui-sans-serif, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --grid-gutter: 24px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.72;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
::selection { background: var(--accent); color: #fff; }

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

.mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .35s var(--ease), background .35s var(--ease);
}
.header[data-scrolled="true"] {
  border-bottom-color: var(--border);
  background: rgba(255, 255, 255, 0.94);
}
.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 18px 32px;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 768px) {
  .header__inner { padding: 16px 20px; }
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.brand__mark {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: var(--fg);
  position: relative;
}
.brand__mark::after {
  content: "";
  position: absolute;
  inset: 5px;
  background: var(--accent);
}
.nav {
  display: flex;
  justify-content: center;
  gap: 32px;
}
@media (max-width: 900px) { .nav { display: none; } }
.nav a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color .25s var(--ease);
}
.nav a:hover { color: var(--accent); }
.nav a.is-active { color: var(--accent); }
.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--accent);
}
.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 900px) { .header__cta .btn { display: none; } }

.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  position: relative;
  border: 1px solid var(--fg);
  background: var(--fg);
}
.menu-toggle span {
  display: block;
  width: 18px; height: 1px;
  background: #fff;
  margin: 4px auto;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
@media (max-width: 900px) { .menu-toggle { display: block; } }

.mobile-menu {
  position: fixed;
  inset: 65px 0 0 0;
  background: var(--bg);
  z-index: 99;
  padding: 40px 20px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform .35s var(--ease), opacity .25s var(--ease);
  border-top: 1px solid var(--border);
}
.mobile-menu[data-open="true"] {
  transform: none;
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  display: block;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover { color: var(--accent); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--fg);
  background: var(--fg);
  color: #fff;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.btn:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--fg); }
.btn--ghost:hover { background: var(--fg); color: #fff; }
.btn--accent { background: var(--accent); border-color: var(--accent); }
.btn--accent:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.btn--big { padding: 18px 28px; font-size: 12px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid var(--fg);
  padding-bottom: 4px;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.text-link:hover { color: var(--accent); border-color: var(--accent); }
.text-link::after { content: "→"; transition: transform .25s var(--ease); }
.text-link:hover::after { transform: translateX(4px); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--fg);
  overflow: hidden;
}
.hero__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 900px) { .hero__top { grid-template-columns: 1fr; } }
.hero__meta {
  padding: 56px 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-right: 1px solid var(--border);
}
@media (max-width: 900px) { .hero__meta { padding: 32px 20px 24px; border-right: 0; border-bottom: 1px solid var(--border); } }
.hero__meta dl {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px 24px;
  margin: 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
}
.hero__meta dt { color: var(--muted); text-transform: uppercase; letter-spacing: 0.16em; font-size: 10px; padding-top: 3px; }
.hero__meta dd { margin: 0; color: var(--fg); }
.hero__index {
  padding: 56px 48px 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 900px) { .hero__index { padding: 24px 20px; } }
.hero__index .num {
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.hero__index .label {
  text-align: right;
  max-width: 240px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.hero__main {
  flex: 1;
  padding: 64px 48px 48px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: end;
}
@media (max-width: 900px) {
  .hero__main { grid-template-columns: 1fr; padding: 32px 20px; gap: 32px; }
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 10vw, 9rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
  font-weight: 400;
  margin: 0;
  color: var(--fg);
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}
.hero h1 .strike {
  position: relative;
  display: inline-block;
}
.hero h1 .strike::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 52%;
  height: 6px;
  background: var(--accent);
}
.hero__sub {
  max-width: 420px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--fg-soft);
}
.hero__sub p { margin: 0 0 20px; }

.hero__strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--fg);
}
@media (max-width: 768px) { .hero__strip { grid-template-columns: repeat(2, 1fr); } }
.hero__strip > div {
  padding: 22px 24px;
  border-right: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.hero__strip > div:last-child { border-right: 0; }
.hero__strip strong { color: var(--accent); font-weight: 500; }

/* Hero feature image */
.hero-feature {
  border-bottom: 1px solid var(--fg);
  position: relative;
  overflow: hidden;
}
.hero-feature__img {
  height: 60vh;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  animation: heroZoom 8s ease-out both;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
.hero-feature__caption {
  position: absolute;
  bottom: 24px;
  left: 32px;
  right: 32px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ===== Section base ===== */
section {
  position: relative;
}
.section {
  padding: clamp(80px, 12vw, 160px) 0;
}
.section--alt { background: var(--bg-alt); }
.section--inverted {
  background: var(--fg);
  color: var(--bg);
}
.section--inverted h2,
.section--inverted h3 { color: var(--bg); }
.section--inverted .eyebrow { color: var(--accent); }
.section--inverted .eyebrow::before { background: var(--accent); }
.section--inverted .text-link { color: var(--bg); border-color: var(--bg); }
.section--inverted .muted { color: rgba(255,255,255,0.6); }

.section__head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 72px;
}
@media (max-width: 900px) { .section__head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; } }
.section__head h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.025em;
  font-weight: 400;
  margin: 0;
  color: var(--fg);
}
.section__head h2 em { font-style: italic; color: var(--accent); font-weight: 300; }
.section__head .lead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--fg-soft);
  max-width: 520px;
  margin: 0 0 0 auto;
}

/* ===== Work grid ===== */
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  border-top: 1px solid var(--border);
  padding-top: 48px;
}
@media (max-width: 900px) { .work-grid { gap: 32px; } }

.case {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.case--lg { grid-column: span 8; }
.case--md { grid-column: span 4; }
.case--sm { grid-column: span 6; }
@media (max-width: 900px) {
  .case--lg, .case--md, .case--sm { grid-column: span 12; }
}
.case__img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  transition: transform .5s var(--ease);
}
.case--md .case__img { aspect-ratio: 4 / 5; }
.case__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.case:hover .case__img img { transform: scale(1.04); }
.case__num {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--bg);
  color: var(--fg);
  padding: 6px 10px;
  border: 1px solid var(--fg);
}
.case__tag {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  padding: 6px 10px;
}
.case__meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.case h3 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  font-weight: 400;
  margin: 4px 0;
}
.case p {
  margin: 0;
  color: var(--fg-soft);
  font-size: 16px;
  line-height: 1.6;
  max-width: 540px;
}

/* ===== Deep dive ===== */
.deep-dive {
  background: var(--fg);
  color: var(--bg);
  padding: clamp(80px, 12vw, 160px) 0;
}
.deep-dive .eyebrow { color: var(--accent); }
.deep-dive .eyebrow::before { background: var(--accent); }
.deep-dive__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) { .deep-dive__grid { grid-template-columns: 1fr; gap: 32px; } }
.deep-dive h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5.2vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-weight: 400;
  margin: 16px 0 24px;
  color: #fff;
}
.deep-dive h2 em { font-style: italic; color: var(--accent); font-weight: 300; }
.deep-dive p {
  color: rgba(255,255,255,0.78);
  font-size: 18px;
  line-height: 1.7;
  margin: 0 0 18px;
}
.deep-dive__numbers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  margin-top: 40px;
}
.deep-dive__numbers > div {
  padding: 28px 24px 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.deep-dive__numbers > div:nth-child(odd) { padding-right: 32px; border-right: 1px solid rgba(255,255,255,0.18); }
.deep-dive__numbers > div:nth-child(even) { padding-left: 32px; }
.deep-dive__numbers .n {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
}
.deep-dive__numbers .n em { font-style: italic; color: var(--accent); }
.deep-dive__numbers .l {
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.deep-dive__visual {
  border: 1px solid rgba(255,255,255,0.18);
  background: #050505;
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
}
.deep-dive__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.92;
}
.deep-dive__visual .tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--accent);
  color: #fff;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 12px;
}

/* ===== Manifesto ===== */
.manifesto {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(96px, 14vw, 200px) 0;
  position: relative;
}
.manifesto::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--border) 1px, transparent 1px);
  background-size: calc(100% / 12) 100%;
  background-position: 0 0;
  opacity: 0.5;
  pointer-events: none;
}
.manifesto__inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: left;
}
.manifesto__quote {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 300;
  margin: 24px 0;
  color: var(--fg);
}
.manifesto__quote em { font-style: italic; color: var(--accent); }
.manifesto__sign {
  margin-top: 56px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--fg);
  padding-top: 20px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ===== Process / list grids ===== */
.list-grid {
  border-top: 1px solid var(--fg);
}
.list-grid__row {
  display: grid;
  grid-template-columns: 80px 1fr 2fr auto;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
  transition: background .3s var(--ease);
}
.list-grid__row:hover { background: rgba(230, 51, 41, 0.04); }
@media (max-width: 768px) {
  .list-grid__row { grid-template-columns: 60px 1fr; gap: 12px 16px; }
  .list-grid__row > .desc { grid-column: 1 / -1; padding-left: 76px; }
  .list-grid__row > .meta { grid-column: 1 / -1; padding-left: 76px; }
}
.list-grid__row .num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.list-grid__row h3 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  margin: 0;
  line-height: 1.1;
}
.list-grid__row .desc {
  margin: 0;
  color: var(--fg-soft);
  font-size: 16px;
  line-height: 1.55;
}
.list-grid__row .meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
}

/* ===== CTA section ===== */
.cta {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--accent);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: calc(100% / 12) 100%;
  opacity: 0.5;
}
.cta__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
}
@media (max-width: 900px) { .cta__grid { grid-template-columns: 1fr; gap: 32px; } }
.cta h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 300;
  margin: 16px 0 24px;
  color: #fff;
}
.cta h2 em { font-style: italic; }
.cta .eyebrow { color: #fff; }
.cta .eyebrow::before { background: #fff; }
.cta__side dl {
  margin: 0;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px 20px;
  font-size: 14px;
}
.cta__side dt { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.7; padding-top: 3px; }
.cta__side dd { margin: 0; }
.cta__side a { border-bottom: 1px solid rgba(255,255,255,0.4); padding-bottom: 2px; }
.cta__side a:hover { border-color: #fff; }
.cta .btn--accent { background: #fff; color: var(--accent); border-color: #fff; }
.cta .btn--accent:hover { background: #0a0a0a; color: #fff; border-color: #0a0a0a; }

/* ===== Footer ===== */
.footer {
  background: var(--fg);
  color: rgba(255,255,255,0.85);
  padding: 80px 0 32px;
  border-top: 1px solid var(--fg);
}
.footer .container { padding-left: 32px; padding-right: 32px; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 600px) { .footer__grid { grid-template-columns: 1fr; } }
.footer h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  margin: 0 0 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 10px; }
.footer a { color: rgba(255,255,255,0.85); transition: color .25s var(--ease); }
.footer a:hover { color: var(--accent); }
.footer__brand {
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: #fff;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.footer__brand .brand__mark { background: #fff; }
.footer__brand .brand__mark::after { background: var(--accent); }
.footer__about { color: rgba(255,255,255,0.65); font-size: 15px; line-height: 1.6; max-width: 360px; }
.footer__bottom {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 16px;
}

/* ===== Reveal animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ===== Cookie popup ===== */
.cookie-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 24px;
  background: rgba(0,0,0,0.42);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card {
  background: var(--bg);
  padding: 32px 36px;
  max-width: 480px;
  border: 1px solid var(--fg);
  border-radius: 0;
  box-shadow: 0 12px 40px -8px rgba(0,0,0,0.18);
}
.cookie-popup__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.cookie-popup h3 {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.015em;
  font-weight: 500;
  margin: 0 0 10px;
}
.cookie-popup p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--fg-soft); }
.cookie-popup__actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.cookie-popup__actions button {
  flex: 1;
  padding: 12px 22px;
  border: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  background: var(--bg);
  color: var(--fg);
  transition: all .25s var(--ease);
}
.cookie-popup__actions button:hover { border-color: var(--fg); }
.cookie-popup__actions button:last-child {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}
.cookie-popup__actions button:last-child:hover { background: var(--accent); border-color: var(--accent); }

/* ===== About page ===== */
.about-hero {
  border-bottom: 1px solid var(--border);
  padding: 64px 0 48px;
}
.about-hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin: 24px 0 24px;
  max-width: 18ch;
}
.about-hero h1 em { font-style: italic; color: var(--accent); font-weight: 300; }
.about-hero__lead {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  margin-top: 56px;
  border-top: 1px solid var(--border);
  padding-top: 48px;
  align-items: start;
}
@media (max-width: 900px) { .about-hero__lead { grid-template-columns: 1fr; gap: 24px; } }
.about-hero__lead p { margin: 0; font-size: 19px; line-height: 1.65; color: var(--fg-soft); }
.about-hero__lead p + p { margin-top: 18px; }

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--fg);
}
@media (max-width: 900px) { .values { grid-template-columns: 1fr; } }
.values > div {
  padding: 40px 32px 48px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.values > div:last-child { border-right: 0; }
.values .n {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.18em;
  display: block;
  margin-bottom: 56px;
}
.values h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  line-height: 1.1;
}
.values p { margin: 0; color: var(--fg-soft); font-size: 16px; line-height: 1.6; }

/* ===== Studio principles (no faces) ===== */
.principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--fg);
}
@media (max-width: 768px) { .principles { grid-template-columns: 1fr; } }
.principles > article {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.principles > article:nth-child(even) { border-right: 0; }
.principles .symbol {
  width: 48px; height: 48px;
  border: 1px solid var(--fg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 32px;
}
.principles .symbol svg { width: 22px; height: 22px; }
.principles h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
}
.principles .role {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.principles p { margin: 0; color: var(--fg-soft); font-size: 16px; line-height: 1.6; }

/* ===== Services page ===== */
.services-hero {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--border);
}
.services-hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin: 24px 0;
  max-width: 16ch;
}
.services-hero h1 em { font-style: italic; color: var(--accent); font-weight: 300; }

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--fg);
}
@media (max-width: 900px) { .pricing { grid-template-columns: 1fr; } }
.pricing > article {
  padding: 40px 32px 48px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background .3s var(--ease);
}
.pricing > article:last-child { border-right: 0; }
.pricing > article:hover { background: var(--bg-alt); }
.pricing .tier {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.pricing h3 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.05;
}
.pricing .price {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--fg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.pricing .price small { color: var(--muted); font-size: 14px; }
.pricing ul { list-style: none; padding: 0; margin: 0; flex: 1; }
.pricing li {
  padding: 10px 0;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 12px;
}
.pricing li::before { content: "—"; color: var(--accent); }

/* ===== Contact page ===== */
.contact-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--fg);
  min-height: 70vh;
}
@media (max-width: 900px) { .contact-hero { grid-template-columns: 1fr; } }
.contact-hero__text {
  padding: 64px 48px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 900px) { .contact-hero__text { padding: 32px 20px; border-right: 0; border-bottom: 1px solid var(--border); } }
.contact-hero__text h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.98;
  margin: 24px 0 24px;
}
.contact-hero__text h1 em { font-style: italic; color: var(--accent); font-weight: 300; }

.contact-hero__form {
  padding: 64px 48px;
  background: var(--bg-alt);
}
@media (max-width: 900px) { .contact-hero__form { padding: 32px 20px; } }
form.form {
  display: grid;
  gap: 22px;
}
.form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form__field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.form__field input,
.form__field textarea,
.form__field select {
  border: 0;
  border-bottom: 1px solid var(--fg);
  background: transparent;
  font-family: var(--sans);
  font-size: 17px;
  padding: 12px 0;
  color: var(--fg);
  border-radius: 0;
}
.form__field input:focus,
.form__field textarea:focus,
.form__field select:focus { outline: none; border-bottom-color: var(--accent); }
.form__field textarea { min-height: 110px; resize: vertical; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.form__legal { font-size: 13px; color: var(--muted); line-height: 1.5; }
.form__legal a { border-bottom: 1px solid var(--accent); }
.form button[type="submit"] { justify-self: start; }

.contact-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--fg);
}
@media (max-width: 900px) { .contact-meta { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .contact-meta { grid-template-columns: 1fr; } }
.contact-meta > div {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.contact-meta > div:last-child { border-right: 0; }
.contact-meta .l {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.contact-meta .v { font-family: var(--serif); font-size: 22px; letter-spacing: -0.015em; line-height: 1.25; font-weight: 400; }
.contact-meta .v small { display: block; font-family: var(--sans); font-size: 13px; color: var(--muted); margin-top: 4px; letter-spacing: 0; }

/* ===== Legal pages ===== */
.legal {
  padding: 64px 0 80px;
  max-width: 880px;
  margin: 0 auto;
}
.legal h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  line-height: 1;
}
.legal .meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  margin: 24px 0 40px;
  display: flex; justify-content: space-between; gap: 16px;
}
.legal h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 48px 0 14px;
}
.legal h3 {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 32px 0 12px;
}
.legal p, .legal li { font-size: 16px; line-height: 1.7; color: var(--fg-soft); }
.legal ul { padding-left: 20px; }

/* Thanks */
.thanks {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  text-align: center;
}
.thanks h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  margin: 24px 0 24px;
  line-height: 0.96;
}
.thanks h1 em { font-style: italic; color: var(--accent); font-weight: 300; }
.thanks p { max-width: 560px; margin: 0 auto 28px; font-size: 18px; color: var(--fg-soft); line-height: 1.65; }

/* Tiny utility */
.muted { color: var(--muted); }
.divider { height: 1px; background: var(--border); margin: 48px 0; }
