/* palette: bg=#0A0A12 fg=#F4F4FA accent=#8B5CF6 */
/* fonts: display="Space Grotesk" body="Inter" mono="IBM Plex Mono" */

:root {
  --bg: #0A0A12;
  --bg-alt: #11111C;
  --bg-deep: #050509;
  --fg: #F4F4FA;
  --fg-soft: #C8C8D6;
  --muted: #7A7A8C;
  --accent: #8B5CF6;
  --accent-deep: #6D28D9;
  --accent-glow: rgba(139, 92, 246, 0.35);
  --border: rgba(244, 244, 250, 0.10);
  --border-strong: rgba(244, 244, 250, 0.22);
  --display: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1320px;
}

*, *::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.72;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  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(--display); font-weight: 500; letter-spacing: -0.02em; margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--accent); color: #fff; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 40px; } }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-soft);
}
.eyebrow--accent { color: var(--accent); }

/* ───────── Header ───────── */
.header {
  position: sticky; top: 0; z-index: 100;
  width: 100%;
  background: rgba(10, 10, 18, 0.72);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.header[data-scrolled="true"] {
  background: rgba(10, 10, 18, 0.88);
  border-bottom-color: var(--border);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 600;
  font-size: 17px; letter-spacing: -0.01em;
}
.brand__mark {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border: 1px solid var(--border-strong);
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  font-family: var(--mono); font-size: 12px; font-weight: 600;
}
.brand__name { letter-spacing: 0.02em; text-transform: uppercase; }
.nav { display: none; }
@media (min-width: 900px) {
  .nav {
    display: flex; gap: 36px;
    font-family: var(--mono); font-size: 12px;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--fg-soft);
  }
  .nav a { transition: color .2s var(--ease); position: relative; }
  .nav a::after {
    content: ''; position: absolute; left: 0; bottom: -6px;
    width: 0; height: 1px; background: var(--accent); transition: width .3s var(--ease);
  }
  .nav a:hover { color: var(--fg); }
  .nav a:hover::after { width: 100%; }
  .nav a[aria-current="page"] { color: var(--fg); }
  .nav a[aria-current="page"]::after { width: 100%; }
}
.header__cta { display: none; }
@media (min-width: 900px) {
  .header__cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 20px;
    border: 1px solid var(--border-strong);
    font-family: var(--mono); font-size: 12px;
    letter-spacing: 0.14em; text-transform: uppercase;
    transition: background .2s, color .2s, border-color .2s;
  }
  .header__cta:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
}
.menu-toggle {
  display: flex; flex-direction: column; gap: 5px;
  width: 32px; height: 32px;
  justify-content: center; align-items: center;
}
.menu-toggle span {
  display: block; width: 20px; height: 1.5px; background: var(--fg);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (min-width: 900px) { .menu-toggle { display: none; } }

.mobile-menu {
  position: fixed; inset: 72px 0 0 0;
  background: var(--bg);
  z-index: 99;
  padding: 48px 32px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease);
}
.mobile-menu[data-open="true"] { opacity: 1; pointer-events: all; }
.mobile-menu nav {
  display: flex; flex-direction: column; gap: 28px;
  font-family: var(--display); font-size: 32px; font-weight: 500;
  letter-spacing: -0.02em;
}
.mobile-menu nav a { transition: color .2s; }
.mobile-menu nav a:hover { color: var(--accent); }
.mobile-menu__meta {
  margin-top: 56px; padding-top: 28px;
  border-top: 1px solid var(--border);
  font-family: var(--mono); font-size: 12px; color: var(--fg-soft);
  display: flex; flex-direction: column; gap: 10px;
}

/* ───────── Hero ───────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  padding: 24px 0 56px;
  overflow: hidden;
  background: var(--bg);
}
.hero__top {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0 32px;
  border-bottom: 1px solid var(--border);
}
.hero__top-labels {
  display: flex; gap: 36px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--fg-soft);
}
.hero__top-labels span:nth-child(2) { color: var(--accent); }
.hero__year {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.2em; color: var(--fg-soft);
}

.hero__stage {
  flex: 1;
  position: relative;
  margin-top: 32px;
  border: 1px solid var(--border);
  background: var(--bg-deep);
  overflow: hidden;
  min-height: 480px;
}
.hero__image {
  position: absolute; inset: 0;
  background-image: url('images/img-be3a590c8596.webp');
  background-size: cover; background-position: center;
  opacity: 0.55;
  animation: heroZoom 12s ease-out forwards;
}
.hero__image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,18,0.45) 0%, rgba(10,10,18,0.75) 60%, rgba(10,10,18,0.92) 100%);
}
@keyframes heroZoom {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}
.hero__title-wrap {
  position: relative; z-index: 2;
  padding: 56px 32px;
  display: flex; flex-direction: column; gap: 32px;
  height: 100%; min-height: 480px;
  justify-content: space-between;
}
@media (min-width: 768px) { .hero__title-wrap { padding: 64px 56px; } }
.hero__eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent);
}
.hero__eyebrow::before {
  content: ''; width: 8px; height: 8px; background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
}
.hero__title {
  font-family: var(--display);
  font-size: clamp(3.2rem, 13vw, 11.5rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.88;
  text-transform: uppercase;
  margin: 0;
}
.hero__title em {
  font-style: normal;
  color: var(--accent);
  font-weight: 400;
}
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 32px 56px;
  justify-content: space-between; align-items: flex-end;
}
.hero__meta-block { max-width: 380px; }
.hero__meta-label {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
}
.hero__meta-value {
  font-family: var(--display); font-size: 17px;
  color: var(--fg-soft); line-height: 1.5;
}

/* ───────── Buttons ───────── */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase;
  border: 1px solid var(--border-strong);
  transition: all .25s var(--ease);
  background: transparent; color: var(--fg);
}
.btn:hover {
  background: var(--accent); border-color: var(--accent); color: #fff;
  transform: translateY(-1px);
}
.btn--accent {
  background: var(--accent); border-color: var(--accent); color: #fff;
}
.btn--accent:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.btn__arrow { transition: transform .25s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ───────── Section base ───────── */
section { position: relative; }
.section {
  padding: clamp(80px, 12vw, 140px) 0;
}
.section--alt { background: var(--bg-alt); }
.section--deep { background: var(--bg-deep); }
.section__head {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  margin-bottom: 64px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 900px) {
  .section__head {
    grid-template-columns: 280px 1fr;
    gap: 80px; align-items: end;
  }
}
.section__num {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent);
}
.section__title {
  font-size: clamp(2.2rem, 5.5vw, 4.4rem);
  font-weight: 500; line-height: 1.0;
  letter-spacing: -0.03em;
}
.section__title em { font-style: normal; color: var(--accent); }
.section__lede {
  font-size: 17px; color: var(--fg-soft);
  max-width: 56ch; line-height: 1.65;
}

/* ───────── Manifesto ───────── */
.manifesto {
  padding: clamp(100px, 14vw, 180px) 0;
  background: var(--bg-deep);
  position: relative; overflow: hidden;
}
.manifesto::before {
  content: ''; position: absolute;
  top: 50%; left: 50%; width: 800px; height: 800px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  opacity: 0.4; pointer-events: none;
}
.manifesto__inner {
  position: relative; z-index: 2;
  max-width: 1000px; margin: 0 auto;
  padding: 0 24px; text-align: center;
}
.manifesto__label {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 32px;
}
.manifesto__text {
  font-family: var(--display);
  font-size: clamp(1.6rem, 4.2vw, 3.2rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.025em;
}
.manifesto__text em { font-style: normal; color: var(--accent); }
.manifesto__sig {
  margin-top: 48px;
  display: inline-flex; gap: 16px; align-items: center;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-soft);
}
.manifesto__sig::before, .manifesto__sig::after {
  content: ''; width: 32px; height: 1px; background: var(--border-strong);
}

/* ───────── Services ───────── */
.services-grid {
  display: grid; grid-template-columns: 1fr;
  border-top: 1px solid var(--border);
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background .3s var(--ease);
}
.service:hover { background: var(--bg-alt); }
.service__num {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; color: var(--accent);
  margin-bottom: 32px;
}
.service__title {
  font-size: 1.6rem; font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 16px; line-height: 1.15;
}
.service__desc {
  color: var(--fg-soft); font-size: 15px;
  line-height: 1.7; margin-bottom: 32px;
}
.service__tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted);
}
.service__tags span {
  padding: 4px 10px; border: 1px solid var(--border);
}

/* ───────── Roles list (referenced from screenshot middle) ───────── */
.roles {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--border);
}
.role {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 28px 24px;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background .3s var(--ease), padding .3s var(--ease);
}
.role:hover { background: var(--accent); }
.role:hover .role__meta { color: rgba(255,255,255,0.85); }
.role:hover .role__cta { color: #fff; }
@media (min-width: 768px) {
  .role {
    grid-template-columns: 80px 1fr 220px 100px;
    gap: 32px; align-items: center;
    padding: 32px 32px;
  }
}
.role__index {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.2em; color: var(--muted);
}
.role__title {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 500; letter-spacing: -0.02em;
}
.role__meta {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--fg-soft);
}
.role__cta {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); text-align: right;
  transition: color .25s var(--ease);
}

/* ───────── Stats ───────── */
.stats {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
}
@media (min-width: 900px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat {
  padding: 48px 24px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat__num {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400; letter-spacing: -0.03em;
  line-height: 1; margin-bottom: 16px;
  color: var(--fg);
}
.stat__num em { font-style: normal; color: var(--accent); }
.stat__label {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-soft);
}

/* ───────── Process steps ───────── */
.process {
  display: grid; grid-template-columns: 1fr; gap: 0;
  border-top: 1px solid var(--border);
}
@media (min-width: 900px) { .process { grid-template-columns: repeat(4, 1fr); } }
.step {
  padding: 40px 24px 48px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.step__num {
  font-family: var(--display);
  font-size: 3rem; font-weight: 400;
  letter-spacing: -0.04em; line-height: 1;
  color: var(--accent);
  margin-bottom: 32px;
}
.step__title {
  font-family: var(--display);
  font-size: 1.25rem; font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.step__desc { font-size: 14px; line-height: 1.65; color: var(--fg-soft); }

/* ───────── Work / Case studies ───────── */
.work-grid {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .work-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
.case {
  position: relative;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  overflow: hidden;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.case:hover { border-color: var(--accent); }
.case__media {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  background: var(--bg-deep);
}
.case__media img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.7;
  transition: transform .6s var(--ease), opacity .3s var(--ease);
}
.case:hover .case__media img { transform: scale(1.05); opacity: 0.85; }
.case__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,18,0.6) 100%);
}
.case__body { padding: 28px 28px 32px; }
.case__tag {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.case__title {
  font-family: var(--display);
  font-size: 1.6rem; font-weight: 500;
  letter-spacing: -0.02em; line-height: 1.15;
  margin-bottom: 12px;
}
.case__desc { color: var(--fg-soft); font-size: 14.5px; line-height: 1.65; }
.case__foot {
  display: flex; justify-content: space-between;
  align-items: center; margin-top: 24px;
  padding-top: 20px; border-top: 1px solid var(--border);
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted);
}
.case__foot strong { color: var(--fg); font-weight: 500; }

/* ───────── Testimonials ───────── */
.testimonials {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 900px) { .testimonials { grid-template-columns: repeat(2, 1fr); } }
.testimonial {
  padding: 40px 32px;
  border: 1px solid var(--border);
  background: var(--bg);
  display: flex; flex-direction: column; gap: 24px;
}
.testimonial__quote {
  font-family: var(--display); font-size: 1.15rem;
  font-weight: 400; line-height: 1.55;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.testimonial__quote::before {
  content: '"'; display: block;
  font-size: 3rem; line-height: 0.5;
  color: var(--accent); margin-bottom: 16px;
  font-family: var(--display);
}
.testimonial__author {
  display: flex; align-items: center; gap: 16px;
  margin-top: auto; padding-top: 20px;
  border-top: 1px solid var(--border);
}
.avatar {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  font-family: var(--display);
  font-size: 14px; font-weight: 600;
  color: #fff; letter-spacing: 0.02em;
  border: 1px solid var(--border-strong);
}
.testimonial__name {
  font-family: var(--display); font-size: 15px;
  font-weight: 500; color: var(--fg);
}
.testimonial__role {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted);
}

/* ───────── FAQ ───────── */
.faq { border-top: 1px solid var(--border); }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: 28px 0;
  font-family: var(--display); font-size: 1.15rem;
  font-weight: 500; letter-spacing: -0.01em;
  text-align: left; color: var(--fg);
  transition: color .2s;
}
.faq__q:hover { color: var(--accent); }
.faq__icon {
  font-family: var(--mono); font-size: 11px;
  color: var(--accent); transition: transform .3s var(--ease);
  flex-shrink: 0; margin-left: 24px;
}
.faq__item[open] .faq__icon { transform: rotate(45deg); }
.faq__a {
  padding: 0 0 32px;
  max-width: 70ch;
  color: var(--fg-soft); font-size: 15.5px; line-height: 1.7;
}

/* ───────── CTA band ───────── */
.cta-band {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--accent);
  color: #fff;
  position: relative; overflow: hidden;
}
.cta-band__inner {
  display: grid; grid-template-columns: 1fr; gap: 32px;
  align-items: center;
}
@media (min-width: 900px) {
  .cta-band__inner { grid-template-columns: 1fr auto; }
}
.cta-band__title {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 500; line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 22ch;
  color: #fff;
}
.cta-band .btn {
  background: #fff; color: var(--accent);
  border-color: #fff;
}
.cta-band .btn:hover {
  background: var(--bg); color: #fff;
  border-color: var(--bg);
}

/* ───────── Contact form ───────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 56px;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1.3fr; gap: 80px; }
}
.contact-info { display: flex; flex-direction: column; gap: 36px; }
.contact-info__item h4 {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px; font-weight: 500;
}
.contact-info__item p {
  font-family: var(--display); font-size: 1.05rem;
  line-height: 1.55; color: var(--fg);
}
.contact-info__item a:hover { color: var(--accent); }

.form { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--fg-soft);
}
.field input, .field textarea, .field select {
  font: inherit; font-family: var(--sans);
  padding: 14px 16px; background: var(--bg-deep);
  color: var(--fg);
  border: 1px solid var(--border-strong);
  outline: none;
  transition: border-color .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--accent);
}
.field textarea { resize: vertical; min-height: 140px; }
.form__row { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 600px) { .form__row { grid-template-columns: 1fr 1fr; } }
.form__consent {
  display: flex; gap: 12px; font-size: 13px;
  color: var(--fg-soft); line-height: 1.55;
}
.form__consent input { margin-top: 4px; }

/* ───────── Footer ───────── */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}
.footer__top { display: grid; grid-template-columns: 1fr; gap: 48px; margin-bottom: 64px; }
@media (min-width: 900px) {
  .footer__top { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 64px; }
}
.footer__brand h3 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500; letter-spacing: -0.02em;
  line-height: 1; margin-bottom: 24px;
  text-transform: uppercase;
}
.footer__tag { color: var(--fg-soft); max-width: 36ch; font-size: 14.5px; }
.footer__col h5 {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 20px; font-weight: 500;
}
.footer__col ul { display: flex; flex-direction: column; gap: 12px; font-size: 14.5px; color: var(--fg-soft); }
.footer__col a:hover { color: var(--fg); }
.footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 16px; padding-top: 32px;
  border-top: 1px solid var(--border);
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}
.footer__bottom a:hover { color: var(--fg-soft); }

/* ───────── 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.55);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease);
}
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card {
  background: var(--bg); color: var(--fg);
  padding: 32px 36px;
  max-width: 480px;
  border: 1px solid var(--border-strong);
  font-family: var(--sans);
}
.cookie-popup__label {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.cookie-popup h3 {
  font-family: var(--display); font-size: 1.3rem;
  font-weight: 500; letter-spacing: -0.01em;
  margin: 0 0 12px;
}
.cookie-popup p { color: var(--fg-soft); font-size: 14px; line-height: 1.65; margin: 0; }
.cookie-popup p a { color: var(--accent); text-decoration: underline; }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 24px; }
.cookie-popup__actions button {
  padding: 10px 22px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  border: 1px solid var(--border-strong);
  background: transparent; color: var(--fg);
  transition: all .2s;
}
.cookie-popup__actions button:hover { border-color: var(--fg); }
.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); border-color: var(--accent-deep); }

/* ───────── Reveal animations ───────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ───────── Legal pages ───────── */
.legal {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--bg);
}
.legal__container {
  max-width: 780px; margin: 0 auto; padding: 0 24px;
}
.legal h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 16px;
}
.legal__meta {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 48px;
}
.legal h2 {
  font-size: 1.4rem; margin: 48px 0 16px;
  font-weight: 500;
}
.legal p { margin-bottom: 16px; color: var(--fg-soft); line-height: 1.75; }
.legal ul { display: flex; flex-direction: column; gap: 10px; padding-left: 20px; list-style: disc; margin-bottom: 24px; }
.legal ul li { color: var(--fg-soft); }
.legal a { color: var(--accent); text-decoration: underline; }

/* ───────── Page hero (smaller, used on inner pages) ───────── */
.page-hero {
  padding: clamp(100px, 14vw, 180px) 0 clamp(60px, 8vw, 100px);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.page-hero__eyebrow {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 24px;
}
.page-hero__title {
  font-family: var(--display);
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 500; line-height: 0.95;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  max-width: 16ch;
  margin-bottom: 32px;
}
.page-hero__title em { font-style: normal; color: var(--accent); }
.page-hero__lede {
  font-size: 18px; line-height: 1.65;
  color: var(--fg-soft); max-width: 60ch;
}

/* ───────── About specific ───────── */
.about-block {
  display: grid; grid-template-columns: 1fr; gap: 48px;
  align-items: start;
}
@media (min-width: 900px) {
  .about-block { grid-template-columns: 1fr 1.4fr; gap: 80px; }
}
.about-block__media {
  aspect-ratio: 3 / 4;
  border: 1px solid var(--border);
  background-size: cover; background-position: center;
  overflow: hidden;
}
.about-block__text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 500; letter-spacing: -0.025em;
  margin-bottom: 24px; line-height: 1.1;
}
.about-block__text p {
  font-size: 16.5px; line-height: 1.75; color: var(--fg-soft);
  margin-bottom: 18px;
}

.principles {
  display: grid; grid-template-columns: 1fr; gap: 0;
  border-top: 1px solid var(--border);
}
@media (min-width: 768px) { .principles { grid-template-columns: 1fr 1fr; } }
.principle {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.principle__num {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.2em; color: var(--accent);
  margin-bottom: 28px;
}
.principle h3 {
  font-size: 1.4rem; font-weight: 500;
  letter-spacing: -0.015em; margin-bottom: 14px;
}
.principle p { color: var(--fg-soft); font-size: 15px; line-height: 1.7; }

@media (max-width: 767px) {
  .hero__top-labels { gap: 16px; font-size: 10px; }
  .role { padding: 24px 16px; }
  .service { padding: 32px 24px; }
}
