/* palette: bg=#FBF7EE fg=#15120D accent=#C0982F */
/* fonts: display="Playfair Display" body="Lato" mono="Space Mono" */

:root {
  --bg: #FBF7EE;        /* ivory / cream base */
  --bg-alt: #F1E7D2;    /* deeper cream for alternating sections */
  --panel: #FFFFFF;     /* card surface */
  --fg: #15120D;        /* near-black ink */
  --fg-soft: #38322A;   /* softened ink */
  --muted: #7C725F;     /* secondary text */
  --accent: #C0982F;    /* deco gold */
  --accent-deep: #9A761F; /* darker gold for hover */
  --ink: #100E0A;       /* pure dark band */
  --border: rgba(21, 18, 13, 0.14);
  --border-gold: rgba(192, 152, 47, 0.34);
  --serif: 'Playfair Display', ui-serif, Georgia, serif;
  --deco: 'Poiret One', var(--serif);
  --sans: 'Lato', ui-sans-serif, system-ui, sans-serif;
  --mono: 'Space Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1240px;
}

*, *::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.75;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; margin: 0; letter-spacing: -0.02em; }
p { margin: 0; }

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

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-block;
  margin: 0 0 22px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 1px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 12px;
  transform: translateY(-2px);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--fg);
  color: var(--fg);
  background: transparent;
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.btn:hover { background: var(--fg); color: var(--bg); }
.btn--gold { border-color: var(--accent); color: var(--ink); background: var(--accent); }
.btn--gold:hover { background: var(--accent-deep); border-color: var(--accent-deep); color: #fff; }
.btn--ghost-light { border-color: rgba(251,247,238,0.4); color: var(--bg); }
.btn--ghost-light:hover { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.link-arrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .35s var(--ease), color .35s var(--ease);
}
.link-arrow:hover { gap: 14px; color: var(--fg); }

/* ============ HEADER ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 238, 0.86);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.header[data-scrolled="true"] {
  box-shadow: 0 1px 30px -10px rgba(21,18,13,0.28);
  border-bottom-color: var(--border-gold);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  font-family: var(--deco);
  font-size: 25px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand__mark {
  width: 10px; height: 10px;
  border: 1px solid var(--accent);
  transform: rotate(45deg);
  display: inline-block;
}
.nav { display: none; align-items: center; gap: 34px; }
.nav a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-soft);
  position: relative;
  padding: 4px 0;
  transition: color .3s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; 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: 1024px) {
  .nav { display: flex; }
  .header__cta { display: inline-flex; }
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.menu-toggle span {
  width: 24px; height: 1.5px; background: var(--fg);
  transition: transform .35s var(--ease), opacity .3s var(--ease);
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.mobile-menu {
  position: fixed;
  inset: 76px 0 0;
  z-index: 99;
  background: var(--bg);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.mobile-menu[data-open="true"] { opacity: 1; transform: none; pointer-events: all; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 30px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  color: var(--fg);
}
.mobile-menu .btn { margin-top: 24px; justify-content: center; }

/* ============ ANNOUNCEMENT BAR ============ */
.announce {
  background: var(--ink);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 16px;
}
.announce span { color: var(--accent); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--bg);
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroZoom 9s var(--ease) forwards;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(16,14,10,0.86) 0%, rgba(16,14,10,0.6) 46%, rgba(16,14,10,0.28) 100%);
}
.hero__inner { position: relative; z-index: 2; padding: 120px 0 90px; }
.hero .eyebrow { color: var(--accent); }
.hero__title {
  font-size: clamp(3.5rem, 10vw, 9rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 400;
  max-width: 15ch;
}
.hero__title em { font-style: italic; color: var(--accent); }
.hero__lead {
  margin-top: 30px;
  max-width: 52ch;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(251,247,238,0.82);
}
.hero__actions { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 16px; }
.hero__meta {
  position: absolute;
  left: 0; right: 0; bottom: 30px;
  z-index: 2;
}
.hero__meta-row {
  display: flex; flex-wrap: wrap; gap: 30px;
  border-top: 1px solid rgba(251,247,238,0.2);
  padding-top: 22px;
}
.hero__meta-row div { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(251,247,238,0.7); }
.hero__meta-row strong { display: block; font-family: var(--serif); font-size: 26px; letter-spacing: -0.01em; color: var(--accent); margin-bottom: 4px; }

/* ============ SECTIONS ============ */
.section { padding: clamp(80px, 12vw, 160px) 0; }
.section--alt { background: var(--bg-alt); }
.section--ink { background: var(--ink); color: var(--bg); }
.section-head { max-width: 760px; margin-bottom: 64px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.section-head h2 em { font-style: italic; color: var(--accent-deep); }
.section--ink .section-head h2 em { color: var(--accent); }
.section-head p { margin-top: 22px; color: var(--muted); font-size: 18px; max-width: 56ch; }
.section--ink .section-head p { color: rgba(251,247,238,0.72); }

/* deco divider */
.deco-rule {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin: 0 auto;
}
.deco-rule::before, .deco-rule::after {
  content: ""; height: 1px; width: 60px; background: var(--border-gold);
}
.deco-rule span { width: 8px; height: 8px; border: 1px solid var(--accent); transform: rotate(45deg); }

/* ============ SERVICES GRID ============ */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--3, .grid--4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.svc-card {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 40px 32px;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  box-shadow: 0 4px 24px -4px rgba(21,18,13,0.06);
  position: relative;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 44px -10px rgba(21,18,13,0.16);
  border-color: var(--border-gold);
}
.svc-card__num { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; color: var(--accent-deep); }
.svc-card__icon { width: 40px; height: 40px; margin: 20px 0 24px; }
.svc-card__icon svg { width: 100%; height: 100%; stroke: var(--accent-deep); fill: none; }
.svc-card h3 { font-size: 25px; margin-bottom: 14px; }
.svc-card p { color: var(--muted); font-size: 16px; line-height: 1.7; }
.svc-card ul { list-style: none; padding: 0; margin: 20px 0 0; }
.svc-card li { font-size: 14px; color: var(--fg-soft); padding: 7px 0; border-top: 1px solid var(--border); font-family: var(--mono); letter-spacing: 0.04em; }

/* ============ WORK / CASES ============ */
.cases { display: grid; gap: 30px; }
@media (min-width: 900px) { .cases { grid-template-columns: 1fr 1fr; } }
.case {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--bg);
  min-height: 440px;
  display: flex;
  align-items: flex-end;
}
.case:first-child { grid-column: 1 / -1; min-height: 520px; }
.case__img { position: absolute; inset: 0; }
.case__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.case:hover .case__img img { transform: scale(1.06); }
.case__img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(16,14,10,0.9) 0%, rgba(16,14,10,0.15) 65%); }
.case__body { position: relative; z-index: 2; padding: 40px 36px; width: 100%; }
.case__tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); }
.case__body h3 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin: 12px 0 10px; }
.case__body p { color: rgba(251,247,238,0.78); font-size: 15px; max-width: 46ch; margin-bottom: 18px; }
.case__stat { display: flex; gap: 28px; margin-top: 20px; padding-top: 18px; border-top: 1px solid rgba(251,247,238,0.2); }
.case__stat div { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(251,247,238,0.62); }
.case__stat strong { display: block; font-family: var(--serif); font-size: 22px; color: var(--accent); margin-bottom: 2px; }

/* ============ MANIFESTO ============ */
.manifesto { 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: 900px;
  margin: 34px auto 0;
  font-weight: 400;
}
.manifesto__quote em { font-style: italic; color: var(--accent); }
.manifesto__mark {
  font-family: var(--serif);
  font-size: 120px;
  line-height: 0.5;
  color: var(--accent);
  display: block;
  height: 60px;
}
.manifesto__by { margin-top: 44px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(251,247,238,0.6); }

/* ============ PROCESS ============ */
.steps { display: grid; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  align-items: baseline;
}
.step:last-child { border-bottom: 1px solid var(--border); }
@media (min-width: 768px) { .step { grid-template-columns: 120px 1fr 1.4fr; gap: 40px; } }
.step__num { font-family: var(--deco); font-size: 46px; color: var(--accent); line-height: 1; }
.step h3 { font-size: 26px; }
.step p { color: var(--muted); font-size: 16px; }

/* ============ STATS ============ */
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border-gold); border: 1px solid var(--border-gold); }
@media (min-width: 900px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--bg); padding: 44px 28px; text-align: center; }
.section--ink .stat { background: var(--ink); }
.stat strong { display: block; font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 3.6rem); color: var(--accent-deep); letter-spacing: -0.02em; }
.section--ink .stat strong { color: var(--accent); }
.stat span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.section--ink .stat span { color: rgba(251,247,238,0.6); }

/* ============ PRINCIPLES (team alt / text cards) ============ */
.principles { display: grid; gap: 24px; }
@media (min-width: 768px) { .principles { grid-template-columns: 1fr 1fr; } }
.principle {
  border: 1px solid var(--border);
  padding: 34px;
  background: var(--panel);
  display: flex;
  gap: 22px;
  transition: border-color .4s var(--ease), transform .4s var(--ease);
}
.principle:hover { border-color: var(--border-gold); transform: translateY(-4px); }
.avatar {
  flex: 0 0 auto;
  width: 58px; height: 58px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--deco); font-size: 20px; letter-spacing: 0.06em;
  color: var(--ink);
  border: 1px solid var(--accent);
}
.avatar--mono { background: var(--accent); }
.principle h3 { font-size: 21px; margin-bottom: 4px; }
.principle .role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-deep); display: block; margin-bottom: 12px; }
.principle p { color: var(--muted); font-size: 15px; line-height: 1.7; }

/* ============ TESTIMONIALS ============ */
.quotes { display: grid; gap: 24px; }
@media (min-width: 900px) { .quotes { grid-template-columns: 1fr 1fr; } }
.quote {
  border: 1px solid var(--border-gold);
  padding: 40px 36px;
  background: var(--panel);
}
.quote p { font-family: var(--serif); font-size: 21px; line-height: 1.5; font-style: italic; }
.quote footer { margin-top: 24px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.quote footer strong { color: var(--accent-deep); font-weight: 400; }

/* ============ FAQ ============ */
.faq { max-width: 860px; margin: 0 auto; }
.faq details {
  border-top: 1px solid var(--border);
  padding: 8px 0;
}
.faq details:last-child { border-bottom: 1px solid var(--border); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 40px 24px 0;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  position: relative;
  transition: color .3s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0; top: 22px;
  font-family: var(--deco); font-size: 26px; color: var(--accent-deep);
  transition: transform .35s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--accent-deep); }
.faq details p { color: var(--muted); font-size: 16px; padding: 0 40px 26px 0; line-height: 1.75; }

/* ============ CTA BAND ============ */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(2.4rem, 6vw, 5rem); line-height: 1.02; }
.cta-band h2 em { font-style: italic; color: var(--accent); }
.cta-band p { color: rgba(251,247,238,0.74); max-width: 52ch; margin: 24px auto 40px; font-size: 18px; }
.cta-band .btn { margin: 0 8px 12px; }

/* ============ FORM ============ */
.form-wrap { display: grid; gap: 48px; }
@media (min-width: 900px) { .form-wrap { grid-template-columns: 0.9fr 1.1fr; } }
.form-info h2 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.form-info p { color: var(--muted); margin: 20px 0; }
.contact-list { list-style: none; padding: 0; margin: 32px 0 0; }
.contact-list li { padding: 16px 0; border-top: 1px solid var(--border); }
.contact-list span { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 4px; }
.contact-list strong { font-weight: 400; font-size: 17px; }

form.lead-form { display: grid; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-soft); }
.field input, .field textarea, .field select {
  font-family: var(--sans);
  font-size: 16px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--fg);
  transition: border-color .3s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; gap: 20px; }
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-consent { font-size: 13px; color: var(--muted); display: flex; gap: 10px; align-items: flex-start; }
.form-consent input { margin-top: 4px; }
.form-consent a { color: var(--accent-deep); text-decoration: underline; }

/* ============ FOOTER ============ */
.footer { background: var(--ink); color: var(--bg); padding: 80px 0 40px; }
.footer__grid { display: grid; gap: 44px; }
@media (min-width: 768px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.footer .brand { color: var(--bg); }
.footer__intro p { color: rgba(251,247,238,0.6); margin-top: 20px; max-width: 34ch; font-size: 15px; }
.footer__col h4 { font-family: var(--mono); font-size: 11px; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.footer__col a, .footer__col p { display: block; color: rgba(251,247,238,0.72); font-size: 14px; padding: 6px 0; transition: color .3s var(--ease); }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  margin-top: 60px; padding-top: 28px;
  border-top: 1px solid rgba(251,247,238,0.14);
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: rgba(251,247,238,0.5);
}
.footer__bottom a { color: rgba(251,247,238,0.5); }
.footer__bottom a:hover { color: var(--accent); }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
[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:center;padding:24px;background:rgba(16,14,10,0.5);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:34px 36px;max-width:480px;border-radius:2px;border-top:2px solid var(--accent);box-shadow:0 20px 60px -12px rgba(0,0,0,0.5); }
.cookie-popup__label { font-family:var(--mono);font-size:10px;letter-spacing:0.2em;text-transform:uppercase;color:var(--accent-deep);margin-bottom:12px; }
.cookie-popup__card h3 { font-size:22px;margin-bottom:12px; }
.cookie-popup__card p { font-size:14px;color:var(--muted);line-height:1.65; }
.cookie-popup__card a { color:var(--accent-deep);text-decoration:underline; }
.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:11px;letter-spacing:0.12em;text-transform:uppercase;transition:background .3s,color .3s; }
.cookie-popup__actions button:first-child:hover { background:var(--bg-alt); }
.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:var(--ink); }

/* ============ PAGE HEADER (inner pages) ============ */
.page-hero { padding: 140px 0 80px; background: var(--bg-alt); border-bottom: 1px solid var(--border-gold); }
.page-hero h1 { font-size: clamp(2.8rem, 8vw, 6rem); line-height: 1; letter-spacing: -0.03em; }
.page-hero h1 em { font-style: italic; color: var(--accent-deep); }
.page-hero p { margin-top: 24px; max-width: 60ch; color: var(--muted); font-size: 19px; }
.breadcrumb { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 26px; }
.breadcrumb a { color: var(--accent-deep); }

/* ============ PROSE (legal) ============ */
.prose { max-width: 800px; margin: 0 auto; }
.prose h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 48px 0 18px; }
.prose h3 { font-size: 1.3rem; margin: 32px 0 12px; }
.prose p, .prose li { color: var(--fg-soft); font-size: 16px; line-height: 1.8; margin-bottom: 14px; }
.prose ul { padding-left: 22px; }
.prose a { color: var(--accent-deep); text-decoration: underline; }
.prose .updated { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: var(--muted); }

/* ============ THANKS ============ */
.thanks { min-height: 80vh; display: flex; align-items: center; text-align: center; }
.thanks__mark { font-family: var(--deco); font-size: 64px; color: var(--accent); }
.thanks h1 { font-size: clamp(2.6rem, 7vw, 5rem); margin: 20px 0; }
.thanks p { color: var(--muted); max-width: 50ch; margin: 0 auto 34px; font-size: 18px; }

/* two-col intro */
.split { display: grid; gap: 44px; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
.split__media { overflow: hidden; }
.split__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.split__body h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
.split__body p { color: var(--muted); margin-top: 20px; font-size: 17px; }
.split__body .lead-em { font-family: var(--serif); font-size: 22px; font-style: italic; color: var(--fg); line-height: 1.5; margin-top: 24px; }
