/* palette: bg=#0E0D0C fg=#F2EEE7 accent=#C5502B */
/* fonts: display="Fraunces" body="Inter" mono="Space Mono" */

:root {
  --bg: #0E0D0C;
  --bg-alt: #16130F;
  --panel: #1A1714;
  --panel-2: #211D18;
  --fg: #F2EEE7;
  --fg-soft: #D5CFC4;
  --muted: #8F887C;
  --muted-2: #6B655B;
  --accent: #C5502B;
  --accent-deep: #A53F20;
  --glaze: #6E8462;
  --glaze-deep: #56684C;
  --border: rgba(242, 238, 231, 0.12);
  --border-soft: rgba(242, 238, 231, 0.07);
  --serif: 'Fraunces', ui-serif, Georgia, serif;
  --sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --mono: 'Space Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 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;
  -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; }
::selection { background: var(--accent); color: #fff; }

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

.section { padding: clamp(80px, 12vw, 160px) 0; position: relative; }
.section--tight { padding: clamp(56px, 8vw, 100px) 0; }

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

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.02em; line-height: 1.06; margin: 0; }
h1 em, h2 em, h3 em { font-style: italic; color: var(--accent); }
p { margin: 0 0 1.2em; }
p:last-child { margin-bottom: 0; }

.lead { font-size: clamp(1.05rem, 2.2vw, 1.32rem); line-height: 1.6; color: var(--fg-soft); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 30px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease), opacity 0.4s 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 .arr { transition: transform 0.4s var(--ease); }
.btn:hover .arr { transform: translateX(5px); }

.txtlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border);
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.txtlink:hover { color: var(--accent); border-color: var(--accent); }
.txtlink .arr { transition: transform 0.35s var(--ease); }
.txtlink:hover .arr { transform: translateX(4px); }

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 13, 12, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.header[data-scrolled="true"] {
  border-bottom-color: var(--border-soft);
  background: rgba(14, 13, 12, 0.92);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  font-family: var(--serif);
  font-size: 1.42rem;
  letter-spacing: -0.02em;
}
.brand .dot { color: var(--accent); }
.brand small {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  align-self: center;
}
.nav { display: none; align-items: center; gap: 38px; }
@media (min-width: 900px) { .nav { display: flex; } }
.nav a {
  font-size: 14px;
  color: var(--fg-soft);
  position: relative;
  transition: color 0.3s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.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; } }
.header__cta { padding: 11px 22px; font-size: 13px; }

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 6px 0;
}
@media (min-width: 900px) { .menu-toggle { display: none; } }
.menu-toggle span {
  height: 1.5px;
  width: 100%;
  background: var(--fg);
  transition: transform 0.4s var(--ease), opacity 0.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 ---------- */
.mobile-menu {
  position: fixed;
  inset: 72px 0 0;
  z-index: 99;
  background: var(--bg);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.mobile-menu[data-open="true"] { opacity: 1; transform: none; pointer-events: all; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 2rem;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  color: var(--fg);
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .btn { margin-top: 24px; align-self: flex-start; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__glow::before {
  content: "";
  position: absolute;
  left: -10%; top: 30%;
  width: 60vw; height: 60vw;
  max-width: 720px; max-height: 720px;
  background: radial-gradient(circle, rgba(197, 80, 43, 0.42), rgba(197, 80, 43, 0) 62%);
  filter: blur(20px);
  animation: heroZoom 8s var(--ease) forwards;
}
.hero__glow img {
  position: absolute;
  left: -6%; top: 50%;
  transform: translateY(-50%);
  width: min(48vw, 620px);
  height: auto;
  opacity: 0.5;
  mix-blend-mode: screen;
  filter: saturate(1.1) contrast(1.05);
  animation: heroZoom 8s ease-out forwards;
}
@keyframes heroZoom { from { transform: translateY(-50%) scale(1.08); } to { transform: translateY(-50%) scale(1); } }

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  width: 100%;
}
@media (min-width: 1024px) {
  .hero__inner { grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
}
.hero__title {
  font-size: clamp(3.2rem, 8.5vw, 6.6rem);
  letter-spacing: -0.035em;
  line-height: 0.98;
  font-weight: 300;
}
.hero__copy { margin-top: 32px; max-width: 460px; color: var(--fg-soft); }
.hero__actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 16px; }

/* ---------- work list (cloned from reference) ---------- */
.worklist {
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  overflow: hidden;
}
.worklist__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border-soft);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.work-row {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 22px;
  border-bottom: 1px solid var(--border-soft);
  transition: background 0.35s var(--ease);
}
.work-row:last-child { border-bottom: 0; }
.work-row:hover { background: var(--panel-2); }
.work-row__thumb {
  width: 54px; height: 54px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel-2);
}
.work-row__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.work-row:hover .work-row__thumb img { transform: scale(1.08); }
.work-row__body h3 { font-family: var(--sans); font-size: 15px; font-weight: 500; letter-spacing: 0; margin-bottom: 3px; }
.work-row__body p { font-size: 12.5px; color: var(--muted); margin: 0; line-height: 1.45; }
.work-row__icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid; place-items: center;
  color: var(--fg-soft);
  font-size: 16px;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.work-row:hover .work-row__icon { background: var(--accent); border-color: var(--accent); color: #fff; transform: rotate(90deg); }

/* ---------- manifesto ---------- */
.manifesto { background: var(--bg-alt); text-align: center; }
.manifesto__statement {
  font-size: clamp(1.9rem, 4.6vw, 3.6rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
  max-width: 980px;
  margin: 0 auto;
  font-weight: 300;
}
.manifesto__statement em { color: var(--accent); }
.manifesto__meta {
  margin-top: 44px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- section header ---------- */
.sec-head { max-width: 760px; margin-bottom: 64px; }
.sec-head h2 { font-size: clamp(2.4rem, 6vw, 4.6rem); letter-spacing: -0.025em; font-weight: 300; }
.sec-head .lead { margin-top: 26px; }
.sec-head--split { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; max-width: none; flex-wrap: wrap; }

/* ---------- services / capabilities ---------- */
.cap-grid { display: grid; gap: 1px; background: var(--border-soft); border: 1px solid var(--border-soft); border-radius: 14px; overflow: hidden; }
@media (min-width: 700px) { .cap-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .cap-grid { grid-template-columns: repeat(3, 1fr); } }
.cap {
  background: var(--bg);
  padding: 40px 34px 44px;
  transition: background 0.4s var(--ease);
}
.cap:hover { background: var(--panel); }
.cap__num { font-family: var(--mono); font-size: 12px; color: var(--accent); letter-spacing: 0.1em; }
.cap h3 { font-size: 1.7rem; margin: 22px 0 14px; font-weight: 400; }
.cap p { font-size: 15.5px; color: var(--muted); line-height: 1.68; }
.cap__tags { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 8px; }
.cap__tags span {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-soft);
  border: 1px solid var(--border-soft);
  padding: 5px 10px;
  border-radius: 6px;
}

/* ---------- stats band ---------- */
.stats { background: var(--accent); color: #fff; }
.stats .stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 24px; }
@media (min-width: 900px) { .stats .stat-grid { grid-template-columns: repeat(4, 1fr); } }
.stat__num { font-family: var(--serif); font-size: clamp(2.8rem, 6vw, 4.6rem); line-height: 1; font-weight: 300; }
.stat__label { margin-top: 14px; font-size: 14px; color: rgba(255,255,255,0.82); line-height: 1.5; }

/* ---------- approach / steps ---------- */
.steps { display: grid; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 40px 0;
  border-top: 1px solid var(--border-soft);
}
@media (min-width: 768px) { .step { grid-template-columns: 130px 1fr 1.1fr; gap: 40px; align-items: start; } }
.step:last-child { border-bottom: 1px solid var(--border-soft); }
.step__idx { font-family: var(--mono); font-size: 13px; color: var(--accent); letter-spacing: 0.1em; }
.step h3 { font-size: 1.7rem; font-weight: 400; }
.step p { color: var(--muted); font-size: 16px; margin: 0; }

/* ---------- text-only team / principles ---------- */
.princ-grid { display: grid; gap: 24px; }
@media (min-width: 700px) { .princ-grid { grid-template-columns: 1fr 1fr; } }
.princ {
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 34px 32px;
  background: var(--panel);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.princ:hover { transform: translateY(-4px); border-color: var(--border); }
.princ__avatar {
  width: 46px; height: 46px;
  border-radius: 10px;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 22px;
}
.princ h3 { font-size: 1.25rem; font-family: var(--sans); font-weight: 600; letter-spacing: 0; }
.princ .role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin: 6px 0 16px; }
.princ p { font-size: 15px; color: var(--muted); margin: 0; line-height: 1.65; }

/* ---------- testimonials ---------- */
.quote-grid { display: grid; gap: 24px; }
@media (min-width: 900px) { .quote-grid { grid-template-columns: 1fr 1fr; } }
.quote {
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 40px 36px;
  background: var(--bg-alt);
}
.quote__mark { font-family: var(--serif); font-size: 4rem; line-height: 0.6; color: var(--accent); display: block; height: 30px; }
.quote p { font-family: var(--serif); font-size: 1.32rem; line-height: 1.5; color: var(--fg); font-weight: 300; margin: 18px 0 26px; }
.quote__by { font-size: 14px; color: var(--fg-soft); }
.quote__by span { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

/* ---------- faq ---------- */
.faq { display: grid; gap: 0; max-width: 880px; }
.faq__item { border-top: 1px solid var(--border-soft); }
.faq__item:last-child { border-bottom: 1px solid var(--border-soft); }
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  text-align: left;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.6vw, 1.5rem);
  font-weight: 400;
  color: var(--fg);
}
.faq__q .pm { color: var(--accent); font-size: 1.5rem; transition: transform 0.4s var(--ease); flex-shrink: 0; }
.faq__item[data-open="true"] .pm { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq__item[data-open="true"] .faq__a { max-height: 320px; }
.faq__a p { padding: 0 0 28px; color: var(--muted); font-size: 16px; max-width: 720px; }

/* ---------- cta band ---------- */
.cta { background: var(--panel); text-align: center; }
.cta h2 { font-size: clamp(2.4rem, 6.5vw, 5rem); font-weight: 300; letter-spacing: -0.03em; max-width: 900px; margin: 0 auto; line-height: 1.04; }
.cta .lead { margin: 30px auto 40px; max-width: 560px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ---------- contact form ---------- */
.contact-grid { display: grid; gap: 56px; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: start; } }
.contact-info dl { margin: 0; }
.contact-info dt { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.contact-info dd { margin: 0 0 30px; font-size: 17px; color: var(--fg-soft); line-height: 1.6; }
.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 {
  width: 100%;
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 15px 16px;
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); background: var(--panel-2); }
.field textarea { resize: vertical; min-height: 130px; }
.form__row { display: grid; gap: 22px; }
@media (min-width: 560px) { .form__row { grid-template-columns: 1fr 1fr; } }
.form__note { font-size: 13px; color: var(--muted); }
.form .btn { justify-self: start; }

/* ---------- editorial / essay blocks ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 300; margin: 56px 0 22px; letter-spacing: -0.02em; }
.prose h3 { font-size: 1.4rem; margin: 40px 0 14px; font-weight: 500; font-family: var(--sans); letter-spacing: 0; }
.prose p { color: var(--fg-soft); margin-bottom: 1.4em; }
.prose ul { color: var(--fg-soft); padding-left: 20px; margin: 0 0 1.4em; }
.prose li { margin-bottom: 0.6em; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.legal-meta { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 40px; }

.page-hero { padding: 140px 0 60px; border-bottom: 1px solid var(--border-soft); }
.page-hero h1 { font-size: clamp(2.8rem, 8vw, 6rem); font-weight: 300; letter-spacing: -0.035em; line-height: 1; }
.page-hero .lead { margin-top: 30px; max-width: 620px; }

/* ---------- pull quote ---------- */
.pullquote { padding: clamp(60px, 9vw, 120px) 0; }
.pullquote blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4.4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 1000px;
}
.pullquote blockquote em { color: var(--accent); }
.pullquote cite { display: block; margin-top: 36px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-style: normal; color: var(--muted); }

/* ---------- footer ---------- */
.footer { background: var(--bg-alt); border-top: 1px solid var(--border-soft); padding: 80px 0 40px; }
.footer__top { display: grid; gap: 48px; }
@media (min-width: 800px) { .footer__top { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; } }
.footer__brand .brand { font-size: 1.7rem; margin-bottom: 20px; }
.footer__brand p { color: var(--muted); font-size: 15px; max-width: 300px; }
.footer__col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; font-weight: 400; }
.footer__col a { display: block; color: var(--fg-soft); font-size: 15px; padding: 7px 0; transition: color 0.3s var(--ease); }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}
.footer__bottom .mono { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; }

/* ---------- 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; }
  .hero__glow::before, .hero__glow img { animation: none; }
  * { scroll-behavior: auto; }
}

/* ---------- 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.5); 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(--panel); border: 1px solid var(--border-soft); padding: 32px 34px; max-width: 460px; border-radius: 12px; box-shadow: 0 24px 60px -12px rgba(0,0,0,0.6); }
.cookie-popup__label { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.cookie-popup__card h3 { font-size: 1.4rem; font-weight: 400; margin-bottom: 12px; }
.cookie-popup__card p { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0; }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 24px; }
.cookie-popup__actions button { padding: 11px 22px; border: 1px solid var(--border); border-radius: 9999px; font-size: 13.5px; transition: background 0.3s var(--ease), color 0.3s var(--ease); }
.cookie-popup__actions button:first-child:hover { border-color: var(--fg-soft); }
.cookie-popup__actions button:last-child { background: var(--accent); border-color: var(--accent); color: #fff; }
.cookie-popup__actions button:last-child:hover { background: var(--accent-deep); border-color: var(--accent-deep); }

/* ---------- misc ---------- */
.divider { height: 1px; background: var(--border-soft); }
.tag-eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
