/* palette: bg=#F7F0E4 fg=#211C1A accent=#EE5A2B */
/* fonts: display="Fraunces" body="Work Sans" mono="IBM Plex Mono" */

:root {
  --bg: #F7F0E4;          /* warm cream from the reference card */
  --bg-alt: #F0E5D3;      /* alternating deeper cream section */
  --fg: #211C1A;          /* deep espresso near-black text */
  --fg-soft: #4A423C;     /* slightly lighter fg */
  --muted: #8C8172;       /* secondary text */
  --accent: #EE5A2B;      /* vivid orange-red from reference border/text */
  --accent-deep: #C9431A; /* darker accent for hover */
  --cream-2: #FBF6EC;     /* lightest cream for cards */
  --border: rgba(33, 28, 26, 0.14);
  --border-strong: rgba(33, 28, 26, 0.9);
  --serif: 'Fraunces', ui-serif, Georgia, serif;
  --sans: 'Work Sans', ui-sans-serif, system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;
  --script: 'Caveat', cursive;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 28px;
  --radius-lg: 44px;
}

*, *::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; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: 1240px;
  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;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  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);
  letter-spacing: -0.02em;
  line-height: 1.04;
  font-optical-sizing: auto;
}
.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.7;
  color: var(--fg-soft);
  max-width: 46ch;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 9999px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border: 1.5px solid var(--border-strong);
}
.btn--primary { background: var(--accent); color: var(--cream-2); border-color: var(--accent); }
.btn--primary:hover { background: var(--accent-deep); border-color: var(--accent-deep); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--fg); }
.btn--ghost:hover { background: var(--fg); color: var(--bg); transform: translateY(-2px); }
.btn--light { background: var(--cream-2); color: var(--fg); border-color: var(--cream-2); }
.btn--light:hover { background: var(--accent); color: var(--cream-2); border-color: var(--accent); transform: translateY(-2px); }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  transition: gap 0.3s 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(247, 240, 228, 0.82);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
}
.header[data-scrolled="true"] {
  box-shadow: 0 1px 0 var(--border), 0 8px 30px -18px rgba(33, 28, 26, 0.4);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand {
  font-family: var(--serif);
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  font-weight: 500;
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.brand__dot { color: var(--accent); }
.nav { display: none; }
@media (min-width: 900px) {
  .nav { display: flex; align-items: center; gap: 34px; }
}
.nav a {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  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) { .header__cta { display: inline-flex; } }

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
}
@media (min-width: 900px) { .menu-toggle { display: none; } }
.menu-toggle span { width: 18px; height: 1.5px; 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(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); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  padding: 100px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s var(--ease), opacity 0.4s var(--ease);
}
.mobile-menu[data-open="true"] { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--serif);
  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: 28px; align-self: flex-start; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 60px;
}
.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;
}
@keyframes heroZoom { from { transform: scale(1.09); } to { transform: scale(1); } }
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(247,240,228,0.96) 0%, rgba(247,240,228,0.86) 40%, rgba(247,240,228,0.35) 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__card {
  max-width: 780px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 10vw, 9rem);
  letter-spacing: -0.03em;
  line-height: 0.98;
  font-weight: 400;
  margin: 22px 0 0;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero__script {
  font-family: var(--script);
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: -8px;
  transform: rotate(-3deg);
}
.hero p {
  margin: 30px 0 0;
  max-width: 44ch;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--fg-soft);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero__meta {
  position: absolute;
  bottom: 34px;
  right: 0;
  z-index: 2;
  display: none;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fg-soft);
  text-align: right;
  max-width: 220px;
}
@media (min-width: 900px) { .hero__meta { display: block; } }

/* ---------- Stats ---------- */
.stats {
  background: var(--fg);
  color: var(--bg);
}
.stats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 24px;
}
@media (min-width: 768px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }
.stat__num {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cream-2);
}
.stat__num span { color: var(--accent); }
.stat__label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(247,240,228,0.6);
  margin-top: 14px;
}

/* ---------- Section head ---------- */
.section-head {
  display: grid;
  gap: 24px;
  margin-bottom: 64px;
}
@media (min-width: 900px) {
  .section-head {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: end;
  }
}
.section-head .lead { justify-self: start; }
@media (min-width: 900px) { .section-head .lead { justify-self: end; text-align: left; } }

/* ---------- Work grid ---------- */
.work-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .work-grid { grid-template-columns: 1fr 1fr; } }
.case {
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  box-shadow: 0 4px 24px -4px rgba(33,28,26,0.08);
  display: flex;
  flex-direction: column;
}
.case:hover { transform: translateY(-6px); box-shadow: 0 18px 48px -12px rgba(33,28,26,0.2); }
.case__media { aspect-ratio: 16 / 11; overflow: hidden; }
.case__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.case:hover .case__media img { transform: scale(1.05); }
.case__body { padding: 30px 30px 34px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.case__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.case__tag {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 5px 12px;
}
.case__title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.08;
}
.case__desc { color: var(--fg-soft); font-size: 0.98rem; }
.case__foot { margin-top: auto; padding-top: 8px; }

/* ---------- Featured deep dive ---------- */
.feature {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) { .feature { grid-template-columns: 1fr 1fr; gap: 64px; } }
.feature__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 20px 60px -20px rgba(33,28,26,0.35);
}
.feature__media img { width: 100%; height: 100%; object-fit: cover; }
.feature__kv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 28px;
  margin: 34px 0;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.feature__kv dt { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
.feature__kv dd { margin: 6px 0 0; font-family: var(--serif); font-size: 1.5rem; letter-spacing: -0.01em; }
.feature__kv dd span { color: var(--accent); }

/* ---------- Manifesto ---------- */
.manifesto {
  background: var(--fg);
  color: var(--bg);
  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: 940px;
  margin: 0 auto;
  font-weight: 300;
}
.manifesto__quote em { color: var(--accent); font-style: italic; }
.manifesto__mark {
  font-family: var(--serif);
  font-size: clamp(6rem, 14vw, 12rem);
  line-height: 0.5;
  color: var(--accent);
  display: block;
  height: 0.55em;
}
.manifesto__by {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(247,240,228,0.55);
  margin-top: 46px;
}

/* ---------- Services list ---------- */
.svc-list { display: grid; gap: 0; border-top: 1px solid var(--border); }
.svc-item {
  display: grid;
  gap: 16px;
  padding: 42px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.4s var(--ease), padding 0.4s var(--ease);
}
@media (min-width: 900px) {
  .svc-item { grid-template-columns: 68px 1fr 1.1fr; gap: 40px; align-items: start; }
  .svc-item:hover { padding-left: 22px; padding-right: 22px; background: var(--cream-2); }
}
.svc-item__num { font-family: var(--mono); font-size: 13px; color: var(--accent); letter-spacing: 0.05em; }
.svc-item__title { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.3rem); letter-spacing: -0.02em; line-height: 1.05; }
.svc-item__body { color: var(--fg-soft); font-size: 1rem; }
.svc-item__body ul { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.svc-item__body ul li {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 5px 12px;
  color: var(--muted);
}

/* ---------- Process / steps ---------- */
.steps { display: grid; gap: 26px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1050px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  background: var(--cream-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px 36px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
}
.step__num {
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.step__title { font-family: var(--serif); font-size: 1.35rem; letter-spacing: -0.01em; margin: 22px 0 10px; }
.step__body { color: var(--fg-soft); font-size: 0.95rem; }

/* ---------- Team / principles (text only, monograms) ---------- */
.people { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .people { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1050px) { .people { grid-template-columns: repeat(3, 1fr); } }
.person {
  background: var(--cream-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--cream-2);
  letter-spacing: -0.01em;
}
.person__name { font-family: var(--serif); font-size: 1.4rem; letter-spacing: -0.01em; }
.person__role { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); margin-top: 4px; }
.person__bio { color: var(--fg-soft); font-size: 0.95rem; }

/* ---------- Testimonial ---------- */
.quote-band { background: var(--bg-alt); }
.testi {
  display: grid;
  gap: 22px;
}
.testi__q {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.4vw, 2.6rem);
  line-height: 1.28;
  letter-spacing: -0.01em;
  max-width: 26ch;
}
.testi__meta { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
.testi__meta strong { color: var(--accent); font-weight: 400; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 0; border-top: 1px solid var(--border); }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 28px 0;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  letter-spacing: -0.01em;
}
.faq__icon { flex: none; width: 26px; height: 26px; position: relative; }
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; background: var(--accent); transition: transform 0.35s var(--ease);
  top: 50%; left: 50%;
}
.faq__icon::before { width: 16px; height: 1.5px; transform: translate(-50%, -50%); }
.faq__icon::after { width: 1.5px; height: 16px; transform: translate(-50%, -50%); }
.faq__item[data-open="true"] .faq__icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq__a p { padding: 0 0 30px; color: var(--fg-soft); max-width: 62ch; }

/* ---------- CTA ---------- */
.cta {
  background: var(--accent);
  color: var(--cream-2);
  border-radius: var(--radius-lg);
  padding: clamp(48px, 8vw, 96px) clamp(28px, 6vw, 88px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 5rem);
  letter-spacing: -0.02em;
  line-height: 1.02;
  font-weight: 400;
}
.cta h2 em { font-style: italic; }
.cta p { max-width: 44ch; margin: 24px auto 0; color: rgba(251,246,236,0.9); }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 40px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: 48px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 0.9fr 1.1fr; gap: 72px; } }
.contact-info { display: grid; gap: 30px; align-content: start; }
.contact-block__label { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent); margin-bottom: 8px; }
.contact-block__val { font-family: var(--serif); font-size: 1.3rem; letter-spacing: -0.01em; line-height: 1.4; }
.contact-block__val a:hover { color: var(--accent); }

.form { display: grid; gap: 22px; }
.form__row { display: grid; gap: 22px; }
@media (min-width: 640px) { .form__row { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 8px; }
.field label { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
.field input, .field textarea, .field select {
  font-family: var(--sans);
  font-size: 16px;
  padding: 15px 18px;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  background: var(--cream-2);
  color: var(--fg);
  transition: border-color 0.3s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); }
.form__consent { display: flex; gap: 12px; align-items: flex-start; font-size: 0.85rem; color: var(--muted); }
.form__consent input { margin-top: 4px; accent-color: var(--accent); }
.form__consent a { color: var(--accent); text-decoration: underline; }

/* ---------- Footer ---------- */
.footer {
  background: var(--fg);
  color: var(--bg);
  padding: clamp(64px, 8vw, 110px) 0 40px;
}
.footer__top {
  display: grid;
  gap: 44px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(247,240,228,0.16);
}
@media (min-width: 900px) { .footer__top { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer__brand { font-family: var(--serif); font-size: 2rem; letter-spacing: -0.02em; }
.footer__brand .brand__dot { color: var(--accent); }
.footer__tag { color: rgba(247,240,228,0.62); margin-top: 18px; max-width: 34ch; font-size: 0.98rem; }
.footer__col h4 { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(247,240,228,0.5); margin-bottom: 20px; }
.footer__col ul { display: grid; gap: 12px; }
.footer__col a { color: rgba(247,240,228,0.82); font-size: 0.96rem; transition: color 0.3s var(--ease); }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  justify-content: space-between;
  padding-top: 30px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(247,240,228,0.5);
}
.footer__bottom a:hover { color: var(--accent); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: clamp(120px, 16vw, 200px) 0 clamp(50px, 7vw, 90px); }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: -0.03em;
  line-height: 1.0;
  font-weight: 400;
  max-width: 15ch;
}
.page-hero h1 em { font-style: italic; color: var(--accent); }
.page-hero p { margin-top: 30px; max-width: 52ch; font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--fg-soft); }

/* ---------- Prose (legal) ---------- */
.prose { max-width: 760px; }
.prose h2 { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: -0.01em; margin: 48px 0 16px; }
.prose h3 { font-family: var(--serif); font-size: 1.3rem; margin: 32px 0 12px; }
.prose p { margin: 0 0 18px; color: var(--fg-soft); }
.prose ul { list-style: disc; padding-left: 22px; margin: 0 0 18px; color: var(--fg-soft); }
.prose ul li { margin-bottom: 8px; }
.prose a { color: var(--accent); text-decoration: underline; }
.prose strong { color: var(--fg); }

/* ---------- Thanks ---------- */
.thanks { min-height: 84vh; display: flex; align-items: center; text-align: center; }
.thanks__inner { max-width: 640px; margin: 0 auto; }
.thanks__mark {
  width: 96px; height: 96px; border-radius: 50%; background: var(--accent);
  display: grid; place-items: center; margin: 0 auto 34px;
}
.thanks__mark svg { width: 44px; height: 44px; }
.thanks h1 { font-family: var(--serif); font-size: clamp(2.6rem, 7vw, 5rem); letter-spacing: -0.02em; font-weight: 400; }
.thanks p { margin: 24px auto 0; max-width: 44ch; color: var(--fg-soft); }

/* ---------- 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; }
.reveal[style*="--i"] { transition-delay: calc(var(--i) * 80ms); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__bg img { animation: none; }
}

/* ---------- Cookie popup ---------- */
.cookie-popup { position:fixed;inset:0;z-index:9999;display:flex;align-items:flex-end;justify-content:flex-end;padding:24px;background:rgba(33,28,26,0.4);backdrop-filter:blur(4px);-webkit-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:var(--radius);box-shadow:0 30px 80px -24px rgba(33,28,26,0.5);border:1px solid var(--border); }
.cookie-popup__label { font-family:var(--mono);font-size:10px;text-transform:uppercase;letter-spacing:0.14em;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:0.9rem;color:var(--fg-soft);line-height:1.6; }
.cookie-popup__actions { display:flex;gap:12px;margin-top:22px; }
.cookie-popup__actions button { padding:12px 26px;border:1.5px solid var(--border-strong);cursor:pointer;font-family:var(--mono);font-size:11px;text-transform:uppercase;letter-spacing:0.1em;border-radius:9999px;transition:background .3s var(--ease),color .3s var(--ease); }
.cookie-popup__actions button:first-child:hover { background:var(--fg);color:var(--bg); }
.cookie-popup__actions button:last-child { background:var(--accent);color:var(--cream-2);border-color:var(--accent); }
.cookie-popup__actions button:last-child:hover { background:var(--accent-deep);border-color:var(--accent-deep); }
