/* palette: bg=#E9EAE5 fg=#16191A accent=#6E9F2E */
/* fonts: display="Space Grotesk" body="Inter" mono="JetBrains Mono" */

:root {
  --bg: #E9EAE5;        /* cool off-white, misty daylight */
  --bg-alt: #DCE1E1;    /* pale blue-grey, the water tone */
  --bg-cream: #EEEDE6;  /* warm cream showcase panel */
  --fg: #16191A;        /* near-black charcoal */
  --fg-soft: #33383A;   /* softer charcoal */
  --muted: #6F7573;     /* secondary text */
  --line: #C7CAC4;      /* hairline */
  --accent: #6E9F2E;    /* signal green (from the CTA icon) */
  --accent-deep: #557C20;
  --dark: #101413;      /* inverted band */
  --dark-soft: #1B201F;
  --border: rgba(22, 25, 26, 0.12);
  --serif: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1280px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.76;
  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 { font-family: var(--serif); font-weight: 400; margin: 0; }

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

.section { padding: clamp(80px, 12vw, 160px) 0; }
.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(--muted);
  display: inline-block;
  margin: 0 0 20px;
}
.eyebrow--accent { color: var(--accent-deep); }
.eyebrow .idx { color: var(--accent-deep); margin-right: 10px; }

.lead { font-size: clamp(1.15rem, 2vw, 1.4rem); line-height: 1.6; color: var(--fg-soft); max-width: 44ch; }

/* ---------- 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; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation: none !important; }
}

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(233, 234, 229, 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 rgba(22,25,26,0.06), 0 8px 30px -18px rgba(22,25,26,0.3);
  border-bottom: 1px solid var(--border);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; letter-spacing: -0.02em; display: flex; align-items: center; gap: 10px; }
.brand__mark { width: 12px; height: 12px; background: var(--accent); display: inline-block; }
.nav { display: none; gap: 34px; align-items: center; }
.nav a { font-size: 14px; color: var(--fg-soft); position: relative; padding: 4px 0; transition: color 0.25s var(--ease); }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px; background: var(--fg); transition: width 0.3s 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) {
  .nav { display: flex; }
  .header__cta { display: inline-flex; }
}

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 500; letter-spacing: 0.01em;
  padding: 13px 24px; border-radius: 999px;
  background: var(--fg); color: var(--bg);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), opacity 0.3s var(--ease);
}
.btn:hover { transform: translateY(-2px); background: var(--dark-soft); }
.btn__icon { width: 16px; height: 16px; background: var(--accent); display: inline-block; }
.btn--ghost { background: transparent; color: var(--fg); border: 1px solid var(--border); }
.btn--ghost:hover { background: transparent; border-color: var(--fg); }
.btn--light { background: var(--bg); color: var(--fg); }
.btn--light:hover { background: #fff; }

.menu-toggle { display: inline-flex; flex-direction: column; gap: 5px; width: 40px; height: 40px; align-items: center; justify-content: center; }
.menu-toggle span { width: 22px; height: 1.5px; background: var(--fg); transition: transform 0.3s 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); }
@media (min-width: 900px) { .menu-toggle { display: none; } }

.mobile-menu {
  position: fixed; inset: 72px 0 0; z-index: 99;
  background: var(--bg);
  transform: translateY(-100%); opacity: 0; pointer-events: none;
  transition: transform 0.45s var(--ease), opacity 0.35s var(--ease);
  display: flex; flex-direction: column; padding: 40px 24px;
}
.mobile-menu[data-open="true"] { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-menu a { font-family: var(--serif); font-size: 2rem; padding: 14px 0; border-bottom: 1px solid var(--border); }
.mobile-menu .btn { margin-top: 28px; align-self: flex-start; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 9s var(--ease) both; }
@keyframes heroZoom { from { transform: scale(1.09); } to { transform: scale(1); } }
.hero__scrim { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(16,20,19,0.28) 0%, rgba(16,20,19,0.05) 34%, rgba(16,20,19,0.10) 62%, rgba(16,20,19,0.55) 100%); }
.hero__inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(48px, 8vw, 90px); padding-top: 120px; }
.hero__eyebrow { color: rgba(255,255,255,0.86); }
.hero h1 {
  color: #fff;
  font-size: clamp(3.2rem, 10vw, 8.5rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 300;
  max-width: 16ch;
  margin: 0 0 28px;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero__sub { color: rgba(255,255,255,0.9); font-size: clamp(1.05rem, 2vw, 1.3rem); max-width: 48ch; line-height: 1.6; margin: 0 0 36px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.4); }
.hero .btn--ghost:hover { border-color: #fff; }
.hero__meta { position: absolute; right: 20px; bottom: clamp(48px,8vw,90px); z-index: 2; display: none; text-align: right; }
@media (min-width: 768px) { .hero__meta { display: block; } }
.hero__meta span { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.72); }
.hero__meta strong { font-family: var(--serif); font-weight: 400; color: #fff; font-size: 1.4rem; }

/* ---------- intro / two-col ---------- */
.split { display: grid; gap: 40px; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; } }
.split__title { font-size: clamp(2rem, 4.5vw, 3.4rem); line-height: 1.08; letter-spacing: -0.02em; }
.split__title em { font-style: normal; color: var(--accent-deep); }
.prose p { color: var(--fg-soft); margin: 0 0 20px; max-width: 58ch; }
.prose p:last-child { margin-bottom: 0; }

/* ---------- showcase ---------- */
.showcase { background: var(--bg-cream); }
.showcase__stage { position: relative; margin: 40px 0 0; border-radius: 6px; overflow: hidden; }
.showcase__stage img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.showcase__caption { display: grid; gap: 20px; margin-top: 40px; }
@media (min-width: 768px) { .showcase__caption { grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: end; } }
.showcase__caption h3 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); letter-spacing: -0.02em; }
.showcase__tabs { display: grid; gap: 12px; margin-top: 44px; }
@media (min-width: 700px) { .showcase__tabs { grid-template-columns: repeat(3, 1fr); } }
.tab {
  border: 1px solid var(--border); border-radius: 4px; padding: 22px 22px 24px;
  background: rgba(255,255,255,0.35); text-align: left;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s var(--ease);
  display: flex; flex-direction: column; gap: 10px;
}
.tab:hover { border-color: var(--fg); transform: translateY(-3px); background: rgba(255,255,255,0.6); }
.tab__mark { width: 22px; height: 22px; background: var(--fg); position: relative; }
.tab__mark::after { content: ""; position: absolute; right: -1px; bottom: -1px; width: 10px; height: 10px; background: var(--accent); }
.tab__name { font-family: var(--serif); font-size: 1.25rem; letter-spacing: -0.01em; }
.tab__desc { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ---------- numbered services ---------- */
.service-list { border-top: 1px solid var(--border); margin-top: 48px; }
.service-item {
  display: grid; gap: 8px; padding: 34px 0; border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease);
}
@media (min-width: 860px) {
  .service-item { grid-template-columns: 84px 1fr 1.2fr; gap: 40px; align-items: baseline; }
}
.service-item__num { font-family: var(--mono); font-size: 13px; color: var(--accent-deep); letter-spacing: 0.1em; }
.service-item__name { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.1rem); letter-spacing: -0.02em; line-height: 1.1; }
.service-item__desc { color: var(--fg-soft); font-size: 16px; line-height: 1.65; }
.service-item:hover .service-item__name { color: var(--accent-deep); }

/* ---------- stats ---------- */
.stats { display: grid; gap: 40px; }
@media (min-width: 700px) { .stats { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
.stat { border-top: 2px solid var(--fg); padding-top: 20px; }
.stat__num { font-family: var(--serif); font-size: clamp(2.6rem, 6vw, 4.2rem); font-weight: 300; letter-spacing: -0.03em; line-height: 1; }
.stat__num em { font-style: normal; color: var(--accent-deep); }
.stat__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 12px; }

/* ---------- manifesto dark band ---------- */
.band { background: var(--dark); color: #EDEFEC; }
.band .eyebrow { color: rgba(237,239,236,0.6); }
.band__quote {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2rem, 5vw, 4rem); line-height: 1.16; letter-spacing: -0.02em;
  max-width: 20ch; margin: 0 auto; text-align: center;
}
.band__quote em { font-style: normal; color: var(--accent); }
.band__mark { text-align: center; font-family: var(--serif); font-size: 5rem; color: var(--accent); line-height: 0.6; margin-bottom: 16px; }
.band__by { text-align: center; margin-top: 40px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(237,239,236,0.6); }

/* ---------- work grid ---------- */
.work-grid { display: grid; gap: 28px; margin-top: 52px; }
@media (min-width: 700px) { .work-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
.work-card { display: flex; flex-direction: column; }
.work-card__img { overflow: hidden; border-radius: 6px; aspect-ratio: 4 / 3; }
.work-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.work-card:hover .work-card__img img { transform: scale(1.05); }
.work-card__meta { display: flex; justify-content: space-between; align-items: baseline; margin-top: 20px; gap: 16px; }
.work-card__title { font-family: var(--serif); font-size: 1.5rem; letter-spacing: -0.02em; }
.work-card__tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.work-card__desc { color: var(--fg-soft); font-size: 15px; margin-top: 10px; line-height: 1.6; }

/* ---------- principles / team text cards ---------- */
.grid-cards { display: grid; gap: 24px; margin-top: 52px; }
@media (min-width: 700px) { .grid-cards { grid-template-columns: repeat(3, 1fr); } }
.card {
  border: 1px solid var(--border); border-radius: 5px; padding: 30px 28px 34px;
  background: rgba(255,255,255,0.3);
  box-shadow: 0 4px 24px -4px rgba(0,0,0,0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  display: flex; flex-direction: column; gap: 14px;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px -8px rgba(0,0,0,0.14); border-color: var(--fg); }
.card__idx { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: var(--accent-deep); }
.card h3 { font-size: 1.4rem; letter-spacing: -0.01em; }
.card p { margin: 0; color: var(--fg-soft); font-size: 15px; line-height: 1.65; }

.avatar { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 500; font-size: 1.1rem; color: #fff; letter-spacing: -0.01em; }
.people { display: grid; gap: 24px; margin-top: 52px; }
@media (min-width: 700px) { .people { grid-template-columns: repeat(2, 1fr); } }
.person { border: 1px solid var(--border); border-radius: 5px; padding: 28px; display: flex; gap: 20px; align-items: flex-start; background: rgba(255,255,255,0.3); transition: border-color 0.3s var(--ease); }
.person:hover { border-color: var(--fg); }
.person h3 { font-size: 1.3rem; letter-spacing: -0.01em; }
.person__role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-deep); margin: 6px 0 12px; }
.person p { margin: 0; font-size: 14px; color: var(--fg-soft); line-height: 1.6; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--border); margin-top: 48px; }
.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: 28px 0; font-family: var(--serif); font-size: clamp(1.15rem, 2.4vw, 1.5rem); letter-spacing: -0.01em; }
.faq__q .plus { position: relative; width: 18px; height: 18px; flex: 0 0 auto; }
.faq__q .plus::before, .faq__q .plus::after { content: ""; position: absolute; background: var(--fg); transition: transform 0.3s var(--ease); }
.faq__q .plus::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq__q .plus::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq__item[data-open="true"] .plus::after { transform: rotate(90deg); opacity: 0; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq__a p { margin: 0 0 26px; color: var(--fg-soft); max-width: 66ch; font-size: 16px; line-height: 1.7; }
.faq__item[data-open="true"] .faq__a { max-height: 400px; }

/* ---------- CTA ---------- */
.cta { background: var(--bg-alt); text-align: center; }
.cta h2 { font-size: clamp(2.2rem, 6vw, 4.6rem); letter-spacing: -0.03em; line-height: 1.02; font-weight: 300; max-width: 18ch; margin: 0 auto 24px; }
.cta h2 em { font-style: normal; color: var(--accent-deep); }
.cta p { color: var(--fg-soft); max-width: 46ch; margin: 0 auto 36px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ---------- contact form ---------- */
.contact-grid { display: grid; gap: 56px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; } }
.info-block { margin-bottom: 34px; }
.info-block h3 { font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin: 0 0 10px; }
.info-block p, .info-block a { font-size: 17px; color: var(--fg); line-height: 1.6; }
.info-block a:hover { color: var(--accent-deep); }
form { display: grid; gap: 22px; }
.field { display: grid; gap: 8px; }
.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 {
  font-family: var(--sans); font-size: 16px; color: var(--fg);
  background: rgba(255,255,255,0.5); border: 1px solid var(--border); border-radius: 4px;
  padding: 14px 16px; width: 100%; transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); background: #fff; }
.field textarea { resize: vertical; min-height: 130px; }
.field--row { display: grid; gap: 22px; }
@media (min-width: 600px) { .field--row { grid-template-columns: 1fr 1fr; } }
.form-note { font-size: 13px; color: var(--muted); line-height: 1.6; }
.form-note a { color: var(--accent-deep); text-decoration: underline; }

/* ---------- page hero (interior) ---------- */
.page-hero { padding: clamp(120px, 16vw, 200px) 0 clamp(48px, 8vw, 90px); border-bottom: 1px solid var(--border); }
.page-hero h1 { font-size: clamp(2.8rem, 8vw, 6rem); font-weight: 300; letter-spacing: -0.03em; line-height: 1.0; max-width: 18ch; margin: 20px 0 24px; }
.page-hero h1 em { font-style: normal; color: var(--accent-deep); }
.page-hero p { max-width: 52ch; color: var(--fg-soft); font-size: clamp(1.05rem, 2vw, 1.25rem); }

/* ---------- legal ---------- */
.legal { padding: clamp(120px, 15vw, 190px) 0 100px; }
.legal__wrap { max-width: 760px; }
.legal h1 { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 300; letter-spacing: -0.03em; margin-bottom: 12px; }
.legal .updated { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 48px; }
.legal h2 { font-size: 1.6rem; letter-spacing: -0.01em; margin: 48px 0 14px; }
.legal h3 { font-size: 1.2rem; margin: 28px 0 10px; }
.legal p, .legal li { color: var(--fg-soft); font-size: 16px; line-height: 1.75; }
.legal ul { padding-left: 20px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--accent-deep); text-decoration: underline; }

/* ---------- thanks ---------- */
.thanks { min-height: 82vh; display: flex; align-items: center; text-align: center; }
.thanks h1 { font-size: clamp(2.6rem, 8vw, 5.5rem); font-weight: 300; letter-spacing: -0.03em; margin-bottom: 22px; }
.thanks h1 em { font-style: normal; color: var(--accent-deep); }
.thanks p { max-width: 46ch; margin: 0 auto 36px; color: var(--fg-soft); }

/* ---------- footer ---------- */
.footer { background: var(--dark); color: #C9CCC7; padding: clamp(64px, 9vw, 110px) 0 40px; }
.footer a { color: #C9CCC7; transition: color 0.25s var(--ease); }
.footer a:hover { color: #fff; }
.footer__top { display: grid; gap: 48px; }
@media (min-width: 800px) { .footer__top { grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; } }
.footer__brand { font-family: var(--serif); font-size: 1.8rem; font-weight: 500; letter-spacing: -0.02em; color: #fff; display: flex; align-items: center; gap: 12px; }
.footer__brand .brand__mark { width: 14px; height: 14px; }
.footer__tagline { margin: 20px 0 0; max-width: 32ch; color: #9BA09B; font-size: 15px; line-height: 1.6; }
.footer__col h4 { font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: #7C817C; margin: 0 0 18px; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer__col a { font-size: 15px; }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; margin-top: clamp(48px, 7vw, 80px); padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer__bottom p, .footer__bottom a { font-size: 13px; color: #7C817C; }
.footer__legal { display: flex; flex-wrap: wrap; gap: 20px; }

/* ---------- 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(16,20,19,0.4); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity .3s var(--ease); }
.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(0,0,0,0.5); }
.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-size: 1.4rem; letter-spacing: -0.01em; margin-bottom: 12px; }
.cookie-popup__card p { font-size: 14px; color: var(--fg-soft); line-height: 1.65; margin: 0; }
.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); cursor: pointer; font-size: 14px; border-radius: 999px; transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s; }
.cookie-popup__actions button:first-child:hover { border-color: var(--fg); }
.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(--dark-soft); }

/* ---------- utility ---------- */
.arrow-link { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg); transition: gap 0.3s var(--ease); }
.arrow-link:hover { gap: 16px; color: var(--accent-deep); }
.divider { height: 1px; background: var(--border); border: 0; margin: 0; }
.section-head { max-width: 60ch; }
.section-head h2 { font-size: clamp(2rem, 5vw, 3.6rem); letter-spacing: -0.02em; line-height: 1.05; }
.section-head h2 em { font-style: normal; color: var(--accent-deep); }
.section-head p { color: var(--fg-soft); margin-top: 20px; max-width: 52ch; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--fg); color: var(--bg); padding: 10px 16px; z-index: 200; }
.skip-link:focus { left: 12px; top: 12px; }
