/* palette: bg=#F6F6F1 fg=#0E0E0E accent=#EC2B1F */
/* fonts: display="Archivo" body="Inter" mono="Space Mono" */

:root {
  --bg: #F6F6F1;        /* off-white paper base */
  --bg-alt: #ECECE4;    /* alternating section */
  --lime: #D4FF33;      /* acid-lime hero (from reference) */
  --lime-deep: #B9E600;
  --fg: #0E0E0E;        /* near-black text */
  --fg-soft: #2A2A2A;
  --muted: #6B6B63;     /* secondary text */
  --accent: #EC2B1F;    /* red accent (CTA / pills) */
  --accent-deep: #C31D13;
  --ink: #0E0E0E;       /* dark band background */
  --ink-soft: #1A1A1A;
  --border: rgba(14, 14, 14, 0.14);
  --border-strong: rgba(14, 14, 14, 0.32);
  --serif: 'Archivo', ui-sans-serif, system-ui, sans-serif;
  --sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --mono: 'Space Mono', ui-monospace, monospace;
  --display: 'Archivo', ui-sans-serif, system-ui, sans-serif;
  --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);
  line-height: 1.75;
  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; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--display); font-weight: 800; letter-spacing: -0.02em; line-height: 1; }
p { margin: 0; }

/* ---------- layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }
.section { padding: clamp(72px, 12vw, 160px) 0; }
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--accent); display: inline-block; }
.eyebrow--pill {
  background: var(--accent);
  color: #fff;
  padding: 7px 14px 6px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.14em;
}
.eyebrow--pill::before { display: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 999px;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border: 2px solid var(--fg);
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); }
.btn--dark { background: var(--fg); color: var(--bg); }
.btn--dark:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn--accent { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.btn--ghost { background: transparent; color: var(--fg); }
.btn--ghost:hover { background: var(--fg); color: var(--bg); }
.btn--light { background: var(--bg); color: var(--fg); border-color: var(--bg); }
.btn--light:hover { background: var(--lime); border-color: var(--lime); }
.btn .arw { font-family: var(--sans); font-size: 15px; }

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

/* ---------- announcement bar ---------- */
.topbar {
  background: var(--fg);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 9px 16px;
}
.topbar strong { color: var(--lime); font-weight: 700; }

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 246, 241, 0.86);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.header[data-scrolled="true"] {
  box-shadow: 0 8px 30px -12px rgba(0, 0, 0, 0.22);
  border-bottom-color: var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  font-family: var(--display);
  font-weight: 900;
  font-size: 21px;
  letter-spacing: -0.03em;
  font-style: italic;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.brand .dot { width: 9px; height: 9px; background: var(--accent); border-radius: 50%; display: inline-block; }
.nav { display: none; gap: 34px; }
@media (min-width: 900px) { .nav { display: flex; } }
.nav a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.nav a[aria-current="page"] { color: var(--accent); }
.header__cta { display: none; }
@media (min-width: 900px) { .header__cta { display: inline-flex; } }

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  align-items: flex-end;
}
@media (min-width: 900px) { .menu-toggle { display: none; } }
.menu-toggle span { width: 26px; height: 2px; background: var(--fg); transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.menu-toggle span:nth-child(2) { width: 20px; }
.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); width: 26px; }

/* ---------- mobile menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--lime);
  padding: 100px 28px 40px;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
  display: flex;
  flex-direction: column;
}
.mobile-menu[data-open="true"] { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.4rem, 11vw, 3.6rem);
  letter-spacing: -0.03em;
  padding: 12px 0;
  border-bottom: 1px solid rgba(14,14,14,0.2);
  font-style: italic;
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu__foot { margin-top: auto; font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--lime);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 60px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; gap: 24px; }
}
.hero__eyebrow { margin-bottom: 24px; }
.hero h1 {
  font-size: clamp(3.5rem, 13vw, 9rem);
  letter-spacing: -0.04em;
  line-height: 0.86;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
}
.hero h1 em { color: var(--accent); font-style: italic; }
.hero__sub {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.7;
  max-width: 46ch;
  margin: 28px 0 34px;
  color: var(--fg-soft);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__media {
  position: relative;
  aspect-ratio: 4/3.4;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(14,14,14,0.5);
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 8s var(--ease) forwards; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero__tag {
  position: absolute;
  bottom: 18px; left: 18px;
  background: var(--fg);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
}
.hero__marquee {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--fg);
  color: var(--lime);
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
}
.hero__marquee .track { display: inline-flex; gap: 40px; animation: marquee 26s linear infinite; font-family: var(--display); font-weight: 800; font-style: italic; text-transform: uppercase; font-size: 15px; letter-spacing: 0.02em; }
.hero__marquee .track span { display: inline-flex; align-items: center; gap: 40px; }
.hero__marquee .track span::after { content: "\2736"; color: var(--accent); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- section heading block ---------- */
.head-block { max-width: 860px; margin-bottom: clamp(40px, 6vw, 72px); }
.head-block h2 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  letter-spacing: -0.03em;
  line-height: 0.92;
  font-weight: 800;
  text-transform: uppercase;
  font-style: italic;
}
.head-block h2 em { color: var(--accent); font-style: italic; }
.head-block p { margin-top: 24px; font-size: 1.05rem; color: var(--fg-soft); max-width: 60ch; }
.head-block--center { margin-left: auto; margin-right: auto; text-align: center; }
.head-block--center p { margin-left: auto; margin-right: auto; }

/* ---------- services grid ---------- */
.services { background: var(--bg); }
.grid-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) { .grid-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid-cards--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .grid-cards--4 { grid-template-columns: repeat(4, 1fr); } }
.card {
  background: var(--bg);
  border: 2px solid var(--fg);
  border-radius: 10px;
  padding: 30px 28px 34px;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px -14px rgba(14,14,14,0.28); }
.card__no { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 22px; }
.card h3 { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; line-height: 1.05; }
.card p { color: var(--muted); font-size: 0.98rem; line-height: 1.65; }
.card__foot { margin-top: auto; padding-top: 22px; }
.card--lime { background: var(--lime); }
.card--lime:hover { background: var(--lime-deep); }
.card--dark { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.card--dark p { color: rgba(246,246,241,0.7); }

/* ---------- dark feature band ---------- */
.band-dark { background: var(--ink); color: var(--bg); }
.band-dark .eyebrow { color: rgba(246,246,241,0.6); }
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 64px; } }
.split--rev .split__media { order: -1; }
.split__media { border-radius: 10px; overflow: hidden; aspect-ratio: 4/3.2; }
.split__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.split__media:hover img { transform: scale(1.05); }
.split h2 { font-size: clamp(2.2rem, 6vw, 4.2rem); text-transform: uppercase; font-style: italic; line-height: 0.94; margin-bottom: 22px; }
.split h2 em { color: var(--lime); font-style: italic; }
.band-dark .split p { color: rgba(246,246,241,0.75); font-size: 1.05rem; margin-bottom: 18px; }
.band-dark .btn--light { border-color: var(--bg); }
.feat-list { margin: 26px 0 30px; display: grid; gap: 2px; }
.feat-list li {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(246,246,241,0.16);
  font-size: 0.98rem;
  color: rgba(246,246,241,0.85);
}
.feat-list li:last-child { border-bottom: 1px solid rgba(246,246,241,0.16); }
.feat-list .k { font-family: var(--mono); color: var(--lime); font-size: 12px; min-width: 34px; }

/* ---------- manifesto ---------- */
.manifesto { background: var(--lime); text-align: center; }
.manifesto__mark { font-family: var(--display); font-weight: 900; font-size: 6rem; line-height: 0.5; color: var(--accent); font-style: italic; }
.manifesto p {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2rem, 5.2vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  max-width: 980px;
  margin: 20px auto 0;
  text-transform: uppercase;
  font-style: italic;
}
.manifesto p em { color: var(--accent); font-style: italic; }
.manifesto__by { margin-top: 34px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-soft); }

/* ---------- work / cases ---------- */
.work-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 800px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
.work {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--fg);
  background: var(--fg);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.work:hover { transform: translateY(-6px); box-shadow: 0 22px 50px -18px rgba(14,14,14,0.35); }
.work__img { aspect-ratio: 16/10; overflow: hidden; }
.work__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.work:hover .work__img img { transform: scale(1.06); }
.work__body { padding: 24px 26px 28px; background: var(--bg); }
.work__cat { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.work__body h3 { font-size: 1.55rem; font-weight: 800; letter-spacing: -0.02em; margin: 12px 0 10px; line-height: 1.05; }
.work__body p { color: var(--muted); font-size: 0.96rem; }
.work__meta { display: flex; gap: 20px; margin-top: 18px; font-family: var(--mono); font-size: 12px; color: var(--fg-soft); }
.work__meta b { display: block; font-family: var(--display); font-weight: 800; font-size: 1.4rem; color: var(--fg); }

/* ---------- process ---------- */
.process-list { display: grid; grid-template-columns: 1fr; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 34px 0;
  border-top: 2px solid var(--fg);
}
@media (min-width: 768px) { .step { grid-template-columns: 120px 1fr 1.3fr; gap: 32px; align-items: baseline; } }
.step:last-child { border-bottom: 2px solid var(--fg); }
.step__no { font-family: var(--display); font-weight: 900; font-size: 2.6rem; font-style: italic; color: var(--accent); line-height: 1; }
.step h3 { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; }
.step p { color: var(--muted); font-size: 1rem; line-height: 1.7; }

/* ---------- stats ---------- */
.stats { background: var(--fg); color: var(--bg); }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
@media (min-width: 900px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat b { display: block; font-family: var(--display); font-weight: 900; font-style: italic; font-size: clamp(2.8rem, 6vw, 4.4rem); letter-spacing: -0.03em; color: var(--lime); line-height: 1; }
.stat span { display: block; margin-top: 12px; font-size: 0.95rem; color: rgba(246,246,241,0.72); }

/* ---------- logos strip ---------- */
.logos { padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.logos__row { display: flex; flex-wrap: wrap; gap: 20px 44px; align-items: center; justify-content: center; }
.logos__row span { font-family: var(--display); font-weight: 800; font-style: italic; font-size: 1.3rem; color: var(--muted); letter-spacing: -0.02em; opacity: 0.8; }

/* ---------- testimonials ---------- */
.quotes-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 900px) { .quotes-grid { grid-template-columns: repeat(2, 1fr); } }
.quote { border: 2px solid var(--fg); border-radius: 10px; padding: 32px 30px; background: var(--bg); }
.quote p { font-size: 1.15rem; line-height: 1.6; font-family: var(--display); font-weight: 500; letter-spacing: -0.01em; }
.quote__by { margin-top: 24px; display: flex; align-items: center; gap: 14px; }
.avatar { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 800; font-size: 15px; color: var(--fg); flex-shrink: 0; }
.quote__by b { font-weight: 700; font-size: 0.95rem; }
.quote__by span { display: block; font-size: 0.85rem; color: var(--muted); font-family: var(--mono); letter-spacing: 0.04em; }

/* ---------- faq ---------- */
.faq { max-width: 900px; margin: 0 auto; }
.faq details { border-top: 2px solid var(--fg); padding: 8px 0; }
.faq details:last-child { border-bottom: 2px solid var(--fg); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 44px 22px 0;
  position: relative;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.8rem;
  color: var(--accent);
  transition: transform 0.3s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 44px 26px 0; color: var(--fg-soft); font-size: 1rem; line-height: 1.7; }

/* ---------- CTA ---------- */
.cta-band { background: var(--accent); color: #fff; text-align: center; }
.cta-band h2 { font-size: clamp(2.4rem, 7vw, 5.4rem); text-transform: uppercase; font-style: italic; line-height: 0.9; margin-bottom: 26px; }
.cta-band p { max-width: 54ch; margin: 0 auto 34px; font-size: 1.1rem; color: rgba(255,255,255,0.9); }
.cta-band .btn--light { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.cta-band .btn--light:hover { background: var(--lime); color: var(--fg); border-color: var(--lime); }

/* ---------- contact / form ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 72px; } }
.contact-info h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); text-transform: uppercase; font-style: italic; line-height: 0.95; margin-bottom: 24px; }
.contact-info p { color: var(--fg-soft); margin-bottom: 32px; max-width: 44ch; }
.info-list li { padding: 18px 0; border-top: 1px solid var(--border); }
.info-list li:last-child { border-bottom: 1px solid var(--border); }
.info-list .k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 6px; }
.info-list .v { font-size: 1.05rem; font-weight: 500; }

.form { display: grid; gap: 18px; }
.form .row { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 620px) { .form .row { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-soft); }
.field input, .field select, .field textarea {
  font: inherit;
  font-size: 1rem;
  padding: 14px 16px;
  background: var(--bg);
  border: 2px solid var(--fg);
  border-radius: 8px;
  color: var(--fg);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(236,43,31,0.16);
}
.field textarea { resize: vertical; min-height: 130px; }
.form__consent { display: flex; gap: 12px; align-items: flex-start; font-size: 0.85rem; color: var(--muted); }
.form__consent input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--accent); }
.form__consent a { text-decoration: underline; }

/* ---------- footer ---------- */
.footer { background: var(--fg); color: var(--bg); padding: clamp(60px, 8vw, 100px) 0 40px; }
.footer__top { display: grid; grid-template-columns: 1fr; gap: 44px; margin-bottom: 60px; }
@media (min-width: 800px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; } }
.footer__brand .brand { color: var(--bg); font-size: 26px; margin-bottom: 20px; }
.footer__brand p { color: rgba(246,246,241,0.6); max-width: 34ch; font-size: 0.95rem; }
.footer h4 { font-family: var(--mono); font-weight: 400; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--lime); margin-bottom: 18px; }
.footer ul li { margin-bottom: 12px; }
.footer ul a { color: rgba(246,246,241,0.72); font-size: 0.95rem; transition: color 0.25s var(--ease); }
.footer ul a:hover { color: var(--lime); }
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 30px;
  border-top: 1px solid rgba(246,246,241,0.16);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(246,246,241,0.55);
}
@media (min-width: 700px) { .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; } }
.footer__bottom a:hover { color: var(--lime); }

/* ---------- legal pages ---------- */
.legal { padding: clamp(60px, 10vw, 120px) 0; }
.legal__wrap { max-width: 800px; margin: 0 auto; }
.legal h1 { font-size: clamp(2.4rem, 6vw, 4rem); text-transform: uppercase; font-style: italic; margin-bottom: 12px; }
.legal .updated { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 44px; }
.legal h2 { font-size: 1.5rem; font-weight: 800; margin: 44px 0 14px; letter-spacing: -0.01em; }
.legal h3 { font-size: 1.15rem; font-weight: 700; margin: 28px 0 10px; }
.legal p { color: var(--fg-soft); margin-bottom: 16px; line-height: 1.8; }
.legal ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.legal ul li { margin-bottom: 10px; color: var(--fg-soft); line-height: 1.7; }
.legal a { color: var(--accent); text-decoration: underline; }

/* ---------- thank you ---------- */
.thanks { min-height: 82vh; display: flex; align-items: center; background: var(--lime); }
.thanks__inner { text-align: center; max-width: 720px; margin: 0 auto; padding: 60px 20px; }
.thanks h1 { font-size: clamp(3rem, 10vw, 7rem); text-transform: uppercase; font-style: italic; line-height: 0.88; margin-bottom: 24px; }
.thanks h1 em { color: var(--accent); font-style: italic; }
.thanks p { font-size: 1.15rem; color: var(--fg-soft); margin-bottom: 34px; }

/* ---------- page hero (inner pages) ---------- */
.page-hero { background: var(--lime); padding: clamp(120px, 16vw, 200px) 0 clamp(60px, 8vw, 100px); position: relative; overflow: hidden; }
.page-hero h1 { font-size: clamp(3rem, 11vw, 7.5rem); text-transform: uppercase; font-style: italic; line-height: 0.86; letter-spacing: -0.04em; }
.page-hero h1 em { color: var(--accent); font-style: italic; }
.page-hero p { margin-top: 28px; max-width: 56ch; font-size: 1.1rem; color: var(--fg-soft); }
.page-hero .eyebrow { margin-bottom: 20px; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); transition-delay: calc(var(--i, 0) * 80ms); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__media img { animation: none; }
  .hero__marquee .track { animation: none; }
}

/* ---------- cookie popup ---------- */
.cookie-popup { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: flex-end; padding: 24px; background: rgba(0,0,0,0.4); backdrop-filter: blur(4px); -webkit-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 36px; max-width: 480px; border-radius: 10px; border: 2px solid var(--fg); box-shadow: 0 30px 70px -20px rgba(0,0,0,0.4); }
@media (min-width: 560px) { .cookie-popup { align-items: center; justify-content: flex-start; } }
.cookie-popup__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.cookie-popup__card h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.01em; }
.cookie-popup__card p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }
.cookie-popup__card p a { color: var(--accent); text-decoration: underline; }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 22px; }
.cookie-popup__actions button { padding: 12px 24px; border: 2px solid var(--fg); cursor: pointer; font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; border-radius: 999px; transition: background 0.25s var(--ease), color 0.25s var(--ease); }
.cookie-popup__actions button:first-child:hover { background: var(--bg-alt); }
.cookie-popup__actions button:last-child { background: var(--fg); color: var(--bg); }
.cookie-popup__actions button:last-child:hover { background: var(--accent); border-color: var(--accent); }

/* ---------- misc ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
::selection { background: var(--accent); color: #fff; }
