/* palette: bg=#F1ECDE fg=#292018 accent=#E3B441 */
/* fonts: display="Archivo" body="Space Grotesk" mono="IBM Plex Mono" */

:root {
  --bg: #F1ECDE;          /* warm cream — dominant reference background */
  --bg-alt: #E7E0CD;      /* deeper cream — alternating sections */
  --bg-deep: #DED5BE;     /* deepest cream — footer / panels */
  --fg: #292018;          /* dark espresso — primary text */
  --fg-soft: #423527;     /* softer espresso */
  --muted: #756449;       /* secondary text on cream */
  --muted-inv: #B7AC97;   /* secondary text on dark */
  --accent: #E3B441;      /* golden mustard — reference accent */
  --accent-deep: #C7972A; /* darker gold — hover */
  --line: rgba(41, 32, 24, 0.14);
  --line-soft: rgba(41, 32, 24, 0.08);

  --serif: 'Archivo', 'Arial Narrow', sans-serif;   /* heavy display grotesque */
  --sans: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --maxw: 1280px;
  --pad: clamp(20px, 5vw, 32px);
  --sec: clamp(80px, 12vw, 168px);

  /* subtle concrete/paper grain */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
}

*, *::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;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: var(--grain);
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}
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 { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); position: relative; z-index: 2; }
main { position: relative; z-index: 2; }
.section { padding-top: var(--sec); padding-bottom: var(--sec); position: relative; }
.section--tight { padding-top: clamp(56px, 8vw, 96px); padding-bottom: clamp(56px, 8vw, 96px); }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--fg); color: var(--bg); }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---------- type ---------- */
.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: 28px; height: 1px; background: currentColor; opacity: 0.6; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 800; margin: 0; }
.display {
  font-weight: 900;
  font-size: clamp(3.1rem, 10.5vw, 8.6rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.display em { font-style: normal; color: var(--accent); }
.h2 {
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.h2 em { font-style: normal; color: var(--accent); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); line-height: 1.7; color: var(--fg-soft); max-width: 46ch; }
.muted { color: var(--muted); }
p { margin: 0 0 1.1em; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 28px;
  border: 1px solid var(--fg);
  border-radius: 4px;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn--solid { background: var(--fg); color: var(--bg); }
.btn--solid:hover { background: var(--accent); border-color: var(--accent); color: var(--fg); }
.btn--pill { border-radius: 9999px; background: transparent; }
.btn--pill:hover { background: var(--fg); color: var(--bg); }
.btn--ghost { border-color: var(--line); }
.section--dark .btn { border-color: var(--bg); }
.section--dark .btn--solid { background: var(--accent); border-color: var(--accent); color: var(--fg); }
.section--dark .btn--solid:hover { background: var(--bg); border-color: var(--bg); }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line);
  transition: gap 0.3s var(--ease), border-color 0.3s var(--ease);
}
.arrow-link:hover { gap: 16px; border-color: var(--fg); }
.arrow-link span { transition: transform 0.3s var(--ease); }
.arrow-link:hover span { transform: translateX(3px); }

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(241, 236, 222, 0.82);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  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(--line-soft), 0 10px 30px -18px rgba(41,32,24,0.4);
  border-bottom-color: var(--line-soft);
}
.header__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark { width: 30px; height: 30px; display: grid; place-items: center; color: var(--fg); }
.brand__mark svg { width: 100%; height: 100%; }
.brand__name { font-family: var(--serif); font-weight: 900; font-size: 21px; letter-spacing: -0.01em; text-transform: uppercase; }
.nav { display: none; gap: 30px; }
.nav a {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  transition: color 0.3s var(--ease);
  position: relative;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--fg); }
.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 2px;
  background: var(--accent);
}
.header__actions { display: none; align-items: center; gap: 16px; }
.header__index {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--fg);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 6px 9px;
}
.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 40px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.menu-toggle span { display: block; height: 2px; width: 100%; 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(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(--bg);
  padding: 96px var(--pad) 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s var(--ease), opacity 0.4s var(--ease);
}
.mobile-menu[data-open="true"] { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--serif);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2rem, 10vw, 3.2rem);
  letter-spacing: -0.02em;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .mobile-menu__foot { margin-top: auto; font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding-top: 40px; padding-bottom: 40px; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.hero__figure { position: relative; order: -1; }
.hero__img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-deep);
  box-shadow: 0 30px 80px -30px rgba(41,32,24,0.5);
}
.hero__img-wrap 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__burst { position: absolute; top: -30px; right: -20px; width: 180px; height: 180px; color: var(--accent); pointer-events: none; z-index: -1; }
.hero__burst svg { width: 100%; height: 100%; }
.hero__index { position: absolute; left: 0; bottom: -14px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; color: var(--muted); text-transform: uppercase; }

.hero__bullets { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 12px 28px; }
.hero__bullets li { font-family: var(--mono); font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-soft); display: inline-flex; align-items: center; gap: 9px; }
.hero__bullets li::before { content: ""; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; }

.hero__foot { margin-top: 40px; display: grid; grid-template-columns: 1fr; gap: 24px; align-items: end; }
.hero__foot p { color: var(--fg-soft); max-width: 42ch; margin: 0; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__arrow { display: none; position: absolute; color: var(--fg); }

/* ---------- progression / timeline ---------- */
.timeline { display: grid; gap: 0; margin-top: 56px; border-top: 1px solid var(--line); }
.phase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.4s var(--ease);
}
.phase:hover { background: rgba(227,180,65,0.06); }
.phase__num { font-family: var(--mono); font-size: 13px; letter-spacing: 0.12em; color: var(--accent-deep); }
.phase__title { font-family: var(--serif); font-weight: 800; font-size: clamp(1.6rem, 3.4vw, 2.6rem); text-transform: uppercase; letter-spacing: -0.01em; line-height: 1; }
.phase__body { color: var(--muted); max-width: 60ch; margin: 0; }

/* ---------- manifesto ---------- */
.manifesto { text-align: center; }
.manifesto__quote {
  font-family: var(--serif);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.9rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 16ch;
  margin: 0 auto;
}
.manifesto__quote em { font-style: normal; color: var(--accent); }
.manifesto__mark { font-family: var(--serif); font-size: clamp(4rem, 12vw, 9rem); line-height: 0.6; color: var(--accent); display: block; margin-bottom: 8px; }
.manifesto__by { margin-top: 34px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-inv); }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; margin-top: 48px; }
.stat { background: var(--bg); padding: 34px 26px; }
.section--alt .stat { background: var(--bg-alt); }
.stat__num { font-family: var(--serif); font-weight: 900; font-size: clamp(2.6rem, 6vw, 4.4rem); line-height: 1; letter-spacing: -0.03em; }
.stat__num em { font-style: normal; color: var(--accent); }
.stat__label { margin-top: 12px; font-size: 14.5px; color: var(--muted); line-height: 1.5; }

/* ---------- section head ---------- */
.sec-head { display: grid; grid-template-columns: 1fr; gap: 20px; align-items: end; margin-bottom: 8px; }
.sec-head__text { max-width: 60ch; }
.sec-head .lead { margin-top: 18px; }

/* ---------- service cards ---------- */
.cards { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 52px; }
.card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px 30px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.section--alt .card { background: var(--bg); }
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px -8px rgba(41,32,24,0.16); border-color: var(--fg); }
.card__num { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; color: var(--accent-deep); }
.card__title { font-family: var(--serif); font-weight: 800; font-size: clamp(1.35rem, 2.6vw, 1.85rem); text-transform: uppercase; letter-spacing: -0.01em; margin: 16px 0 12px; line-height: 1.02; }
.card__body { color: var(--muted); font-size: 15.5px; line-height: 1.65; margin: 0; }
.card ul { margin: 16px 0 0; padding: 0; list-style: none; }
.card ul li { font-size: 14.5px; color: var(--fg-soft); padding: 8px 0; border-top: 1px solid var(--line-soft); display: flex; gap: 10px; }
.card ul li::before { content: "—"; color: var(--accent-deep); }

/* ---------- feature media rows ---------- */
.media-row { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; margin-top: 60px; }
.media-row + .media-row { margin-top: clamp(60px, 9vw, 120px); }
.media-row__img { border-radius: 8px; overflow: hidden; aspect-ratio: 4 / 3; background: var(--bg-deep); }
.media-row__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.media-row__img:hover img { transform: scale(1.04); }
.media-row__body h3 { font-family: var(--serif); font-weight: 800; text-transform: uppercase; font-size: clamp(1.6rem, 3.4vw, 2.6rem); letter-spacing: -0.01em; line-height: 1; margin-bottom: 16px; }

/* ---------- showcase (big centered image + index) ---------- */
.showcase { text-align: center; }
.showcase__img { max-width: 620px; margin: 40px auto 0; aspect-ratio: 1 / 1; border-radius: 10px; overflow: hidden; background: var(--bg-deep); box-shadow: 0 40px 90px -40px rgba(41,32,24,0.55); }
.showcase__img img { width: 100%; height: 100%; object-fit: cover; }
.showcase__meta { display: flex; justify-content: space-between; max-width: 620px; margin: 20px auto 0; font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { margin-top: 48px; border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  font-family: var(--serif);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.faq__icon { flex: 0 0 auto; width: 22px; height: 22px; position: relative; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--accent-deep); transition: transform 0.35s var(--ease); }
.faq__icon::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.faq__icon::after { left: 50%; top: 0; width: 2px; height: 100%; transform: translateX(-50%); }
.faq__item[data-open="true"] .faq__icon::after { transform: translateX(-50%) scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq__a p { color: var(--muted); max-width: 68ch; padding-bottom: 28px; margin: 0; }

/* ---------- CTA ---------- */
.cta-band { text-align: center; }
.cta-band .h2 { max-width: 18ch; margin: 0 auto; }
.cta-band p { max-width: 52ch; margin: 22px auto 34px; color: var(--muted-inv); }
.cta-band .btn-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 48px; margin-top: 56px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.field label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; 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);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px 16px;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--fg); box-shadow: 0 0 0 3px rgba(227,180,65,0.28); }
.field textarea { resize: vertical; min-height: 140px; }
.form-consent { font-size: 13.5px; color: var(--muted); display: flex; gap: 10px; align-items: flex-start; margin-bottom: 22px; }
.form-consent input { margin-top: 4px; }
.contact-info dl { margin: 0; display: grid; gap: 26px; }
.contact-info dt { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.contact-info dd { margin: 0; font-size: 17px; line-height: 1.6; }
.contact-info a:hover { color: var(--accent-deep); }

/* ---------- rich text (legal) ---------- */
.rich { max-width: 760px; }
.rich h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); text-transform: uppercase; letter-spacing: -0.01em; margin: 48px 0 18px; }
.rich h3 { font-size: 1.15rem; margin: 30px 0 12px; text-transform: none; letter-spacing: 0; }
.rich p, .rich li { color: var(--fg-soft); }
.rich ul { padding-left: 20px; margin: 0 0 1.1em; }
.rich li { margin-bottom: 8px; }
.rich a { color: var(--accent-deep); border-bottom: 1px solid var(--line); }
.rich strong { color: var(--fg); }
.legal-meta { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 40px; }

/* ---------- page hero (inner pages) ---------- */
.page-hero { padding-top: clamp(70px, 11vw, 130px); padding-bottom: clamp(50px, 8vw, 90px); }
.page-hero .display { max-width: 15ch; }
.page-hero .lead { margin-top: 30px; }

/* ---------- thanks ---------- */
.thanks { min-height: 74vh; display: flex; align-items: center; text-align: center; }
.thanks .container { width: 100%; }
.thanks .display { max-width: 16ch; margin: 0 auto; }

/* ---------- footer ---------- */
.footer { background: var(--bg-deep); padding: clamp(64px, 9vw, 110px) 0 40px; position: relative; z-index: 2; }
.footer__top { display: grid; grid-template-columns: 1fr; gap: 44px; }
.footer__brand .brand__name { font-size: 30px; }
.footer__tag { color: var(--muted); max-width: 34ch; margin: 20px 0 0; font-size: 15.5px; }
.footer__col h4 { font-family: var(--mono); font-weight: 500; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer__col a, .footer__col span { font-size: 15px; color: var(--fg-soft); transition: color 0.3s var(--ease); }
.footer__col a:hover { color: var(--fg); }
.footer__bottom { margin-top: clamp(48px, 7vw, 80px); padding-top: 28px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 12px; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }

/* ---------- 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; transition-delay: calc(var(--i, 0) * 80ms); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__img-wrap img { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- cookie popup ---------- */
.cookie-popup { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: flex-end; justify-content: center; padding: 24px; background: rgba(41,32,24,0.42); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity 0.3s var(--ease); }
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card { background: var(--bg); padding: 32px 34px; max-width: 480px; border-radius: 8px; border: 1px solid var(--line); box-shadow: 0 30px 80px -30px rgba(41,32,24,0.6); }
.cookie-popup__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 12px; }
.cookie-popup__card h3 { font-family: var(--serif); font-weight: 800; text-transform: uppercase; font-size: 1.4rem; letter-spacing: -0.01em; margin-bottom: 12px; }
.cookie-popup__card p { font-size: 14.5px; color: var(--muted); line-height: 1.6; margin: 0; }
.cookie-popup__card p a { color: var(--accent-deep); border-bottom: 1px solid var(--line); }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 22px; }
.cookie-popup__actions button { padding: 12px 24px; border: 1px solid var(--line); border-radius: 6px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease); }
.cookie-popup__actions button:hover { transform: translateY(-2px); }
.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); border-color: var(--accent); color: var(--fg); }

/* ---------- responsive ---------- */
@media (min-width: 640px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
  .hero__foot { grid-template-columns: 1fr auto; }
}
@media (min-width: 768px) {
  body { font-size: 18px; }
  .nav { display: flex; }
  .header__actions { display: flex; }
  .menu-toggle { display: none; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; gap: 56px; }
  .hero__figure { order: 0; }
  .phase { grid-template-columns: 200px 1fr; gap: 40px; align-items: baseline; }
  .phase__head { display: contents; }
  .media-row { grid-template-columns: 1fr 1fr; gap: 56px; }
  .media-row--flip .media-row__img { order: 2; }
  .sec-head { grid-template-columns: 1.4fr 1fr; }
  .contact-grid { grid-template-columns: 1.2fr 0.8fr; gap: 72px; }
  .footer__top { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
  .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; }
  .hero__arrow { display: block; }
}
@media (min-width: 1024px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .cards--3 { grid-template-columns: repeat(3, 1fr); }
  .cards--4 { grid-template-columns: repeat(4, 1fr); }
  .phase { grid-template-columns: 240px 1fr; }
}
