/* palette: bg=#EBEBE8 fg=#141414 accent=#D24E22 */
/* fonts: display="Bodoni Moda" body="Archivo" mono="IBM Plex Mono" */

:root {
  --bg: #EBEBE8;        /* light concrete */
  --bg-alt: #DEDCD6;    /* alternating concrete band */
  --bg-deep: #161513;   /* inverted dark band */
  --fg: #141414;        /* ink */
  --fg-soft: #2C2C2A;   /* slightly softer ink */
  --muted: #6B6A64;     /* secondary text */
  --line: #C9C7C0;      /* hairline on light */
  --accent: #D24E22;    /* industrial vermilion */
  --accent-deep: #A63A16;
  --border: rgba(20, 20, 18, 0.14);
  --serif: 'Bodoni Moda', ui-serif, Georgia, serif;
  --sans: 'Archivo', ui-sans-serif, system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;
  --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);
  font-size: 18px;
  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; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .container { padding: 0 32px; } body { font-size: 18px; } }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-block;
}
.accent { color: var(--accent); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 26px;
  border: 1px solid var(--fg);
  background: var(--fg);
  color: var(--bg);
  transition: transform 0.4s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.btn:hover { transform: translateY(-2px); background: var(--accent); border-color: var(--accent); color: #fff; }
.btn--ghost { background: transparent; color: var(--fg); border-color: var(--fg); }
.btn--ghost:hover { background: var(--fg); color: var(--bg); }
.btn--accent { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--accent-deep); border-color: var(--accent-deep); }

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

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(235, 235, 232, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.header[data-scrolled="true"] {
  box-shadow: 0 1px 0 var(--border);
  border-bottom-color: var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  background: var(--fg);
  color: var(--bg);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.brand__name { font-family: var(--serif); font-size: 21px; letter-spacing: -0.01em; }
.nav { display: none; gap: 34px; }
.nav a {
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--fg-soft);
  position: relative;
  transition: color 0.3s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 1px;
  background: var(--accent); transition: width 0.35s var(--ease);
}
.nav a:hover { color: var(--fg); }
.nav a:hover::after { width: 100%; }
.nav__cta { display: none; }
@media (min-width: 980px) {
  .nav { display: flex; }
  .nav__cta { display: inline-flex; padding: 11px 20px; }
}

.menu-toggle { display: flex; flex-direction: column; gap: 6px; padding: 8px; }
.menu-toggle span { width: 26px; height: 1.5px; background: var(--fg); transition: transform 0.35s var(--ease), opacity 0.3s var(--ease); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.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(-7.5px) rotate(-45deg); }
@media (min-width: 980px) { .menu-toggle { display: none; } }

.mobile-menu {
  position: fixed; inset: 74px 0 0 0; z-index: 99;
  background: var(--bg);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 40px 24px 48px;
  transform: translateY(-12px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.mobile-menu[data-open="true"] { opacity: 1; transform: none; pointer-events: all; }
.mobile-menu a.mm-link {
  font-family: var(--serif);
  font-size: 40px;
  letter-spacing: -0.02em;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu .mm-foot { font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: 0.06em; }
@media (min-width: 980px) { .mobile-menu { display: none; } }

/* ---------- sections ---------- */
section { position: relative; }
.section { padding: clamp(80px, 12vw, 160px) 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--bg-deep); color: #E9E8E4; }
.section--dark .eyebrow { color: #97948B; }
.section--dark .muted { color: #9A988F; }

.section-head { max-width: 760px; margin-bottom: 64px; }
.section-head .eyebrow { margin-bottom: 22px; }
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.section-head p { margin-top: 22px; color: var(--muted); font-size: 19px; max-width: 580px; }

.lead { font-size: 19px; color: var(--fg-soft); }
.muted { color: var(--muted); }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; padding: 120px 0 64px; }
.hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; animation: heroZoom 9s var(--ease) forwards; mix-blend-mode: multiply; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 78% 8%, rgba(210,78,34,0.10), transparent 55%),
    linear-gradient(180deg, rgba(235,235,232,0.2) 0%, rgba(235,235,232,0.78) 78%, var(--bg) 100%);
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero__inner { position: relative; z-index: 1; }
.hero__intro { display: grid; gap: 24px; max-width: 720px; margin-bottom: clamp(40px, 7vw, 80px); }
.hero__intro .eyebrow { margin-bottom: 6px; }
.hero__cols { display: grid; gap: 20px; }
.hero__cols p { font-size: 15.5px; line-height: 1.7; color: var(--fg-soft); max-width: 420px; }
@media (min-width: 760px) { .hero__cols { grid-template-columns: 1fr 1fr; gap: 40px; } }
.hero__title {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 13vw, 11rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
  font-weight: 400;
}
.hero__title em { font-style: italic; color: var(--accent); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: clamp(36px, 5vw, 56px); align-items: center; }
.hero__scroll { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

/* ---------- services grid ---------- */
.svc-grid { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); }
@media (min-width: 720px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .svc-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }
.svc {
  background: var(--bg);
  padding: 40px 34px 46px;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 320px;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}
.svc:hover { background: var(--bg-deep); color: #E9E8E4; }
.svc:hover .svc__no, .svc:hover .svc__desc { color: #9A988F; }
.svc:hover .svc__arrow { color: var(--accent); }
.svc__no { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: var(--muted); }
.svc__title { font-family: var(--serif); font-size: 28px; line-height: 1.05; letter-spacing: -0.01em; margin-top: 6px; }
.svc__desc { font-size: 15.5px; line-height: 1.7; color: var(--muted); }
.svc__arrow { margin-top: auto; font-family: var(--mono); font-size: 20px; transition: color 0.3s; }

/* ---------- work grid ---------- */
.work-grid { display: grid; gap: 20px; }
@media (min-width: 640px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .work-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.work {
  display: block; background: var(--bg); border: 1px solid var(--border);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.work:hover { transform: translateY(-6px); box-shadow: 0 18px 44px -12px rgba(0,0,0,0.22); }
.work__img { aspect-ratio: 4/3; overflow: hidden; background: var(--bg-alt); }
.work__img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.2); transition: transform 0.8s var(--ease), filter 0.6s var(--ease); }
.work:hover .work__img img { transform: scale(1.05); filter: grayscale(0); }
.work__body { padding: 22px 24px 26px; }
.work__tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.work__title { font-family: var(--serif); font-size: 24px; line-height: 1.1; margin-top: 12px; letter-spacing: -0.01em; }
.work__meta { font-size: 14px; color: var(--muted); margin-top: 10px; }

/* ---------- manifesto ---------- */
.manifesto { padding: clamp(96px, 16vw, 200px) 0; text-align: center; }
.manifesto__quote {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
  max-width: 980px; margin: 0 auto;
}
.manifesto__quote em { font-style: italic; color: var(--accent); }
.manifesto__mark { font-family: var(--serif); font-size: clamp(4rem, 9vw, 8rem); line-height: 0.5; color: var(--accent); display: block; margin-bottom: 18px; }
.manifesto__by { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: #97948B; margin-top: 44px; }

/* ---------- process ---------- */
.process { display: grid; gap: 1px; background: var(--border); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
@media (min-width: 860px) { .process { grid-template-columns: repeat(4, 1fr); } }
.step { background: var(--bg-alt); padding: 44px 30px 50px; display: flex; flex-direction: column; gap: 14px; }
.section--alt .step { background: var(--bg); }
.step__no { font-family: var(--serif); font-size: 56px; line-height: 1; color: var(--accent); letter-spacing: -0.03em; }
.step__title { font-family: var(--serif); font-size: 23px; letter-spacing: -0.01em; }
.step__desc { font-size: 15px; line-height: 1.66; color: var(--muted); }

/* ---------- stats ---------- */
.stats { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); }
@media (min-width: 640px) { .stats { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--bg); padding: 40px 30px; }
.section--dark .stat { background: var(--bg-deep); }
.stat__num { font-family: var(--serif); font-size: clamp(3rem, 5vw, 4.4rem); line-height: 1; letter-spacing: -0.03em; }
.stat__label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-top: 16px; }

/* ---------- principles / text cards ---------- */
.principles { display: grid; gap: 28px; }
@media (min-width: 760px) { .principles { grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); } }
.principle { background: var(--bg); padding: 40px 34px 44px; }
.section--alt .principle { background: var(--bg-alt); }
.principle__no { font-family: var(--mono); font-size: 12px; color: var(--accent); letter-spacing: 0.1em; }
.principle__title { font-family: var(--serif); font-size: 27px; margin-top: 12px; letter-spacing: -0.01em; }
.principle__desc { font-size: 16px; line-height: 1.7; color: var(--muted); margin-top: 14px; }

/* ---------- team / people (monogram, no faces) ---------- */
.people { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); }
@media (min-width: 640px) { .people { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .people { grid-template-columns: repeat(3, 1fr); } }
.person { background: var(--bg); padding: 36px 30px 40px; }
.section--alt .person { background: var(--bg-alt); }
.avatar {
  width: 64px; height: 64px; display: grid; place-items: center;
  font-family: var(--serif); font-size: 24px; color: #fff; letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.person__name { font-family: var(--serif); font-size: 24px; letter-spacing: -0.01em; }
.person__role { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); margin-top: 8px; }
.person__bio { font-size: 15px; line-height: 1.66; color: var(--muted); margin-top: 16px; }

/* ---------- testimonials ---------- */
.quotes { display: grid; gap: 24px; }
@media (min-width: 880px) { .quotes { grid-template-columns: repeat(2, 1fr); } }
.quote-card { background: var(--bg); border: 1px solid var(--border); padding: 40px 36px 36px; display: flex; flex-direction: column; }
.section--alt .quote-card { background: var(--bg); }
.quote-card p { font-family: var(--serif); font-size: 22px; line-height: 1.4; letter-spacing: -0.01em; }
.quote-card__by { margin-top: auto; padding-top: 28px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.quote-card__by strong { color: var(--fg); font-weight: 600; }

/* ---------- faq ---------- */
.faq { border-top: 1px solid var(--border); }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%; display: flex; justify-content: space-between; gap: 24px; align-items: center;
  padding: 28px 4px; text-align: left;
  font-family: var(--serif); font-size: clamp(20px, 2.6vw, 27px); letter-spacing: -0.01em;
  transition: color 0.3s var(--ease);
}
.faq__q:hover { color: var(--accent); }
.faq__icon { flex-shrink: 0; font-family: var(--mono); font-size: 24px; transition: transform 0.35s var(--ease); color: var(--accent); }
.faq__item[data-open="true"] .faq__icon { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq__a-inner { padding: 0 4px 30px; max-width: 760px; color: var(--muted); font-size: 16.5px; line-height: 1.74; }
.faq__item[data-open="true"] .faq__a { max-height: 420px; }

/* ---------- split / about intro ---------- */
.split { display: grid; gap: 44px; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1.05fr 0.95fr; gap: 72px; } }
.split--rev > .split__media { order: -1; }
@media (min-width: 900px) { .split--rev > .split__media { order: 0; } }
.split__media { aspect-ratio: 4/5; overflow: hidden; background: var(--bg-alt); border: 1px solid var(--border); }
.split__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.25); }
.split h2 { font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.04; letter-spacing: -0.02em; }
.split p { margin-top: 22px; color: var(--fg-soft); }
.split p + p { margin-top: 16px; }

/* ---------- big statement page header ---------- */
.page-hero { padding: clamp(120px, 16vw, 200px) 0 clamp(60px, 8vw, 100px); border-bottom: 1px solid var(--border); }
.page-hero .eyebrow { margin-bottom: 26px; }
.page-hero h1 { font-family: var(--serif); font-size: clamp(3rem, 9vw, 7.5rem); line-height: 0.96; letter-spacing: -0.03em; }
.page-hero h1 em { font-style: italic; color: var(--accent); }
.page-hero p { margin-top: 30px; max-width: 620px; font-size: 19px; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--bg-deep); color: #ECEAE5; text-align: center; padding: clamp(90px, 14vw, 170px) 0; }
.cta-band h2 { font-family: var(--serif); font-size: clamp(2.4rem, 6vw, 5rem); line-height: 1.02; letter-spacing: -0.02em; max-width: 900px; margin: 0 auto; }
.cta-band h2 em { font-style: italic; color: var(--accent); }
.cta-band p { margin: 26px auto 0; max-width: 560px; color: #9A988F; }
.cta-band .btn { margin-top: 44px; }
.cta-band .btn--ghost { color: #ECEAE5; border-color: #4A4843; }
.cta-band .btn--ghost:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ---------- form ---------- */
.form { display: grid; gap: 22px; }
.form__row { display: grid; gap: 22px; }
@media (min-width: 640px) { .form__row { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 9px; }
.field label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea, .field select {
  font-family: var(--sans); font-size: 16px; color: var(--fg);
  background: var(--bg); border: 1px solid var(--border); padding: 14px 16px;
  transition: border-color 0.3s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 140px; }
.form__note { font-size: 13px; color: var(--muted); }
.contact-grid { display: grid; gap: 56px; }
@media (min-width: 920px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }
.contact-detail { border-top: 1px solid var(--border); padding: 22px 0; }
.contact-detail dt { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.contact-detail dd { margin: 0; font-family: var(--serif); font-size: 22px; letter-spacing: -0.01em; }

/* ---------- footer ---------- */
.footer { background: var(--bg-deep); color: #B6B4AC; padding: clamp(70px, 10vw, 120px) 0 40px; }
.footer__top { display: grid; gap: 48px; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,0.1); }
@media (min-width: 860px) { .footer__top { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer__brand .brand__name { color: #F2F1EC; }
.footer__brand p { margin-top: 22px; max-width: 320px; font-size: 15px; line-height: 1.7; color: #918F88; }
.footer__col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: #7C7A73; margin-bottom: 20px; }
.footer__col a, .footer__col p { display: block; font-size: 15px; color: #B6B4AC; padding: 6px 0; transition: color 0.3s var(--ease); }
.footer__col a:hover { color: var(--accent); }
.footer__bottom { display: flex; flex-direction: column; gap: 14px; padding-top: 32px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; color: #7C7A73; }
@media (min-width: 720px) { .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; } }
.footer__bottom a:hover { color: var(--accent); }
.footer__mark { font-family: var(--serif); font-size: clamp(3rem, 14vw, 11rem); line-height: 0.8; letter-spacing: -0.03em; color: #211F1C; margin-top: 56px; user-select: none; }

/* ---------- 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__bg img { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- cookie popup ---------- */
.cookie-popup { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: flex-end; justify-content: flex-start; padding: 24px; background: rgba(0,0,0,0.4); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card { background: var(--bg); padding: 32px 36px; max-width: 480px; border: 1px solid var(--fg); }
.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-family: var(--serif); font-size: 26px; letter-spacing: -0.01em; margin-bottom: 12px; }
.cookie-popup__card p { font-size: 14.5px; line-height: 1.66; color: var(--muted); }
.cookie-popup__card p a { color: var(--accent); border-bottom: 1px solid var(--accent); }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 22px; }
.cookie-popup__actions button { padding: 12px 24px; border: 1px solid var(--border); cursor: pointer; font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; transition: background 0.3s, color 0.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); color: #fff; }

/* ---------- legal pages ---------- */
.legal { padding: clamp(60px, 9vw, 120px) 0; }
.legal__body { max-width: 760px; }
.legal__body h2 { font-family: var(--serif); font-size: clamp(1.6rem, 3.4vw, 2.4rem); letter-spacing: -0.01em; margin: 52px 0 16px; }
.legal__body h3 { font-family: var(--serif); font-size: 1.3rem; margin: 32px 0 10px; }
.legal__body p { margin-bottom: 16px; color: var(--fg-soft); font-size: 16.5px; }
.legal__body ul { color: var(--fg-soft); font-size: 16.5px; padding-left: 22px; margin-bottom: 16px; }
.legal__body li { margin-bottom: 8px; }
.legal__updated { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: var(--muted); }

/* ---------- thanks ---------- */
.thanks { min-height: 78vh; display: flex; align-items: center; text-align: center; }
.thanks h1 { font-family: var(--serif); font-size: clamp(3rem, 9vw, 7rem); line-height: 0.98; letter-spacing: -0.03em; }
.thanks h1 em { font-style: italic; color: var(--accent); }
.thanks p { margin: 28px auto 0; max-width: 500px; color: var(--muted); font-size: 19px; }
.thanks .btn { margin-top: 40px; }
