/* palette: bg=#F2EEE3 fg=#16203B accent=#D7263D */
/* fonts: display="Bodoni Moda" body="Archivo" mono="Space Mono" */

:root {
  --bg: #F2EEE3;        /* dominant cream canvas */
  --bg-alt: #E7E0CF;    /* alternating section background */
  --fg: #16203B;        /* primary navy text */
  --fg-soft: #28324E;   /* slightly lighter fg */
  --muted: #5C6276;     /* secondary text */
  --navy: #111A33;      /* dark inverted band */
  --navy-2: #1B2748;    /* dark band gradient stop */
  --accent: #D7263D;    /* Vignelli red */
  --accent-deep: #A8182C;  /* darker accent for hover */
  --cream-line: rgba(22, 32, 59, 0.14);
  --border: rgba(22, 32, 59, 0.14);
  --serif: 'Bodoni Moda', ui-serif, Georgia, serif;
  --sans: 'Archivo', ui-sans-serif, system-ui, 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;
  font-size: 17px;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
h1, h2, h3, h4 { font-weight: 400; margin: 0; }
p { margin: 0; }

.container { 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; }
.section--alt { background: var(--bg-alt); }

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

.h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.lead {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.6;
  color: var(--fg-soft);
  max-width: 56ch;
}
em.accent, .accent-word { font-style: italic; color: var(--accent); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 9999px;
  font-size: 14px;
  letter-spacing: 0.01em;
  font-weight: 600;
  transition: transform .4s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
}
.btn--solid { background: var(--accent); color: #fff; }
.btn--solid:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 12px 30px -10px rgba(168,24,44,.55); }
.btn--ghost { border: 1px solid rgba(255,255,255,.4); color: #fff; }
.btn--ghost:hover { border-color: #fff; transform: translateY(-2px); }
.btn--dark { background: var(--fg); color: var(--bg); }
.btn--dark:hover { background: var(--navy); transform: translateY(-2px); }
.btn--outline { border: 1px solid var(--border); color: var(--fg); }
.btn--outline:hover { border-color: var(--fg); transform: translateY(-2px); }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--accent);
  transition: gap .3s var(--ease);
}
.arrow-link:hover { gap: 14px; }

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 238, 227, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.header[data-scrolled="true"] {
  box-shadow: 0 1px 0 var(--cream-line);
  border-bottom-color: var(--cream-line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand__mark {
  width: 30px; height: 30px; border-radius: 6px;
  background: var(--accent);
  display: grid; place-items: center;
  color: #fff; font-family: var(--serif); font-size: 19px; font-style: italic;
  flex: 0 0 auto;
}
.brand__name { font-family: var(--serif); font-size: 20px; letter-spacing: -0.01em; }
.brand__name b { font-weight: 600; }

.nav { display: none; align-items: center; gap: 34px; }
@media (min-width: 940px) { .nav { display: flex; } }
.nav a {
  font-size: 13px; letter-spacing: 0.02em; color: var(--fg-soft);
  position: relative; transition: color .3s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1.5px;
  background: var(--accent); transition: width .35s var(--ease);
}
.nav a:hover { color: var(--fg); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.header__cta { display: none; }
@media (min-width: 940px) { .header__cta { display: inline-flex; } }

.menu-toggle {
  display: inline-flex; flex-direction: column; gap: 5px; padding: 8px;
}
@media (min-width: 940px) { .menu-toggle { display: none; } }
.menu-toggle span { width: 24px; height: 2px; background: var(--fg); transition: transform .35s var(--ease), opacity .25s; }
.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: 74px 0 0; z-index: 99;
  background: var(--bg);
  padding: 40px 24px;
  transform: translateX(100%);
  transition: transform .45s var(--ease);
  display: flex; flex-direction: column; gap: 4px;
}
.mobile-menu[data-open="true"] { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--serif); font-size: 30px; padding: 14px 0;
  border-bottom: 1px solid var(--cream-line);
}
.mobile-menu .btn { margin-top: 22px; justify-content: center; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(120% 120% at 80% 10%, var(--navy-2) 0%, var(--navy) 60%);
  color: #fff;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  opacity: 0.22;
  object-fit: cover; width: 100%; height: 100%;
  animation: heroZoom 9s var(--ease) forwards;
}
@keyframes heroZoom { from { transform: scale(1.1); } to { transform: scale(1); } }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(17,26,51,.92) 0%, rgba(17,26,51,.55) 60%, rgba(17,26,51,.2) 100%);
}
.hero__grid {
  position: relative; z-index: 2;
  display: grid; gap: 48px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 980px) { .hero__grid { grid-template-columns: 1.1fr 0.9fr; gap: 60px; } }
.hero .eyebrow { color: #FF6470; }
.hero .eyebrow::before { background: #FF6470; }
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3.4rem, 9vw, 7.6rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin-bottom: 26px;
}
.hero p.lead { color: rgba(255,255,255,.78); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero__panel {
  position: relative;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.6);
  background: rgba(255,255,255,.03);
}
.hero__panel img { aspect-ratio: 4/3.4; object-fit: cover; }
.hero__panel-tag {
  position: absolute; left: 16px; bottom: 16px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--accent); color: #fff; padding: 7px 14px; border-radius: 6px;
}
.hero__stats {
  position: relative; z-index: 2;
  margin-top: 64px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  border-top: 1px solid rgba(255,255,255,.16); padding-top: 30px;
}
.hero__stats .num { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); line-height: 1; }
.hero__stats .lbl { font-size: 12px; color: rgba(255,255,255,.6); margin-top: 8px; letter-spacing: 0.02em; }

/* ---------- clients strip ---------- */
.clients { border-bottom: 1px solid var(--cream-line); padding: 40px 0; }
.clients__inner { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 44px; justify-content: center; }
.clients__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.clients__logo { font-family: var(--serif); font-size: 19px; letter-spacing: 0.01em; color: var(--fg-soft); opacity: .72; }

/* ---------- section head ---------- */
.sec-head { display: grid; gap: 22px; margin-bottom: 60px; }
@media (min-width: 880px) {
  .sec-head { grid-template-columns: 1.2fr 1fr; align-items: end; }
  .sec-head .lead { justify-self: end; }
}

/* ---------- 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: 980px) { .cards--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--bg);
  border: 1px solid var(--cream-line);
  border-radius: 12px;
  padding: 34px 30px;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .3s var(--ease);
  display: flex; flex-direction: column; gap: 16px;
}
.section--alt .card { background: var(--bg); }
.card:hover { transform: translateY(-6px); box-shadow: 0 18px 50px -16px rgba(22,32,59,.18); border-color: transparent; }
.card__num { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; color: var(--accent); }
.card h3 { font-family: var(--serif); font-size: 1.55rem; line-height: 1.1; letter-spacing: -0.01em; }
.card p { color: var(--muted); font-size: 15.5px; line-height: 1.7; }
.card ul { margin: 4px 0 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.card li { font-size: 14px; color: var(--fg-soft); display: flex; gap: 9px; align-items: baseline; }
.card li::before { content: "—"; color: var(--accent); }

/* ---------- featured case ---------- */
.feature { display: grid; gap: 40px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 940px) { .feature { grid-template-columns: 1fr 1fr; gap: 64px; } }
.feature__media { border-radius: 14px; overflow: hidden; box-shadow: 0 30px 70px -28px rgba(22,32,59,.4); }
.feature__media img { aspect-ratio: 4/3.2; object-fit: cover; }
.feature__tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.feature h2 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 22px; }
.feature p { color: var(--fg-soft); margin-bottom: 16px; }
.feature__metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 28px 0; border-top: 1px solid var(--cream-line); padding-top: 24px; }
.feature__metrics .num { font-family: var(--serif); font-size: 2.2rem; line-height: 1; }
.feature__metrics .lbl { font-size: 13px; color: var(--muted); margin-top: 6px; }

/* ---------- work grid (portfolio) ---------- */
.work { display: grid; gap: 26px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .work { grid-template-columns: repeat(2, 1fr); } }
.work__item { display: block; }
.work__cover { border-radius: 12px; overflow: hidden; position: relative; }
.work__cover img { aspect-ratio: 16/10; object-fit: cover; transition: transform 1s var(--ease); }
.work__item:hover .work__cover img { transform: scale(1.05); }
.work__cover-tag {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  background: rgba(17,26,51,.86); color: #fff; padding: 6px 12px; border-radius: 6px; backdrop-filter: blur(6px);
}
.work__meta { padding: 20px 4px 0; display: flex; justify-content: space-between; gap: 16px; align-items: start; }
.work__meta h3 { font-family: var(--serif); font-size: 1.5rem; line-height: 1.1; letter-spacing: -0.01em; }
.work__meta p { font-size: 14px; color: var(--muted); margin-top: 6px; }
.work__arrow { font-size: 22px; color: var(--accent); transition: transform .4s var(--ease); }
.work__item:hover .work__arrow { transform: translate(4px, -4px); }

/* ---------- manifesto dark band ---------- */
.manifesto {
  background: var(--navy); color: #fff;
  padding: clamp(90px, 14vw, 180px) 0;
  position: relative; overflow: hidden;
}
.manifesto__quote-mark {
  font-family: var(--serif); font-style: italic; font-size: 14rem; line-height: .6;
  color: var(--accent); opacity: .5; display: block; margin-bottom: -10px;
}
.manifesto p {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4.6vw, 3.6rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  max-width: 17ch;
  margin: 0 auto;
  text-align: left;
  font-weight: 300;
}
.manifesto .center { text-align: center; max-width: 22ch; }
.manifesto cite {
  display: block; margin-top: 40px; font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,.55); font-style: normal;
}

/* ---------- stats band ---------- */
.statband { display: grid; gap: 30px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 880px) { .statband { grid-template-columns: repeat(4, 1fr); } }
.statband__item { border-top: 2px solid var(--accent); padding-top: 20px; }
.statband__num { font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 4rem); line-height: 1; letter-spacing: -0.02em; }
.statband__lbl { font-size: 14px; color: var(--muted); margin-top: 12px; }

/* ---------- process / steps ---------- */
.steps { display: grid; gap: 0; }
.step {
  display: grid; gap: 16px 40px; grid-template-columns: 1fr;
  padding: 36px 0; border-top: 1px solid var(--cream-line);
}
@media (min-width: 820px) { .step { grid-template-columns: 120px 1fr 1.2fr; align-items: start; } }
.step:last-child { border-bottom: 1px solid var(--cream-line); }
.step__num { font-family: var(--serif); font-size: 2.4rem; color: var(--accent); line-height: 1; }
.step h3 { font-family: var(--serif); font-size: 1.7rem; letter-spacing: -0.01em; }
.step p { color: var(--muted); font-size: 15.5px; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 0; max-width: 880px; margin: 0 auto; }
.faq__item { border-top: 1px solid var(--cream-line); padding: 26px 0; }
.faq__item:last-child { border-bottom: 1px solid var(--cream-line); }
.faq__q { font-family: var(--serif); font-size: 1.4rem; letter-spacing: -0.01em; margin-bottom: 12px; }
.faq__a { color: var(--muted); font-size: 16px; line-height: 1.7; }

/* ---------- CTA band ---------- */
.cta {
  background: linear-gradient(120% 120% at 10% 0%, var(--navy-2), var(--navy));
  color: #fff; border-radius: 18px; padding: clamp(48px, 8vw, 88px);
  text-align: center; position: relative; overflow: hidden;
}
.cta h2 { font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 22px; }
.cta p { color: rgba(255,255,255,.78); max-width: 50ch; margin: 0 auto 36px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- contact / form ---------- */
.contact-grid { display: grid; gap: 50px; grid-template-columns: 1fr; }
@media (min-width: 940px) { .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 70px; } }
.contact-info h2 { font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.04; letter-spacing: -0.02em; margin-bottom: 24px; }
.contact-info .lead { margin-bottom: 36px; }
.info-list { display: grid; gap: 24px; }
.info-list__item { border-top: 1px solid var(--cream-line); padding-top: 18px; }
.info-list__k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 7px; }
.info-list__v { font-size: 16px; color: var(--fg-soft); line-height: 1.6; }

.form { background: var(--bg-alt); border: 1px solid var(--cream-line); border-radius: 14px; padding: clamp(28px, 5vw, 44px); }
.section--alt .form { background: var(--bg); }
.field { margin-bottom: 22px; }
.field label { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 9px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; font: inherit; font-size: 15px;
  background: var(--bg); border: 1px solid var(--border); border-radius: 8px; color: var(--fg);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(215,38,61,.12);
}
.form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form__note { font-size: 12.5px; color: var(--muted); margin-top: 16px; line-height: 1.6; }

/* ---------- principles / about values ---------- */
.values { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .values { grid-template-columns: repeat(2, 1fr); } }
.value { padding: 30px; border: 1px solid var(--cream-line); border-radius: 12px; background: var(--bg); }
.value__k { font-family: var(--mono); font-size: 12px; color: var(--accent); letter-spacing: 0.1em; }
.value h3 { font-family: var(--serif); font-size: 1.5rem; margin: 14px 0 10px; letter-spacing: -0.01em; }
.value p { color: var(--muted); font-size: 15.5px; }

/* ---------- team (mono avatars) ---------- */
.team { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .team { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .team { grid-template-columns: repeat(3, 1fr); } }
.member { border: 1px solid var(--cream-line); border-radius: 12px; padding: 30px; background: var(--bg); }
.avatar {
  width: 64px; height: 64px; border-radius: 12px; display: grid; place-items: center;
  font-family: var(--serif); font-style: italic; font-size: 24px; color: #fff; margin-bottom: 22px;
}
.member h3 { font-family: var(--serif); font-size: 1.35rem; letter-spacing: -0.01em; }
.member .role { font-family: var(--mono); font-size: 12px; color: var(--accent); letter-spacing: 0.06em; margin: 4px 0 14px; }
.member p { color: var(--muted); font-size: 14.5px; line-height: 1.65; }

/* ---------- testimonials ---------- */
.quotes { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 880px) { .quotes { grid-template-columns: repeat(2, 1fr); } }
.quote {
  border: 1px solid var(--cream-line); border-radius: 12px; padding: 34px; background: var(--bg);
  display: flex; flex-direction: column; gap: 22px;
}
.quote p { font-family: var(--serif); font-size: 1.3rem; line-height: 1.4; letter-spacing: -0.01em; }
.quote footer { display: flex; align-items: center; gap: 14px; }
.quote .avatar { width: 46px; height: 46px; font-size: 17px; margin: 0; border-radius: 10px; }
.quote .who b { font-weight: 600; font-size: 15px; }
.quote .who span { display: block; font-size: 13px; color: var(--muted); }

/* ---------- legal pages ---------- */
.legal { padding: clamp(60px, 9vw, 120px) 0; max-width: 820px; }
.legal h1 { font-family: var(--serif); font-size: clamp(2.4rem, 6vw, 4rem); letter-spacing: -0.02em; margin-bottom: 14px; line-height: 1.02; }
.legal .updated { font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: 0.06em; margin-bottom: 48px; }
.legal h2 { font-family: var(--serif); font-size: 1.7rem; letter-spacing: -0.01em; margin: 44px 0 14px; }
.legal h3 { font-size: 1.1rem; font-weight: 600; margin: 28px 0 8px; }
.legal p, .legal li { color: var(--fg-soft); font-size: 16px; line-height: 1.78; }
.legal p { margin-bottom: 16px; }
.legal ul { padding-left: 22px; margin-bottom: 18px; display: grid; gap: 8px; }
.legal a { color: var(--accent); }

/* ---------- thanks page ---------- */
.thanks { min-height: 76vh; display: grid; place-items: center; text-align: center; padding: 80px 0; }
.thanks__mark { font-family: var(--serif); font-size: 5rem; color: var(--accent); line-height: 1; margin-bottom: 24px; }
.thanks h1 { font-family: var(--serif); font-size: clamp(2.6rem, 7vw, 5rem); letter-spacing: -0.02em; line-height: 1; margin-bottom: 20px; }
.thanks p { color: var(--muted); max-width: 46ch; margin: 0 auto 34px; }

/* ---------- footer ---------- */
.footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 80px 0 36px; }
.footer__top { display: grid; gap: 44px; grid-template-columns: 1fr; }
@media (min-width: 820px) { .footer__top { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer__brand .brand__name { color: #fff; }
.footer__brand p { margin-top: 18px; font-size: 14.5px; max-width: 34ch; line-height: 1.7; }
.footer h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 18px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer ul a { font-size: 14.5px; color: rgba(255,255,255,.72); transition: color .3s; }
.footer ul a:hover { color: #fff; }
.footer__bottom {
  margin-top: 60px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,.5);
}
.footer__bottom a { color: rgba(255,255,255,.6); }
.footer__bottom a:hover { color: #fff; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s var(--ease), transform .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__bg { animation: none; }
}

/* ---------- cookie popup ---------- */
.cookie-popup { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: flex-end; padding: 24px; background: rgba(17,26,51,.45); 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); padding: 32px 36px; max-width: 480px; border-radius: 12px; border: 1px solid var(--cream-line); box-shadow: 0 30px 80px -20px rgba(0,0,0,.4); }
.cookie-popup__label { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.cookie-popup__card h3 { font-family: var(--serif); font-size: 1.5rem; letter-spacing: -0.01em; margin-bottom: 12px; }
.cookie-popup__card p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.cookie-popup__card p a { color: var(--accent); }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 20px; }
.cookie-popup__actions button { padding: 11px 24px; border: 1px solid var(--border); cursor: pointer; font-size: 14px; border-radius: 8px; transition: background .3s, color .3s, border-color .3s; }
.cookie-popup__actions button:first-child:hover { border-color: var(--fg); }
.cookie-popup__actions button:last-child { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.cookie-popup__actions button:last-child:hover { background: var(--accent); border-color: var(--accent); }

/* ---------- misc ---------- */
.intro-text { max-width: 60ch; }
.intro-text p { font-size: clamp(1.3rem, 2.6vw, 1.9rem); line-height: 1.5; letter-spacing: -0.01em; color: var(--fg); font-family: var(--serif); font-weight: 300; }
.divider-num { font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: 0.1em; }
