/* palette: bg=#CFCDC6 fg=#0E0E10 accent=#2438E8 */
/* fonts: display="Space Grotesk" body="Space Grotesk" mono="IBM Plex Mono" */

:root {
  --bg: #CFCDC6;
  --bg-alt: #B7B4AC;
  --bg-deep: #0E0E10;
  --fg: #0E0E10;
  --fg-soft: #1F1F23;
  --muted: #5A574F;
  --accent: #2438E8;
  --accent-deep: #1A2AC0;
  --accent-soft: #E6E8FB;
  --border: rgba(14, 14, 16, 0.18);
  --border-strong: rgba(14, 14, 16, 0.85);
  --serif: 'Space Grotesk', ui-sans-serif, sans-serif;
  --sans: 'Space Grotesk', ui-sans-serif, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --grain: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><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.18 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

*, *::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;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: var(--grain);
  background-size: 240px 240px;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
  opacity: 0.55;
}

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; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0;
}

p { margin: 0; }

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .container { padding: 0 40px; }
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
}

.eyebrow--no-rule::before { display: none; }

.num-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============= HEADER ============= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(207, 205, 198, 0.82);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.header[data-scrolled="true"] {
  border-bottom: 1px solid var(--border-strong);
  background: rgba(207, 205, 198, 0.94);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.brand__mark {
  width: 32px;
  height: 32px;
  background: var(--fg);
  color: var(--bg);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand__mark span { transform: translateY(-1px); }

.nav {
  display: none;
  gap: 36px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  padding: 6px 0;
  transition: color 0.25s var(--ease);
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--fg);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }

@media (min-width: 1024px) { .nav { display: flex; } }

.header__cta {
  display: none;
  align-items: center;
  gap: 16px;
}

@media (min-width: 1024px) { .header__cta { display: flex; } }

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  gap: 5px;
  align-content: center;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--fg);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }

@media (min-width: 1024px) { .menu-toggle { display: none; } }

.mobile-menu {
  position: fixed;
  inset: 64px 0 0 0;
  background: var(--bg);
  border-top: 1px solid var(--border-strong);
  z-index: 90;
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform 0.5s var(--ease), visibility 0.5s;
  display: flex;
  flex-direction: column;
  padding: 40px 24px;
  gap: 8px;
}

.mobile-menu[data-open="true"] {
  transform: translateY(0);
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.02em;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 1024px) { .mobile-menu { display: none; } }

/* ============= BUTTONS ============= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--fg);
  background: var(--fg);
  color: var(--bg);
  transition: transform 0.3s var(--ease), background 0.25s, color 0.25s;
  border-radius: 0;
}

.btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translate(-2px, -2px); }

.btn--ghost {
  background: transparent;
  color: var(--fg);
}
.btn--ghost:hover { background: var(--fg); color: var(--bg); }

.btn--accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.btn--accent:hover { background: var(--fg); border-color: var(--fg); color: var(--bg); }

.btn .arrow { display: inline-block; transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--fg);
  transition: gap 0.25s var(--ease);
}
.text-link:hover { gap: 16px; }

/* ============= HERO ============= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px 0 56px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 16s var(--ease) forwards;
  filter: grayscale(0.85) contrast(1.05) brightness(0.62);
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14,14,16,0.4) 0%, rgba(14,14,16,0.15) 30%, rgba(14,14,16,0.85) 100%),
    linear-gradient(90deg, rgba(14,14,16,0.45) 0%, rgba(14,14,16,0) 60%);
}

@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }

.hero .container {
  position: relative;
  z-index: 5;
  color: var(--bg);
  width: 100%;
}

.hero__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 48px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  flex-wrap: wrap;
}

.hero__meta-row { display: flex; flex-direction: column; gap: 6px; }
.hero__meta-row span:first-child { color: rgba(255,255,255,0.5); }

.hero__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero__eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--accent);
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 11.2vw, 9.5rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
  font-weight: 500;
  max-width: 13ch;
  color: #fff;
  margin: 0 0 40px;
}

.hero__title em {
  font-style: normal;
  font-family: var(--serif);
  color: var(--accent);
  position: relative;
  display: inline-block;
  padding: 0 0.05em;
}

.hero__sub {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: end;
}

@media (min-width: 768px) {
  .hero__sub { grid-template-columns: 2fr 1fr; gap: 40px; }
}

.hero__lede {
  max-width: 46ch;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.86);
}

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.hero__scroll {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.hero__scroll::after {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--accent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleX(1); opacity: 1; transform-origin: left; }
  50% { transform: scaleX(0.4); opacity: 0.5; transform-origin: left; }
}

/* ============= SECTIONS ============= */
section { padding: clamp(80px, 12vw, 160px) 0; position: relative; z-index: 2; }

.section--dark {
  background: var(--bg-deep);
  color: var(--bg);
}

.section--dark .num-label { color: rgba(255,255,255,0.5); }
.section--dark .eyebrow { color: rgba(255,255,255,0.85); }

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 80px;
  align-items: end;
}

@media (min-width: 1024px) {
  .section-head { grid-template-columns: 1fr 1fr; gap: 64px; }
}

.section-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: -0.03em;
  line-height: 1;
  font-weight: 400;
  max-width: 14ch;
}

.section-title em { font-style: normal; color: var(--accent); }

.section-intro {
  font-size: 18px;
  line-height: 1.65;
  max-width: 50ch;
  color: var(--muted);
}

.section--dark .section-intro { color: rgba(255,255,255,0.72); }

/* ============= REVEAL ============= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ============= SERVICES ============= */
.services {
  border-top: 1px solid var(--border-strong);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--border-strong);
}

@media (min-width: 768px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1280px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  position: relative;
  padding: 40px 28px 36px;
  border-right: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
  background: transparent;
  transition: background 0.4s var(--ease), color 0.3s;
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-height: 360px;
}

.service-card:last-child { border-right: 1px solid var(--border-strong); }

@media (min-width: 768px) {
  .service-card:nth-child(2n) { border-right: 1px solid var(--border-strong); }
}

.service-card:hover {
  background: var(--fg);
  color: var(--bg);
}

.service-card:hover .service-card__num,
.service-card:hover .service-card__detail-label { color: rgba(255,255,255,0.55); }

.service-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.service-card__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
}

.service-card__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
}

.service-card__icon svg { width: 22px; height: 22px; }

.service-card__title {
  font-size: 26px;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-weight: 400;
  font-family: var(--serif);
}

.service-card__body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  flex: 1;
}

.service-card:hover .service-card__body { color: rgba(255,255,255,0.78); }

.service-card__detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.service-card:hover .service-card__detail { border-top-color: rgba(255,255,255,0.18); }

.service-card__detail-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ============= MANIFESTO ============= */
.manifesto {
  background: var(--bg-deep);
  color: var(--bg);
  padding: clamp(120px, 16vw, 200px) 0;
  position: relative;
  overflow: hidden;
}

.manifesto::before {
  content: '01 — MANIFESTO';
  position: absolute;
  top: 40px;
  left: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.35);
}

.manifesto__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: end;
}

@media (min-width: 1024px) {
  .manifesto__inner { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.manifesto__quote {
  font-family: var(--serif);
  font-size: clamp(2rem, 5.4vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 400;
  color: var(--bg);
  margin: 0;
}

.manifesto__quote em {
  font-style: normal;
  color: var(--accent);
  font-family: var(--serif);
}

.manifesto__attr {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.manifesto__attr-name { color: var(--bg); font-size: 14px; letter-spacing: 0.04em; }

/* ============= WORK ============= */
.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  border-top: 1px solid var(--border-strong);
}

@media (min-width: 768px) {
  .work-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: auto;
    gap: 0;
  }
}

.work-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--border-strong);
  padding: 32px 0;
  transition: background 0.3s var(--ease);
}

@media (min-width: 768px) {
  .work-card { padding: 36px; border-right: 1px solid var(--border-strong); }
  .work-card:nth-child(1) { grid-column: 1 / 8; grid-row: span 2; border-left: 1px solid var(--border-strong); }
  .work-card:nth-child(2) { grid-column: 8 / 13; }
  .work-card:nth-child(3) { grid-column: 8 / 13; }
}

.work-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 24px;
  background: var(--bg-alt);
}

.work-card:nth-child(1) .work-card__media { aspect-ratio: 16 / 11; }

.work-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter 0.5s;
  filter: grayscale(0.4) contrast(1.05);
}

.work-card:hover .work-card__media img {
  transform: scale(1.05);
  filter: grayscale(0) contrast(1);
}

.work-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.work-card__title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 14px;
}

.work-card__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 50ch;
}

.work-card__footer {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ============= PROCESS ============= */
.process {
  background: var(--bg-alt);
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--border-strong);
}

@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(3, 1fr); } }

.process-step {
  padding: 56px 28px;
  border-bottom: 1px solid var(--border-strong);
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}

@media (min-width: 1024px) {
  .process-step { border-right: 1px solid var(--border-strong); border-bottom: none; padding: 64px 40px; min-height: 440px; }
  .process-step:last-child { border-right: 1px solid var(--border-strong); }
}

.process-step__num {
  font-family: var(--serif);
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: var(--fg);
}

.process-step__title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.process-step__body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-soft);
  max-width: 38ch;
}

.process-step__tag {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-block;
  padding: 6px 0;
  border-top: 1px solid var(--border-strong);
}

/* ============= TEAM (no faces) ============= */
.team {
  background: var(--bg);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--border-strong);
  border-left: 1px solid var(--border-strong);
}

@media (min-width: 768px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }

.team-card {
  padding: 36px 28px;
  border-right: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: transparent;
  transition: background 0.35s var(--ease), color 0.35s;
  min-height: 380px;
}

.team-card:hover { background: var(--fg); color: var(--bg); }

.team-card:hover .team-card__role,
.team-card:hover .team-card__bio { color: rgba(255,255,255,0.7); }

.avatar {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  border: 1px solid currentColor;
  background: transparent;
  color: var(--accent);
}

.avatar--mono { color: var(--bg); background: var(--accent); border-color: var(--accent); }
.avatar--ink { color: var(--bg); background: var(--fg); border-color: var(--fg); }
.avatar--cream { color: var(--fg); background: var(--bg-alt); border-color: var(--border-strong); }

.team-card:hover .avatar--mono { background: var(--bg); color: var(--accent); border-color: var(--bg); }
.team-card:hover .avatar--ink { background: var(--bg); color: var(--fg); border-color: var(--bg); }
.team-card:hover .avatar--cream { background: var(--accent); color: var(--bg); border-color: var(--accent); }

.team-card__name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.team-card__role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: -16px;
}

.team-card__bio {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

.team-card__meta {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.team-card:hover .team-card__meta { border-top-color: rgba(255,255,255,0.2); }

/* ============= CTA / CONTACT ============= */
.cta {
  background: var(--bg-deep);
  color: var(--bg);
  padding: clamp(100px, 14vw, 180px) 0;
  position: relative;
  overflow: hidden;
}

.cta__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}

@media (min-width: 1024px) {
  .cta__inner { grid-template-columns: 1fr 1fr; gap: 96px; }
}

.cta__title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6.5vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin-bottom: 32px;
}

.cta__title em { font-style: normal; color: var(--accent); }

.cta__lede {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  max-width: 44ch;
  margin-bottom: 40px;
}

.cta__contacts {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.18);
}

.cta__contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cta__contact-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.cta__contact-value {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: -0.01em;
}

/* ============= FORM ============= */
.form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 600px) { .form__row { grid-template-columns: 1fr 1fr; } }

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

.form__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.form input,
.form textarea,
.form select {
  font: inherit;
  font-size: 16px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  color: var(--bg);
  padding: 12px 0;
  outline: none;
  transition: border-color 0.3s;
  font-family: var(--sans);
}

.form input:focus,
.form textarea:focus,
.form select:focus { border-bottom-color: var(--accent); }

.form input::placeholder, .form textarea::placeholder { color: rgba(255,255,255,0.35); }

.form textarea { resize: vertical; min-height: 120px; }

.form__submit { margin-top: 16px; align-self: flex-start; }

.form__consent {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.form__consent a { color: var(--bg); border-bottom: 1px solid rgba(255,255,255,0.4); }

/* ============= FOOTER ============= */
.footer {
  background: var(--bg);
  color: var(--fg);
  border-top: 1px solid var(--border-strong);
  padding: 80px 0 32px;
  position: relative;
  z-index: 2;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border-strong);
}

@media (min-width: 1024px) {
  .footer__top { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px; }
}

.footer__brand {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  letter-spacing: -0.03em;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 24px;
}

.footer__col-title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer__col a { font-size: 15px; transition: color 0.2s; }
.footer__col a:hover { color: var(--accent); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============= ABOUT page ============= */
.page-hero {
  padding: 160px 0 80px;
  border-bottom: 1px solid var(--border-strong);
  position: relative;
}

.page-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: end;
}

@media (min-width: 1024px) { .page-hero__inner { grid-template-columns: 2fr 1fr; gap: 80px; } }

.page-hero__title {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.94;
  letter-spacing: -0.035em;
  font-weight: 400;
  max-width: 14ch;
}

.page-hero__title em { font-style: normal; color: var(--accent); }

.page-hero__lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 44ch;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: start;
}

@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 96px; } }

.about-figure {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
  background: var(--bg-alt);
}

.about-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.6) contrast(1.05);
}

.about-figure__caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bg);
  display: flex;
  justify-content: space-between;
}

.about-text h2 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  font-weight: 400;
  margin-bottom: 32px;
}

.about-text p { font-size: 17px; line-height: 1.72; color: var(--fg-soft); margin-bottom: 24px; }

/* ============= STATS ============= */
.stats {
  background: var(--bg-deep);
  color: var(--bg);
  padding: clamp(80px, 10vw, 120px) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.2);
  border-left: 1px solid rgba(255,255,255,0.2);
}

@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat {
  padding: 40px 24px;
  border-right: 1px solid rgba(255,255,255,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat__num {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--accent);
}

.stat__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.stat__detail {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.6);
  margin-top: auto;
}

/* ============= LEGAL pages ============= */
.legal {
  padding: 140px 0 80px;
  max-width: 800px;
  margin: 0 auto;
}

.legal h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  font-weight: 400;
}

.legal__meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-strong);
}

.legal h2 {
  font-size: 24px;
  letter-spacing: -0.015em;
  font-weight: 500;
  margin: 48px 0 16px;
}

.legal p, .legal li {
  font-size: 16px;
  line-height: 1.75;
  color: var(--fg-soft);
  margin-bottom: 16px;
}

.legal ul { padding-left: 20px; margin-bottom: 16px; }

.legal a { color: var(--accent); border-bottom: 1px solid var(--accent); }

/* ============= CONTACT page ============= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1.2fr 1fr; gap: 96px; } }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.contact-info__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.contact-info__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-info__value {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.3;
  font-weight: 400;
}

/* contact form light variant */
.form--light input,
.form--light textarea,
.form--light select {
  color: var(--fg);
  border-bottom-color: var(--border-strong);
}
.form--light input::placeholder, .form--light textarea::placeholder { color: var(--muted); }
.form--light .form__label { color: var(--muted); }
.form--light .form__consent { color: var(--muted); }
.form--light .form__consent a { color: var(--fg); border-bottom-color: var(--fg); }

/* ============= COOKIE POPUP ============= */
.cookie-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 24px;
  background: rgba(14,14,16,0.45);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.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;
  position: relative;
}

.cookie-popup__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.cookie-popup__card h3 {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-bottom: 14px;
  font-weight: 500;
}

.cookie-popup__card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg-soft);
}

.cookie-popup__actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.cookie-popup__actions button {
  padding: 12px 24px;
  border: 1px solid var(--fg);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: transparent;
  color: var(--fg);
  transition: background 0.25s, color 0.25s;
}

.cookie-popup__actions button:last-child {
  background: var(--fg);
  color: var(--bg);
}
.cookie-popup__actions button:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ============= MISC ============= */
.full-bleed-line {
  height: 1px;
  background: var(--border-strong);
  margin: 0;
  border: 0;
}

.marquee {
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
  padding: 22px 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  letter-spacing: -0.02em;
  font-weight: 400;
}

.marquee__track {
  display: inline-flex;
  gap: 48px;
  animation: marquee 28s linear infinite;
}

.marquee__track span { display: inline-flex; align-items: center; gap: 48px; }
.marquee__track span::after { content: '⊹'; color: var(--accent); }

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

/* utilities */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
