/* palette: bg=#EFEBE1 fg=#181815 accent=#9EBBA4 */
/* fonts: display="Archivo" body="Inter" mono="Space Mono" */

:root {
  --bg: #EFEBE1;         /* warm cream, dominant background from reference */
  --bg-alt: #E5E0D3;     /* deeper cream for alternating sections */
  --bg-panel: #F5F2EB;   /* lighter panel */
  --fg: #181815;         /* near-black primary text */
  --fg-soft: #37372F;    /* slightly lighter fg */
  --muted: #8B897E;      /* secondary text */
  --accent: #9EBBA4;     /* muted sage — the desaturated pale square in the reference */
  --accent-deep: #6F9078;/* darker sage for hover */
  --dark: #16160F;       /* inverted band background */
  --border: rgba(24, 24, 21, 0.14);
  --border-soft: rgba(24, 24, 21, 0.08);

  --serif: '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);

  --container: 1280px;
  --pad: clamp(80px, 12vw, 168px);
}

*, *::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: var(--fg); }

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

.section { padding: var(--pad) 0; }
.section--tight { padding: clamp(56px, 8vw, 100px) 0; }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 24px;
  display: block;
}
.eyebrow--accent { color: var(--accent-deep); }

/* ------------------------------------------------------------------ headings */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; margin: 0; }
.display {
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-transform: uppercase;
}
.h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: -0.03em;
  line-height: 0.98;
  font-weight: 600;
}
.lead {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.55;
  color: var(--fg-soft);
  max-width: 640px;
}

/* ------------------------------------------------------------------ header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(239, 235, 225, 0.82);
  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);
  border-bottom: 1px solid transparent;
}
.header[data-scrolled="true"] {
  box-shadow: 0 1px 0 var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.brand span { color: var(--accent-deep); }
.nav { display: none; gap: 38px; }
@media (min-width: 900px) { .nav { display: flex; } }
.nav a {
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--fg-soft);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--fg);
  transition: width 0.35s var(--ease);
}
.nav a:hover { color: var(--fg); }
.nav a:hover::after { width: 100%; }

.header__cta {
  display: none;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  padding: 9px 18px;
  border-radius: 999px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
@media (min-width: 900px) { .header__cta { display: inline-flex; } }
.header__cta:hover { background: var(--fg); color: var(--bg); }

/* hamburger */
.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 8px;
}
@media (min-width: 900px) { .menu-toggle { display: none; } }
.menu-toggle span {
  display: block;
  height: 1.5px;
  width: 22px;
  background: var(--fg);
  transition: transform 0.35s var(--ease), opacity 0.25s 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: 68px 0 0;
  z-index: 99;
  background: var(--bg);
  padding: 48px 24px;
  transform: translateY(-8px);
  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 {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
}
.mobile-menu__foot {
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
  line-height: 1.9;
}

/* ------------------------------------------------------------------ hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 96px 0 40px;
}
.hero__wordmark {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.hero__wordmark h1 {
  font-size: clamp(4.5rem, 24vw, 20rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.82;
  text-transform: uppercase;
  text-align: center;
}
.hero__wordmark h1 .dot { color: var(--accent-deep); }

.hero__stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 5vw, 40px) 0;
}
.hero__disc {
  position: absolute;
  z-index: 1;
  width: clamp(240px, 40vw, 460px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(255,255,255,0.9), rgba(158,187,164,0.18) 60%, transparent 72%);
}
.hero__square {
  position: absolute;
  z-index: 3;
  right: clamp(6%, 12vw, 18%);
  top: 26%;
  width: clamp(48px, 7vw, 96px);
  aspect-ratio: 1;
  background: var(--accent);
  mix-blend-mode: multiply;
}
.hero__product {
  position: relative;
  z-index: 2;
  width: clamp(150px, 24vw, 300px);
  aspect-ratio: 3 / 4;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(24,24,21,0.4);
  animation: heroZoom 8s var(--ease) both;
}
.hero__product img { width: 100%; height: 100%; object-fit: cover; }
.hero__card {
  position: absolute;
  z-index: 4;
  left: clamp(8%, 14vw, 20%);
  top: 20%;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  padding: 14px 18px;
  min-width: 120px;
  box-shadow: 0 12px 40px -16px rgba(24,24,21,0.22);
}
.hero__card .num { font-family: var(--serif); font-weight: 800; font-size: 2rem; line-height: 1; letter-spacing: -0.03em; }
.hero__card .lbl { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }

.hero__foot {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: clamp(24px, 5vw, 56px);
}
@media (min-width: 768px) {
  .hero__foot { grid-template-columns: 1fr auto 1fr; align-items: end; }
}
.hero__tag {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.hero__meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.9;
  text-align: left;
}
@media (min-width: 768px) { .hero__meta { text-align: right; } }
.hero__mid {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

/* ------------------------------------------------------------------ intro line */
.intro__line {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  max-width: 1000px;
}
.intro__line em { color: var(--accent-deep); font-style: normal; }

/* ------------------------------------------------------------------ feature detail (BACOPA-style) */
.feature { border-top: 1px solid var(--border); }
.feature__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (min-width: 1024px) {
  .feature__grid { grid-template-columns: 1.1fr 1.2fr 1fr; }
}
.feature__title h2 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.95;
  text-transform: uppercase;
}
.feature__title p { color: var(--muted); margin: 14px 0 0; font-size: 15px; }
.feature__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(160deg, #2a2a24, #0e0e0a);
}
.feature__media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.92; }
.feature__specs { font-size: 15px; }
.feature__specs .idx {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
  display: block;
  margin-bottom: 24px;
}
.feature__specs p { color: var(--fg-soft); margin: 0 0 28px; line-height: 1.65; }
.spec-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid var(--border-soft);
}
.spec-row dt { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin: 0; }
.spec-row dd { margin: 0; text-align: right; color: var(--fg); font-size: 14px; max-width: 60%; }

/* ------------------------------------------------------------------ dark band */
.band {
  background: var(--dark);
  color: var(--bg);
}
.band .eyebrow { color: rgba(239,235,225,0.5); }
.band__statement {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.5rem, 4.6vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}
.band__statement em { color: var(--accent); font-style: normal; }
.band__foot {
  display: flex;
  justify-content: center;
  margin-top: clamp(40px, 6vw, 72px);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(239,235,225,0.55);
}

/* ------------------------------------------------------------------ numbered services list */
.svc-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.svc-list { border-top: 1px solid var(--border); }
.svc-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px 32px;
  padding: clamp(28px, 4vw, 48px) 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.4s var(--ease);
}
@media (min-width: 768px) {
  .svc-item { grid-template-columns: 80px 1.4fr 1.6fr auto; align-items: baseline; }
  .svc-item:hover { padding-left: 16px; }
}
.svc-item__num { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; color: var(--muted); }
.svc-item__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.svc-item__desc { color: var(--fg-soft); font-size: 15.5px; line-height: 1.6; }
.svc-item__arrow {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent-deep);
  letter-spacing: 0.1em;
  transition: transform 0.35s var(--ease);
}
.svc-item:hover .svc-item__arrow { transform: translateX(8px); }

/* ------------------------------------------------------------------ stats */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
}
@media (min-width: 768px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--bg); padding: clamp(28px, 4vw, 48px) 24px; }
.stat__num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.6rem, 5vw, 4rem);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat__num small { font-size: 0.4em; color: var(--accent-deep); vertical-align: super; }
.stat__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 14px; }

/* ------------------------------------------------------------------ work cards */
.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 3vw, 44px);
}
@media (min-width: 700px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
.work-card { display: block; }
.work-card__media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border-radius: 6px;
  background: var(--bg-alt);
  margin-bottom: 20px;
}
.work-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.work-card:hover .work-card__media img { transform: scale(1.05); }
.work-card__meta { display: flex; justify-content: space-between; gap: 16px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.work-card__title { font-family: var(--serif); font-weight: 600; font-size: clamp(1.4rem, 2.4vw, 1.9rem); letter-spacing: -0.02em; line-height: 1.1; }
.work-card__desc { color: var(--fg-soft); font-size: 15px; margin-top: 10px; max-width: 46ch; }

/* ------------------------------------------------------------------ pull quote */
.quote {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}
.quote__mark {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 0.6;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}
.quote blockquote {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 3.6vw, 2.8rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
}
.quote figcaption { margin-top: 32px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

/* ------------------------------------------------------------------ team/principles cards (no faces) */
.people-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--border-soft); border: 1px solid var(--border-soft); }
@media (min-width: 640px) { .people-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .people-grid { grid-template-columns: repeat(3, 1fr); } }
.person { background: var(--bg); padding: clamp(28px, 3vw, 40px); }
.avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 700; font-size: 20px; letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}
.person__name { font-family: var(--serif); font-weight: 600; font-size: 1.3rem; letter-spacing: -0.01em; }
.person__role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin: 6px 0 14px; }
.person__bio { font-size: 14.5px; color: var(--fg-soft); line-height: 1.6; }

/* ------------------------------------------------------------------ CTA */
.cta-band { background: var(--bg-alt); }
.cta-wrap { display: grid; gap: 40px; align-items: center; }
@media (min-width: 900px) { .cta-wrap { grid-template-columns: 1.2fr 1fr; } }
.cta-wrap h2 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 700; letter-spacing: -0.03em; line-height: 0.98; }
.cta-wrap p { color: var(--fg-soft); max-width: 42ch; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 999px;
  background: var(--fg);
  color: var(--bg);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.btn:hover { transform: translateY(-2px); background: var(--accent-deep); }
.btn--ghost { background: transparent; color: var(--fg); border: 1px solid var(--border); }
.btn--ghost:hover { background: var(--fg); color: var(--bg); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg);
  border-bottom: 1px solid var(--border);
  padding-bottom: 3px;
  transition: gap 0.3s var(--ease), border-color 0.3s var(--ease);
}
.link-arrow:hover { gap: 14px; border-color: var(--fg); }

/* ------------------------------------------------------------------ form */
.form { display: grid; gap: 20px; }
.field { display: grid; gap: 8px; }
.field label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea, .field select {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--fg);
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 14px 16px;
  width: 100%;
  transition: border-color 0.3s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent-deep); }
.field textarea { min-height: 140px; resize: vertical; }
.form__row { display: grid; gap: 20px; }
@media (min-width: 640px) { .form__row { grid-template-columns: 1fr 1fr; } }

/* ------------------------------------------------------------------ contact info blocks */
.info-grid { display: grid; gap: 1px; background: var(--border-soft); border: 1px solid var(--border-soft); }
@media (min-width: 700px) { .info-grid { grid-template-columns: repeat(3, 1fr); } }
.info { background: var(--bg); padding: clamp(24px, 3vw, 36px); }
.info h3 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-weight: 400; margin-bottom: 12px; }
.info p { margin: 0; font-size: 16px; color: var(--fg-soft); line-height: 1.7; }

/* ------------------------------------------------------------------ footer */
.footer { background: var(--dark); color: var(--bg); padding: clamp(64px, 8vw, 110px) 0 40px; }
.footer__top { display: grid; gap: 48px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr; } }
.footer__brand { font-family: var(--serif); font-weight: 800; font-size: clamp(2.8rem, 8vw, 6rem); letter-spacing: -0.05em; text-transform: uppercase; line-height: 0.85; }
.footer__brand span { color: var(--accent); }
.footer__tag { color: rgba(239,235,225,0.6); margin-top: 20px; max-width: 34ch; font-size: 15px; }
.footer__col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(239,235,225,0.45); font-weight: 400; margin-bottom: 18px; }
.footer__col a, .footer__col p { display: block; color: rgba(239,235,225,0.85); font-size: 14.5px; line-height: 2.1; margin: 0; transition: color 0.3s var(--ease); }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between;
  margin-top: clamp(48px, 7vw, 88px);
  padding-top: 28px;
  border-top: 1px solid rgba(239,235,225,0.14);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: rgba(239,235,225,0.45);
}

/* ------------------------------------------------------------------ page hero (inner pages) */
.page-hero { padding: clamp(120px, 16vw, 200px) 0 clamp(48px, 7vw, 88px); border-bottom: 1px solid var(--border); }
.page-hero h1 {
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.86;
  text-transform: uppercase;
}
.page-hero h1 em { color: var(--accent-deep); font-style: normal; }
.page-hero .lead { margin-top: 28px; }

/* ------------------------------------------------------------------ prose (legal) */
.prose { max-width: 760px; }
.prose h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: -0.02em; margin: 48px 0 16px; }
.prose h3 { font-family: var(--serif); font-weight: 600; font-size: 1.2rem; margin: 32px 0 12px; }
.prose p, .prose li { font-size: 16.5px; line-height: 1.8; color: var(--fg-soft); }
.prose ul { padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--accent-deep); border-bottom: 1px solid var(--border); }

/* ------------------------------------------------------------------ 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__product { animation: none; }
  * { scroll-behavior: auto; }
}

/* ------------------------------------------------------------------ cookie popup */
.cookie-popup { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: flex-end; padding: 24px; background: rgba(22,22,15,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: 6px; box-shadow: 0 30px 80px -20px rgba(22,22,15,0.5); }
.cookie-popup__label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 12px; }
.cookie-popup__card h3 { font-family: var(--serif); font-weight: 600; font-size: 1.4rem; letter-spacing: -0.01em; margin-bottom: 10px; }
.cookie-popup__card p { font-size: 14px; line-height: 1.65; color: var(--fg-soft); margin: 0; }
.cookie-popup__card p a { color: var(--accent-deep); border-bottom: 1px solid var(--border); }
.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.1em; text-transform: uppercase; border-radius: 999px; transition: background 0.3s var(--ease), color 0.3s var(--ease); }
.cookie-popup__actions button:hover { background: var(--bg-alt); }
.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-deep); border-color: var(--accent-deep); }

/* utilities */
.mt-s { margin-top: 20px; }
.mt-m { margin-top: 40px; }
.center { text-align: center; }
.max-720 { max-width: 720px; }
.divider { height: 1px; background: var(--border); border: 0; margin: 0; }
