/* palette: bg=#8E9D5C fg=#2B3216 accent=#C7D742 */
/* fonts: display="Archivo" body="Inter" mono="Space Mono" */

:root {
  --bg: #8E9D5C;        /* hero / sage olive */
  --bg-alt: #ECE6D7;    /* cream alternating sections */
  --cream: #F4F1E6;     /* light surface / headline cream */
  --fg: #2B3216;        /* primary dark olive text */
  --fg-soft: #46502C;   /* softened foreground */
  --muted: #6E7458;     /* secondary text */
  --accent: #C7D742;    /* lime accent (CTA) */
  --accent-deep: #38461F; /* dark olive band / dark pill */
  --card: #FFFFFF;
  --border: rgba(43, 50, 22, 0.14);
  --border-soft: rgba(43, 50, 22, 0.08);

  --display: 'Archivo', ui-sans-serif, system-ui, sans-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);

  --radius: 22px;
  --radius-lg: 32px;
  --shadow: 0 4px 24px -4px rgba(43, 50, 22, 0.10);
  --shadow-hover: 0 18px 48px -10px rgba(43, 50, 22, 0.20);
  --container: 1240px;
}

*, *::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-alt);
  -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 { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 800; letter-spacing: -0.02em; line-height: 1.04; }

/* ---------- 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(72px, 11vw, 150px) 0; }
.section--cream { background: var(--bg-alt); }
.section--light { background: var(--cream); }
.section--dark { background: var(--accent-deep); color: var(--cream); }

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin: 0 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section--dark .eyebrow { color: var(--accent); }
.eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

.h2 { font-family: var(--display); font-size: clamp(2.4rem, 6vw, 4.6rem); letter-spacing: -0.025em; }
.lead { font-size: clamp(1.05rem, 2.2vw, 1.28rem); line-height: 1.7; color: var(--fg-soft); max-width: 62ch; }
.section--dark .lead { color: rgba(244, 241, 230, 0.82); }
em { font-style: normal; color: var(--accent); }
.section--dark em { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.98rem;
  border-radius: 9999px;
  padding: 12px 14px 12px 26px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s var(--ease);
}
.btn__arrow {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  flex: none;
  transition: transform .35s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:hover .btn__arrow { transform: rotate(-45deg); }

.btn--primary { background: var(--accent-deep); color: var(--cream); box-shadow: var(--shadow); }
.btn--primary .btn__arrow { background: var(--accent); color: var(--accent-deep); }
.btn--primary:hover { box-shadow: var(--shadow-hover); }

.btn--lime { background: var(--accent); color: var(--accent-deep); }
.btn--lime .btn__arrow { background: var(--accent-deep); color: var(--accent); }

.btn--light { background: var(--cream); color: var(--fg); box-shadow: var(--shadow); }
.btn--light .btn__arrow { background: var(--accent-deep); color: var(--accent); }

.btn--ghost {
  padding: 12px 0;
  gap: 10px;
  font-weight: 600;
}
.btn--ghost .btn__arrow { width: 30px; height: 30px; border: 1px solid currentColor; }
.btn--ghost:hover { transform: none; }
.btn--ghost:hover .btn__arrow { transform: translateX(4px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--fg);
  transition: gap .3s var(--ease);
}
.link-arrow:hover { gap: 14px; }
.link-arrow svg { width: 16px; height: 16px; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(142, 157, 92, 0.86);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  transition: box-shadow .4s var(--ease), background .4s var(--ease);
}
.header[data-scrolled="true"] {
  box-shadow: 0 1px 0 rgba(43, 50, 22, 0.10), 0 10px 30px -18px rgba(43, 50, 22, 0.5);
}
/* Cream header variant for interior pages */
.header--cream { background: rgba(236, 230, 215, 0.86); }
.header--cream[data-scrolled="true"] { box-shadow: 0 1px 0 var(--border), 0 10px 30px -18px rgba(43,50,22,0.3); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 76px;
}
.brand {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.32rem;
  letter-spacing: -0.03em;
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.header--cream .brand { color: var(--fg); }
.brand__mark {
  width: 28px; height: 28px;
  flex: none;
}
.nav { display: none; }
@media (min-width: 940px) {
  .nav { display: flex; align-items: center; gap: 34px; }
}
.nav a {
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--cream);
  opacity: 0.92;
  transition: opacity .25s;
  position: relative;
}
.header--cream .nav a { color: var(--fg-soft); }
.nav a:hover { opacity: 1; }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--accent); border-radius: 2px;
}
.header__actions { display: flex; align-items: center; gap: 14px; }
.header__cta { display: none; }
@media (min-width: 600px) { .header__cta { display: inline-flex; } }
.header__cta.btn { padding: 9px 11px 9px 20px; font-size: 0.9rem; }
.header__cta.btn .btn__arrow { width: 32px; height: 32px; }

.menu-toggle {
  display: inline-flex; flex-direction: column; gap: 5px;
  width: 46px; height: 46px;
  border-radius: 50%;
  align-items: center; justify-content: center;
  background: var(--accent);
}
@media (min-width: 940px) { .menu-toggle { display: none; } }
.menu-toggle span { width: 18px; height: 2px; background: var(--accent-deep); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.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(--accent-deep);
  color: var(--cream);
  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(--display);
  font-size: clamp(2rem, 9vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  padding: 14px 0;
  border-bottom: 1px solid rgba(244,241,230,0.14);
  color: var(--cream);
}
.mobile-menu a em { color: var(--accent); }
.mobile-menu__foot { margin-top: auto; font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; color: rgba(244,241,230,0.6); padding-top: 30px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--bg);
  color: var(--cream);
  overflow: hidden;
  padding: clamp(48px, 8vw, 80px) 0 clamp(40px, 6vw, 64px);
  min-height: calc(100vh - 76px);
  display: flex;
  flex-direction: column;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(244,241,230,0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(244,241,230,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 30%, transparent 75%);
  mask-image: radial-gradient(circle at 50% 30%, #000 30%, transparent 75%);
}
.hero__inner { position: relative; z-index: 2; display: flex; flex-direction: column; flex: 1; }
.hero__eyebrow {
  font-family: var(--mono); font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.16em; color: rgba(244,241,230,0.78);
  display: flex; align-items: center; gap: 10px; margin-bottom: 26px;
}
.hero__eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.hero h1 {
  font-family: var(--display);
  font-size: clamp(3.1rem, 9.5vw, 8rem);
  letter-spacing: -0.035em;
  line-height: 0.96;
  font-weight: 800;
  max-width: 14ch;
}
.hero h1 em { color: var(--accent); }
.hero__visual {
  position: relative;
  margin: clamp(28px, 5vw, 48px) auto;
  width: min(560px, 90%);
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.5);
  border: 1px solid rgba(244,241,230,0.18);
}
.hero__visual img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 9s var(--ease) forwards; }
@keyframes heroZoom { from { transform: scale(1.1); } to { transform: scale(1); } }

.hero__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-top: auto;
}
.hero__sub { max-width: 46ch; font-size: 1.06rem; line-height: 1.66; color: rgba(244,241,230,0.9); }
.hero__cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ---------- Card grid / services ---------- */
.grid { display: grid; gap: 22px; }
.section-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 68px); }
.section-head .h2 { margin-bottom: 22px; }

.cards-3 { grid-template-columns: 1fr; }
@media (min-width: 680px) { .cards-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cards-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 32px 30px;
  box-shadow: var(--shadow);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  display: flex; flex-direction: column;
  height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.card__check {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--accent);
  display: grid; place-items: center;
  margin-bottom: 22px; flex: none;
}
.card__check svg { width: 18px; height: 18px; color: var(--accent-deep); }
.card h3 { font-family: var(--display); font-size: 1.35rem; letter-spacing: -0.02em; margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 1rem; line-height: 1.65; margin: 0; }
.card__meta { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 18px; }

/* ---------- Manifesto / dark band ---------- */
.manifesto { text-align: center; }
.manifesto p {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.7rem, 4.6vw, 3.4rem);
  line-height: 1.16;
  letter-spacing: -0.025em;
  max-width: 18ch;
  margin: 0 auto;
}
.manifesto .quote-mark {
  font-family: var(--display); font-size: clamp(4rem, 10vw, 7rem);
  line-height: 0.5; color: var(--accent); display: block; margin-bottom: 10px;
}
.manifesto .quote-mark { height: 0.55em; overflow: hidden; }

/* ---------- Work / case cards ---------- */
.work-grid { grid-template-columns: 1fr; gap: 26px; }
@media (min-width: 820px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
.work-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.work-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.work-card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--accent-deep); }
.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.06); }
.work-card__body { padding: 30px; }
.work-card__cat { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.work-card h3 { font-family: var(--display); font-size: 1.5rem; margin: 14px 0 12px; letter-spacing: -0.02em; }
.work-card p { color: var(--muted); margin: 0 0 20px; font-size: 1rem; }

/* ---------- Process / numbered ---------- */
.steps { grid-template-columns: 1fr; gap: 0; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { padding: 32px 0; border-top: 1px solid rgba(244,241,230,0.18); }
@media (min-width: 760px) { .step { padding: 0 28px 0 0; border-top: 0; } }
.step__num { font-family: var(--mono); font-size: 13px; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 22px; }
.step h3 { font-family: var(--display); font-size: 1.45rem; margin-bottom: 14px; }
.step p { color: rgba(244,241,230,0.76); font-size: 0.98rem; margin: 0; line-height: 1.6; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
@media (min-width: 860px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat__num { font-family: var(--display); font-size: clamp(2.6rem, 6vw, 4rem); letter-spacing: -0.03em; line-height: 1; }
.stat__label { font-size: 0.92rem; color: var(--muted); margin-top: 12px; line-height: 1.5; }

/* ---------- Team / monograms ---------- */
.team-grid { grid-template-columns: 1fr; }
@media (min-width: 620px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.person {
  background: var(--card); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow);
}
.avatar {
  width: 64px; height: 64px; border-radius: 20px;
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 800; font-size: 1.35rem;
  color: var(--cream); margin-bottom: 22px; letter-spacing: -0.02em;
}
.person h3 { font-family: var(--display); font-size: 1.25rem; margin-bottom: 6px; }
.person__role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.person p { color: var(--muted); font-size: 0.97rem; margin: 0; line-height: 1.6; }

/* ---------- FAQ ---------- */
.faq { max-width: 880px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%; text-align: left; display: flex; justify-content: space-between; gap: 24px;
  align-items: center; padding: 26px 0; font-family: var(--display); font-weight: 700;
  font-size: clamp(1.1rem, 2.4vw, 1.4rem); letter-spacing: -0.015em;
}
.faq__icon { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--border); display: grid; place-items: center; transition: transform .35s var(--ease), background .3s; }
.faq__q[aria-expanded="true"] .faq__icon { transform: rotate(45deg); background: var(--accent); border-color: var(--accent); }
.faq__icon::before { content: "+"; font-family: var(--sans); font-size: 1.2rem; line-height: 1; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq__a-inner { padding: 0 0 26px; color: var(--muted); font-size: 1.02rem; line-height: 1.7; max-width: 68ch; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band .h2 { margin-bottom: 26px; max-width: 16ch; margin-inline: auto; }
.cta-band .lead { margin: 0 auto 36px; text-align: center; }
.cta-band__row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 940px) { .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 64px; } }
.contact-info dl { margin: 32px 0 0; display: grid; gap: 26px; }
.contact-info dt { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.contact-info dd { margin: 0; font-size: 1.08rem; color: var(--fg); }

.form { background: var(--card); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow); }
.field { margin-bottom: 22px; }
.field label { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.field input, .field textarea, .field select {
  width: 100%; font: inherit; font-size: 1rem; color: var(--fg);
  background: var(--bg-alt); border: 1px solid transparent; border-radius: 14px;
  padding: 14px 16px; transition: border-color .25s, background .25s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent-deep); background: var(--cream); }
.field textarea { resize: vertical; min-height: 130px; }
.form .btn { width: 100%; justify-content: center; margin-top: 8px; }
.form__note { font-size: 0.84rem; color: var(--muted); margin: 16px 0 0; line-height: 1.5; }

/* ---------- Page hero (interior) ---------- */
.page-hero { background: var(--bg); color: var(--cream); padding: clamp(70px, 11vw, 140px) 0 clamp(56px, 8vw, 100px); position: relative; overflow: hidden; }
.page-hero .hero__grid { -webkit-mask-image: radial-gradient(circle at 30% 40%, #000 20%, transparent 70%); mask-image: radial-gradient(circle at 30% 40%, #000 20%, transparent 70%); }
.page-hero__inner { position: relative; z-index: 2; }
.page-hero h1 { font-family: var(--display); font-size: clamp(2.8rem, 8vw, 6.5rem); letter-spacing: -0.035em; line-height: 0.98; max-width: 16ch; }
.page-hero h1 em { color: var(--accent); }
.page-hero .hero__eyebrow { margin-bottom: 24px; }
.page-hero p { max-width: 56ch; margin-top: 28px; font-size: 1.1rem; color: rgba(244,241,230,0.9); line-height: 1.66; }

/* ---------- Prose (legal) ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-family: var(--display); font-size: clamp(1.5rem, 3.4vw, 2.1rem); margin: 48px 0 16px; letter-spacing: -0.02em; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--fg-soft); font-size: 1.04rem; line-height: 1.78; }
.prose ul { padding-left: 22px; list-style: disc; margin: 16px 0; display: grid; gap: 8px; }
.prose strong { color: var(--fg); }
.prose .muted-date { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; }

/* ---------- Footer ---------- */
.footer { background: var(--accent-deep); color: var(--cream); padding: clamp(60px, 9vw, 110px) 0 40px; }
.footer__top { display: grid; grid-template-columns: 1fr; gap: 44px; padding-bottom: 56px; border-bottom: 1px solid rgba(244,241,230,0.16); }
@media (min-width: 760px) { .footer__top { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer__brand { font-family: var(--display); font-weight: 800; font-size: 1.6rem; letter-spacing: -0.03em; margin-bottom: 18px; display: inline-flex; align-items: center; gap: 10px; }
.footer__brand .brand__mark { width: 30px; height: 30px; }
.footer__tag { color: rgba(244,241,230,0.74); max-width: 38ch; line-height: 1.6; }
.footer__col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; font-weight: 400; }
.footer__col ul { display: grid; gap: 13px; }
.footer__col a, .footer__col li { color: rgba(244,241,230,0.82); font-size: 0.98rem; transition: color .25s; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; padding-top: 32px; font-size: 0.86rem; color: rgba(244,241,230,0.6); }
.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__visual img { animation: none; }
}

/* ---------- Cookie popup ---------- */
.cookie-popup { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: flex-end; padding: 24px; background: rgba(43,50,22,0.45); 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(--cream); padding: 32px 34px; max-width: 460px; border-radius: var(--radius); box-shadow: var(--shadow-hover); margin: 0 auto; }
@media (min-width: 600px) { .cookie-popup { align-items: flex-end; justify-content: flex-end; } .cookie-popup__card { margin: 0; } }
.cookie-popup__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 14px; }
.cookie-popup__card h3 { font-family: var(--display); font-size: 1.3rem; margin-bottom: 12px; }
.cookie-popup__card p { font-size: 0.94rem; color: var(--muted); line-height: 1.6; margin: 0; }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 24px; }
.cookie-popup__actions button { padding: 12px 24px; border-radius: 9999px; font-size: 0.92rem; font-weight: 600; transition: transform .25s var(--ease); }
.cookie-popup__actions button:hover { transform: translateY(-2px); }
.cookie-popup__actions button[data-cookie="decline"] { border: 1px solid var(--border); color: var(--fg); }
.cookie-popup__actions button[data-cookie="accept"] { background: var(--accent-deep); color: var(--cream); flex: 1; }

/* ---------- Misc ---------- */
.split { display: grid; grid-template-columns: 1fr; gap: 44px; align-items: center; }
@media (min-width: 920px) { .split { grid-template-columns: 1.05fr 1fr; gap: 64px; } }
.split--rev > :first-child { order: 0; }
@media (min-width: 920px) { .split--rev > :first-child { order: 1; } }
.split__media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.value-list { display: grid; gap: 20px; margin-top: 32px; }
.value-list li { display: flex; gap: 16px; align-items: flex-start; }
.value-list .vl-icon { width: 32px; height: 32px; border-radius: 50%; background: var(--accent); flex: none; display: grid; place-items: center; }
.value-list .vl-icon svg { width: 15px; height: 15px; color: var(--accent-deep); }
.value-list strong { display: block; font-family: var(--display); font-size: 1.1rem; margin-bottom: 4px; }
.value-list span { color: var(--muted); font-size: 0.98rem; }
.section--dark .value-list strong { color: var(--cream); }
.section--dark .value-list span { color: rgba(244,241,230,0.72); }
