/* palette: bg=#0E140F fg=#F2F7EC accent=#C8F135 */
/* fonts: display="Syne" body="Space Grotesk" mono="Space Mono" */

:root {
  --bg: #0E140F;           /* dominant dark green-black from reference hero */
  --bg-alt: #15211A;       /* alternating darker-green section */
  --bg-light: #EEF3E6;     /* inverted light band */
  --fg: #F2F7EC;           /* primary off-white text */
  --fg-soft: #C9D3C2;      /* slightly softer fg */
  --muted: #86937F;        /* secondary muted green-grey */
  --accent: #C8F135;       /* acid lime from reference robots/CTA */
  --accent-deep: #A6CE1E;  /* darker lime for hover */
  --border: rgba(242, 247, 236, 0.14);
  --border-dark: rgba(14, 20, 15, 0.14);
  --serif: 'Syne', ui-sans-serif, sans-serif;
  --sans: 'Space Grotesk', ui-sans-serif, sans-serif;
  --mono: 'Space Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1240px;
}

*, *::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;
  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; }
p { margin: 0; }
::selection { background: var(--accent); color: var(--bg); }

/* ---------- 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(80px, 12vw, 160px) 0; }
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}
.lede { color: var(--fg-soft); font-size: clamp(1rem, 1.4vw, 1.18rem); line-height: 1.8; max-width: 56ch; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 9999px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), opacity 0.4s var(--ease);
}
.btn--primary { background: var(--accent); color: #12180C; }
.btn--primary:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn--ghost { border: 1px solid var(--border); color: var(--fg); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn--dark { background: var(--fg); color: var(--bg); }
.btn--dark:hover { background: var(--accent); transform: translateY(-2px); }
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--accent);
  transition: gap 0.35s var(--ease);
}
.arrow-link:hover { gap: 14px; }

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.4s var(--ease), background 0.4s var(--ease);
  background: rgba(14, 20, 15, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
}
.header[data-scrolled="true"] {
  background: rgba(14, 20, 15, 0.9);
  box-shadow: 0 8px 40px -12px rgba(0, 0, 0, 0.6);
  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-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.brand__dot { width: 11px; height: 11px; border-radius: 50%; background: var(--accent); display: inline-block; }
.nav { display: none; gap: 34px; align-items: center; }
.nav a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-soft);
  transition: color 0.3s var(--ease);
  position: relative;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--accent); }
.header__cta { display: none; }
@media (min-width: 900px) {
  .nav { display: flex; }
  .header__cta { display: inline-flex; }
}

/* hamburger */
.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 8px;
}
.menu-toggle span { width: 18px; height: 2px; 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(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); }
@media (min-width: 900px) { .menu-toggle { display: none; } }

.mobile-menu {
  position: fixed;
  inset: 72px 0 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-weight: 700;
  font-size: 2rem;
  letter-spacing: -0.02em;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .btn { margin-top: 24px; justify-content: center; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: clamp(48px, 8vw, 96px);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 9s var(--ease) forwards; }
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,20,15,0.6) 0%, rgba(14,20,15,0.35) 40%, rgba(14,20,15,0.95) 100%);
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero__inner { position: relative; z-index: 1; width: 100%; }
.hero h1 {
  font-size: clamp(3.4rem, 10vw, 8.6rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 700;
  max-width: 16ch;
  margin: 0 0 30px;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero__sub { max-width: 52ch; color: var(--fg-soft); font-size: clamp(1.02rem, 1.5vw, 1.22rem); margin-bottom: 36px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__meta {
  position: absolute;
  z-index: 1;
  right: 20px;
  top: 120px;
  display: none;
  max-width: 260px;
  padding: 22px;
  background: rgba(21, 33, 26, 0.72);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.hero__meta p { font-size: 14px; color: var(--fg-soft); line-height: 1.6; }
.hero__meta strong { color: var(--accent); font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; display: block; margin-bottom: 10px; }
@media (min-width: 1024px) { .hero__meta { display: block; right: 32px; } }

/* ---------- marquee ---------- */
.marquee {
  background: var(--accent);
  color: #12180C;
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid #12180C;
  border-bottom: 1px solid #12180C;
}
.marquee__track { display: inline-flex; gap: 40px; animation: marquee 26s linear infinite; will-change: transform; }
.marquee span { font-family: var(--serif); font-weight: 800; font-size: 15px; letter-spacing: 0.02em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 40px; }
.marquee span::after { content: "◆"; font-size: 9px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- feature band ---------- */
.features { background: var(--bg-alt); }
.features__grid { display: grid; gap: 2px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .features__grid { grid-template-columns: repeat(3, 1fr); } }
.feature {
  padding: 40px clamp(20px, 3vw, 40px);
  background: var(--bg);
  border: 1px solid var(--border);
}
.feature__num { font-family: var(--mono); font-size: 12px; color: var(--accent); letter-spacing: 0.1em; }
.feature__icon {
  width: 52px; height: 52px; margin: 22px 0 24px;
  border-radius: 12px; display: grid; place-items: center;
  background: rgba(200, 241, 53, 0.12); color: var(--accent);
}
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.4rem; letter-spacing: -0.01em; margin-bottom: 12px; }
.feature p { color: var(--muted); font-size: 15.5px; line-height: 1.7; }

/* ---------- generic section head ---------- */
.section-head { max-width: 720px; margin-bottom: clamp(48px, 6vw, 80px); }
.section-head.--offset { margin-left: auto; text-align: right; }
.section-head.--offset .eyebrow { flex-direction: row-reverse; }
.section-head.--offset .eyebrow::before { display: none; }
.section-head h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: -0.02em;
  line-height: 1.02;
  font-weight: 700;
}
.section-head p { margin-top: 22px; color: var(--fg-soft); font-size: clamp(1rem, 1.3vw, 1.12rem); }

/* ---------- services (asymmetric) ---------- */
.services__grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .services__grid { grid-template-columns: repeat(6, 1fr); } }
.svc-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 34px clamp(24px, 3vw, 38px);
  background: var(--bg-alt);
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), background 0.5s var(--ease);
  grid-column: span 1;
}
@media (min-width: 768px) {
  .svc-card { grid-column: span 3; }
  .svc-card:nth-child(1) { grid-column: span 4; }
  .svc-card:nth-child(2) { grid-column: span 2; }
  .svc-card:nth-child(3) { grid-column: span 2; }
  .svc-card:nth-child(4) { grid-column: span 4; }
}
.svc-card:hover { transform: translateY(-6px); border-color: var(--accent); background: #18271d; }
.svc-card__no { font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: 0.14em; }
.svc-card h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); letter-spacing: -0.02em; margin: 16px 0 14px; }
.svc-card p { color: var(--fg-soft); font-size: 16px; line-height: 1.72; margin-bottom: 22px; }
.svc-card ul { margin: 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.svc-card li { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; padding: 6px 12px; border: 1px solid var(--border); border-radius: 9999px; color: var(--muted); }

/* ---------- manifesto (inverted light band) ---------- */
.manifesto { background: var(--bg-light); color: var(--bg); text-align: center; }
.manifesto .container { max-width: 980px; }
.manifesto .eyebrow { color: var(--accent-deep); }
.manifesto .eyebrow::before { background: var(--accent-deep); }
.manifesto__quote {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.9rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 18px 0 0;
}
.manifesto__quote span { color: var(--accent-deep); }
.manifesto__mark { font-family: var(--serif); font-weight: 800; font-size: clamp(5rem, 12vw, 9rem); line-height: 0.6; color: var(--accent-deep); display: block; }
.manifesto__by { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: #5c6a53; margin-top: 34px; }

/* ---------- work / projects ---------- */
.work__grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .work__grid { grid-template-columns: repeat(2, 1fr); } }
.work-card { position: relative; border-radius: 18px; overflow: hidden; border: 1px solid var(--border); background: var(--bg-alt); }
.work-card:first-child { grid-column: 1 / -1; }
.work-card__img { overflow: hidden; aspect-ratio: 16 / 10; }
.work-card:first-child .work-card__img { aspect-ratio: 21 / 9; }
.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__body { padding: 28px clamp(24px, 3vw, 36px) 32px; }
.work-card__tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.work-card h3 { font-size: clamp(1.4rem, 2.6vw, 2.1rem); letter-spacing: -0.02em; margin: 14px 0 12px; }
.work-card p { color: var(--fg-soft); font-size: 15.5px; line-height: 1.7; margin-bottom: 20px; }

/* ---------- process ---------- */
.process { background: var(--bg-alt); }
.process__grid { display: grid; gap: 2px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .process__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process__grid { grid-template-columns: repeat(4, 1fr); } }
.step { padding: 36px clamp(22px, 2.6vw, 34px); background: var(--bg); border: 1px solid var(--border); }
.step__no { font-family: var(--serif); font-weight: 800; font-size: 3rem; color: var(--accent); line-height: 1; letter-spacing: -0.04em; }
.step h3 { font-size: 1.35rem; margin: 20px 0 12px; letter-spacing: -0.01em; }
.step p { color: var(--muted); font-size: 15px; line-height: 1.7; }

/* ---------- stats ---------- */
.stats__grid { display: grid; gap: 24px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }
.stat { border-top: 2px solid var(--accent); padding-top: 22px; }
.stat__num { font-family: var(--serif); font-weight: 800; font-size: clamp(2.6rem, 5vw, 4rem); letter-spacing: -0.03em; line-height: 1; }
.stat__label { color: var(--muted); font-size: 14px; margin-top: 12px; line-height: 1.5; }

/* ---------- faq ---------- */
.faq__list { border-top: 1px solid var(--border); max-width: 900px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 44px 28px 0;
  position: relative;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  letter-spacing: -0.01em;
  transition: color 0.3s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--mono);
  font-size: 1.6rem;
  color: var(--accent);
  transition: transform 0.3s var(--ease);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary:hover { color: var(--accent); }
.faq-item p { color: var(--fg-soft); font-size: 16px; line-height: 1.78; padding: 0 44px 30px 0; }

/* ---------- CTA / contact ---------- */
.cta { background: var(--accent); color: #12180C; }
.cta .eyebrow { color: #2c3a10; }
.cta .eyebrow::before { background: #2c3a10; }
.cta__wrap { display: grid; gap: clamp(40px, 6vw, 80px); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 900px) { .cta__wrap { grid-template-columns: 1fr 1fr; } }
.cta h2 { font-size: clamp(2.4rem, 6vw, 4.6rem); letter-spacing: -0.03em; line-height: 0.98; }
.cta__intro { margin-top: 24px; font-size: 1.06rem; line-height: 1.7; max-width: 42ch; color: #26320f; }
.cta__contacts { margin-top: 34px; display: grid; gap: 18px; }
.cta__contacts a, .cta__contacts p { color: #12180C; }
.cta__contacts dt { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: #47591b; margin-bottom: 4px; }
.cta__contacts dd { margin: 0; font-size: 1.05rem; }

/* form */
.form { display: grid; gap: 16px; }
.form__row { display: grid; gap: 16px; }
@media (min-width: 560px) { .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: #2c3a10; }
.field input, .field textarea, .field select {
  font: inherit;
  font-size: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(18, 24, 12, 0.28);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.5);
  color: #12180C;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #6a7551; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: #12180C; background: #fff; }
.field textarea { resize: vertical; min-height: 120px; }
.form .btn--dark { background: #12180C; color: var(--accent); justify-content: center; margin-top: 6px; }
.form .btn--dark:hover { background: #000; }
.form__note { font-size: 12.5px; color: #47591b; line-height: 1.6; }

/* ---------- footer ---------- */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding: clamp(64px, 8vw, 100px) 0 40px; }
.footer__top { display: grid; gap: 44px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }
.footer__brand .brand { font-size: 26px; margin-bottom: 20px; }
.footer__brand p { color: var(--muted); font-size: 15px; max-width: 34ch; line-height: 1.7; }
.footer__col h4 { font-family: var(--mono); font-weight: 400; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer__col a, .footer__col p { color: var(--fg-soft); font-size: 15px; transition: color 0.3s var(--ease); }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  margin-top: clamp(48px, 6vw, 72px);
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
}
.footer__bottom p, .footer__bottom a { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.04em; color: var(--muted); }
.footer__bottom a:hover { color: var(--accent); }
.footer__legal { display: flex; flex-wrap: wrap; gap: 20px; }

/* ---------- inner page hero ---------- */
.page-hero { padding: clamp(120px, 16vw, 200px) 0 clamp(60px, 8vw, 100px); border-bottom: 1px solid var(--border); position: relative; }
.page-hero h1 { font-size: clamp(2.8rem, 8vw, 6.4rem); letter-spacing: -0.03em; line-height: 0.98; max-width: 18ch; }
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero p { margin-top: 26px; max-width: 56ch; color: var(--fg-soft); font-size: clamp(1.02rem, 1.4vw, 1.18rem); }

/* prose (legal) */
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: -0.02em; margin: 48px 0 18px; }
.prose h3 { font-size: 1.2rem; margin: 30px 0 12px; }
.prose p { color: var(--fg-soft); font-size: 16.5px; line-height: 1.8; margin-bottom: 18px; }
.prose ul { color: var(--fg-soft); font-size: 16.5px; line-height: 1.8; padding-left: 22px; margin-bottom: 18px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--fg); }

/* about split */
.split { display: grid; gap: clamp(36px, 5vw, 72px); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split.--rev > .split__media { order: -1; } }
.split__media { border-radius: 18px; overflow: hidden; aspect-ratio: 4 / 5; border: 1px solid var(--border); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); letter-spacing: -0.02em; line-height: 1.03; }
.split p { color: var(--fg-soft); margin-top: 20px; font-size: 16.5px; line-height: 1.8; }
.split p + p { margin-top: 16px; }

/* values / principles (text-only team alt) */
.principles { display: grid; gap: 2px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .principles { grid-template-columns: repeat(2, 1fr); } }
.principle { padding: 40px clamp(24px, 3vw, 40px); border: 1px solid var(--border); background: var(--bg-alt); }
.principle .k { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; color: var(--accent); }
.principle h3 { font-size: 1.5rem; letter-spacing: -0.01em; margin: 16px 0 12px; }
.principle p { color: var(--muted); font-size: 15.5px; line-height: 1.7; }

/* team text cards with monogram (no faces) */
.team { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .team { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .team { grid-template-columns: repeat(3, 1fr); } }
.member { border: 1px solid var(--border); border-radius: 18px; padding: 30px; background: var(--bg-alt); transition: border-color 0.4s var(--ease), transform 0.4s var(--ease); }
.member:hover { border-color: var(--accent); transform: translateY(-4px); }
.avatar {
  width: 64px; height: 64px; border-radius: 16px;
  display: grid; place-items: center;
  font-family: var(--serif); font-weight: 800; font-size: 1.4rem;
  color: #12180C; margin-bottom: 22px; letter-spacing: -0.02em;
}
.member h3 { font-size: 1.3rem; letter-spacing: -0.01em; }
.member__role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin: 6px 0 16px; }
.member p { color: var(--muted); font-size: 15px; line-height: 1.7; }

/* contact info blocks */
.info-grid { display: grid; gap: 20px; grid-template-columns: 1fr; margin-bottom: 60px; }
@media (min-width: 768px) { .info-grid { grid-template-columns: repeat(3, 1fr); } }
.info-card { border: 1px solid var(--border); border-radius: 16px; padding: 32px; background: var(--bg-alt); }
.info-card h3 { font-family: var(--mono); font-weight: 400; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.info-card p, .info-card a { color: var(--fg-soft); font-size: 16px; line-height: 1.65; }
.info-card a:hover { color: var(--accent); }

/* ---------- 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; }
.stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); transition-delay: calc(var(--i, 0) * 80ms); }
.stagger.is-visible > * { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .stagger > *, .hero__bg img, .marquee__track { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* ---------- 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); opacity: 0; pointer-events: none; transition: opacity .3s; }
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card { background: var(--bg-alt); border: 1px solid var(--border); padding: 32px 36px; max-width: 480px; border-radius: 16px; }
.cookie-popup__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.cookie-popup__card h3 { font-size: 1.4rem; letter-spacing: -0.01em; margin-bottom: 12px; }
.cookie-popup__card p { color: var(--fg-soft); font-size: 14.5px; line-height: 1.7; }
.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: 11px 24px; border: 1px solid var(--border); cursor: pointer; font-size: 13px; font-family: var(--mono); letter-spacing: 0.04em; border-radius: 9999px; transition: all 0.3s var(--ease); flex: 1; }
.cookie-popup__actions button:first-child:hover { border-color: var(--fg); }
.cookie-popup__actions button:last-child { background: var(--accent); color: #12180C; border-color: var(--accent); }
.cookie-popup__actions button:last-child:hover { background: var(--accent-deep); border-color: var(--accent-deep); }

/* skip link */
.skip-link { position: absolute; left: -999px; top: 0; z-index: 9999; background: var(--accent); color: #12180C; padding: 10px 18px; font-family: var(--mono); font-size: 12px; }
.skip-link:focus { left: 12px; top: 12px; }
