/* palette: bg=#C4D8F6 fg=#131313 accent=#F4634A */
/* fonts: display="Archivo Black" body="Inter" mono="Space Mono" */

:root {
  --bg: #FFFFFF;          /* clean De Stijl canvas */
  --bg-alt: #F1F4FA;      /* faint blue-white alternating band */
  --powder: #C4D8F6;      /* signature hero powder blue */
  --powder-deep: #A9C6EF; /* embossed disc shading */
  --fg: #131313;          /* primary ink */
  --fg-soft: #2B2B2B;     /* slightly lighter ink */
  --muted: #55606E;       /* secondary text */
  --accent: #F4634A;      /* De Stijl coral-red */
  --accent-deep: #DB4B33; /* darker coral for hover */
  --blue: #2F6BF0;        /* primary blue block */
  --blue-deep: #1E52CB;
  --yellow: #F5C542;      /* primary yellow block */
  --ink: #131313;         /* thick borders */
  --charcoal: #171717;    /* inverted band + cookie card */
  --border: rgba(19, 19, 19, 0.14);
  --hair: rgba(19, 19, 19, 0.10);

  --serif: 'Archivo Black', 'Archivo', ui-sans-serif, sans-serif;
  --head: 'Archivo', ui-sans-serif, sans-serif;
  --sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --mono: 'Space Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --maxw: 1280px;
  --pad: 32px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.75;
  color: var(--fg);
  background: var(--bg);
  -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 { margin: 0; font-weight: 800; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-soft);
  display: inline-block;
}

/* ---------- Ticker ---------- */
.ticker {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 3px solid var(--ink);
}
.ticker__track {
  display: inline-flex;
  gap: 0;
  padding: 8px 0;
  animation: tickerScroll 34s linear infinite;
  will-change: transform;
}
.ticker__track span {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
}
.ticker__track span::after {
  content: "◆";
  margin-left: 28px;
  color: var(--accent);
  font-size: 9px;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(196, 216, 246, 0.82);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 3px solid var(--ink);
  transition: box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}
.header[data-scrolled="true"] {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px -18px rgba(19, 19, 19, 0.55);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 68px;
}
.brand {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
}
.nav {
  display: none;
  align-items: center;
  gap: 4px;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--fg);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] {
  background: var(--ink);
  color: #fff;
}
.header__actions {
  display: none;
  align-items: center;
  gap: 16px;
}
.header__lang {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--fg-soft);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  background: #fff;
  color: var(--ink);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--accent); border-color: var(--accent); }
.btn--accent { background: var(--accent); border-color: var(--ink); color: var(--ink); }
.btn--accent:hover { background: var(--ink); color: #fff; }
.btn .arrow {
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: var(--ink); color: #fff;
  font-size: 13px; line-height: 1;
  transition: transform 0.3s var(--ease);
}
.btn--dark .arrow { background: #fff; color: var(--ink); }
.btn:hover .arrow { transform: translateX(3px); }

/* Circular arrow button (slab / standalone) */
.arrow-btn {
  width: 56px; height: 56px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex: none;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}
.arrow-btn:hover { transform: rotate(45deg); background: var(--accent); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s var(--ease), gap 0.3s var(--ease);
}
.text-link:hover { border-color: currentColor; gap: 12px; }

/* ---------- Menu toggle + mobile menu ---------- */
.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 0 12px;
}
.menu-toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--powder);
  padding: 96px var(--pad) 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}
.mobile-menu[data-open="true"] {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  font-family: var(--head);
  font-weight: 800;
  font-size: clamp(2rem, 9vw, 3.2rem);
  letter-spacing: -0.02em;
  padding: 10px 0;
  border-bottom: 2px solid var(--ink);
}
.mobile-menu .btn { margin-top: 28px; align-self: flex-start; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--powder);
  padding: 40px 0 0;
  overflow: hidden;
  border-bottom: 3px solid var(--ink);
}
.hero__wordmark {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  text-transform: uppercase;
  line-height: 0.82;
  letter-spacing: -0.03em;
  font-size: clamp(3.4rem, 15vw, 13rem);
  text-align: center;
  margin: 0;
  padding: 0 var(--pad);
  animation: heroRise 1s var(--ease) both;
}
@keyframes heroRise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}
.hero__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 26px;
  padding-bottom: 20px;
}
.hero__eyebrow { display: flex; align-items: center; gap: 14px; }
.hero__tag {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
}
.hero__stage {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0 64px;
}
.hero__disc {
  position: relative;
  width: min(46vw, 420px);
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 38% 34%, rgba(255,255,255,0.55), rgba(255,255,255,0) 42%),
    linear-gradient(145deg, var(--powder-deep), var(--powder));
  box-shadow:
    inset 0 2px 14px rgba(255,255,255,0.7),
    inset 0 -10px 30px rgba(21, 60, 120, 0.22),
    0 30px 60px -30px rgba(21, 60, 120, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: discFloat 9s ease-in-out infinite;
}
@keyframes discFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-16px) scale(1.015); }
}
.hero__disc span {
  font-family: var(--serif);
  font-size: clamp(3rem, 9vw, 7rem);
  color: var(--powder-deep);
  text-shadow: 0 1px 0 rgba(255,255,255,0.6), 0 -1px 2px rgba(21,60,120,0.25);
  letter-spacing: -0.04em;
}
.hero__sub {
  max-width: 460px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--fg-soft);
}
/* De Stijl accent squares */
.destijl {
  position: absolute;
  border: 3px solid var(--ink);
  pointer-events: none;
  z-index: 1;
}
.destijl--red { width: 58px; height: 58px; background: var(--accent); top: 34%; left: 7%; }
.destijl--yellow { width: 42px; height: 92px; background: var(--yellow); bottom: 16%; right: 9%; }
.destijl--blue { width: 78px; height: 34px; background: var(--blue); top: 30%; right: 16%; }
/* Vertical side badge */
.side-badge {
  position: absolute;
  top: 46%;
  right: 0;
  background: #fff;
  border: 3px solid var(--ink);
  border-right: 0;
  padding: 16px 10px;
  z-index: 3;
}
.side-badge span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* ---------- Section scaffolding ---------- */
.section { padding: clamp(72px, 12vw, 150px) 0; }
.section--alt { background: var(--bg-alt); }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.section-head h2 {
  font-family: var(--head);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  letter-spacing: -0.025em;
  line-height: 1.02;
  font-weight: 800;
  max-width: 16ch;
}
.section-head p { max-width: 44ch; color: var(--muted); }
.lead {
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  line-height: 1.5;
  letter-spacing: -0.01em;
  max-width: 46ch;
}

/* ---------- Service slabs (full-bleed color rows) ---------- */
.slabs { border-top: 3px solid var(--ink); }
.slab {
  border-bottom: 3px solid var(--ink);
  display: grid;
  grid-template-columns: 1fr;
}
.slab--blue { background: var(--blue); color: var(--ink); }
.slab--coral { background: var(--accent); color: var(--ink); }
.slab--yellow { background: var(--yellow); color: var(--ink); }
.slab--ink { background: var(--charcoal); color: #fff; }
.slab__body {
  position: relative;
  padding: clamp(36px, 6vw, 76px) var(--pad);
  display: flex;
  flex-direction: column;
  min-height: 340px;
}
.slab__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.slab__num {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  opacity: 0.7;
  margin-bottom: 14px;
  display: block;
}
.slab h3 {
  font-family: var(--head);
  font-size: clamp(2.2rem, 6vw, 4rem);
  letter-spacing: -0.025em;
  line-height: 0.98;
  font-weight: 800;
  max-width: 14ch;
}
.slab--ink .arrow-btn { background: #fff; color: var(--ink); }
.slab__foot {
  margin-top: auto;
  padding-top: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.slab__desc { max-width: 40ch; font-size: 17px; line-height: 1.6; }
.slab__tags { display: flex; flex-direction: column; gap: 4px; text-align: left; }
.slab__tags span {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  opacity: 0.85;
}
.slab__media {
  min-height: 260px;
  overflow: hidden;
  border-top: 3px solid var(--ink);
}
.slab--ink .slab__media { border-color: var(--ink); }
.slab__media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Manifesto (dark inverted band) ---------- */
.manifesto {
  background: var(--charcoal);
  color: #fff;
  padding: clamp(90px, 16vw, 180px) 0;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
.manifesto__inner { max-width: 940px; margin: 0 auto; text-align: center; }
.manifesto__quote {
  font-family: var(--head);
  font-weight: 500;
  font-size: clamp(1.8rem, 5vw, 3.4rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
}
.manifesto__quote em { color: var(--accent); font-style: normal; }
.manifesto__mark {
  font-family: var(--serif);
  font-size: clamp(4rem, 10vw, 7rem);
  color: var(--accent);
  line-height: 0.5;
  display: block;
  margin-bottom: 8px;
}
.manifesto__by {
  margin-top: 40px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}

/* ---------- Work / case-study grid ---------- */
.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.work-card {
  border: 3px solid var(--ink);
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.work-card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px -16px rgba(19,19,19,0.32); }
.work-card__media { aspect-ratio: 16 / 11; overflow: hidden; border-bottom: 3px solid var(--ink); }
.work-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.work-card:hover .work-card__media img { transform: scale(1.05); }
.work-card__body { padding: 24px 26px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.work-card__cat {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.work-card__body h3 { font-family: var(--head); font-size: 1.5rem; letter-spacing: -0.02em; line-height: 1.1; }
.work-card__body p { color: var(--muted); font-size: 15.5px; line-height: 1.6; }
.work-card__foot { margin-top: auto; padding-top: 12px; }

/* ---------- Stats band ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 3px solid var(--ink);
  border-left: 3px solid var(--ink);
}
.stat {
  border-right: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  padding: 40px 28px;
  background: #fff;
}
.stat:nth-child(4n+1) { background: var(--powder); }
.stat:nth-child(4n+3) { background: var(--bg-alt); }
.stat b {
  font-family: var(--head);
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 4rem);
  letter-spacing: -0.03em;
  display: block;
  line-height: 1;
}
.stat span { display: block; margin-top: 12px; color: var(--muted); font-size: 15px; }

/* ---------- Insights / articles ---------- */
.notes { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 3px solid var(--ink); }
.note {
  border-bottom: 3px solid var(--ink);
  padding: 28px 4px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  transition: padding 0.35s var(--ease);
}
.note:hover { padding-left: 20px; }
.note__meta { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase; }
.note h3 { font-family: var(--head); font-size: clamp(1.4rem, 3vw, 2.1rem); letter-spacing: -0.02em; line-height: 1.1; font-weight: 700; }
.note p { color: var(--muted); font-size: 16px; max-width: 60ch; }

/* ---------- FAQ ---------- */
.faq { border-top: 3px solid var(--ink); }
.faq details {
  border-bottom: 3px solid var(--ink);
  padding: 6px 0;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 44px 24px 4px;
  position: relative;
  font-family: var(--head);
  font-weight: 700;
  font-size: clamp(1.15rem, 2.6vw, 1.6rem);
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 6px; top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  font-weight: 400;
  transition: transform 0.3s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p {
  padding: 0 44px 26px 4px;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.7;
  max-width: 68ch;
}

/* ---------- CTA banner ---------- */
.cta {
  background: var(--accent);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  padding: clamp(72px, 12vw, 140px) 0;
  color: var(--ink);
}
.cta__inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta h2 {
  font-family: var(--head);
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  letter-spacing: -0.025em;
  line-height: 1;
  font-weight: 800;
  max-width: 16ch;
}
.cta p { margin-top: 20px; max-width: 42ch; font-size: 18px; }

/* ---------- Contact form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.info-list { display: flex; flex-direction: column; gap: 26px; margin-top: 8px; }
.info-item .eyebrow { display: block; margin-bottom: 6px; }
.info-item p { font-size: 18px; line-height: 1.5; }
.info-item a { border-bottom: 2px solid var(--accent); }

.form {
  border: 3px solid var(--ink);
  background: #fff;
  padding: clamp(28px, 4vw, 44px);
}
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--fg-soft);
}
.field input, .field textarea, .field select {
  width: 100%;
  font: inherit;
  font-size: 16px;
  padding: 14px 16px;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: #fff;
  color: var(--fg);
  transition: box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 4px 4px 0 var(--accent);
}
.form .btn { width: 100%; justify-content: center; margin-top: 8px; }
.form__note { margin-top: 16px; font-size: 13px; color: var(--muted); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: var(--powder);
  border-bottom: 3px solid var(--ink);
  padding: clamp(60px, 11vw, 130px) 0 clamp(48px, 8vw, 90px);
  position: relative;
  overflow: hidden;
}
.page-hero h1 {
  font-family: var(--head);
  font-weight: 800;
  font-size: clamp(2.8rem, 9vw, 6.4rem);
  letter-spacing: -0.03em;
  line-height: 0.96;
  max-width: 18ch;
}
.page-hero .eyebrow { margin-bottom: 24px; }
.page-hero__sub { margin-top: 26px; max-width: 52ch; font-size: 19px; line-height: 1.6; color: var(--fg-soft); }
.page-hero .destijl--red { top: auto; bottom: 24px; left: auto; right: 8%; }
.page-hero .destijl--blue { top: 30px; right: 24%; }

/* ---------- Prose (legal) ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-family: var(--head); font-size: clamp(1.5rem, 3.4vw, 2.2rem); letter-spacing: -0.02em; margin: 48px 0 16px; }
.prose h3 { font-family: var(--head); font-size: 1.25rem; margin: 32px 0 10px; }
.prose p { color: var(--fg-soft); margin-bottom: 16px; line-height: 1.75; }
.prose ul { list-style: none; margin: 0 0 20px; padding: 0; }
.prose li { position: relative; padding-left: 26px; margin-bottom: 10px; color: var(--fg-soft); }
.prose li::before { content: "■"; position: absolute; left: 0; top: 1px; color: var(--accent); font-size: 12px; }
.prose a { border-bottom: 2px solid var(--accent); }
.prose .updated { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase; }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: #fff;
  padding: clamp(64px, 9vw, 110px) 0 36px;
  border-top: 3px solid var(--ink);
}
.footer__word {
  font-family: var(--serif);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.6rem, 13vw, 11rem);
  letter-spacing: -0.03em;
  line-height: 0.82;
  color: #fff;
  border-bottom: 3px solid rgba(255,255,255,0.18);
  padding-bottom: 24px;
  margin-bottom: 48px;
}
.footer__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.footer__col h4 {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a, .footer__col p { color: rgba(255,255,255,0.78); font-size: 15px; line-height: 1.6; }
.footer__col a:hover { color: #fff; }
.footer__bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.16);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p, .footer__bottom a { font-size: 13px; color: rgba(255,255,255,0.6); }
.footer__bottom a:hover { color: #fff; }

/* ---------- 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.4);
  -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(--charcoal);
  color: #fff;
  padding: 30px 34px;
  max-width: 460px;
  border: 3px solid #000;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
}
.cookie-popup__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.cookie-popup__card h3 { font-family: var(--head); font-size: 1.4rem; letter-spacing: -0.02em; margin-bottom: 10px; }
.cookie-popup__card p { font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,0.78); }
.cookie-popup__card a { border-bottom: 1px solid var(--accent); color: #fff; }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 22px; }
.cookie-popup__actions button {
  padding: 11px 22px;
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.cookie-popup__actions button:hover { transform: translateY(-2px); }
.cookie-popup__actions button:last-child { background: #fff; color: var(--ink); border-color: #fff; }

/* ---------- Reveal ---------- */
.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; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (min-width: 680px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .notes { grid-template-columns: 1fr; }
  .note { grid-template-columns: 220px 1fr; align-items: baseline; gap: 32px; }
}
@media (min-width: 860px) {
  .slab { grid-template-columns: 1.15fr 0.85fr; }
  .slab__media { border-top: 0; border-left: 3px solid var(--ink); min-height: 100%; }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .contact-grid { grid-template-columns: 0.9fr 1.1fr; gap: 64px; }
  .footer__cols { grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; }
}
@media (min-width: 1024px) {
  .nav { display: flex; }
  .header__actions { display: flex; }
  .menu-toggle { display: none; }
  .work-grid { grid-template-columns: repeat(3, 1fr); }
  .hero__sub { position: absolute; left: var(--pad); bottom: 64px; text-align: left; }
}
@media (max-width: 1023px) {
  .hero__sub { margin: 0 auto; text-align: center; }
}
