/* palette: bg=#17181A fg=#ECECE6 accent=#8FE4CD */
/* fonts: display="Space Grotesk" body="Inter" mono="IBM Plex Mono" */

:root {
  --bg: #17181A;          /* charcoal grid board */
  --bg-alt: #202226;      /* alternating panel background */
  --panel: #1E2023;       /* window/card surface */
  --fg: #ECECE6;          /* primary off-white text */
  --fg-soft: #C9CAC4;     /* softened body text */
  --muted: #85877F;       /* secondary / captions */
  --accent: #8FE4CD;      /* mint teal — signature accent */
  --accent-deep: #63C9AE; /* darker mint for hover */
  --blue: #4361EE;        /* electric blue secondary */
  --blue-soft: #6E86F5;
  --lime: #C9E86C;        /* sparingly, from DROOL mark */
  --border: rgba(255, 255, 255, 0.10);
  --border-soft: rgba(255, 255, 255, 0.06);
  --grid-line: rgba(255, 255, 255, 0.035);

  --serif: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --container: 1240px;
  --pad-x: clamp(20px, 5vw, 48px);
}

*, *::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.75;
  color: var(--fg);
  background-color: var(--bg);
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 34px 34px;
  background-position: -1px -1px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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: 500; letter-spacing: -0.02em; margin: 0; }
p { margin: 0; }

::selection { background: var(--accent); color: #10120F; }

/* ───────── Layout primitives ───────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
}

.section--tight { padding: clamp(56px, 8vw, 100px) 0; }

.section--alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.section--invert {
  background: var(--fg);
  color: #14150F;
}
.section--invert .eyebrow { color: #3f6b58; }
.section--invert .muted { color: #4b4d44; }

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

.section-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head h2 {
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.section-head p {
  margin-top: 22px;
  color: var(--fg-soft);
  font-size: 1.06rem;
  max-width: 620px;
}

.muted { color: var(--muted); }
.accent-text { color: var(--accent); }

/* ───────── Buttons & links ───────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 9999px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  will-change: transform;
}
.btn--primary {
  background: var(--accent);
  color: #10120F;
}
.btn--primary:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn--ghost {
  border: 1px solid var(--border);
  color: var(--fg);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.section--invert .btn--ghost { border-color: rgba(0,0,0,0.2); color: #14150F; }
.section--invert .btn--ghost:hover { border-color: #14150F; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--accent);
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.link-arrow:hover { gap: 14px; color: var(--accent-deep); }

/* ───────── Header ───────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(23, 24, 26, 0.82);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.header[data-scrolled="true"] {
  border-bottom-color: var(--border-soft);
  box-shadow: 0 8px 30px -12px rgba(0, 0, 0, 0.6);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}
.brand__mark {
  width: 26px; height: 26px;
  border: 1.5px solid var(--accent);
  border-radius: 6px;
  display: grid;
  place-items: center;
  position: relative;
}
.brand__mark::before {
  content: "";
  width: 9px; height: 9px;
  background: var(--accent);
  border-radius: 2px;
}

.nav { display: none; align-items: center; gap: 34px; }
.nav a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--fg-soft);
  transition: color 0.3s var(--ease);
  position: relative;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--fg); }
.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 1px;
  background: var(--accent);
}
.header__cta { display: none; }

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 11px;
}
.menu-toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--fg);
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.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(-6.5px) rotate(-45deg); }

/* ───────── Mobile menu ───────── */
.mobile-menu {
  position: fixed;
  inset: 72px 0 0;
  z-index: 99;
  background: var(--bg);
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 34px 34px;
  padding: 40px var(--pad-x) 48px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.mobile-menu[data-open="true"] { opacity: 1; transform: none; pointer-events: all; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
}
.mobile-menu a span { font-family: var(--mono); font-size: 12px; color: var(--muted); margin-right: 14px; }
.mobile-menu .btn { margin-top: 26px; align-self: flex-start; }

/* ───────── Hero ───────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 120px 0 clamp(48px, 7vw, 88px);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.20;
  filter: grayscale(0.35) contrast(1.05);
  animation: heroZoom 9s var(--ease) forwards;
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,24,26,0.55) 0%, rgba(23,24,26,0.35) 40%, var(--bg) 100%);
}
@keyframes heroZoom {
  from { transform: scale(1.10); }
  to   { transform: scale(1); }
}
.hero .container { position: relative; z-index: 1; width: 100%; }
.hero__eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__eyebrow::before { content: "["; color: var(--muted); }
.hero__eyebrow::after { content: "]"; color: var(--muted); }
.hero h1 {
  font-size: clamp(3.2rem, 10vw, 8.5rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
  max-width: 15ch;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero__sub {
  margin-top: 32px;
  max-width: 560px;
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--fg-soft);
}
.hero__actions {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero__meta {
  margin-top: clamp(48px, 7vw, 84px);
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border-soft);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.03em;
}
.hero__meta strong { display: block; color: var(--fg); font-size: 1.6rem; font-family: var(--serif); font-weight: 500; letter-spacing: -0.02em; margin-bottom: 4px; }

/* ───────── Essay / manifesto ───────── */
.essay { max-width: 900px; }
.essay .lead {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  line-height: 1.24;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 44px;
}
.essay .lead em { font-style: normal; color: var(--accent); }
.essay__body { columns: 1; }
.essay__body p {
  color: var(--fg-soft);
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 62ch;
}
.essay__body p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 3.4em;
  font-weight: 500;
  float: left;
  line-height: 0.82;
  padding: 6px 14px 0 0;
  color: var(--accent);
}

/* ───────── Pull quote band ───────── */
.pullquote { text-align: center; }
.pullquote .mark {
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 0.4;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
}
.pullquote blockquote {
  margin: 0 auto;
  max-width: 980px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 5vw, 3.6rem);
  line-height: 1.16;
  letter-spacing: -0.025em;
}
.pullquote blockquote em { font-style: normal; color: var(--accent); }
.section--invert .pullquote .mark,
.section--invert .pullquote blockquote em { color: var(--blue); }
.pullquote cite {
  display: block;
  margin-top: 34px;
  font-family: var(--mono);
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ───────── Panel / window cards ───────── */
.grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .grid--2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--2 { grid-template-columns: 1fr 1fr; }
}

.panel {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 26px 30px;
  transition: transform 0.5s var(--ease), border-color 0.4s var(--ease), box-shadow 0.5s var(--ease);
  overflow: hidden;
}
.panel::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 34px;
  border-bottom: 1px dashed var(--border-soft);
  background: rgba(255,255,255,0.015);
}
.panel:hover {
  transform: translateY(-4px);
  border-color: rgba(143, 228, 205, 0.4);
  box-shadow: 0 20px 46px -18px rgba(0, 0, 0, 0.7);
}
.panel__tab {
  position: relative;
  z-index: 1;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: -6px -4px 22px;
}
.panel__tab .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.panel__num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.panel h3 {
  font-size: 1.35rem;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.panel p { color: var(--fg-soft); font-size: 0.98rem; line-height: 1.66; }
.panel .panel__foot {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
}

/* ───────── Stats band ───────── */
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 10px;
  overflow: hidden;
}
@media (min-width: 820px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat {
  background: var(--fg);
  padding: 36px 26px;
}
.stat strong {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  letter-spacing: -0.03em;
  color: #14150F;
  line-height: 1;
}
.stat span {
  display: block;
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #5a5c52;
  line-height: 1.5;
}

/* ───────── Process (numbered) ───────── */
.steps { display: grid; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 34px 0;
  border-top: 1px solid var(--border-soft);
}
.step:last-child { border-bottom: 1px solid var(--border-soft); }
@media (min-width: 820px) { .step { grid-template-columns: 120px 1fr 1.4fr; gap: 40px; align-items: baseline; } }
.step__num {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.step h3 { font-size: 1.5rem; letter-spacing: -0.02em; }
.step p { color: var(--fg-soft); font-size: 1rem; line-height: 1.72; }

/* ───────── Work / case cards ───────── */
.work {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .work { grid-template-columns: 1fr 1fr; } }
.work-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--panel);
  transition: transform 0.5s var(--ease), border-color 0.4s var(--ease), box-shadow 0.5s var(--ease);
}
.work-card:hover {
  transform: translateY(-5px);
  border-color: rgba(143, 228, 205, 0.4);
  box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.75);
}
.work-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
  background: #0f1012;
}
.work-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.9;
  filter: grayscale(0.2);
  transition: transform 0.9s var(--ease), opacity 0.5s var(--ease);
}
.work-card:hover .work-card__img img { transform: scale(1.06); opacity: 1; }
.work-card__tag {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(23,24,26,0.85);
  border: 1px solid var(--border);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 6px;
}
.work-card__body { padding: 24px 24px 28px; }
.work-card__body h3 { font-size: 1.35rem; margin-bottom: 10px; letter-spacing: -0.01em; }
.work-card__body p { color: var(--fg-soft); font-size: 0.97rem; line-height: 1.62; }
.work-card__result {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--accent);
}

/* ───────── FAQ ───────── */
.faq { max-width: 860px; margin: 0 auto; }
.faq details {
  border-top: 1px solid var(--border-soft);
  padding: 6px 0;
}
.faq details:last-of-type { border-bottom: 1px solid var(--border-soft); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  letter-spacing: -0.015em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .sign {
  flex: none;
  font-family: var(--mono);
  font-size: 1.3rem;
  color: var(--accent);
  transition: transform 0.35s var(--ease);
  line-height: 1;
}
.faq details[open] summary .sign { transform: rotate(45deg); }
.faq details p {
  color: var(--fg-soft);
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 68ch;
  padding: 0 0 30px;
  margin-top: -6px;
}

/* ───────── CTA band ───────── */
.cta-band { text-align: center; }
.cta-band h2 {
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 16ch;
  margin: 0 auto 28px;
}
.cta-band p { color: var(--fg-soft); max-width: 540px; margin: 0 auto 40px; font-size: 1.08rem; }
.section--invert .cta-band p { color: #4b4d44; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ───────── Contact / form ───────── */
.contact-grid { display: grid; gap: 48px; grid-template-columns: 1fr; }
@media (min-width: 940px) { .contact-grid { grid-template-columns: 0.85fr 1.15fr; gap: 72px; } }
.contact-info h2 { font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 24px; }
.contact-info p { color: var(--fg-soft); margin-bottom: 32px; max-width: 42ch; }
.contact-list { display: grid; gap: 22px; }
.contact-list div { border-top: 1px solid var(--border-soft); padding-top: 16px; }
.contact-list dt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.contact-list dd { margin: 0; font-size: 1.02rem; color: var(--fg); }
.contact-list a:hover { color: var(--accent); }

.form {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: clamp(28px, 4vw, 44px);
}
.form__row { display: grid; gap: 20px; margin-bottom: 20px; }
@media (min-width: 620px) { .form__row--2 { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 9px; }
.field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field textarea, .field select {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--fg);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px 15px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  background: #1b1d20;
}
.field input::placeholder, .field textarea::placeholder { color: #5c5e57; }
.form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form__note { margin-top: 16px; font-size: 12px; color: var(--muted); line-height: 1.5; }
.form__note a { color: var(--accent); }

/* ───────── Values / list section ───────── */
.deflist { display: grid; gap: 0; }
.deflist__item {
  display: grid;
  gap: 8px;
  padding: 30px 0;
  border-top: 1px solid var(--border-soft);
}
.deflist__item:last-child { border-bottom: 1px solid var(--border-soft); }
@media (min-width: 760px) { .deflist__item { grid-template-columns: 0.9fr 1.6fr; gap: 48px; align-items: baseline; } }
.deflist__item h3 { font-size: 1.4rem; letter-spacing: -0.02em; }
.deflist__item p { color: var(--fg-soft); font-size: 1rem; line-height: 1.72; }

/* ───────── Legal / long-form ───────── */
.legal { max-width: 820px; margin: 0 auto; }
.legal h1 { font-size: clamp(2.4rem, 6vw, 4rem); line-height: 1.03; letter-spacing: -0.03em; margin-bottom: 14px; }
.legal .updated { font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: 0.06em; margin-bottom: 48px; }
.legal h2 { font-size: 1.5rem; margin: 44px 0 14px; letter-spacing: -0.02em; }
.legal h3 { font-size: 1.12rem; margin: 28px 0 10px; }
.legal p, .legal li { color: var(--fg-soft); font-size: 1.02rem; line-height: 1.78; }
.legal p { margin-bottom: 18px; }
.legal ul { padding-left: 22px; margin-bottom: 18px; }
.legal li { margin-bottom: 9px; }
.legal a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ───────── Footer ───────── */
.footer {
  border-top: 1px solid var(--border-soft);
  padding: clamp(64px, 8vw, 96px) 0 40px;
  background: #131416;
}
.footer__top {
  display: grid;
  gap: 44px;
  grid-template-columns: 1fr;
  margin-bottom: 56px;
}
@media (min-width: 820px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; } }
.footer__brand .brand { font-size: 1.4rem; margin-bottom: 18px; }
.footer__brand p { color: var(--muted); font-size: 0.98rem; max-width: 34ch; line-height: 1.65; }
.footer__col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.footer__col a, .footer__col li { font-size: 0.97rem; color: var(--fg-soft); transition: color 0.3s var(--ease); }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--border-soft);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.footer__bottom a:hover { color: var(--accent); }

/* ───────── Scroll reveal ───────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[style*="--i"] { transition-delay: calc(var(--i) * 80ms); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__bg img { animation: none; }
  * { scroll-behavior: auto; }
}

/* ───────── Cookie popup ───────── */
.cookie-popup {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: flex-end;
  padding: 24px;
  background: rgba(0, 0, 0, 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(--panel);
  border: 1px solid var(--border);
  padding: 32px 34px;
  max-width: 480px;
  border-radius: 12px;
  box-shadow: 0 30px 70px -20px rgba(0,0,0,0.8);
}
.cookie-popup__label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.cookie-popup__card h3 { font-size: 1.35rem; margin-bottom: 12px; letter-spacing: -0.01em; }
.cookie-popup__card p { font-size: 0.94rem; color: var(--fg-soft); line-height: 1.62; }
.cookie-popup__card p a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 22px; }
.cookie-popup__actions button {
  padding: 11px 24px;
  border: 1px solid var(--border);
  border-radius: 9999px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.03em;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.cookie-popup__actions button:hover { transform: translateY(-1px); }
.cookie-popup__actions button:last-child { background: var(--accent); color: #10120F; border-color: var(--accent); }

/* ───────── Desktop nav reveal ───────── */
@media (min-width: 960px) {
  .nav { display: flex; }
  .header__cta { display: inline-flex; }
  .menu-toggle { display: none; }
}

/* page intro block (subpages) */
.page-hero {
  padding: clamp(120px, 16vw, 180px) 0 clamp(48px, 8vw, 88px);
  border-bottom: 1px solid var(--border-soft);
}
.page-hero .eyebrow { margin-bottom: 22px; }
.page-hero h1 {
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
  max-width: 16ch;
}
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero p { margin-top: 28px; max-width: 560px; color: var(--fg-soft); font-size: 1.1rem; }
