/* palette: bg=#F3F2EE fg=#111114 accent=#F23B12 */
/* fonts: display="Syne" body="DM Sans" mono="Space Mono" */

:root {
  --bg: #F3F2EE;          /* light grey page from reference */
  --bg-alt: #EAE8E2;      /* alternating section background */
  --ink: #0B0B0D;         /* near-black poster block */
  --fg: #111114;          /* primary text */
  --fg-soft: #2C2C30;     /* slightly softer fg */
  --muted: #6B6B70;       /* secondary text */
  --accent: #F23B12;      /* vivid orange-red from poster */
  --accent-deep: #C42C09; /* darker accent for hover */
  --accent-soft: #FF6A3D; /* lighter accent for blobs */
  --on-dark: #F5F3EE;     /* text on dark band */
  --on-dark-mut: #9A9A9E; /* muted text on dark */
  --border: rgba(17, 17, 20, 0.12);
  --border-dark: rgba(245, 243, 238, 0.16);
  --serif: 'Syne', ui-sans-serif, sans-serif;
  --sans: 'DM Sans', ui-sans-serif, system-ui, sans-serif;
  --mono: 'Space Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 28px;
  --radius-sm: 18px;
  --radius-lg: 40px;
}

*, *::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.76;
  color: var(--fg);
  background: var(--bg);
  -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; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; margin: 0; letter-spacing: -0.02em; }
p { margin: 0; }

/* ---------- layout helpers ---------- */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }
.section { padding: clamp(80px, 12vw, 160px) 0; position: relative; }
.section--tight { padding: clamp(56px, 8vw, 96px) 0; }
.section--dark { background: var(--ink); color: var(--on-dark); }
.section--alt { background: var(--bg-alt); }

.eyebrow {
  font-family: var(--mono);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin: 0 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.section--dark .eyebrow { color: var(--accent-soft); }
.section--dark .eyebrow::before { background: var(--accent-soft); }

.h2 { font-size: clamp(2.5rem, 6vw, 5rem); line-height: 0.98; letter-spacing: -0.03em; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); line-height: 1.7; color: var(--fg-soft); max-width: 60ch; }
.section--dark .lead { color: var(--on-dark-mut); }

/* blobs (biomorphic family) */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 9999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease), opacity 0.3s var(--ease);
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn--ink { background: var(--ink); color: var(--on-dark); }
.btn--ink:hover { transform: translateY(-2px); opacity: 0.9; }
.btn--ghost { border: 1px solid var(--border); }
.btn--ghost:hover { border-color: var(--fg); transform: translateY(-2px); }
.section--dark .btn--ghost { border-color: var(--border-dark); }
.section--dark .btn--ghost:hover { border-color: var(--on-dark); }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--accent);
  transition: gap 0.3s var(--ease);
}
.arrow-link:hover { gap: 14px; }

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(243, 242, 238, 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);
}
.header[data-scrolled="true"] {
  box-shadow: 0 1px 0 var(--border), 0 8px 30px -16px rgba(0,0,0,0.18);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.03em;
}
.brand__mark {
  width: 30px; height: 30px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, var(--accent-soft), var(--accent) 55%, var(--accent-deep));
  position: relative;
  flex: none;
}
.brand__mark::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: var(--bg);
}
.nav { display: none; }
@media (min-width: 920px) {
  .nav { display: flex; align-items: center; gap: 34px; }
  .nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--fg-soft);
    transition: color 0.25s var(--ease);
    position: relative;
  }
  .nav a:hover { color: var(--accent); }
  .nav a[aria-current="page"] { color: var(--fg); }
}
.header__cta { display: none; }
@media (min-width: 920px) { .header__cta { display: inline-flex; } }

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
}
@media (min-width: 920px) { .menu-toggle { display: none; } }
.menu-toggle span {
  width: 22px; height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 72px 0 0;
  z-index: 99;
  background: var(--bg);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.mobile-menu[data-open="true"] { opacity: 1; transform: none; pointer-events: all; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu .btn { margin-top: 24px; justify-content: center; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  color: var(--on-dark);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero__blob-1 {
  width: 620px; height: 620px;
  top: -180px; right: -160px;
  background: radial-gradient(circle, var(--accent) 0%, rgba(242,59,18,0) 70%);
  opacity: 0.55;
}
.hero__blob-2 {
  width: 520px; height: 520px;
  bottom: -200px; left: -140px;
  background: radial-gradient(circle, var(--accent-deep) 0%, rgba(196,44,9,0) 70%);
  opacity: 0.5;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,243,238,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,243,238,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 80%);
  z-index: 0;
}
.hero__inner { position: relative; z-index: 2; max-width: 1000px; }
.hero h1 {
  font-size: clamp(3.5rem, 10vw, 9rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-weight: 700;
  margin: 26px 0 0;
}
.hero h1 em { color: var(--accent); font-style: normal; }
.hero__sub {
  margin-top: 34px;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  color: var(--on-dark-mut);
  max-width: 56ch;
  line-height: 1.7;
}
.hero__actions { margin-top: 44px; display: flex; flex-wrap: wrap; gap: 16px; }
.hero__meta {
  position: relative;
  z-index: 2;
  margin-top: 72px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px 64px;
  border-top: 1px solid var(--border-dark);
  padding-top: 34px;
}
.hero__meta div span {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-dark-mut);
  margin-bottom: 8px;
}
.hero__meta div strong {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ---------- intro / manifesto ---------- */
.manifesto { text-align: center; position: relative; }
.manifesto__quote {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 980px;
  margin: 0 auto;
}
.manifesto__quote em { color: var(--accent); font-style: normal; }
.manifesto__mark {
  font-family: var(--serif);
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 0.6;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}
.manifesto__by {
  margin-top: 40px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- section heading row ---------- */
.head-row {
  display: grid;
  gap: 24px;
  margin-bottom: 60px;
}
@media (min-width: 860px) {
  .head-row {
    grid-template-columns: 1.2fr 1fr;
    align-items: end;
  }
}
.head-row .lead { margin-top: 6px; }

/* ---------- services grid ---------- */
.cards {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cards--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px 40px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.section--alt .card { background: #fff; }
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px -18px rgba(0,0,0,0.2);
  border-color: transparent;
}
.card__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 28px;
}
.card h3 { font-size: 1.5rem; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 14px; }
.card p { color: var(--muted); font-size: 15.5px; line-height: 1.68; }
.card__tags {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.card__tags span {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 11px;
  border: 1px solid var(--border);
  border-radius: 9999px;
  color: var(--fg-soft);
}

/* ---------- work / case grid ---------- */
.work-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
.work-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  position: relative;
  display: block;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.work-card:hover { transform: translateY(-6px); box-shadow: 0 22px 60px -22px rgba(0,0,0,0.32); }
.work-card--wide { grid-column: 1 / -1; }
.work-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.work-card--wide .work-card__media { aspect-ratio: 21 / 9; }
.work-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease), opacity 0.6s var(--ease);
  opacity: 0.92;
}
.work-card:hover .work-card__media img { transform: scale(1.06); opacity: 1; }
.work-card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,11,13,0.86) 0%, rgba(11,11,13,0.1) 55%);
}
.work-card__body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px 30px 30px;
  color: var(--on-dark);
  z-index: 2;
}
.work-card__tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 12px;
  display: block;
}
.work-card__body h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); line-height: 1.05; letter-spacing: -0.02em; }
.work-card__body p { color: var(--on-dark-mut); font-size: 14.5px; margin-top: 10px; max-width: 48ch; }
.work-card__meta {
  margin-top: 18px;
  display: flex;
  gap: 22px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-dark-mut);
}

/* ---------- stats band ---------- */
.stats {
  display: grid;
  gap: 36px 24px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 860px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat strong {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  display: block;
  color: var(--accent-soft);
}
.stat span {
  display: block;
  margin-top: 14px;
  font-size: 14.5px;
  color: var(--on-dark-mut);
  line-height: 1.5;
  max-width: 26ch;
}

/* ---------- process steps ---------- */
.steps { display: grid; gap: 0; }
.step {
  display: grid;
  gap: 14px 40px;
  grid-template-columns: 1fr;
  padding: 38px 0;
  border-top: 1px solid var(--border);
  align-items: start;
}
@media (min-width: 820px) { .step { grid-template-columns: 100px 1fr 1.1fr; } }
.step:last-child { border-bottom: 1px solid var(--border); }
.step__num {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.step h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); letter-spacing: -0.02em; line-height: 1.05; }
.step p { color: var(--muted); font-size: 16px; }

/* ---------- testimonial ---------- */
.quote-card {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.quote-card blockquote {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
}
.quote-card blockquote em { color: var(--accent); font-style: normal; }
.quote-card__author {
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  flex: none;
}
.quote-card__author div span { display: block; }
.quote-card__author .name { font-weight: 600; }
.quote-card__author .role { color: var(--muted); font-size: 14px; }
.section--dark .quote-card__author .role { color: var(--on-dark-mut); }

/* ---------- CTA ---------- */
.cta {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--on-dark);
  border-radius: var(--radius-lg);
  padding: clamp(56px, 8vw, 96px) clamp(28px, 6vw, 80px);
  text-align: center;
}
.cta__blob {
  width: 460px; height: 460px;
  top: -160px; right: -120px;
  background: radial-gradient(circle, var(--accent) 0%, rgba(242,59,18,0) 70%);
  opacity: 0.5;
}
.cta h2 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
  position: relative; z-index: 2;
}
.cta h2 em { color: var(--accent); font-style: normal; }
.cta p { position: relative; z-index: 2; margin: 22px auto 0; max-width: 52ch; color: var(--on-dark-mut); }
.cta__actions { position: relative; z-index: 2; margin-top: 40px; display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ---------- forms ---------- */
.form-grid { display: grid; gap: 20px; }
@media (min-width: 680px) { .form-grid { grid-template-columns: repeat(2, 1fr); } }
.field { display: flex; flex-direction: column; gap: 9px; }
.field--full { grid-column: 1 / -1; }
.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: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 15px 18px;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  width: 100%;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(242,59,18,0.12);
}
.form-actions { margin-top: 6px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.form-note { font-size: 13px; color: var(--muted); }

/* contact split */
.contact-grid { display: grid; gap: 48px; }
@media (min-width: 920px) { .contact-grid { grid-template-columns: 1fr 1.15fr; gap: 72px; } }
.contact-list { display: grid; gap: 26px; margin-top: 36px; }
.contact-item span {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.contact-item p { font-size: 16.5px; color: var(--fg-soft); line-height: 1.5; }
.contact-item a:hover { color: var(--accent); }

/* ---------- value list (about) ---------- */
.value-list { display: grid; gap: 0; }
.value {
  display: grid;
  gap: 12px 40px;
  grid-template-columns: 1fr;
  padding: 34px 0;
  border-top: 1px solid var(--border);
}
@media (min-width: 760px) { .value { grid-template-columns: 0.8fr 1.2fr; } }
.value:last-child { border-bottom: 1px solid var(--border); }
.value h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); letter-spacing: -0.02em; }
.value p { color: var(--muted); font-size: 16px; }

/* ---------- team (text-only, monogram) ---------- */
.team-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.member {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px 32px;
  background: #fff;
}
.member .avatar { width: 56px; height: 56px; font-size: 18px; margin-bottom: 22px; }
.member h3 { font-size: 1.3rem; letter-spacing: -0.02em; }
.member .role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin: 8px 0 14px; }
.member p { color: var(--muted); font-size: 14.5px; line-height: 1.6; }

/* ---------- FAQ ---------- */
.faq { max-width: 880px; margin: 0 auto; }
.faq__item { border-top: 1px solid var(--border); }
.faq__item:last-child { border-bottom: 1px solid var(--border); }
.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: 600;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  letter-spacing: -0.02em;
}
.faq__q .plus { flex: none; width: 22px; height: 22px; position: relative; }
.faq__q .plus::before, .faq__q .plus::after {
  content: ""; position: absolute; background: var(--accent);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease);
}
.faq__q .plus::before { width: 18px; height: 2px; }
.faq__q .plus::after { width: 2px; height: 18px; }
.faq__item[data-open="true"] .plus::after { transform: translate(-50%, -50%) scaleY(0); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq__a p { padding-bottom: 28px; color: var(--muted); max-width: 64ch; }

/* ---------- legal pages ---------- */
.legal { max-width: 820px; margin: 0 auto; }
.legal h1 { font-size: clamp(2.4rem, 6vw, 4rem); letter-spacing: -0.03em; line-height: 1; margin-bottom: 18px; }
.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: clamp(1.4rem, 3vw, 2rem); letter-spacing: -0.02em; margin: 48px 0 16px; }
.legal h3 { font-size: 1.2rem; margin: 30px 0 12px; }
.legal p { color: var(--fg-soft); margin-bottom: 16px; }
.legal ul { color: var(--fg-soft); padding-left: 22px; margin: 0 0 18px; }
.legal li { margin-bottom: 9px; }
.legal a { color: var(--accent); }

/* ---------- thanks ---------- */
.thanks {
  min-height: 86vh;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.thanks__inner { position: relative; z-index: 2; max-width: 640px; }
.thanks h1 { font-size: clamp(3rem, 9vw, 7rem); letter-spacing: -0.04em; line-height: 0.95; }
.thanks h1 em { color: var(--accent); font-style: normal; }
.thanks p { margin: 26px auto 38px; color: var(--muted); max-width: 46ch; }
.thanks__blob { width: 520px; height: 520px; top: -180px; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, var(--accent) 0%, rgba(242,59,18,0) 70%); opacity: 0.32; }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: var(--on-dark); padding: clamp(64px, 9vw, 110px) 0 40px; position: relative; overflow: hidden; }
.footer__top {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
  position: relative; z-index: 2;
}
@media (min-width: 860px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; } }
.footer__brand .brand { color: var(--on-dark); margin-bottom: 22px; }
.footer__brand .brand__mark::after { background: var(--ink); }
.footer__brand p { color: var(--on-dark-mut); max-width: 38ch; font-size: 15.5px; }
.footer__col h4 { font-family: var(--mono); font-weight: 400; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-soft); margin-bottom: 20px; }
.footer__col a, .footer__col p { display: block; color: var(--on-dark-mut); font-size: 15px; margin-bottom: 13px; transition: color 0.25s var(--ease); }
.footer__col a:hover { color: var(--on-dark); }
.footer__bottom {
  margin-top: clamp(48px, 7vw, 80px);
  padding-top: 28px;
  border-top: 1px solid var(--border-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  justify-content: space-between;
  align-items: center;
  position: relative; z-index: 2;
  font-size: 13px;
  color: var(--on-dark-mut);
}
.footer__bottom a:hover { color: var(--on-dark); }
.footer__blob { width: 560px; height: 560px; bottom: -300px; right: -160px;
  background: radial-gradient(circle, var(--accent) 0%, rgba(242,59,18,0) 70%); opacity: 0.22; }

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

/* ---------- 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(0,0,0,0.4); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card { background: var(--bg); padding: 32px 34px; max-width: 460px; border-radius: var(--radius); box-shadow: 0 30px 80px -20px rgba(0,0,0,0.45); }
.cookie-popup__label { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.cookie-popup__card h3 { font-size: 1.4rem; letter-spacing: -0.02em; margin-bottom: 12px; }
.cookie-popup__card p { font-size: 14.5px; color: var(--muted); line-height: 1.6; }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 22px; }
.cookie-popup__actions button { padding: 12px 24px; border-radius: 9999px; border: 1px solid var(--border); font-size: 14px; font-weight: 600; transition: transform 0.3s var(--ease), background 0.3s var(--ease); flex: 1; }
.cookie-popup__actions button:hover { transform: translateY(-1px); }
.cookie-popup__actions button:last-child { background: var(--accent); color: #fff; border-color: var(--accent); }
.cookie-popup__actions button:last-child:hover { background: var(--accent-deep); }

/* ---------- misc ---------- */
.page-hero {
  background: var(--ink);
  color: var(--on-dark);
  padding: clamp(120px, 18vw, 200px) 0 clamp(70px, 10vw, 120px);
  position: relative;
  overflow: hidden;
}
.page-hero__blob { width: 540px; height: 540px; top: -200px; right: -140px;
  background: radial-gradient(circle, var(--accent) 0%, rgba(242,59,18,0) 70%); opacity: 0.45; }
.page-hero__inner { position: relative; z-index: 2; max-width: 880px; }
.page-hero h1 { font-size: clamp(3rem, 9vw, 7rem); line-height: 0.94; letter-spacing: -0.04em; font-weight: 700; margin: 24px 0 0; }
.page-hero h1 em { color: var(--accent); font-style: normal; }
.page-hero p { margin-top: 30px; color: var(--on-dark-mut); font-size: clamp(1.05rem, 1.6vw, 1.3rem); max-width: 56ch; line-height: 1.7; }

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--accent); color: #fff; padding: 10px 18px; z-index: 9999; border-radius: 0 0 12px 0; }
.skip-link:focus { left: 0; }
