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

:root {
  --bg: #0A0A0A;
  --bg-alt: #121110;
  --bg-card: #161513;
  --fg: #F4F1EC;
  --fg-soft: #CFCBC3;
  --muted: #8C877E;
  --accent: #F5451D;
  --accent-deep: #C5350F;
  --accent-soft: #FF7A52;
  --border: rgba(244, 241, 236, 0.12);
  --border-soft: rgba(244, 241, 236, 0.07);
  --serif: 'Archivo', ui-sans-serif, sans-serif;
  --sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1280px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  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 { font-family: var(--serif); font-weight: 500; margin: 0; letter-spacing: -0.02em; }
p { margin: 0; }

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

/* ---------- layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }

section { padding: clamp(72px, 12vw, 160px) 0; }

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

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
}
.header[data-scrolled="true"] {
  background: rgba(10, 10, 10, 0.88);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 10px 40px -20px rgba(0,0,0,0.9);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.brand {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.03em;
  display: inline-flex; align-items: center; gap: 9px;
}
.brand__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); display: inline-block; }
.nav { display: none; gap: 34px; align-items: center; }
.nav a {
  font-size: 13px; color: var(--fg-soft);
  letter-spacing: 0.01em;
  transition: color .25s var(--ease);
  position: relative;
}
.nav a:hover { color: var(--fg); }
.nav a[aria-current="page"] { color: var(--accent); }
@media (min-width: 900px) { .nav { display: flex; } }

.header__cta {
  display: none;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 11px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.header__cta:hover { border-color: var(--accent); color: var(--accent); }
@media (min-width: 900px) { .header__cta { display: inline-block; } }

.menu-toggle {
  display: inline-flex; flex-direction: column; gap: 5px;
  width: 40px; height: 40px; align-items: center; justify-content: center;
}
.menu-toggle span { width: 22px; height: 1.6px; background: var(--fg); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.6px) 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.6px) rotate(-45deg); }
@media (min-width: 900px) { .menu-toggle { display: none; } }

.mobile-menu {
  position: fixed; inset: 68px 0 0; z-index: 99;
  background: var(--bg);
  padding: 40px 24px;
  transform: translateY(-102%);
  transition: transform .45s var(--ease);
  display: flex; flex-direction: column;
}
.mobile-menu[data-open="true"] { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 32px; font-weight: 500; letter-spacing: -0.02em;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-soft);
  color: var(--fg);
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu__foot { margin-top: auto; font-family: var(--mono); font-size: 12px; color: var(--muted); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  padding: 0;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.34;
  animation: heroZoom 9s var(--ease) both;
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.72) 0%, rgba(10,10,10,0.4) 45%, rgba(10,10,10,0.94) 100%);
}
@keyframes heroZoom { from { transform: scale(1.1); } to { transform: scale(1); } }

.hero__top {
  position: relative; z-index: 2;
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 0 40px;
}
.hero__grid { display: grid; gap: 36px; align-items: center; }
@media (min-width: 900px) { .hero__grid { grid-template-columns: 220px 1fr; gap: 56px; } }

.hero__thumb {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px; overflow: hidden;
  border: 1px solid var(--border);
  max-width: 220px;
}
.hero__thumb img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); }
.hero__thumb-label {
  position: absolute; left: 12px; top: 12px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg); background: rgba(10,10,10,0.6); padding: 4px 8px; border-radius: 3px;
}
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 6.4rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 500;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero__lead { margin-top: 22px; max-width: 520px; color: var(--fg-soft); font-size: 18px; line-height: 1.7; }

.hero__bar {
  position: relative; z-index: 2;
  border-top: 1px solid var(--border-soft);
  padding: 22px 0;
}
.hero__bar-inner { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between; }
.hero__meta { display: flex; gap: 30px; flex-wrap: wrap; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.hero__meta span strong { color: var(--fg); font-weight: 500; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 999px;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.btn--primary { background: var(--accent); color: #fff; }
.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); }
.btn--dark { background: var(--fg); color: var(--bg); }
.btn--dark:hover { transform: translateY(-2px); opacity: .9; }

.arrow-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fg);
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.arrow-link:hover { gap: 14px; color: var(--accent); }

/* ---------- marquee ---------- */
.marquee {
  background: var(--accent);
  color: #0A0A0A;
  padding: 26px 0;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.15);
  border-bottom: 1px solid rgba(0,0,0,0.15);
}
.marquee__track {
  display: flex; gap: 42px; white-space: nowrap;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 5vw, 3.4rem);
  letter-spacing: -0.02em;
}
.marquee__track span { display: inline-flex; align-items: center; gap: 42px; }
.marquee__track span::after { content: "©"; font-size: 0.55em; opacity: 0.55; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- section head ---------- */
.section-head { display: grid; gap: 20px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head h2 {
  font-size: clamp(2.3rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 16ch;
}
.section-head p { max-width: 46ch; color: var(--fg-soft); font-size: 17px; }
@media (min-width: 900px) {
  .section-head--split { grid-template-columns: 1.2fr 1fr; align-items: end; }
}

/* ---------- manifesto ---------- */
.manifesto { background: var(--fg); color: var(--bg); text-align: center; }
.manifesto__quote {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 4.6vw, 3.4rem);
  line-height: 1.16;
  letter-spacing: -0.025em;
  max-width: 940px; margin: 0 auto;
}
.manifesto__quote em { font-style: normal; color: var(--accent); }
.manifesto__mark { font-family: var(--serif); font-size: 5rem; line-height: 0.6; color: var(--accent); display: block; margin-bottom: 8px; }
.manifesto__by { margin-top: 34px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

/* ---------- services (orange panel) ---------- */
.services { background: var(--bg); position: relative; }
.services__panel {
  background: linear-gradient(155deg, var(--accent) 0%, var(--accent-deep) 100%);
  border-radius: 6px;
  padding: clamp(32px, 5vw, 64px);
  color: #0A0A0A;
  overflow: hidden;
}
.services__panel h2 {
  font-size: clamp(2.6rem, 8vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #100804;
  font-weight: 600;
}
.services__panel .eyebrow { color: rgba(16,8,4,0.7); }
.services__panel .eyebrow::before { background: rgba(16,8,4,0.7); }
.services__grid { display: grid; gap: 20px; margin-top: clamp(32px, 5vw, 56px); }
@media (min-width: 800px) { .services__grid { grid-template-columns: 1fr 1fr; } }

.svc-card {
  background: #0E0D0B;
  color: var(--fg);
  border-radius: 5px;
  padding: 26px;
  display: flex; flex-direction: column;
  min-height: 300px;
  transition: transform .4s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); }
.svc-card__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.svc-card h3 { font-size: 1.55rem; margin-top: 14px; letter-spacing: -0.02em; }
.svc-card p { color: var(--muted); font-size: 15px; margin-top: 12px; line-height: 1.65; }
.svc-card__media {
  margin-top: auto; padding-top: 22px;
  border-radius: 4px; overflow: hidden; aspect-ratio: 16 / 10;
}
.svc-card__media img { width: 100%; height: 100%; object-fit: cover; }
.svc-card__num { margin-left: auto; font-family: var(--mono); font-size: 11px; color: var(--muted); }
.svc-card__top { display: flex; align-items: baseline; justify-content: space-between; }

/* ---------- timeline ---------- */
.timeline { background: var(--bg-alt); }
.timeline__list { display: grid; gap: 0; border-top: 1px solid var(--border-soft); }
.tl-item {
  display: grid; gap: 14px;
  padding: clamp(28px, 4vw, 44px) 0;
  border-bottom: 1px solid var(--border-soft);
  transition: background .35s var(--ease);
}
@media (min-width: 800px) {
  .tl-item { grid-template-columns: 120px 1fr 1.1fr; gap: 40px; align-items: baseline; }
}
.tl-item:hover { background: rgba(245,69,29,0.04); }
.tl-item__step { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; color: var(--accent); }
.tl-item h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); letter-spacing: -0.02em; }
.tl-item p { color: var(--fg-soft); font-size: 16px; line-height: 1.7; }

/* ---------- work grid ---------- */
.work__grid { display: grid; gap: 22px; }
@media (min-width: 720px) { .work__grid { grid-template-columns: 1fr 1fr; } }
.work-card {
  border: 1px solid var(--border-soft);
  border-radius: 6px; overflow: hidden;
  background: var(--bg-card);
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.work-card:hover { transform: translateY(-6px); border-color: var(--border); }
.work-card__media { aspect-ratio: 16 / 11; overflow: hidden; }
.work-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.work-card:hover .work-card__media img { transform: scale(1.05); }
.work-card__body { padding: 24px 26px 28px; }
.work-card__meta { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.work-card h3 { font-size: 1.6rem; margin-top: 14px; letter-spacing: -0.02em; }
.work-card p { color: var(--fg-soft); font-size: 15px; margin-top: 10px; line-height: 1.65; }
.work-card__tags { margin-top: 18px; display: flex; gap: 8px; flex-wrap: wrap; }
.tag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-soft); border: 1px solid var(--border); padding: 5px 11px; border-radius: 999px; }

/* ---------- stats ---------- */
.stats { border-top: 1px solid var(--border-soft); }
.stats__grid { display: grid; gap: 40px; }
@media (min-width: 700px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }
.stat__num { font-family: var(--serif); font-weight: 600; font-size: clamp(2.6rem, 6vw, 4.2rem); letter-spacing: -0.03em; line-height: 1; }
.stat__num span { color: var(--accent); }
.stat__label { margin-top: 12px; font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ---------- values / principles ---------- */
.grid-cards { display: grid; gap: 20px; }
@media (min-width: 700px) { .grid-cards { grid-template-columns: repeat(3, 1fr); } }
.mini-card {
  border: 1px solid var(--border-soft); border-radius: 6px;
  padding: 30px 28px; background: var(--bg-card);
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.mini-card:hover { transform: translateY(-5px); border-color: var(--accent); }
.mini-card__idx { font-family: var(--mono); font-size: 12px; color: var(--accent); }
.mini-card h3 { font-size: 1.3rem; margin-top: 16px; letter-spacing: -0.01em; }
.mini-card p { color: var(--fg-soft); font-size: 15px; margin-top: 12px; line-height: 1.68; }

/* ---------- team (monograms) ---------- */
.team__grid { display: grid; gap: 20px; }
@media (min-width: 700px) { .team__grid { grid-template-columns: repeat(3, 1fr); } }
.member { border: 1px solid var(--border-soft); border-radius: 6px; padding: 28px; background: var(--bg-card); }
.avatar {
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 600; font-size: 20px; color: #0A0A0A;
  letter-spacing: -0.02em;
}
.member h3 { font-size: 1.2rem; margin-top: 20px; }
.member__role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-top: 6px; }
.member p { color: var(--fg-soft); font-size: 14px; margin-top: 14px; line-height: 1.65; }

/* ---------- testimonials ---------- */
.quotes__grid { display: grid; gap: 20px; }
@media (min-width: 800px) { .quotes__grid { grid-template-columns: 1fr 1fr; } }
.quote-card { border: 1px solid var(--border-soft); border-radius: 6px; padding: 34px 32px; background: var(--bg-card); }
.quote-card blockquote { margin: 0; font-family: var(--serif); font-size: 1.35rem; line-height: 1.4; letter-spacing: -0.015em; }
.quote-card__foot { margin-top: 26px; display: flex; align-items: center; gap: 14px; }
.quote-card__foot .avatar { width: 44px; height: 44px; font-size: 15px; }
.quote-card__who strong { display: block; font-size: 14px; }
.quote-card__who span { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.06em; }

/* ---------- FAQ ---------- */
.faq__list { border-top: 1px solid var(--border-soft); }
.faq__item { border-bottom: 1px solid var(--border-soft); }
.faq__q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 0;
  font-family: var(--serif); font-size: clamp(1.15rem, 2.4vw, 1.5rem); letter-spacing: -0.015em;
}
.faq__q:hover { color: var(--accent); }
.faq__icon { flex: none; width: 22px; height: 22px; position: relative; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--accent); transition: transform .3s var(--ease); }
.faq__icon::before { top: 50%; left: 0; width: 100%; height: 1.6px; transform: translateY(-50%); }
.faq__icon::after { left: 50%; top: 0; width: 1.6px; height: 100%; transform: translateX(-50%); }
.faq__item[data-open="true"] .faq__icon::after { transform: translateX(-50%) scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__a p { padding: 0 0 28px; max-width: 60ch; color: var(--fg-soft); font-size: 16px; line-height: 1.75; }
.faq__item[data-open="true"] .faq__a { max-height: 320px; }

/* ---------- CTA ---------- */
.cta { background: var(--fg); color: var(--bg); text-align: center; }
.cta h2 { font-size: clamp(2.4rem, 7vw, 5.4rem); line-height: 1; letter-spacing: -0.035em; max-width: 16ch; margin: 0 auto; }
.cta h2 em { font-style: normal; color: var(--accent); }
.cta p { max-width: 46ch; margin: 26px auto 0; color: #3a3733; font-size: 18px; }
.cta__actions { margin-top: 40px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- contact form ---------- */
.contact__grid { display: grid; gap: 48px; }
@media (min-width: 900px) { .contact__grid { grid-template-columns: 1fr 1.1fr; gap: 72px; } }
.info-block { display: grid; gap: 26px; }
.info-item__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.info-item__value { font-size: 17px; margin-top: 6px; color: var(--fg-soft); }
.info-item__value a:hover { color: var(--accent); }

.form { display: grid; gap: 20px; }
.field { display: grid; gap: 8px; }
.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: 16px; color: var(--fg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 14px 16px;
  transition: border-color .25s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); }
.field textarea { min-height: 140px; resize: vertical; }
.field--row { display: grid; gap: 20px; }
@media (min-width: 600px) { .field--row { grid-template-columns: 1fr 1fr; } }
.form__note { font-size: 13px; color: var(--muted); }
.form__note a { color: var(--accent); }

/* ---------- page hero (inner) ---------- */
.page-hero { padding: clamp(120px, 16vw, 200px) 0 clamp(48px, 8vw, 90px); border-bottom: 1px solid var(--border-soft); }
.page-hero h1 { font-size: clamp(2.8rem, 9vw, 7rem); line-height: 0.98; letter-spacing: -0.04em; font-weight: 500; }
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero p { max-width: 54ch; margin-top: 26px; color: var(--fg-soft); font-size: 18px; }

/* ---------- prose (legal) ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 44px 0 16px; letter-spacing: -0.02em; }
.prose h3 { font-size: 1.2rem; margin: 28px 0 10px; }
.prose p { color: var(--fg-soft); font-size: 16px; margin-bottom: 16px; line-height: 1.8; }
.prose ul { color: var(--fg-soft); font-size: 16px; line-height: 1.8; padding-left: 20px; margin-bottom: 16px; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--fg); }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--border-soft); padding: clamp(56px, 8vw, 96px) 0 40px; }
.footer__top { display: grid; gap: 44px; }
@media (min-width: 900px) { .footer__top { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer__brand .brand { font-size: 26px; }
.footer__brand p { margin-top: 18px; max-width: 34ch; color: var(--muted); font-size: 15px; }
.footer__col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 400; margin-bottom: 18px; }
.footer__col a, .footer__col p { display: block; color: var(--fg-soft); font-size: 15px; padding: 6px 0; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  margin-top: clamp(48px, 7vw, 80px); padding-top: 28px;
  border-top: 1px solid var(--border-soft);
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: var(--muted);
}
.footer__bottom a:hover { color: var(--accent); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s var(--ease), transform .65s var(--ease); transition-delay: calc(var(--i, 0) * 80ms); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .hero__bg img, .marquee__track { animation: none; }
}

/* ---------- 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.5); backdrop-filter:blur(4px); opacity:0; pointer-events:none; transition:opacity .3s; }
.cookie-popup[data-open="true"] { opacity:1; pointer-events:all; }
.cookie-popup__card { background:var(--bg-card); border:1px solid var(--border); padding:32px 36px; max-width:480px; border-radius:8px; }
.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-size:1.4rem; margin:12px 0 12px; letter-spacing:-0.02em; }
.cookie-popup__card p { font-size:14px; color:var(--fg-soft); line-height:1.65; }
.cookie-popup__actions { display:flex; gap:12px; margin-top:22px; }
.cookie-popup__actions button { padding:11px 24px; border:1px solid var(--border); cursor:pointer; font-size:13px; border-radius:999px; font-family:var(--mono); letter-spacing:0.06em; transition: border-color .25s, background .25s, color .25s; }
.cookie-popup__actions button:first-child:hover { border-color:var(--fg); }
.cookie-popup__actions button:last-child { background:var(--accent); color:#fff; border-color:var(--accent); }
.cookie-popup__actions button:last-child:hover { background:var(--accent-deep); border-color:var(--accent-deep); }

/* ---------- misc ---------- */
.divider { height: 1px; background: var(--border-soft); }
.center-cta { text-align: center; margin-top: clamp(40px, 6vw, 64px); }
.lead-block { max-width: 60ch; }
.lead-block p { color: var(--fg-soft); font-size: 18px; line-height: 1.8; margin-bottom: 20px; }
.lead-block p:last-child { margin-bottom: 0; }
