/* palette: bg=#E9E9E9 fg=#0E0E0E accent=#F0501E */
/* fonts: display="Archivo" body="Inter" mono="Space Mono" */

:root {
  --bg: #E9E9E9;
  --bg-alt: #FFFFFF;
  --fg: #0E0E0E;
  --fg-soft: #2B2B2B;
  --muted: #6B6B6B;
  --accent: #F0501E;
  --accent-deep: #C93C0E;
  --dark: #0D0D0D;
  --dark-soft: #161616;
  --border: rgba(14, 14, 14, 0.14);
  --border-soft: rgba(14, 14, 14, 0.08);
  --serif: 'Archivo', system-ui, sans-serif;
  --sans: 'Inter', 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);
  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; }
ul { margin: 0; padding: 0; list-style: none; }

.container { 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.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}
.section { padding: clamp(72px, 12vw, 160px) 0; }

/* ---------- HEADER ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(233, 233, 233, 0.86);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  transition: box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}
.header[data-scrolled="true"] {
  box-shadow: 0 1px 0 var(--border-soft), 0 6px 24px -12px rgba(0,0,0,0.18);
}
.header__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (min-width: 768px) { .header__inner { padding: 16px 32px; } }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  display: grid;
  grid-template-columns: repeat(3, 5px);
  grid-auto-rows: 5px;
  gap: 3px;
}
.brand__mark span { background: var(--fg); border-radius: 1px; }
.brand__mark span:nth-child(2),
.brand__mark span:nth-child(4) { background: var(--accent); }
.brand__name {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.nav-pill {
  display: none;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: var(--fg);
  border-radius: 999px;
}
@media (min-width: 1024px) { .nav-pill { display: flex; } }
.nav-pill a {
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 999px;
  color: #cfcfcf;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}
.nav-pill a:hover { color: #fff; }
.nav-pill a.is-active { background: var(--bg-alt); color: var(--fg); font-weight: 500; }

.header__cta { display: none; align-items: center; gap: 10px; }
@media (min-width: 768px) { .header__cta { display: flex; } }
.btn-lang {
  font-family: var(--mono);
  font-size: 12px;
  padding: 9px 12px;
  background: var(--fg);
  color: #fff;
  border-radius: 999px;
}
.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn-accent::before { content: "●"; font-size: 8px; }
.btn-accent:hover { background: var(--accent-deep); transform: translateY(-1px); }

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: var(--fg);
  border-radius: 10px;
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.menu-toggle span { width: 20px; height: 2px; background: #fff; 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 ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--dark);
  color: #fff;
  padding: 96px 28px 40px;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
  overflow-y: auto;
}
.mobile-menu[data-open="true"] { transform: translateY(0); }
.mobile-menu a {
  display: block;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2rem, 9vw, 3rem);
  letter-spacing: -0.03em;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.mobile-menu a .num { font-family: var(--mono); font-size: 12px; color: var(--accent); margin-right: 14px; vertical-align: middle; }
.mobile-menu__cta { margin-top: 32px; }

/* ---------- HERO ---------- */
.hero { background: var(--bg); padding-top: 8px; }
.hero__grid {
  display: grid;
  gap: 40px;
  padding: clamp(32px, 6vw, 64px) 0 clamp(24px, 4vw, 40px);
}
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
}
.hero__left { display: flex; flex-direction: column; }
.hero__eyebrow { margin-bottom: 28px; }
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 4.6vw, 3.1rem);
  line-height: 1.16;
  letter-spacing: -0.03em;
  margin: 0 0 26px;
  max-width: 20ch;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero h1 strong { font-weight: 700; }
.hero__scroll {
  margin-top: auto;
  padding-top: 48px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.6;
}
.hero__right {
  border-left: 1px solid var(--border);
  padding-left: clamp(0px, 4vw, 40px);
}
@media (max-width: 899px) { .hero__right { border-left: 0; padding-left: 0; } }
.hero__reel-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.reel-wrap { position: relative; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.reel-play {
  flex: 0 0 auto;
  width: 72px; height: 72px;
  border-radius: 999px;
  background: var(--fg);
  display: grid; place-items: center;
  transition: transform 0.3s var(--ease);
}
.reel-play:hover { transform: scale(1.06); }
.reel-play svg { width: 20px; height: 20px; fill: var(--accent); margin-left: 3px; }
.reel-thumb {
  flex: 1 1 300px;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.reel-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s ease-out; }
.reel-thumb:hover img { transform: scale(1.08); }

/* ---------- BRAND MARQUEE ---------- */
.wordmark {
  background: var(--bg-alt);
  overflow: hidden;
  padding: clamp(20px, 4vw, 44px) 0 0;
  border-top: 1px solid var(--border-soft);
}
.wordmark__text {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(4rem, 20vw, 17rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  white-space: nowrap;
  margin: 0;
  padding: 0 20px;
  color: var(--fg);
}
.wordmark__text span { color: var(--accent); }

/* ---------- STATS STRIP ---------- */
.stats { background: var(--bg-alt); }
.stats__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; margin-bottom: 48px; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; transition: gap 0.25s var(--ease); }
.link-arrow::after { content: "→"; transition: transform 0.25s var(--ease); }
.link-arrow:hover::after { transform: translateX(4px); }
.stats__grid { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); }
@media (min-width: 640px) { .stats__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--bg-alt); padding: 36px 28px; }
.stat__num { font-family: var(--serif); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.4rem); letter-spacing: -0.03em; line-height: 1; }
.stat__num em { font-style: normal; color: var(--accent); }
.stat__label { margin-top: 12px; font-size: 14px; color: var(--muted); line-height: 1.5; }

/* ---------- MANIFESTO / DARK BAND ---------- */
.manifesto { background: var(--dark); color: #fff; }
.manifesto .eyebrow { color: rgba(255,255,255,0.5); }
.manifesto__grid { display: grid; gap: 40px; }
@media (min-width: 900px) { .manifesto__grid { grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; } }
.manifesto__images { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.manifesto__images figure { margin: 0; overflow: hidden; border-radius: 8px; aspect-ratio: 3/4; }
.manifesto__images figure:nth-child(1) { aspect-ratio: 3/4; }
.manifesto__images figure img { width: 100%; height: 100%; object-fit: cover; }
.manifesto h2 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 22px 0 0;
}
.manifesto h2 em { font-style: normal; color: var(--accent); }
.manifesto p { color: rgba(255,255,255,0.68); font-size: 17px; margin-top: 24px; max-width: 46ch; }

/* ---------- SECTION HEADS ---------- */
.sec-head { max-width: var(--maxw); margin: 0 auto 56px; }
.sec-head h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.1rem, 6vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 16px 0 0;
  max-width: 18ch;
}
.sec-head h2 em { font-style: normal; color: var(--accent); }
.sec-head p { color: var(--muted); font-size: 17px; max-width: 52ch; margin: 20px 0 0; }

/* ---------- TIMELINE / PROGRESSION ---------- */
.timeline { background: var(--bg); }
.timeline__list { border-top: 1px solid var(--border); }
.tl-item {
  display: grid;
  gap: 12px 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease);
}
@media (min-width: 768px) { .tl-item { grid-template-columns: 100px 1fr 1.2fr; align-items: baseline; } }
.tl-item:hover { background: var(--bg-alt); }
.tl-step { font-family: var(--mono); font-size: 13px; color: var(--accent); }
.tl-item h3 { font-family: var(--serif); font-weight: 700; font-size: clamp(1.3rem, 3vw, 1.9rem); letter-spacing: -0.02em; margin: 0; }
.tl-item p { color: var(--fg-soft); font-size: 16px; margin: 0; }

/* ---------- WORK CARDS ---------- */
.work { background: var(--bg-alt); }
.work__grid { display: grid; gap: 28px; }
@media (min-width: 700px) { .work__grid { grid-template-columns: repeat(2, 1fr); } }
.work-card {
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg);
  box-shadow: 0 4px 24px -4px rgba(0,0,0,0.08);
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.work-card:hover { box-shadow: 0 12px 40px -8px rgba(0,0,0,0.14); transform: translateY(-4px); }
.work-card__img { aspect-ratio: 16/11; overflow: hidden; }
.work-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.work-card:hover .work-card__img img { transform: scale(1.05); }
.work-card__body { padding: 26px 24px 28px; }
.work-card__tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.work-card__body h3 { font-family: var(--serif); font-weight: 700; font-size: 1.5rem; letter-spacing: -0.02em; margin: 10px 0 8px; }
.work-card__body p { color: var(--muted); font-size: 15px; margin: 0 0 16px; }

/* ---------- SERVICES / CARDS GENERIC ---------- */
.cards-grid { display: grid; gap: 20px; }
@media (min-width: 700px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards-grid.three { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--bg-alt);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 34px 30px;
  box-shadow: 0 4px 24px -4px rgba(0,0,0,0.06);
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.card:hover { box-shadow: 0 12px 40px -8px rgba(0,0,0,0.14); transform: translateY(-3px); }
.card__num { font-family: var(--mono); font-size: 12px; color: var(--accent); }
.card h3 { font-family: var(--serif); font-weight: 700; font-size: 1.45rem; letter-spacing: -0.02em; margin: 14px 0 12px; }
.card p { color: var(--fg-soft); font-size: 16px; margin: 0 0 14px; }
.card ul li { font-size: 15px; color: var(--muted); padding: 6px 0; border-top: 1px solid var(--border-soft); }
.card ul li:first-child { border-top: 0; }

/* ---------- PRINCIPLES / TEXT TEAM ---------- */
.people-grid { display: grid; gap: 18px; }
@media (min-width: 640px) { .people-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .people-grid { grid-template-columns: repeat(4, 1fr); } }
.person {
  background: var(--bg-alt);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 26px 24px;
}
.avatar {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  margin-bottom: 18px;
}
.person h3 { font-family: var(--serif); font-weight: 700; font-size: 1.2rem; margin: 0 0 4px; letter-spacing: -0.01em; }
.person .role { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); }
.person p { font-size: 14px; color: var(--muted); margin: 14px 0 0; line-height: 1.6; }

/* ---------- FAQ ---------- */
.faq { background: var(--bg); }
.faq__list { border-top: 1px solid var(--border); max-width: 920px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--mono); font-size: 24px; color: var(--accent); transition: transform 0.3s var(--ease); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 0 0 28px; color: var(--fg-soft); font-size: 16px; max-width: 68ch; }

/* ---------- CTA ---------- */
.cta { background: var(--dark); color: #fff; text-align: center; }
.cta .eyebrow { color: rgba(255,255,255,0.5); }
.cta h2 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(2.2rem, 7vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 20px auto 0;
  max-width: 16ch;
  text-transform: uppercase;
}
.cta h2 em { font-style: normal; color: var(--accent); }
.cta p { color: rgba(255,255,255,0.66); font-size: 18px; margin: 24px auto 40px; max-width: 46ch; }
.btn-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 34px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn-lg:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 34px;
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  border-radius: 999px;
  transition: background 0.25s var(--ease);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); }

/* ---------- FORM ---------- */
.contact-wrap { display: grid; gap: 48px; }
@media (min-width: 900px) { .contact-wrap { grid-template-columns: 1fr 1.1fr; gap: 64px; } }
.contact-info h2 { font-family: var(--serif); font-weight: 700; font-size: clamp(2rem, 5vw, 3.4rem); letter-spacing: -0.03em; margin: 16px 0 24px; }
.contact-info__block { padding: 20px 0; border-top: 1px solid var(--border); }
.contact-info__block .k { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.contact-info__block .v { font-size: 17px; margin-top: 6px; }
.form {
  background: var(--bg-alt);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 8px 40px -12px rgba(0,0,0,0.12);
}
.field { margin-bottom: 22px; }
.field label { display: block; font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%;
  font: inherit;
  font-size: 16px;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--fg);
  transition: border-color 0.25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 120px; }
.form__submit {
  width: 100%;
  font-weight: 600;
  font-size: 15px;
  padding: 16px;
  background: var(--fg);
  color: #fff;
  border-radius: 999px;
  transition: background 0.25s var(--ease);
}
.form__submit:hover { background: var(--accent); }
.form__note { font-size: 12px; color: var(--muted); margin: 16px 0 0; line-height: 1.6; }
.form__note a { text-decoration: underline; }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero { background: var(--bg); padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 72px); }
.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 8vw, 6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0;
  max-width: 16ch;
}
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero p { color: var(--fg-soft); font-size: 18px; max-width: 56ch; margin: 28px 0 0; }

/* ---------- LEGAL / PROSE ---------- */
.prose { max-width: 780px; margin: 0 auto; }
.prose h2 { font-family: var(--serif); font-weight: 700; font-size: clamp(1.5rem, 4vw, 2.1rem); letter-spacing: -0.02em; margin: 48px 0 16px; }
.prose h3 { font-family: var(--serif); font-weight: 700; font-size: 1.2rem; margin: 28px 0 10px; }
.prose p, .prose li { color: var(--fg-soft); font-size: 16px; line-height: 1.8; }
.prose ul { padding-left: 20px; list-style: disc; margin: 12px 0; }
.prose li { margin: 6px 0; }
.prose a { color: var(--accent); text-decoration: underline; }

/* ---------- FOOTER ---------- */
.footer { background: var(--dark); color: #fff; padding: clamp(64px, 9vw, 110px) 0 40px; }
.footer__top { display: grid; gap: 40px; }
@media (min-width: 768px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr; } }
.footer__brand .brand__name { color: #fff; }
.footer__mark span { background: #fff; }
.footer__mark span:nth-child(2), .footer__mark span:nth-child(4) { background: var(--accent); }
.footer__tag { color: rgba(255,255,255,0.55); font-size: 15px; margin: 20px 0 0; max-width: 34ch; line-height: 1.6; }
.footer h4 { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.45); margin: 0 0 18px; font-weight: 400; }
.footer__col a { display: block; padding: 7px 0; color: rgba(255,255,255,0.82); font-size: 15px; transition: color 0.2s var(--ease); }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  margin-top: clamp(48px, 7vw, 88px);
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between;
  font-size: 13px; color: rgba(255,255,255,0.5);
}
.footer__bottom a { color: rgba(255,255,255,0.7); }
.footer__bottom a:hover { color: var(--accent); }

/* ---------- 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) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- 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); 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-alt); padding: 30px 32px; max-width: 440px; border-radius: 14px; box-shadow: 0 20px 60px -12px rgba(0,0,0,0.4); }
.cookie-popup__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.cookie-popup__card h3 { font-family: var(--serif); font-weight: 700; font-size: 1.25rem; margin: 0 0 10px; letter-spacing: -0.01em; }
.cookie-popup__card p { font-size: 14px; color: var(--fg-soft); margin: 0; line-height: 1.6; }
.cookie-popup__card p a { text-decoration: underline; }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 22px; }
.cookie-popup__actions button { padding: 11px 24px; border: 1px solid var(--border); border-radius: 999px; font-size: 14px; font-weight: 500; transition: background 0.2s var(--ease); }
.cookie-popup__actions button:first-child:hover { background: var(--bg); }
.cookie-popup__actions button:last-child { background: var(--accent); color: #fff; border-color: var(--accent); margin-left: auto; }
.cookie-popup__actions button:last-child:hover { background: var(--accent-deep); }

/* ---------- MISC ---------- */
.center { text-align: center; }
.mt-sm { margin-top: 16px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 10px; }
