/* palette: bg=#F3ECD8 fg=#15120B accent=#B08830 */
/* fonts: display="Playfair Display" body="Jost" mono="Space Mono" */

:root {
  --bg: #F3ECD8;        /* champagne cream — dominant background */
  --bg-alt: #EAE0C4;    /* deeper cream — alternating sections */
  --bg-card: #FBF7EC;   /* lifted card surface */
  --fg: #15120B;        /* near-black ink */
  --fg-soft: #2C271B;   /* softer ink */
  --muted: #6E6650;     /* secondary text */
  --accent: #B08830;    /* antique gold */
  --accent-deep: #8A6A1E; /* darker gold for hover */
  --accent-soft: rgba(176, 136, 48, 0.16);
  --dark: #16130C;      /* inverted band background */
  --dark-soft: #221E14;
  --cream-on-dark: #EFE7D2;
  --border: rgba(21, 18, 11, 0.16);
  --border-gold: rgba(176, 136, 48, 0.45);
  --serif: 'Playfair Display', ui-serif, Georgia, serif;
  --sans: 'Jost', ui-sans-serif, system-ui, sans-serif;
  --mono: 'Space Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  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; }
p { margin: 0; }

/* ---------- layout helpers ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }
.section { padding: clamp(80px, 12vw, 160px) 0; position: relative; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--dark); color: var(--cream-on-dark); }
.section--tight { padding: clamp(56px, 8vw, 96px) 0; }

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

.lead {
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  line-height: 1.7;
  color: var(--fg-soft);
  max-width: 60ch;
}
.section--dark .lead { color: var(--cream-on-dark); }

/* deco divider rule */
.deco-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto;
}
.deco-rule span { height: 1px; width: 90px; background: var(--border-gold); }
.deco-rule i {
  width: 9px; height: 9px;
  border: 1px solid var(--accent);
  transform: rotate(45deg);
  display: inline-block;
}

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(243, 236, 216, 0.86);
  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 8px 30px -18px rgba(21, 18, 11, 0.4);
  border-bottom-color: var(--border-gold);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border: 1px solid var(--accent);
  position: relative;
}
.brand__mark::before {
  content: "";
  position: absolute; inset: 4px;
  background:
    conic-gradient(from 0deg, var(--accent) 0 8deg, transparent 8deg 30deg,
    var(--accent) 30deg 38deg, transparent 38deg 60deg,
    var(--accent) 60deg 68deg, transparent 68deg 90deg,
    var(--accent) 90deg 98deg, transparent 98deg 120deg);
  opacity: 0.55;
  clip-path: polygon(50% 50%, 100% 0, 100% 100%, 0 100%, 0 0);
  border-radius: 50%;
}
.brand__name {
  font-family: var(--serif);
  font-size: 1.18rem;
  letter-spacing: 0.02em;
}
.brand__name b { font-weight: 400; color: var(--accent-deep); }

.nav { display: none; gap: 34px; align-items: center; }
.nav a {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--fg-soft);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  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 a[aria-current="page"] { color: var(--fg); }
.nav a[aria-current="page"]::after { width: 100%; }

.header__cta { display: none; }
@media (min-width: 980px) {
  .nav { display: flex; }
  .header__cta { display: inline-flex; }
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 9999px;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.btn--solid { background: var(--fg); color: var(--bg); }
.btn--solid:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 12px 30px -12px rgba(138,106,30,0.7); }
.btn--gold { background: var(--accent); color: #fff; }
.btn--gold:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 12px 30px -12px rgba(138,106,30,0.7); }
.btn--ghost { border: 1px solid var(--border); color: var(--fg); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-deep); transform: translateY(-2px); }
.section--dark .btn--ghost { border-color: rgba(239,231,210,0.3); color: var(--cream-on-dark); }
.section--dark .btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
  transition: gap 0.3s var(--ease);
}
.arrow-link:hover { gap: 14px; color: var(--fg); }
.section--dark .arrow-link { color: var(--accent); }

/* mobile menu */
.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 0.35s var(--ease), opacity 0.35s 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); }
@media (min-width: 980px) { .menu-toggle { display: none; } }

.mobile-menu {
  position: fixed;
  inset: 76px 0 0;
  background: var(--bg);
  z-index: 99;
  padding: 40px 24px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  display: flex;
  flex-direction: column;
}
.mobile-menu[data-open="true"] { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 1.8rem;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu .btn { margin-top: 30px; align-self: flex-start; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--cream-on-dark);
}
.hero__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroZoom 9s var(--ease) forwards;
}
@keyframes heroZoom { from { transform: scale(1.1); } to { transform: scale(1); } }
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,10,6,0.78) 0%, rgba(12,10,6,0.6) 45%, rgba(12,10,6,0.86) 100%);
}
.hero__sun {
  position: absolute;
  top: -20%; right: -10%;
  width: 70vmax; height: 70vmax;
  z-index: 1;
  background: repeating-conic-gradient(from 0deg, rgba(176,136,48,0.10) 0deg 4deg, transparent 4deg 11deg);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.7;
}
.hero__inner { position: relative; z-index: 2; padding: 120px 0 80px; }
.hero .eyebrow { color: var(--accent); }
.hero h1 {
  font-size: clamp(3.2rem, 10vw, 8.4rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 400;
  max-width: 16ch;
  margin: 0 0 30px;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero__sub { max-width: 48ch; color: rgba(239,231,210,0.82); font-size: clamp(1rem, 2vw, 1.2rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }
.hero__meta {
  position: absolute;
  bottom: 34px; left: 0; right: 0;
  z-index: 2;
}
.hero__meta-row {
  display: flex; flex-wrap: wrap; gap: 28px;
  border-top: 1px solid rgba(239,231,210,0.18);
  padding-top: 22px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(239,231,210,0.6);
}
.hero__meta-row span b { color: var(--accent); font-weight: 400; }

/* ---------- section heads ---------- */
.head { max-width: 760px; margin-bottom: clamp(44px, 6vw, 72px); }
.head h2 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}
.head--center { margin-left: auto; margin-right: auto; text-align: center; }
.head--center .eyebrow { justify-content: center; }
.head p { margin-top: 22px; }

/* ---------- manifesto ---------- */
.manifesto { text-align: center; }
.manifesto__statement {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 5vw, 3.6rem);
  line-height: 1.18;
  letter-spacing: -0.015em;
  max-width: 17ch;
  margin: 0 auto;
}
.manifesto__statement em { font-style: italic; color: var(--accent); }
.manifesto__quotemark {
  font-family: var(--serif);
  font-size: clamp(5rem, 14vw, 11rem);
  line-height: 0.6;
  color: var(--accent);
  display: block;
  height: 0.5em;
  margin-bottom: 10px;
}
.manifesto__by {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 38px;
}
.section--dark .manifesto__by { color: rgba(239,231,210,0.55); }

/* essay / manifesto long-form */
.essay { max-width: 760px; margin: 0 auto; }
.essay p { font-size: clamp(1.08rem, 2.2vw, 1.26rem); line-height: 1.78; margin-bottom: 1.5em; color: var(--fg-soft); }
.essay p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 3.6em;
  float: left;
  line-height: 0.78;
  padding: 6px 14px 0 0;
  color: var(--accent);
}

/* ---------- card grids ---------- */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: 1fr; }
.grid--2 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr 1fr; }
@media (min-width: 700px) { .grid--2 { grid-template-columns: 1fr 1fr; } .grid--3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } .grid--4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 34px 30px;
  position: relative;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
  box-shadow: 0 4px 24px -4px rgba(21,18,11,0.08);
}
.card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px -8px rgba(21,18,11,0.18); border-color: var(--border-gold); }
.card__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--accent-deep);
  display: block;
  margin-bottom: 18px;
}
.card h3 { font-size: 1.5rem; line-height: 1.2; margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 0.98rem; }
.card__tags { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 8px; }
.card__tags span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-deep);
  border: 1px solid var(--border-gold);
  padding: 5px 11px;
  border-radius: 9999px;
}
.card--deco::before {
  content: "";
  position: absolute; top: 14px; right: 14px;
  width: 18px; height: 18px;
  border-top: 1px solid var(--accent);
  border-right: 1px solid var(--accent);
  opacity: 0.5;
}

/* work / case cards with image */
.work-card { display: block; }
.work-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
}
.work-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
  filter: saturate(0.85) contrast(1.03);
}
.work-card:hover .work-card__media img { transform: scale(1.06); filter: saturate(1) contrast(1.05); }
.work-card__body { padding-top: 20px; }
.work-card__kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.work-card h3 { font-size: 1.4rem; margin: 8px 0 6px; }
.work-card p { color: var(--muted); font-size: 0.96rem; }

/* ---------- numbered approach list ---------- */
.steps { display: grid; gap: 0; max-width: 920px; margin: 0 auto; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 36px 0;
  border-top: 1px solid var(--border);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--border); }
.section--dark .step { border-color: rgba(239,231,210,0.16); }
.step__no {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--accent);
  line-height: 1;
  min-width: 2ch;
}
.step h3 { font-size: 1.5rem; margin-bottom: 10px; }
.step p { color: var(--muted); max-width: 56ch; }
.section--dark .step p { color: rgba(239,231,210,0.7); }
@media (min-width: 768px) { .step { grid-template-columns: 120px 1fr; gap: 40px; } }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(239,231,210,0.16); border: 1px solid rgba(239,231,210,0.16); }
@media (min-width: 768px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--dark); padding: 40px 28px; text-align: center; }
.stat b {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}
.stat span {
  display: block;
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(239,231,210,0.65);
}

/* ---------- testimonials ---------- */
.quotes { display: grid; gap: 24px; }
@media (min-width: 860px) { .quotes { grid-template-columns: 1fr 1fr; } }
.quote-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px 36px;
  position: relative;
}
.quote-card p {
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--fg-soft);
}
.quote-card__src { display: flex; align-items: center; gap: 14px; margin-top: 26px; }
.avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.quote-card__src b { font-weight: 400; display: block; font-size: 0.98rem; }
.quote-card__src span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.placeholder-note {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-top: 30px;
  opacity: 0.7;
}

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq__item { border-top: 1px solid var(--border); }
.faq__item:last-child { 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.15rem, 2.6vw, 1.5rem);
}
.faq__q i {
  flex-shrink: 0;
  width: 22px; height: 22px;
  position: relative;
}
.faq__q i::before, .faq__q i::after {
  content: ""; position: absolute; background: var(--accent); top: 50%; left: 50%;
  transition: transform 0.35s var(--ease);
}
.faq__q i::before { width: 16px; height: 1.5px; transform: translate(-50%, -50%); }
.faq__q i::after { width: 1.5px; height: 16px; transform: translate(-50%, -50%); }
.faq__item[data-open="true"] .faq__q i::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 28px; color: var(--muted); max-width: 64ch; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; position: relative; overflow: hidden; }
.cta-band__sun {
  position: absolute; inset: 0; z-index: 0;
  background: repeating-conic-gradient(from 0deg at 50% 120%, rgba(176,136,48,0.10) 0deg 3deg, transparent 3deg 9deg);
  opacity: 0.8;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(2.2rem, 6vw, 4.4rem); line-height: 1.05; max-width: 18ch; margin: 0 auto 26px; }
.cta-band h2 em { font-style: italic; color: var(--accent); }
.cta-band .btn { margin-top: 14px; }

/* ---------- contact ---------- */
.contact-grid { display: grid; gap: 48px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 0.9fr 1.1fr; gap: 64px; } }
.info-block { margin-bottom: 30px; }
.info-block h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 8px;
}
.info-block p { color: var(--fg-soft); font-size: 1.02rem; }
.info-block a:hover { color: var(--accent-deep); }

form { display: grid; gap: 22px; }
.field { display: grid; gap: 8px; }
.field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field textarea, .field select {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--fg);
  border-radius: 2px;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; gap: 22px; }
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-consent { display: flex; gap: 12px; align-items: flex-start; font-size: 0.86rem; color: var(--muted); }
.form-consent input { margin-top: 4px; }

/* ---------- legal pages ---------- */
.legal { padding: clamp(120px, 16vw, 200px) 0 clamp(80px, 12vw, 140px); }
.legal__wrap { max-width: 780px; margin: 0 auto; }
.legal h1 { font-size: clamp(2.4rem, 6vw, 4rem); line-height: 1.05; margin-bottom: 18px; }
.legal__meta { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 50px; }
.legal h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); margin: 48px 0 16px; }
.legal h3 { font-size: 1.25rem; margin: 30px 0 10px; }
.legal p, .legal li { color: var(--fg-soft); margin-bottom: 1em; line-height: 1.8; }
.legal ul { padding-left: 1.2em; }
.legal li { margin-bottom: 0.5em; }
.legal a { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 3px; }

/* thanks page */
.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.04; margin-bottom: 22px; }
.thanks h1 em { font-style: italic; color: var(--accent); }
.thanks .deco-rule { margin: 30px auto; }

/* ---------- footer ---------- */
.footer { background: var(--dark); color: var(--cream-on-dark); padding: clamp(64px, 9vw, 110px) 0 40px; }
.footer__top { display: grid; gap: 48px; }
@media (min-width: 820px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.footer__brand .brand__name { color: var(--cream-on-dark); }
.footer__brand .brand__name b { color: var(--accent); }
.footer__tag { color: rgba(239,231,210,0.6); max-width: 34ch; margin-top: 20px; font-size: 0.98rem; }
.footer__col h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 18px;
  font-weight: 400;
}
.footer__col a, .footer__col p { display: block; color: rgba(239,231,210,0.72); font-size: 0.94rem; padding: 6px 0; transition: color 0.3s var(--ease); }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  margin-top: 60px;
  padding-top: 26px;
  border-top: 1px solid rgba(239,231,210,0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(239,231,210,0.5);
}
.footer__bottom a:hover { color: var(--accent); }
.footer__legal { display: flex; flex-wrap: wrap; gap: 18px; }

/* ---------- 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__media 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(16,13,8,0.5);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:34px 36px;max-width:480px;border-radius:4px;border:1px solid var(--border-gold);box-shadow:0 30px 80px -20px rgba(16,13,8,0.6); }
.cookie-popup__label { font-family:var(--mono);font-size:10px;letter-spacing:0.2em;text-transform:uppercase;color:var(--accent-deep);margin-bottom:14px; }
.cookie-popup__card h3 { font-size:1.5rem;margin-bottom:12px; }
.cookie-popup__card p { font-size:0.92rem;color:var(--muted);line-height:1.65; }
.cookie-popup__card p a { color:var(--accent-deep);text-decoration:underline; }
.cookie-popup__actions { display:flex;gap:12px;margin-top:22px;flex-wrap:wrap; }
.cookie-popup__actions button { padding:12px 26px;border:1px solid var(--border);cursor:pointer;font-family:var(--mono);font-size:11px;letter-spacing:0.12em;text-transform:uppercase;border-radius:9999px;transition:all .3s var(--ease); }
.cookie-popup__actions button:hover { border-color:var(--accent); }
.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-deep);border-color:var(--accent-deep); }

/* utilities */
.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0; }
.mt-0 { margin-top: 0; }
.split { display:grid; gap:48px; align-items:center; }
@media (min-width:900px){ .split{ grid-template-columns:1fr 1fr; gap:72px; } .split--wide{ grid-template-columns:1.1fr 0.9fr; } }
.split__media { position:relative; overflow:hidden; border:1px solid var(--border); aspect-ratio: 4/5; }
.split__media img { width:100%;height:100%;object-fit:cover; filter: saturate(0.9) contrast(1.03); }
.split__media::after { content:""; position:absolute; inset:10px; border:1px solid var(--border-gold); pointer-events:none; }
