/* palette: bg=#0C0C0D fg=#ECECE8 accent=#F0522B */
/* fonts: display="Archivo" body="IBM Plex Sans" mono="IBM Plex Mono" */

:root {
  --bg: #0C0C0D;
  --bg-alt: #151517;
  --bg-light: #F2F1EC;
  --fg: #ECECE8;
  --fg-soft: #C4C4BE;
  --muted: #7C7C78;
  --accent: #F0522B;
  --accent-deep: #C6401D;
  --line: #FFB199;
  --border: rgba(236, 236, 232, 0.14);
  --border-light: rgba(12, 12, 13, 0.14);
  --serif: 'Archivo', ui-sans-serif, system-ui, sans-serif;
  --sans: 'IBM Plex Sans', ui-sans-serif, system-ui, sans-serif;
  --mono: 'IBM Plex 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;
  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: 400; margin: 0; }
p { margin: 0; }

.container {
  max-width: var(--container);
  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.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}
.accent { color: var(--accent); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 12, 13, 0.72);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}
.header[data-scrolled="true"] {
  background: rgba(12, 12, 13, 0.9);
  border-bottom-color: var(--border);
  box-shadow: 0 10px 40px -20px rgba(0,0,0,0.8);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .header__inner { padding: 0 32px; height: 76px; } }
.brand {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 9px;
}
.brand__dot { width: 8px; height: 8px; background: var(--accent); border-radius: 1px; }
.nav { display: none; }
@media (min-width: 900px) {
  .nav { display: flex; gap: 34px; }
  .nav a {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--fg-soft);
    position: relative;
    padding: 4px 0;
    transition: color .3s var(--ease);
  }
  .nav a::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 1px;
    background: var(--accent);
    transition: width .35s var(--ease);
  }
  .nav a:hover { color: var(--fg); }
  .nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
  .nav a[aria-current="page"] { color: var(--fg); }
}
.header__cta { display: none; }
@media (min-width: 900px) {
  .header__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 11px 22px;
    border: 1px solid var(--border);
    border-radius: 2px;
    transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  }
  .header__cta:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
}

/* Hamburger */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
}
@media (min-width: 900px) { .menu-toggle { display: none; } }
.menu-toggle span {
  width: 22px; height: 1.5px;
  background: var(--fg);
  transition: transform .35s var(--ease), opacity .3s 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 {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  padding: 100px 28px 40px;
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
  display: flex;
  flex-direction: column;
}
.mobile-menu[data-open="true"] { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 34px;
  letter-spacing: -0.02em;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu a span { font-family: var(--mono); font-size: 12px; color: var(--muted); }
.mobile-menu__foot { margin-top: auto; font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: 0.08em; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.08) brightness(0.62);
  animation: heroZoom 9s var(--ease) forwards;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,12,13,0.55) 0%, rgba(12,12,13,0.15) 40%, rgba(12,12,13,0.88) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px 64px;
}
@media (min-width: 768px) { .hero__inner { padding: 0 32px 88px; } }
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-soft);
  padding-bottom: 26px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border);
}
.hero__meta span:first-child { color: var(--accent); }
.hero h1 {
  font-size: clamp(3rem, 9vw, 8rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 300;
  max-width: 15ch;
}
.hero h1 em { font-style: italic; color: var(--accent); font-weight: 400; }
.hero__sub {
  margin-top: 30px;
  max-width: 52ch;
  font-size: 18px;
  line-height: 1.7;
  color: var(--fg-soft);
}
.hero__scroll {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__scroll span {
  width: 34px; height: 1px; background: var(--muted);
  position: relative; overflow: hidden;
}
.hero__scroll span::after {
  content: ""; position: absolute; left: -34px; top: 0;
  width: 34px; height: 1px; background: var(--accent);
  animation: scrollLine 2.4s var(--ease) infinite;
}
@keyframes scrollLine { to { left: 34px; } }

/* ---------- 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 30px;
  border-radius: 2px;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn--solid { background: var(--accent); color: #fff; }
.btn--solid: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); }
.btn--light { background: var(--fg); color: var(--bg); }
.btn--light:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg);
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.arrow-link .ar { color: var(--accent); transition: transform .3s var(--ease); }
.arrow-link:hover { color: var(--accent); }
.arrow-link:hover .ar { transform: translateX(5px); }

/* ---------- Sections ---------- */
section { position: relative; }
.section {
  padding: clamp(80px, 12vw, 160px) 0;
  border-bottom: 1px solid var(--border);
}
.section--light {
  background: var(--bg-light);
  color: #14140f;
  border-bottom-color: var(--border-light);
}
.section--light .eyebrow { color: #6b6a62; }
.section--light .muted, .section--light .card__body { color: #4a4944; }
.section-head {
  display: grid;
  gap: 24px;
  margin-bottom: 64px;
}
@media (min-width: 900px) {
  .section-head { grid-template-columns: 1.2fr 1fr; align-items: end; gap: 40px; }
}
.section-head h2 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 300;
  max-width: 16ch;
}
.section-head p { color: var(--muted); max-width: 46ch; font-size: 17px; }
.section--light .section-head p { color: #565550; }

/* ---------- Featured / editorial grid ---------- */
.feature-grid {
  display: grid;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (min-width: 700px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--bg);
  padding: 30px 28px 34px;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  transition: background .4s var(--ease);
}
.card:hover { background: var(--bg-alt); }
.card__index {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.card__cat {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 22px 0 14px;
}
.card h3 {
  font-size: 1.6rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.card__body { color: var(--fg-soft); font-size: 15.5px; line-height: 1.65; margin-top: 14px; }
.card__foot { margin-top: auto; padding-top: 26px; }

/* editorial cards with image */
.editorial {
  display: grid;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (min-width: 800px) { .editorial { grid-template-columns: 1fr 1fr; } }
.article {
  background: var(--bg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.article__media { aspect-ratio: 16/10; overflow: hidden; }
.article__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(60%) brightness(0.85);
  transition: transform .8s var(--ease), filter .6s var(--ease);
}
.article:hover .article__media img { transform: scale(1.05); filter: grayscale(0%) brightness(0.95); }
.article__body { padding: 30px 30px 34px; display: flex; flex-direction: column; flex: 1; }
.article__tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.article h3 { font-size: 1.75rem; line-height: 1.1; letter-spacing: -0.02em; }
.article p { color: var(--fg-soft); font-size: 15.5px; margin-top: 14px; line-height: 1.65; }
.article__foot { margin-top: auto; padding-top: 24px; display: flex; align-items: center; justify-content: space-between; }
.article__foot .meta { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.08em; }

/* ---------- Manifesto ---------- */
.manifesto { text-align: center; }
.manifesto .quote-mark {
  font-family: var(--serif);
  font-size: clamp(5rem, 12vw, 9rem);
  line-height: 0.5;
  color: var(--accent);
  display: block;
  height: 0.5em;
}
.manifesto blockquote {
  margin: 40px auto 0;
  max-width: 940px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.9rem, 4.6vw, 3.6rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.manifesto blockquote em { font-style: italic; color: var(--accent); }
.manifesto cite {
  display: block;
  margin-top: 40px;
  font-family: var(--mono);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (min-width: 800px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--bg); padding: 40px 26px; }
.section--light .stat { background: var(--bg-light); }
.stat__num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat__num span { color: var(--accent); }
.stat__label {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- List / archive ---------- */
.archive { border-top: 1px solid var(--border); }
.section--light .archive { border-top-color: var(--border-light); }
.arch-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px 30px;
  align-items: baseline;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left .4s var(--ease);
}
.section--light .arch-row { border-bottom-color: var(--border-light); }
.arch-row:hover { padding-left: 14px; }
.arch-row__num { font-family: var(--mono); font-size: 12px; color: var(--accent); }
.arch-row__main { display: grid; gap: 12px; }
@media (min-width: 900px) {
  .arch-row { grid-template-columns: auto 0.9fr 1.3fr auto; align-items: center; }
  .arch-row__main { grid-template-columns: none; }
}
.arch-row h3 { font-size: 1.5rem; letter-spacing: -0.02em; font-weight: 400; }
.arch-row p { color: var(--muted); font-size: 15.5px; max-width: 52ch; }
.section--light .arch-row p { color: #565550; }
.arch-row__tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

/* ---------- Team / principles (no faces) ---------- */
.people {
  display: grid;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (min-width: 700px) { .people { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .people { grid-template-columns: repeat(3, 1fr); } }
.person { background: var(--bg); padding: 34px 30px; }
.section--light .person { background: var(--bg-light); }
.avatar {
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 600; font-size: 20px;
  color: #fff; border-radius: 2px; letter-spacing: -0.02em;
  margin-bottom: 26px;
}
.person h3 { font-size: 1.35rem; letter-spacing: -0.01em; font-weight: 400; }
.person__role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-top: 8px; }
.person__bio { color: var(--fg-soft); font-size: 15px; margin-top: 18px; line-height: 1.6; }
.section--light .person__bio { color: #565550; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 {
  font-size: clamp(2.4rem, 6.5vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 300;
  max-width: 18ch;
  margin: 0 auto;
}
.cta-band h2 em { font-style: italic; color: var(--accent); }
.cta-band p { color: var(--muted); max-width: 46ch; margin: 26px auto 0; font-size: 17px; }
.cta-band__actions { margin-top: 44px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 0; border-top: 1px solid var(--border); }
.section--light .faq { border-top-color: var(--border-light); }
.faq-item { border-bottom: 1px solid var(--border); }
.section--light .faq-item { border-bottom-color: var(--border-light); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 30px 0;
  display: flex;
  align-items: baseline;
  gap: 24px;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  letter-spacing: -0.01em;
  transition: color .3s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .q-num { font-family: var(--mono); font-size: 12px; color: var(--accent); flex-shrink: 0; }
.faq-item summary .q-plus { margin-left: auto; color: var(--accent); font-size: 24px; transition: transform .35s var(--ease); flex-shrink: 0; }
.faq-item[open] summary .q-plus { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--accent); }
.faq-answer { padding: 0 0 32px 48px; color: var(--fg-soft); max-width: 68ch; font-size: 16.5px; }
.section--light .faq-answer { color: #565550; }

/* ---------- Contact / form ---------- */
.contact-grid { display: grid; gap: 56px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 72px; } }
.contact-info dl { margin: 0; display: grid; gap: 30px; }
.contact-info dt { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.contact-info dd { margin: 0; font-size: 17px; line-height: 1.55; }
.contact-info dd a:hover { color: var(--accent); }
.form { display: grid; gap: 22px; }
.field { display: grid; gap: 9px; }
.field label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea, .field select {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--fg);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 14px 16px;
  transition: border-color .3s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 130px; }
.field select option { background: var(--bg); }
.form__row { display: grid; gap: 22px; }
@media (min-width: 600px) { .form__row { grid-template-columns: 1fr 1fr; } }
.form__consent { font-size: 13px; color: var(--muted); line-height: 1.6; }
.form__consent a { color: var(--accent); }

/* ---------- Legal ---------- */
.legal { padding: clamp(120px, 16vw, 200px) 0 clamp(80px, 12vw, 140px); }
.legal__inner { max-width: 760px; }
.legal h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); letter-spacing: -0.03em; font-weight: 300; line-height: 1.03; }
.legal__meta { font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: 0.08em; margin-top: 24px; }
.legal h2 { font-size: 1.6rem; letter-spacing: -0.015em; margin: 56px 0 18px; font-weight: 400; }
.legal p, .legal li { color: var(--fg-soft); font-size: 16.5px; line-height: 1.78; }
.legal p { margin-bottom: 18px; }
.legal ul { padding-left: 22px; margin-bottom: 18px; }
.legal li { margin-bottom: 10px; }
.legal a { color: var(--accent); }

/* ---------- Thank you ---------- */
.thanks {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
}
.thanks__inner { max-width: 640px; }
.thanks h1 { font-size: clamp(2.8rem, 8vw, 6rem); letter-spacing: -0.035em; font-weight: 300; line-height: 1; }
.thanks h1 em { font-style: italic; color: var(--accent); }
.thanks p { color: var(--fg-soft); font-size: 18px; margin-top: 28px; }
.thanks .btn { margin-top: 44px; }

/* ---------- Footer ---------- */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding: 80px 0 40px; }
.footer__top {
  display: grid;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 900px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; } }
.footer__brand .brand { font-size: 24px; margin-bottom: 22px; }
.footer__brand p { color: var(--muted); max-width: 34ch; font-size: 15.5px; }
.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: 20px; }
.footer__col a { display: block; color: var(--fg-soft); font-size: 15px; padding: 7px 0; transition: color .3s var(--ease); }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  justify-content: space-between;
  padding-top: 34px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* ---------- 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__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;padding:24px;background:rgba(0,0,0,0.4);backdrop-filter:blur(4px);-webkit-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);padding:32px 36px;max-width:480px;border-radius:4px;border:1px solid var(--border); }
.cookie-popup__label { font-family:var(--mono);font-size:11px;letter-spacing:0.16em;text-transform:uppercase;color:var(--accent);margin-bottom:14px; }
.cookie-popup__card h3 { font-size:1.4rem;letter-spacing:-0.01em;margin-bottom:12px;font-weight:400; }
.cookie-popup__card p { color:var(--fg-soft);font-size:14.5px;line-height:1.6; }
.cookie-popup__actions { display:flex;gap:12px;margin-top:20px; }
.cookie-popup__actions button { padding:11px 24px;border:1px solid var(--border);cursor:pointer;font-size:13px;font-family:var(--mono);letter-spacing:0.06em;border-radius:2px;transition:background .3s,color .3s,border-color .3s; }
.cookie-popup__actions button:first-child:hover { border-color:var(--fg-soft); }
.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);color:#fff; }

/* ---------- Cookie inline notice (hero style, like reference) ---------- */
.cookie-note {
  position: fixed;
  left: 24px; bottom: 24px;
  z-index: 90;
  display: none;
}
