/* palette: bg=#F2EFE5 fg=#26302A accent=#6F8A5E */
/* fonts: display="Fraunces" body="Work Sans" mono="IBM Plex Mono" */

:root {
  --bg: #F2EFE5;          /* cream paper */
  --bg-alt: #E7E3D4;      /* alternating section background */
  --bg-card: #FBFAF4;     /* card paper, slightly brighter */
  --fg: #26302A;          /* deep moss ink */
  --fg-soft: #3A463C;     /* slightly lighter fg */
  --muted: #6C7367;       /* secondary text */
  --accent: #6F8A5E;      /* sage / moss */
  --accent-deep: #51683F; /* darker moss for hover */
  --accent-soft: #DDE3CE; /* pale sage wash */
  --ink: #1C231E;         /* near-black moss for dark band */
  --border: rgba(38, 48, 42, 0.14);
  --border-soft: rgba(38, 48, 42, 0.08);
  --serif: 'Fraunces', ui-serif, Georgia, serif;
  --sans: 'Work 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: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  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 { margin: 0; font-family: var(--serif); font-weight: 400; }
p { margin: 0; }

/* ---------- layout helpers ---------- */
.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; }
.section--alt { background: var(--bg-alt); }
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.lead { color: var(--fg-soft); font-size: clamp(1rem, 1.4vw, 1.18rem); max-width: 56ch; }
.muted { color: var(--muted); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease);
  border: 1px solid transparent;
}
.btn--primary { background: var(--ink); color: var(--bg); }
.btn--primary:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn--ghost { background: transparent; border-color: var(--border); color: var(--fg); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-deep); transform: translateY(-2px); }
.btn--light { background: var(--bg); color: var(--ink); }
.btn--light:hover { background: var(--accent-soft); transform: translateY(-2px); }
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-deep);
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.arrow-link:hover { gap: 14px; color: var(--ink); }

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 239, 229, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.header[data-scrolled="true"] {
  box-shadow: 0 1px 0 var(--border-soft), 0 8px 30px -18px rgba(28, 35, 30, 0.4);
  border-color: var(--border-soft);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--serif); font-size: 1.28rem; letter-spacing: -0.01em; }
.brand__mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--accent);
  display: grid; place-items: center;
  color: var(--bg-card);
  flex: 0 0 auto;
}
.brand__mark svg { width: 17px; height: 17px; }
.brand strong { font-weight: 500; }
.nav { display: none; gap: 34px; }
@media (min-width: 1024px) { .nav { display: flex; } }
.nav a { font-size: 14.5px; color: var(--fg-soft); transition: color .25s var(--ease); position: relative; }
.nav a:hover { color: var(--accent-deep); }
.header__cta { display: none; }
@media (min-width: 1024px) { .header__cta { display: inline-flex; } }

.menu-toggle {
  display: inline-flex; flex-direction: column; gap: 5px; padding: 10px;
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.menu-toggle span { width: 22px; height: 2px; background: var(--fg); transition: transform .3s var(--ease), opacity .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 {
  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 .3s var(--ease), transform .3s var(--ease);
}
.mobile-menu[data-open="true"] { opacity: 1; transform: none; pointer-events: all; }
.mobile-menu a { font-family: var(--serif); font-size: 1.6rem; padding: 14px 0; border-bottom: 1px solid var(--border-soft); }
.mobile-menu .btn { margin-top: 20px; justify-content: center; }
@media (min-width: 1024px) { .mobile-menu { display: none; } }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  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.16;
  animation: heroZoom 9s var(--ease) forwards;
  filter: grayscale(0.2) sepia(0.12) hue-rotate(40deg);
}
@keyframes heroZoom { from { transform: scale(1.1); } to { transform: scale(1); } }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(120% 90% at 80% 10%, rgba(111,138,94,0.10), transparent 60%),
              linear-gradient(180deg, rgba(242,239,229,0.4), var(--bg) 88%);
}
.hero__inner { position: relative; z-index: 2; max-width: 960px; }
.hero h1 {
  font-size: clamp(3rem, 8.5vw, 6.4rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  font-weight: 300;
  margin: 0 0 28px;
}
.hero h1 em { font-style: italic; color: var(--accent-deep); font-weight: 400; }
.hero__sub { max-width: 52ch; font-size: clamp(1.02rem, 1.5vw, 1.22rem); color: var(--fg-soft); margin-bottom: 38px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.stats {
  position: relative; z-index: 2;
  margin-top: clamp(56px, 8vw, 96px);
  display: grid; grid-template-columns: 1fr; gap: 28px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
@media (min-width: 640px) { .stats { grid-template-columns: repeat(3, 1fr); } }
.stat__num { font-family: var(--serif); font-size: clamp(2.2rem, 4.5vw, 3.1rem); line-height: 1; letter-spacing: -0.02em; }
.stat__num span { color: var(--accent); }
.stat__label { font-size: 13.5px; color: var(--muted); margin-top: 10px; max-width: 26ch; }

/* ---------- split section ---------- */
.split { display: grid; gap: 48px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .split { grid-template-columns: 1.02fr 1fr; gap: 72px; } }
.split--rev .split__media { order: -1; }
@media (min-width: 900px) { .split--rev .split__media { order: 0; } }
.split h2 { font-size: clamp(2.1rem, 5vw, 3.4rem); letter-spacing: -0.02em; line-height: 1.07; margin-bottom: 24px; }
.split h2 em { font-style: italic; color: var(--accent-deep); }
.split p + p { margin-top: 18px; }
.split__list { list-style: none; margin: 30px 0 34px; padding: 0; display: grid; gap: 16px; }
.split__list li { display: flex; gap: 14px; align-items: flex-start; color: var(--fg-soft); font-size: 15.5px; }
.split__list li::before {
  content: ""; flex: 0 0 auto; margin-top: 8px;
  width: 8px; height: 8px; border-radius: 2px; background: var(--accent);
  transform: rotate(45deg);
}
.split__media { position: relative; }
.split__media img { border-radius: 12px; aspect-ratio: 4/3.4; object-fit: cover; box-shadow: 0 18px 50px -22px rgba(28,35,30,0.5); }

/* overlaid quote card */
.quote-card {
  position: relative;
  margin-top: -54px;
  margin-left: 14px;
  max-width: 320px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 24px 26px;
  box-shadow: 0 16px 44px -16px rgba(28,35,30,0.28);
}
@media (min-width: 900px) { .quote-card { position: absolute; bottom: -34px; left: -30px; margin: 0; } }
.quote-card__top { display: flex; align-items: center; gap: 13px; margin-bottom: 16px; }
.quote-card p { font-size: 15px; line-height: 1.6; color: var(--fg); }
.quote-card__name { font-weight: 600; font-size: 14px; }
.quote-card__role { font-size: 12px; color: var(--muted); }

/* monogram avatar */
.avatar {
  width: 44px; height: 44px; border-radius: 10px;
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 1rem; font-weight: 500;
  color: var(--bg-card);
  flex: 0 0 auto;
}

/* ---------- section heading block ---------- */
.sec-head { max-width: 720px; margin-bottom: clamp(48px, 7vw, 80px); }
.sec-head h2 { font-size: clamp(2.3rem, 5.5vw, 4rem); letter-spacing: -0.02em; line-height: 1.05; }
.sec-head h2 em { font-style: italic; color: var(--accent-deep); }
.sec-head p { margin-top: 20px; color: var(--fg-soft); font-size: clamp(1rem, 1.3vw, 1.12rem); }
.sec-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head--center .eyebrow { justify-content: center; }

/* ---------- feature cards ---------- */
.cards { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cards--3 { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 34px 30px;
  display: flex; flex-direction: column;
  box-shadow: 0 4px 24px -4px rgba(28,35,30,0.08);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px -8px rgba(28,35,30,0.16); border-color: var(--border); }
.card__icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent-deep);
  margin-bottom: 24px;
}
.card__icon svg { width: 23px; height: 23px; }
.card h3 { font-size: 1.4rem; letter-spacing: -0.01em; margin-bottom: 12px; }
.card p { color: var(--fg-soft); font-size: 15.5px; line-height: 1.68; }
.card__meta { margin-top: 22px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

/* ---------- manifesto / dark band ---------- */
.manifesto {
  background: var(--ink);
  color: var(--bg);
  text-align: center;
  padding: clamp(96px, 14vw, 180px) 0;
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: "\201C";
  position: absolute; top: 24px; left: 50%; transform: translateX(-50%);
  font-family: var(--serif); font-size: 14rem; line-height: 1; color: rgba(111,138,94,0.22);
}
.manifesto__inner { position: relative; max-width: 920px; margin: 0 auto; }
.manifesto .eyebrow { color: #A9BD96; }
.manifesto .eyebrow::before { background: #A9BD96; }
.manifesto p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.7rem, 4.6vw, 3.4rem);
  line-height: 1.18;
  letter-spacing: -0.015em;
}
.manifesto p em { font-style: italic; color: #A9BD96; }
.manifesto__sig { margin-top: 34px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(242,239,229,0.6); }

/* ---------- threat / process list section ---------- */
.process { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 800px) { .process { grid-template-columns: repeat(2, 1fr); } }
.process__item {
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  background: var(--bg-card);
  padding: 28px 28px;
  display: flex; gap: 20px; align-items: flex-start;
}
.process__num { font-family: var(--mono); font-size: 13px; color: var(--accent); padding-top: 4px; }
.process__item h3 { font-size: 1.2rem; margin-bottom: 8px; }
.process__item p { font-size: 14.5px; color: var(--fg-soft); }

/* ---------- library / insights grid ---------- */
.lib { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .lib { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .lib { grid-template-columns: repeat(3, 1fr); } }
.lib-card {
  display: flex; flex-direction: column;
  border-radius: 14px; overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.lib-card:hover { transform: translateY(-5px); box-shadow: 0 14px 44px -12px rgba(28,35,30,0.2); }
.lib-card__img { aspect-ratio: 16/10; overflow: hidden; }
.lib-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.lib-card:hover .lib-card__img img { transform: scale(1.05); }
.lib-card__body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.lib-card__tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 14px; }
.lib-card h3 { font-size: 1.32rem; line-height: 1.2; letter-spacing: -0.01em; margin-bottom: 12px; }
.lib-card p { font-size: 14.5px; color: var(--fg-soft); margin-bottom: 20px; }
.lib-card .arrow-link { margin-top: auto; }

/* ---------- faq ---------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 26px 0;
  font-family: var(--serif); font-size: clamp(1.15rem, 2.2vw, 1.5rem); letter-spacing: -0.01em;
}
.faq__q span.icon { flex: 0 0 auto; width: 22px; height: 22px; position: relative; transition: transform .35s var(--ease); }
.faq__q span.icon::before, .faq__q span.icon::after { content: ""; position: absolute; background: var(--accent-deep); }
.faq__q span.icon::before { top: 10px; left: 0; width: 22px; height: 2px; }
.faq__q span.icon::after { left: 10px; top: 0; width: 2px; height: 22px; transition: transform .35s var(--ease); }
.faq__item[data-open="true"] .faq__q span.icon::after { transform: scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__a p { padding: 0 0 28px; color: var(--fg-soft); font-size: 16px; max-width: 64ch; }
.faq__item[data-open="true"] .faq__a { max-height: 320px; }

/* ---------- cta band ---------- */
.cta-band { background: var(--accent-soft); }
.cta-band__inner { text-align: center; max-width: 760px; margin: 0 auto; }
.cta-band h2 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); letter-spacing: -0.02em; line-height: 1.06; margin-bottom: 22px; }
.cta-band h2 em { font-style: italic; color: var(--accent-deep); }
.cta-band p { color: var(--fg-soft); margin-bottom: 34px; font-size: 1.08rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- contact form ---------- */
.contact-grid { display: grid; gap: 56px; grid-template-columns: 1fr; }
@media (min-width: 920px) { .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 80px; } }
.contact-info h3 { font-family: var(--serif); font-size: 1.05rem; margin: 28px 0 6px; }
.contact-info p { color: var(--fg-soft); font-size: 15.5px; }
.contact-info .first { margin-top: 0; }
.form { display: grid; gap: 20px; }
.form__row { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .form__row { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 12px; font-family: var(--mono); letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea, .field select {
  font: inherit; font-size: 15px;
  padding: 13px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.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(111,138,94,0.16);
}
.form__consent { display: flex; gap: 12px; align-items: flex-start; font-size: 13.5px; color: var(--muted); }
.form__consent input { margin-top: 4px; }
.form button[type="submit"] { justify-self: start; }

/* ---------- page hero (sub-pages) ---------- */
.page-hero { padding: clamp(120px, 16vw, 190px) 0 clamp(60px, 8vw, 90px); border-bottom: 1px solid var(--border-soft); }
.page-hero h1 { font-size: clamp(2.8rem, 7vw, 5.2rem); letter-spacing: -0.03em; font-weight: 300; line-height: 1.04; max-width: 16ch; }
.page-hero h1 em { font-style: italic; color: var(--accent-deep); font-weight: 400; }
.page-hero p { margin-top: 26px; max-width: 60ch; color: var(--fg-soft); font-size: clamp(1.02rem, 1.5vw, 1.18rem); }

/* ---------- legal pages ---------- */
.legal { max-width: 820px; margin: 0 auto; }
.legal h2 { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: -0.01em; margin: 48px 0 16px; }
.legal h3 { font-family: var(--serif); font-size: 1.2rem; margin: 28px 0 10px; }
.legal p { color: var(--fg-soft); margin-bottom: 16px; }
.legal ul { color: var(--fg-soft); padding-left: 22px; margin: 0 0 18px; }
.legal li { margin-bottom: 8px; }
.legal__meta { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase; }

/* ---------- thank-you ---------- */
.thanks { min-height: 76vh; display: grid; place-items: center; text-align: center; padding: 120px 0; }
.thanks__inner { max-width: 620px; }
.thanks__check { width: 76px; height: 76px; border-radius: 50%; background: var(--accent-soft); display: grid; place-items: center; margin: 0 auto 34px; color: var(--accent-deep); }
.thanks h1 { font-size: clamp(2.4rem, 6vw, 4rem); letter-spacing: -0.02em; font-weight: 300; margin-bottom: 20px; }
.thanks h1 em { font-style: italic; color: var(--accent-deep); }
.thanks p { color: var(--fg-soft); margin-bottom: 32px; }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: rgba(242,239,229,0.78); padding: clamp(72px, 9vw, 110px) 0 40px; }
.footer__top { display: grid; gap: 48px; grid-template-columns: 1fr; }
@media (min-width: 800px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; } }
.footer__brand .brand { color: var(--bg); margin-bottom: 20px; }
.footer__brand p { font-size: 14.5px; max-width: 34ch; line-height: 1.7; }
.footer__brand .brand__mark { background: var(--accent); }
.footer h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(242,239,229,0.5); margin-bottom: 18px; font-weight: 400; }
.footer__col a, .footer__col p { display: block; font-size: 14.5px; color: rgba(242,239,229,0.78); margin-bottom: 12px; transition: color .25s var(--ease); }
.footer__col a:hover { color: #A9BD96; }
.footer__bottom {
  margin-top: clamp(56px, 7vw, 80px); padding-top: 28px;
  border-top: 1px solid rgba(242,239,229,0.14);
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
  font-size: 12.5px; color: rgba(242,239,229,0.55);
}
.footer__bottom a { color: rgba(242,239,229,0.7); }
.footer__bottom a:hover { color: #A9BD96; }

/* ---------- scroll 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; transition: none; }
  .hero__bg img { animation: none; }
}

/* ---------- cookie popup ---------- */
.cookie-popup { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: flex-end; padding: 24px; background: rgba(28,35,30,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); padding: 32px 36px; max-width: 480px; border-radius: 12px; box-shadow: 0 24px 60px -20px rgba(28,35,30,0.5); border: 1px solid var(--border-soft); }
.cookie-popup__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 12px; }
.cookie-popup__card h3 { font-family: var(--serif); font-size: 1.4rem; margin-bottom: 12px; }
.cookie-popup__card p { font-size: 14px; color: var(--fg-soft); line-height: 1.62; }
.cookie-popup__card p a { color: var(--accent-deep); 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: 6px; cursor: pointer; font-size: 14px; transition: background .25s var(--ease), color .25s var(--ease); }
.cookie-popup__actions button:first-child:hover { background: var(--bg-alt); }
.cookie-popup__actions button:last-child { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.cookie-popup__actions button:last-child:hover { background: var(--accent-deep); border-color: var(--accent-deep); }

/* ---------- misc ---------- */
.divider-note { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-deep); border: 1px solid var(--border); border-radius: 999px; padding: 7px 14px; }
