/* palette: bg=#E7ECD4 fg=#2C3620 accent=#C65C7E */
/* fonts: display="Fraunces" body="Space Grotesk" mono="Silkscreen" */

:root {
  --bg: #E7ECD4;         /* pale grass-cream — dominant page background */
  --bg-alt: #F4EDD9;     /* warm cream — alternating sections & panels */
  --bg-green: #A9C17E;   /* saturated grass green — hero band / accents */
  --fg: #2C3620;         /* deep olive ink — primary text */
  --fg-soft: #44532F;    /* slightly lighter foreground */
  --muted: #78855D;      /* secondary text */
  --accent: #C65C7E;     /* blossom rose — links & CTA */
  --accent-deep: #A84462;/* deeper rose for hover */
  --wood: #9C6239;       /* wood brown — decorative */
  --sky: #9FC7D6;        /* water blue — decorative */
  --border: rgba(44, 54, 32, 0.16);
  --border-strong: rgba(44, 54, 32, 0.32);
  --shadow: 6px 6px 0 rgba(44, 54, 32, 0.10);
  --shadow-hover: 9px 9px 0 rgba(44, 54, 32, 0.14);
  --serif: 'Fraunces', ui-serif, Georgia, 'Times New Roman', serif;
  --sans: 'Space Grotesk', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --mono: 'Silkscreen', ui-monospace, 'Courier New', 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);
  font-size: 17px;
  line-height: 1.75;
  color: var(--fg-soft);
  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 { font-family: var(--serif); font-weight: 400; color: var(--fg); margin: 0; }
p { margin: 0 0 1.1em; }
::selection { background: var(--accent); color: var(--bg-alt); }

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

.section { padding: clamp(72px, 12vw, 156px) 0; }
.section--cream { background: var(--bg-alt); }
.section--tight { padding: clamp(56px, 8vw, 104px) 0; }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
}
.eyebrow::before {
  content: "";
  width: 9px; height: 9px;
  background: var(--accent);
  display: inline-block;
  image-rendering: pixelated;
  box-shadow: 3px 0 0 var(--accent), 0 3px 0 var(--accent), 3px 3px 0 var(--bg-green);
}
.eyebrow--sky { color: var(--fg-soft); }
.eyebrow--sky::before { background: var(--wood); box-shadow: 3px 0 0 var(--wood), 0 3px 0 var(--wood), 3px 3px 0 var(--sky); }

.h-section { font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 1.04; letter-spacing: -0.025em; }
.lead { font-size: clamp(1.12rem, 2.2vw, 1.32rem); line-height: 1.7; color: var(--fg-soft); max-width: 60ch; }
.muted { color: var(--muted); }
em { font-style: normal; color: var(--accent); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 14px 26px;
  border-radius: 6px;
  background: var(--accent);
  color: var(--bg-alt);
  border: 1.5px solid var(--fg);
  box-shadow: 4px 4px 0 var(--fg);
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s var(--ease);
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--fg); background: var(--accent-deep); }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--fg); }
.btn--ghost { background: var(--bg-alt); color: var(--fg); }
.btn--ghost:hover { background: #fff; }
.btn--sm { padding: 10px 18px; font-size: 13px; box-shadow: 3px 3px 0 var(--fg); }
.btn--sm:hover { box-shadow: 5px 5px 0 var(--fg); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--fg);
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 3px;
  transition: gap 0.2s var(--ease), color 0.2s var(--ease);
}
.link-arrow:hover { gap: 14px; color: var(--accent); }
.link-arrow::after { content: "→"; }

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(231, 236, 212, 0.86);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1.5px solid transparent;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.header[data-scrolled="true"] {
  box-shadow: 0 6px 24px -12px rgba(44, 54, 32, 0.4);
  border-bottom-color: var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark {
  font-family: var(--mono);
  font-size: 17px;
  color: var(--fg);
  letter-spacing: 0.02em;
}
.brand__dot {
  width: 12px; height: 12px;
  background: var(--accent);
  display: inline-block;
  box-shadow: 4px 0 0 var(--bg-green), 0 4px 0 var(--sky);
  image-rendering: pixelated;
  flex: none;
}
.nav { display: none; gap: 30px; }
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-soft);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.25s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--fg); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.nav__cta { display: none; }
@media (min-width: 900px) {
  .nav { display: flex; }
  .nav__cta { display: inline-flex; }
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  border: 1.5px solid var(--fg);
  border-radius: 6px;
  background: var(--bg-alt);
}
.menu-toggle span { display: block; width: 18px; height: 2px; background: var(--fg); margin: 0 auto; transition: transform 0.25s var(--ease), opacity 0.2s var(--ease); }
.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); }
@media (min-width: 900px) { .menu-toggle { display: none; } }

/* ---------- mobile menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 72px 0 0;
  z-index: 99;
  background: var(--bg);
  padding: 32px 24px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
}
.mobile-menu[data-open="true"] { opacity: 1; transform: none; pointer-events: all; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 6px; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--fg);
  padding: 14px 0;
  border-bottom: 1.5px solid var(--border);
}
.mobile-menu .btn { margin-top: 28px; justify-content: center; }
@media (min-width: 900px) { .mobile-menu { display: none; } }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--bg-alt);
}
.hero__bg { position: absolute; inset: 0; z-index: -2; 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::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(44,54,32,0.25) 0%, rgba(44,54,32,0.55) 55%, rgba(44,54,32,0.86) 100%),
    linear-gradient(90deg, rgba(44,54,32,0.35), rgba(44,54,32,0.05));
}
.hero__inner { padding: 0 0 clamp(56px, 9vw, 108px); max-width: 940px; }
.hero .eyebrow { color: #F2D6DF; }
.hero .eyebrow::before { box-shadow: 3px 0 0 var(--accent), 0 3px 0 var(--accent), 3px 3px 0 #F4EDD9; }
.hero h1 {
  color: var(--bg-alt);
  font-size: clamp(3.1rem, 9.4vw, 8.4rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 300;
  margin-bottom: 26px;
}
.hero h1 em { color: #F0B7C8; font-style: italic; }
.hero__sub { font-size: clamp(1.05rem, 2vw, 1.28rem); line-height: 1.65; max-width: 60ch; color: #EDEFE1; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.hero__scroll {
  position: absolute;
  right: 24px; bottom: 28px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #EDEFE1;
  writing-mode: vertical-rl;
  opacity: 0.7;
}

/* ---------- featured / lead split ---------- */
.lead-split { display: grid; gap: 40px; align-items: center; }
@media (min-width: 940px) { .lead-split { grid-template-columns: 1.05fr 0.95fr; gap: 64px; } }
.lead-split__media {
  position: relative;
  border: 1.5px solid var(--fg);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}
.lead-split__media img { width: 100%; height: 100%; object-fit: cover; }
.lead-split__tag {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--bg-alt);
  color: var(--fg);
  padding: 7px 12px;
  border: 1.5px solid var(--fg);
  border-radius: 4px;
}
.lead-split h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); line-height: 1.06; letter-spacing: -0.02em; margin-bottom: 22px; }
.lead-split .meta-row { display: flex; flex-wrap: wrap; gap: 22px; margin: 26px 0 30px; }
.meta-row .meta__k { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 4px; }
.meta-row .meta__v { font-family: var(--serif); font-size: 1.4rem; color: var(--fg); }

/* ---------- section head ---------- */
.section-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 68px); }
.section-head--split { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; max-width: none; }

/* ---------- card grid ---------- */
.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: 1fr; }
.grid--2 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--bg-alt);
  border: 1.5px solid var(--fg);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease);
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-hover); }
.card__media { aspect-ratio: 16 / 11; overflow: hidden; border-bottom: 1.5px solid var(--fg); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.card__cat { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.card__title { font-size: 1.5rem; line-height: 1.14; letter-spacing: -0.01em; margin-bottom: 12px; }
.card__text { font-size: 15px; color: var(--fg-soft); margin-bottom: 20px; }
.card__foot { margin-top: auto; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: var(--muted); display: flex; justify-content: space-between; align-items: center; }

/* ---------- numbered service list ---------- */
.svc-list { border-top: 1.5px solid var(--fg); }
.svc {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px 26px;
  padding: 34px 0;
  border-bottom: 1.5px solid var(--fg);
  align-items: start;
}
@media (min-width: 860px) { .svc { grid-template-columns: 90px 1fr 1.1fr; gap: 40px; align-items: center; } }
.svc__num { font-family: var(--mono); font-size: 13px; color: var(--accent); letter-spacing: 0.1em; padding-top: 4px; }
.svc__title { font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1.08; letter-spacing: -0.02em; }
.svc__desc { font-size: 16px; color: var(--fg-soft); grid-column: 1 / -1; }
@media (min-width: 860px) { .svc__desc { grid-column: auto; } }
.svc:hover .svc__title { color: var(--accent); transition: color 0.2s var(--ease); }

/* ---------- manifesto (dark inverted band) ---------- */
.manifesto {
  background: var(--fg);
  color: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(244,237,217,0.10) 1.5px, transparent 1.6px);
  background-size: 22px 22px;
  opacity: 0.5;
  pointer-events: none;
}
.manifesto__inner { position: relative; text-align: center; max-width: 960px; margin: 0 auto; }
.manifesto .eyebrow { color: #F0B7C8; justify-content: center; }
.manifesto .eyebrow::before { box-shadow: 3px 0 0 var(--accent), 0 3px 0 var(--accent), 3px 3px 0 var(--bg-green); }
.manifesto__quote {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.85rem, 4.6vw, 3.7rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--bg-alt);
}
.manifesto__quote em { color: #F0B7C8; font-style: italic; }
.manifesto__sig { margin-top: 34px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bg-green); }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5px; background: var(--fg); border: 1.5px solid var(--fg); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); }
@media (min-width: 860px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--bg-alt); padding: 34px 26px; }
.stat__num { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.4rem); line-height: 1; color: var(--fg); letter-spacing: -0.02em; }
.stat__num span { color: var(--accent); }
.stat__label { margin-top: 12px; font-size: 14px; color: var(--muted); }

/* ---------- principles / how we work ---------- */
.principle {
  border: 1.5px solid var(--fg);
  border-radius: 8px;
  padding: 30px 28px 32px;
  background: var(--bg);
  box-shadow: var(--shadow);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
  height: 100%;
}
.principle:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-hover); }
.principle__badge {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1.5px solid var(--fg);
  border-radius: 6px;
  background: var(--bg-green);
  font-family: var(--mono);
  font-size: 14px;
  color: var(--fg);
  margin-bottom: 22px;
}
.principle:nth-child(2) .principle__badge { background: var(--sky); }
.principle:nth-child(3) .principle__badge { background: #F0B7C8; }
.principle:nth-child(4) .principle__badge { background: #E4C873; }
.principle h3 { font-size: 1.4rem; line-height: 1.14; margin-bottom: 12px; }
.principle p { font-size: 15px; color: var(--fg-soft); margin: 0; }

/* ---------- testimonials ---------- */
.quote-card {
  background: var(--bg-alt);
  border: 1.5px solid var(--fg);
  border-radius: 8px;
  padding: 34px 30px 30px;
  box-shadow: var(--shadow);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.quote-card__mark { font-family: var(--serif); font-size: 4rem; line-height: 0.6; color: var(--accent); height: 34px; }
.quote-card p { font-family: var(--serif); font-size: 1.22rem; line-height: 1.5; color: var(--fg); font-weight: 400; }
.quote-card__who { margin-top: auto; padding-top: 22px; display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 44px; height: 44px; flex: none;
  border-radius: 6px;
  display: grid; place-items: center;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--fg);
  border: 1.5px solid var(--fg);
}
.quote-card__name { font-family: var(--sans); font-weight: 600; font-size: 15px; color: var(--fg); }
.quote-card__role { font-size: 13px; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { border-top: 1.5px solid var(--fg); max-width: 900px; }
.faq__item { border-bottom: 1.5px solid var(--fg); }
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  text-align: left;
  padding: 26px 4px;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  color: var(--fg);
  line-height: 1.2;
}
.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.3s var(--ease); }
.faq__icon::before { top: 12px; left: 3px; width: 20px; height: 2.5px; }
.faq__icon::after { left: 12px; top: 3px; width: 2.5px; height: 20px; }
.faq__item[data-open="true"] .faq__icon::after { transform: scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq__a-inner { padding: 0 4px 28px; color: var(--fg-soft); font-size: 16px; max-width: 68ch; }
.faq__item[data-open="true"] .faq__a { max-height: 400px; }

/* ---------- CTA band ---------- */
.cta {
  background: var(--bg-green);
  border-top: 1.5px solid var(--fg);
  border-bottom: 1.5px solid var(--fg);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(44,54,32,0.10) 1.5px, transparent 1.6px);
  background-size: 20px 20px;
  opacity: 0.6;
}
.cta__inner { position: relative; text-align: center; max-width: 780px; margin: 0 auto; }
.cta h2 { font-size: clamp(2.2rem, 6vw, 4.4rem); line-height: 1.02; letter-spacing: -0.025em; color: var(--fg); margin-bottom: 20px; }
.cta p { color: var(--fg-soft); font-size: 1.1rem; max-width: 54ch; margin-inline: auto; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 34px; }

/* ---------- contact form ---------- */
.form-wrap { display: grid; gap: 44px; }
@media (min-width: 940px) { .form-wrap { grid-template-columns: 1fr 0.85fr; gap: 72px; } }
.form { display: grid; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; 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-alt);
  border: 1.5px solid var(--fg);
  border-radius: 6px;
  padding: 13px 15px;
  transition: box-shadow 0.18s var(--ease), transform 0.18s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; box-shadow: 4px 4px 0 var(--accent); transform: translate(-1px, -1px); }
.field textarea { resize: vertical; min-height: 130px; }
.field--row { display: grid; gap: 20px; }
@media (min-width: 560px) { .field--row { grid-template-columns: 1fr 1fr; } }
.form__note { font-size: 13px; color: var(--muted); }
.form__note a { color: var(--accent); border-bottom: 1px solid var(--accent); }

.contact-aside { display: flex; flex-direction: column; gap: 28px; }
.contact-block { border: 1.5px solid var(--fg); border-radius: 8px; background: var(--bg-alt); padding: 26px 26px; box-shadow: var(--shadow); }
.contact-block h3 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.contact-block p { margin: 0; color: var(--fg); font-size: 16px; }
.contact-block a { color: var(--fg); }
.contact-block a:hover { color: var(--accent); }

/* ---------- page hero (interior) ---------- */
.page-hero { padding: clamp(120px, 16vw, 180px) 0 clamp(56px, 8vw, 96px); background: var(--bg-alt); border-bottom: 1.5px solid var(--fg); }
.page-hero h1 { font-size: clamp(2.8rem, 8vw, 6.2rem); line-height: 0.98; letter-spacing: -0.03em; font-weight: 300; max-width: 16ch; }
.page-hero h1 em { font-style: italic; }
.page-hero p { margin-top: 26px; max-width: 58ch; font-size: clamp(1.05rem, 2vw, 1.24rem); color: var(--fg-soft); }

/* ---------- prose (legal) ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 44px 0 16px; letter-spacing: -0.015em; }
.prose h3 { font-size: 1.2rem; margin: 28px 0 10px; }
.prose p, .prose li { font-size: 16px; color: var(--fg-soft); }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--accent); border-bottom: 1px solid var(--accent); }
.prose__meta { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 40px; }

/* ---------- thanks ---------- */
.thanks { min-height: 78vh; display: grid; place-items: center; text-align: center; padding: 120px 20px; }
.thanks__inner { max-width: 620px; }
.thanks h1 { font-size: clamp(2.6rem, 7vw, 5rem); line-height: 1; letter-spacing: -0.03em; font-weight: 300; margin-bottom: 22px; }
.thanks__badge { width: 76px; height: 76px; margin: 0 auto 30px; border: 1.5px solid var(--fg); border-radius: 8px; background: var(--bg-green); display: grid; place-items: center; box-shadow: var(--shadow); font-family: var(--mono); color: var(--fg); font-size: 26px; }

/* ---------- footer ---------- */
.footer { background: var(--fg); color: #C9D2B4; padding: clamp(64px, 8vw, 100px) 0 40px; }
.footer__top { display: grid; gap: 44px; padding-bottom: 52px; border-bottom: 1px solid rgba(244,237,217,0.14); }
@media (min-width: 760px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; } }
.footer__brand .brand__mark { color: var(--bg-alt); }
.footer__tag { margin-top: 20px; max-width: 34ch; color: #B8C39C; font-size: 15px; }
.footer__col h4 { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bg-green); margin-bottom: 18px; font-weight: 400; }
.footer__col a, .footer__col p { display: block; color: #C9D2B4; font-size: 15px; margin-bottom: 11px; transition: color 0.2s var(--ease); }
.footer__col a:hover { color: #F0B7C8; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; padding-top: 28px; font-size: 12.5px; color: #93A177; }
.footer__bottom .footer__legal { display: flex; flex-wrap: wrap; gap: 18px; }
.footer__bottom a:hover { color: #F0B7C8; }

/* ---------- 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(44,54,32,0.4); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity 0.3s var(--ease); }
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card { background: var(--bg); padding: 30px 32px; max-width: 480px; border: 1.5px solid var(--fg); border-radius: 8px; box-shadow: var(--shadow-hover); }
.cookie-popup__label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.cookie-popup__card h3 { font-size: 1.4rem; line-height: 1.15; margin-bottom: 12px; }
.cookie-popup__card p { font-size: 14px; color: var(--fg-soft); margin: 0; }
.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: 11px 22px; border: 1.5px solid var(--fg); border-radius: 6px; cursor: pointer; font-size: 14px; font-weight: 600; background: var(--bg-alt); color: var(--fg); transition: transform 0.16s var(--ease), box-shadow 0.16s var(--ease); }
.cookie-popup__actions button:hover { transform: translate(-1px,-1px); box-shadow: 3px 3px 0 var(--fg); }
.cookie-popup__actions button:last-child { background: var(--accent); color: var(--bg-alt); }

/* ---------- misc ---------- */
.divider-note { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.tag-inline { display: inline-block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; background: var(--bg-green); color: var(--fg); padding: 5px 10px; border: 1.5px solid var(--fg); border-radius: 4px; margin: 0 6px 8px 0; }
.pixel-strip { height: 8px; background:
  repeating-linear-gradient(90deg, var(--bg-green) 0 20px, var(--sky) 20px 40px, #F0B7C8 40px 60px, var(--wood) 60px 80px);
  image-rendering: pixelated; }
