/* palette: bg=#ECE6D6 fg=#2C2E26 accent=#CE4A2B */
/* fonts: display="Fraunces" body="Karla" mono="Space Mono" */

:root {
  --bg: #ECE6D6;
  --bg-alt: #E3DCC9;
  --fg: #2C2E26;
  --fg-soft: #45473C;
  --muted: #6F6C5C;
  --accent: #CE4A2B;
  --accent-deep: #A6371E;
  --green: #4F664B;
  --green-deep: #38492F;
  --border: rgba(44, 46, 38, 0.14);
  --border-strong: rgba(44, 46, 38, 0.26);
  --serif: 'Fraunces', ui-serif, Georgia, serif;
  --sans: 'Karla', ui-sans-serif, system-ui, sans-serif;
  --mono: 'Space Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1280px;
}

*, *::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;
  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; }
::selection { background: var(--accent); color: var(--bg); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .container { padding: 0 32px; } }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}
.eyebrow--muted { color: var(--muted); }

/* ─────────────── MARQUEE TICKER ─────────────── */
.ticker {
  background: var(--accent);
  color: var(--bg);
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid var(--accent-deep);
}
.ticker__track {
  display: inline-flex;
  gap: 0;
  padding: 7px 0;
  animation: tickerScroll 34s linear infinite;
  will-change: transform;
}
.ticker__track span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0 26px;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─────────────── HEADER ─────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(236, 230, 214, 0.86);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  transition: box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.header[data-scrolled="true"] {
  box-shadow: 0 1px 0 var(--border);
  border-bottom-color: var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.brand {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.brand em { font-style: italic; color: var(--accent); }
.nav { display: none; }
@media (min-width: 900px) {
  .nav { display: flex; align-items: center; gap: 34px; }
}
.nav a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-soft);
  transition: color 0.25s var(--ease);
}
.nav a:hover { color: var(--accent); }
.nav__cta {
  border: 1px solid var(--border-strong);
  border-radius: 9999px;
  padding: 9px 20px;
  color: var(--fg) !important;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.nav__cta:hover { background: var(--fg); color: var(--bg) !important; border-color: var(--fg); }

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 6px 0;
}
@media (min-width: 900px) { .menu-toggle { display: none; } }
.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: 0;
  z-index: 99;
  background: var(--bg);
  padding: 100px 28px 40px;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s var(--ease), opacity 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.mobile-menu[data-open="true"] { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-menu ol { list-style: none; margin: 0; padding: 0; }
.mobile-menu li { border-top: 1px solid var(--border); }
.mobile-menu a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 20px 0;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.mobile-menu a span {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
}
.mobile-menu__foot { margin-top: auto; font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: 0.08em; }

/* ─────────────── HERO ─────────────── */
.hero {
  min-height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 56px 0 40px;
  position: relative;
}
.hero__top { max-width: 1100px; }
.hero__discipline {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-soft);
  margin: 0 0 4px;
}
.hero__discipline.loc { color: var(--muted); }
.hero__display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3.5rem, 13vw, 11rem);
  line-height: 0.9;
  letter-spacing: -0.035em;
  color: var(--accent);
  margin: 28px 0 0;
  text-transform: uppercase;
}
.hero__display em { font-style: italic; color: var(--green); }
.hero__lede {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.4rem, 3.6vw, 2.4rem);
  line-height: 1.32;
  letter-spacing: -0.015em;
  max-width: 720px;
  margin: 44px 0 0;
  color: var(--fg);
}
.hero__info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 56px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}
@media (min-width: 768px) {
  .hero__info { grid-template-columns: 1fr 1fr 1.2fr auto; gap: 24px; align-items: start; }
}
.info-col__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 12px;
}
.info-col p, .info-col a { font-size: 15px; color: var(--fg-soft); margin: 2px 0; }
.info-col a { transition: color 0.25s var(--ease); }
.info-col a:hover { color: var(--accent); }
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list li { display: flex; align-items: baseline; gap: 12px; }
.menu-list span { font-family: var(--mono); font-size: 11px; color: var(--accent); }
.menu-list a { font-size: 16px; }
.hero__next {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  align-self: end;
}
.next-circle {
  width: 56px; height: 56px;
  border: 1px solid var(--border-strong);
  border-radius: 9999px;
  display: grid; place-items: center;
  font-size: 18px;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
}
.hero__next:hover .next-circle { background: var(--accent); color: var(--bg); transform: translate(3px, -3px); }
.hero__next span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-soft); }

.vert-tag {
  display: none;
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (min-width: 1100px) { .vert-tag { display: block; } }

/* ─────────────── SECTIONS ─────────────── */
section { position: relative; }
.section { padding: clamp(80px, 12vw, 160px) 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--fg); color: var(--bg); }
.section--dark .eyebrow { color: var(--accent); }
.section--dark .section-head__title { color: var(--bg); }

.section-head { max-width: 760px; margin-bottom: 64px; }
.section-head__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--accent);
  display: block;
  margin-bottom: 18px;
}
.section-head__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 10px 0 0;
}
.section-head__title em { font-style: italic; color: var(--accent); }
.section-head p { margin: 24px 0 0; max-width: 560px; color: var(--fg-soft); }

/* ─────────────── MANIFESTO ─────────────── */
.manifesto { text-align: center; }
.manifesto__quote {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  max-width: 980px;
  margin: 0 auto;
}
.manifesto__quote em { font-style: italic; color: var(--accent); }
.manifesto__mark {
  font-family: var(--serif);
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 0.5;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
  height: 0.5em;
}
.manifesto__by { margin-top: 48px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

/* ─────────────── SERVICE LIST (numbered rows) ─────────────── */
.svc-list { border-top: 1px solid var(--border); }
.svc-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 38px 0;
  border-bottom: 1px solid var(--border);
  transition: padding 0.4s var(--ease);
}
@media (min-width: 768px) {
  .svc-row { grid-template-columns: 70px 1fr 1.3fr; gap: 32px; align-items: baseline; }
}
.svc-row__num { font-family: var(--mono); font-size: 12px; color: var(--accent); letter-spacing: 0.08em; }
.svc-row__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.1;
}
.svc-row__desc { margin: 0; color: var(--fg-soft); font-size: 16px; }
.svc-row__desc .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.svc-row__desc .tags span {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid var(--border); border-radius: 9999px; padding: 5px 12px; color: var(--muted);
}
@media (min-width: 768px) {
  .svc-row:hover { padding-left: 16px; }
  .svc-row:hover .svc-row__title { color: var(--accent); }
}
.svc-row__title { transition: color 0.3s var(--ease); }

/* ─────────────── WORK GRID ─────────────── */
.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 700px) { .work-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
.work-card {
  display: block;
  transition: transform 0.5s var(--ease);
}
.work-card__media {
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4 / 3;
  background: var(--bg-alt);
}
.work-card:nth-child(odd) { margin-top: 0; }
@media (min-width: 700px) { .work-card:nth-child(even) { margin-top: 56px; } }
.work-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.work-card:hover .work-card__media img { transform: scale(1.05); }
.work-card__meta { display: flex; justify-content: space-between; align-items: baseline; margin-top: 18px; gap: 16px; }
.work-card__title { font-family: var(--serif); font-weight: 400; font-size: 1.5rem; letter-spacing: -0.015em; margin: 0; }
.work-card__tag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.work-card__year { font-family: var(--mono); font-size: 12px; color: var(--accent); }

/* ─────────────── STATS ─────────────── */
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (min-width: 768px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--bg); padding: 40px 28px; }
.section--dark .stat { background: var(--fg); }
.stat__num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 5vw, 4rem);
  letter-spacing: -0.02em;
  color: var(--accent);
  line-height: 1;
}
.stat__label { margin-top: 14px; font-size: 14px; color: var(--muted); }
.section--dark .stat__label { color: rgba(236,230,214,0.6); }

/* ─────────────── PRINCIPLES / APPROACH CARDS ─────────────── */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 700px) { .cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .cards { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 34px 30px;
  box-shadow: 0 4px 24px -4px rgba(0,0,0,0.08);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.section--alt .card { background: var(--bg); }
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px -8px rgba(0,0,0,0.14); }
.card__num { font-family: var(--mono); font-size: 12px; color: var(--accent); }
.card__title { font-family: var(--serif); font-weight: 400; font-size: 1.6rem; letter-spacing: -0.015em; margin: 18px 0 12px; line-height: 1.1; }
.card p { margin: 0; color: var(--fg-soft); font-size: 16px; }

/* ─────────────── TEAM (monograms, no faces) ─────────────── */
.team {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
@media (min-width: 600px) { .team { grid-template-columns: 1fr 1fr; } }
.team-card {
  display: flex;
  gap: 22px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 600px) { .team-card:nth-child(odd) { padding-right: 32px; border-right: 1px solid var(--border); } .team-card:nth-child(even) { padding-left: 32px; } }
.avatar {
  flex: 0 0 auto;
  width: 64px; height: 64px;
  border-radius: 9999px;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  color: var(--bg);
  letter-spacing: -0.01em;
}
.team-card__name { font-family: var(--serif); font-weight: 500; font-size: 1.3rem; margin: 0; letter-spacing: -0.01em; }
.team-card__role { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin: 4px 0 8px; }
.team-card__bio { font-size: 14px; color: var(--fg-soft); margin: 0; line-height: 1.55; }

/* ─────────────── FAQ ─────────────── */
.faq { border-top: 1px solid var(--border); max-width: 900px; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  text-align: left;
  padding: 28px 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.faq__icon { flex: 0 0 auto; font-family: var(--mono); color: var(--accent); font-size: 20px; transition: transform 0.4s var(--ease); }
.faq__item[data-open="true"] .faq__icon { transform: rotate(45deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.faq__a-inner { padding: 0 0 30px; max-width: 660px; color: var(--fg-soft); font-size: 16px; }

/* ─────────────── CTA ─────────────── */
.cta { text-align: center; }
.cta__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 auto;
  max-width: 900px;
}
.cta__title em { font-style: italic; color: var(--accent); }
.cta__sub { margin: 28px auto 40px; max-width: 520px; color: var(--fg-soft); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 9999px;
  background: var(--accent);
  color: var(--bg);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.btn:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--fg); border: 1px solid var(--border-strong); }
.btn--ghost:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.section--dark .btn--ghost { color: var(--bg); border-color: rgba(236,230,214,0.3); }
.section--dark .btn--ghost:hover { background: var(--bg); color: var(--fg); }
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent);
  transition: gap 0.3s var(--ease);
}
.link-arrow:hover { gap: 14px; }

/* ─────────────── FORM ─────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 56px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 72px; } }
.contact-detail { margin-bottom: 32px; }
.contact-detail__label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin: 0 0 8px; }
.contact-detail p, .contact-detail a { margin: 0; font-size: 17px; color: var(--fg); }
.contact-detail a:hover { color: var(--accent); }

.form { display: grid; gap: 22px; }
.field { display: grid; gap: 8px; }
.field label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea, .field select {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--fg);
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  padding: 14px 16px;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s 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);
  box-shadow: 0 0 0 3px rgba(206, 74, 43, 0.12);
}
.form button[type="submit"] { justify-self: start; margin-top: 6px; }

/* ─────────────── FOOTER ─────────────── */
.footer { background: var(--fg); color: var(--bg); padding: 80px 0 36px; }
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(236,230,214,0.16);
}
@media (min-width: 768px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; } }
.footer__brand {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 4rem);
  letter-spacing: -0.025em;
  line-height: 0.95;
  margin: 0;
}
.footer__brand em { font-style: italic; color: var(--accent); }
.footer__tag { margin: 22px 0 0; max-width: 360px; color: rgba(236,230,214,0.66); font-size: 15px; }
.footer__col h4 { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(236,230,214,0.5); margin: 0 0 18px; font-weight: 400; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer__col a, .footer__col p { color: rgba(236,230,214,0.82); font-size: 15px; margin: 0; transition: color 0.25s var(--ease); }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 30px;
}
@media (min-width: 600px) { .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; } }
.footer__bottom p, .footer__bottom a { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: rgba(236,230,214,0.55); margin: 0; }
.footer__bottom a:hover { color: var(--accent); }
.footer__legal { display: flex; gap: 22px; flex-wrap: wrap; }

/* ─────────────── PAGE HEADER (interior pages) ─────────────── */
.page-hero { padding: clamp(70px, 11vw, 130px) 0 clamp(50px, 8vw, 90px); border-bottom: 1px solid var(--border); }
.page-hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 22px 0 0;
}
.page-hero__title em { font-style: italic; color: var(--accent); }
.page-hero__lede { font-family: var(--serif); font-weight: 300; font-size: clamp(1.3rem, 3vw, 2rem); line-height: 1.35; max-width: 680px; margin: 32px 0 0; color: var(--fg-soft); }

/* ─────────────── PROSE (legal pages) ─────────────── */
.prose { max-width: 760px; }
.prose h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: -0.02em; margin: 48px 0 16px; }
.prose h3 { font-family: var(--serif); font-weight: 500; font-size: 1.25rem; margin: 32px 0 10px; }
.prose p, .prose li { color: var(--fg-soft); font-size: 16px; line-height: 1.75; }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--fg); }

/* ─────────────── 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; }
  .ticker__track, .work-card__media img { animation: none; }
  * { scroll-behavior: auto !important; }
}

/* ─────────────── 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(0,0,0,0.4);
  backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card {
  background: var(--bg);
  padding: 32px 36px;
  max-width: 480px;
  border-radius: 6px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px -12px rgba(0,0,0,0.3);
}
.cookie-popup__label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.cookie-popup__card h3 { font-family: var(--serif); font-weight: 500; font-size: 1.5rem; letter-spacing: -0.02em; margin: 12px 0 10px; }
.cookie-popup__card p { font-size: 14px; line-height: 1.6; color: var(--fg-soft); margin: 0; }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 20px; }
.cookie-popup__actions button {
  padding: 11px 24px;
  border: 1px solid var(--border-strong);
  border-radius: 9999px;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.cookie-popup__actions button:first-child:hover { background: var(--bg-alt); }
.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); }

/* utility */
.mt-0 { margin-top: 0; }
.center { text-align: center; }
