/* palette: bg=#EDE9E0 fg=#2B2721 accent=#A8386A */
/* fonts: display="Fraunces" body="Inter" mono="IBM Plex Mono" */

:root {
  --bg: #EDE9E0;          /* dominant warm cream background (content sections) */
  --bg-alt: #E4DFD3;      /* alternating slightly deeper cream */
  --ink: #38342D;         /* dark warm charcoal — hero / dark bands */
  --ink-soft: #46413A;    /* softer charcoal panel */
  --fg: #2B2721;          /* primary dark text on cream */
  --fg-soft: #4A453D;     /* softened dark text */
  --muted: #857E6E;       /* secondary warm grey text */
  --cream: #EFEAE0;       /* text/foreground on dark bands */
  --cream-soft: #C9C2B4;  /* softened cream on dark */
  --accent: #A8386A;      /* restrained plum-magenta accent */
  --accent-deep: #822A50; /* darker accent for hover */
  --border: rgba(43, 39, 33, 0.14);
  --border-cream: rgba(239, 234, 224, 0.18);
  --serif: 'Fraunces', ui-serif, Georgia, serif;
  --sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', 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;
  -moz-osx-font-smoothing: grayscale;
  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; }
::selection { background: var(--accent); color: var(--cream); }

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

.section { padding: clamp(80px, 12vw, 160px) 0; }
.section--tight { padding: clamp(64px, 8vw, 104px) 0; }
.section--dark { background: var(--ink); color: var(--cream); }
.section--alt { background: var(--bg-alt); }

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

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; margin: 0; }
p { margin: 0 0 1.1em; }

.display {
  font-size: clamp(3.5rem, 10vw, 9rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  font-weight: 300;
}
.h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 300;
}
.h3 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.lead {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.55;
  color: var(--fg-soft);
  font-weight: 400;
}
.section--dark .lead { color: var(--cream-soft); }
em { font-style: italic; color: var(--accent); }
.section--dark em { color: #E58BB2; }

/* ------------------------------------------------------------------ *
 * Buttons & links
 * ------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 9999px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform .4s var(--ease), background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
  border: 1px solid transparent;
  will-change: transform;
}
.btn--solid { background: var(--ink); color: var(--cream); }
.btn--solid:hover { background: var(--accent); transform: translateY(-2px); }
.btn--cream { background: var(--cream); color: var(--ink); }
.btn--cream:hover { background: var(--accent); color: var(--cream); transform: translateY(-2px); }
.btn--ghost { border-color: var(--border); color: var(--fg); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.section--dark .btn--ghost { border-color: var(--border-cream); color: var(--cream); }
.section--dark .btn--ghost:hover { border-color: #E58BB2; color: #E58BB2; }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  transition: gap .35s var(--ease), color .35s var(--ease);
}
.arrow-link .arrow { transition: transform .35s var(--ease); }
.arrow-link:hover { color: var(--accent); }
.arrow-link:hover .arrow { transform: translateX(6px); }

/* ------------------------------------------------------------------ *
 * Header
 * ------------------------------------------------------------------ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--cream);
  transition: background .5s var(--ease), color .5s var(--ease), box-shadow .5s var(--ease);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.header[data-scrolled="true"] {
  background: rgba(237, 233, 224, 0.86);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  color: var(--fg);
  box-shadow: 0 1px 0 var(--border), 0 8px 30px -18px rgba(43, 39, 33, 0.5);
}
.brand {
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  font-weight: 400;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.brand__dot { font-family: var(--mono); font-size: 0.6rem; color: var(--accent); }
.header[data-scrolled="false"] .brand__dot { color: #E58BB2; }

.nav { display: none; gap: 34px; }
.nav a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  opacity: 0.82;
  transition: opacity .3s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width .35s var(--ease);
}
.nav a:hover { opacity: 1; }
.nav a:hover::after,
.nav a[aria-current="page"]::after { width: 100%; }
.nav a[aria-current="page"] { opacity: 1; }

.header__cta { display: none; }

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: flex-end;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: currentColor;
  transition: transform .35s var(--ease), opacity .3s var(--ease), width .35s var(--ease);
}
.menu-toggle span:nth-child(2) { width: 18px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); width: 26px; }
.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); width: 26px; }

@media (min-width: 1024px) {
  .nav { display: flex; }
  .header__cta { display: inline-flex; }
  .menu-toggle { display: none; }
  .header__inner { height: 84px; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--ink);
  color: var(--cream);
  padding: 100px 24px 40px;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform .55s var(--ease);
  visibility: hidden;
}
.mobile-menu[data-open="true"] { transform: translateY(0); visibility: visible; }
.mobile-menu a.mm-link {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 12vw, 3.4rem);
  font-weight: 300;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-cream);
  letter-spacing: -0.02em;
}
.mobile-menu a.mm-link:first-of-type { border-top: 1px solid var(--border-cream); }
.mobile-menu__foot {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--cream-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 1024px) { .mobile-menu { display: none; } }

/* ------------------------------------------------------------------ *
 * Hero
 * ------------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: -84px;
  padding-top: 84px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.14;
  animation: heroZoom 9s var(--ease) both;
  filter: grayscale(0.2);
}
@keyframes heroZoom {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(120% 90% at 80% 0%, rgba(168, 56, 106, 0.16), transparent 55%),
    linear-gradient(180deg, rgba(56, 52, 45, 0.5) 0%, rgba(56, 52, 45, 0.15) 40%, rgba(56, 52, 45, 0.9) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: clamp(120px, 20vh, 220px);
  padding-bottom: clamp(48px, 8vh, 90px);
}
.hero__title { max-width: 15ch; }
.hero__meta {
  margin-top: clamp(36px, 6vw, 60px);
  display: flex;
  flex-wrap: wrap;
  gap: 24px 48px;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 1px solid var(--border-cream);
  padding-top: 28px;
}
.hero__meta p { max-width: 46ch; margin: 0; color: var(--cream-soft); }
.hero__scroll {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero__scroll .bar {
  width: 44px; height: 1px; background: var(--cream-soft);
  position: relative; overflow: hidden;
}
.hero__scroll .bar::after {
  content: ""; position: absolute; left: -44px; top: 0; width: 44px; height: 1px;
  background: var(--accent);
  animation: scrollBar 2.4s var(--ease) infinite;
}
@keyframes scrollBar { 0% { left: -44px; } 60%,100% { left: 44px; } }

/* ------------------------------------------------------------------ *
 * Intro / two column
 * ------------------------------------------------------------------ */
.split {
  display: grid;
  gap: clamp(32px, 6vw, 80px);
}
@media (min-width: 900px) {
  .split { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
  .split--even { grid-template-columns: 1fr 1fr; }
}
.split__aside .eyebrow { margin-bottom: 24px; }
.intro-statement {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.6rem, 3.3vw, 2.6rem);
  line-height: 1.28;
  letter-spacing: -0.01em;
}
.intro-statement + p { margin-top: 1.6em; color: var(--muted); max-width: 52ch; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 32px;
  margin-top: clamp(48px, 8vw, 90px);
  border-top: 1px solid var(--border);
  padding-top: 48px;
}
@media (min-width: 768px) { .stat-row { grid-template-columns: repeat(4, 1fr); } }
.stat__num {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat__num em { font-size: 0.5em; vertical-align: super; }
.stat__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 14px;
  line-height: 1.5;
}
.section--dark .stat__label { color: var(--cream-soft); }

/* ------------------------------------------------------------------ *
 * Section headers
 * ------------------------------------------------------------------ */
.sec-head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: clamp(48px, 7vw, 88px);
}
@media (min-width: 900px) {
  .sec-head--row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
  .sec-head--row .sec-head__title { max-width: 60%; }
}
.sec-head__title { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 300; letter-spacing: -0.02em; line-height: 1.02; }
.sec-head__text { max-width: 42ch; color: var(--muted); margin: 0; }
.section--dark .sec-head__text { color: var(--cream-soft); }

/* ------------------------------------------------------------------ *
 * Services grid (cards)
 * ------------------------------------------------------------------ */
.cards {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards--3 { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--bg);
  padding: clamp(32px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  min-height: 340px;
  transition: background .5s var(--ease);
}
.section--alt .card { background: var(--bg-alt); }
.card:hover { background: #F4F1EA; }
.section--alt .card:hover { background: var(--bg); }
.card__index {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.card__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  letter-spacing: -0.01em;
  margin: 28px 0 14px;
  line-height: 1.1;
}
.card__text { color: var(--muted); margin: 0 0 24px; font-size: 15.5px; line-height: 1.7; }
.card__list { list-style: none; padding: 0; margin: auto 0 0; }
.card__list li {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--fg-soft);
  padding: 9px 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.card__list li::before { content: "—"; color: var(--accent); }

/* ------------------------------------------------------------------ *
 * Selected work — list style (clone of reference)
 * ------------------------------------------------------------------ */
.work {
  display: grid;
  gap: 0;
}
@media (min-width: 1024px) {
  .work-wrap { display: grid; grid-template-columns: 1.35fr 0.65fr; align-items: stretch; }
}
.work-panel {
  display: none;
  background: var(--ink);
  color: var(--cream);
  padding: 44px;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 1024px) { .work-panel { display: flex; } }
.work-panel__chapter {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  letter-spacing: 0.02em;
}
.work-panel__note {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: var(--cream-soft);
  text-transform: uppercase;
  max-width: 32ch;
}
.work-list { list-style: none; margin: 0; padding: 0; }
.work-item {
  border-top: 1px solid var(--border);
  transition: padding .5s var(--ease), background .5s var(--ease);
}
.work-item:last-child { border-bottom: 1px solid var(--border); }
.work-item a {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px) 6px;
  transition: padding-left .5s var(--ease), color .5s var(--ease);
}
.work-item:hover a { padding-left: 22px; color: var(--accent); }
.work-item__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
  min-width: 34px;
}
.work-item:hover .work-item__num { color: var(--accent); }
.work-item__name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: -0.02em;
  line-height: 1;
  flex: 1;
}
.work-item__tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  display: none;
}
@media (min-width: 640px) { .work-item__tag { display: block; } }
.work-item__arrow { transition: transform .4s var(--ease); opacity: 0; }
.work-item:hover .work-item__arrow { transform: translateX(4px); opacity: 1; }
.work-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}
.work-foot__note {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  max-width: 40ch;
  line-height: 1.6;
  display: flex;
  gap: 8px;
}
.work-foot__note::before { content: "✳"; color: var(--accent); }

/* ------------------------------------------------------------------ *
 * Manifesto
 * ------------------------------------------------------------------ */
.manifesto { text-align: left; }
.manifesto__quote {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
  max-width: 20ch;
}
.manifesto__mark {
  font-family: var(--serif);
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 0.6;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}
.manifesto__by {
  margin-top: 48px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-soft);
}

/* ------------------------------------------------------------------ *
 * Process — numbered steps
 * ------------------------------------------------------------------ */
.steps { display: grid; gap: 0; }
.step {
  display: grid;
  gap: 12px 40px;
  padding: clamp(32px, 4vw, 48px) 0;
  border-top: 1px solid var(--border);
}
.step:last-child { border-bottom: 1px solid var(--border); }
@media (min-width: 900px) { .step { grid-template-columns: 120px 0.9fr 1.1fr; align-items: start; } }
.step__num {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}
.step__title { font-family: var(--serif); font-weight: 400; font-size: clamp(1.4rem, 2.4vw, 1.9rem); letter-spacing: -0.01em; }
.step__text { color: var(--muted); margin: 0; }

/* ------------------------------------------------------------------ *
 * Team / principles (no faces — monograms + text)
 * ------------------------------------------------------------------ */
.people { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); }
@media (min-width: 700px) { .people { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .people { grid-template-columns: repeat(3, 1fr); } }
.person {
  background: var(--bg);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  min-height: 240px;
}
.avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.02em;
  margin-bottom: 26px;
}
.person__name { font-family: var(--serif); font-weight: 400; font-size: 1.4rem; letter-spacing: -0.01em; }
.person__role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin: 8px 0 16px; }
.person__bio { color: var(--muted); font-size: 15px; margin: auto 0 0; line-height: 1.65; }

/* ------------------------------------------------------------------ *
 * CTA band
 * ------------------------------------------------------------------ */
.cta { text-align: center; }
.cta__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 7vw, 6rem);
  line-height: 1;
  letter-spacing: -0.03em;
  max-width: 16ch;
  margin: 0 auto 32px;
}
.cta__text { color: var(--cream-soft); max-width: 48ch; margin: 0 auto 44px; }
.cta__actions { display: inline-flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ------------------------------------------------------------------ *
 * Contact form
 * ------------------------------------------------------------------ */
.form { display: grid; gap: 26px; }
.field { display: flex; flex-direction: column; gap: 10px; }
.field--row { display: grid; gap: 26px; }
@media (min-width: 640px) { .field--row { grid-template-columns: 1fr 1fr; } }
.field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--fg);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border);
  padding: 12px 2px;
  transition: border-color .35s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-color: var(--accent); }
.field input::placeholder,
.field textarea::placeholder { color: rgba(133, 126, 110, 0.7); }
.form__consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.form__consent input { margin-top: 4px; accent-color: var(--accent); }
.form__consent a { text-decoration: underline; text-underline-offset: 3px; }

.contact-grid { display: grid; gap: clamp(40px, 7vw, 80px); }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1fr 1.1fr; } }
.contact-info dl { margin: 0; display: grid; gap: 28px; }
.contact-info dt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.contact-info dd { margin: 0; font-size: 1.05rem; line-height: 1.6; }
.contact-info dd a:hover { color: var(--accent); }

/* ------------------------------------------------------------------ *
 * FAQ
 * ------------------------------------------------------------------ */
.faq { border-top: 1px solid var(--border); }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 3vw, 32px) 4px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  letter-spacing: -0.01em;
  line-height: 1.25;
  transition: color .3s var(--ease);
}
.faq__q:hover { color: var(--accent); }
.faq__icon { flex-shrink: 0; position: relative; width: 18px; height: 18px; }
.faq__icon::before,
.faq__icon::after {
  content: ""; position: absolute; background: currentColor; transition: transform .4s var(--ease);
}
.faq__icon::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq__icon::after { left: 50%; top: 0; width: 1.5px; height: 100%; transform: translateX(-50%); }
.faq__item[data-open="true"] .faq__icon::after { transform: translateX(-50%) scaleY(0); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease);
}
.faq__a-inner { padding: 0 4px clamp(24px, 3vw, 32px); color: var(--muted); max-width: 64ch; }

/* ------------------------------------------------------------------ *
 * Footer
 * ------------------------------------------------------------------ */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(64px, 9vw, 110px) 0 40px;
}
.footer__top {
  display: grid;
  gap: 48px;
  padding-bottom: clamp(48px, 7vw, 80px);
  border-bottom: 1px solid var(--border-cream);
}
@media (min-width: 900px) { .footer__top { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer__brand {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -0.02em;
  line-height: 1;
}
.footer__tag { color: var(--cream-soft); max-width: 34ch; margin: 22px 0 0; }
.footer__col h4 {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-soft);
  margin: 0 0 20px;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer__col a { opacity: 0.85; transition: opacity .3s var(--ease), color .3s var(--ease); }
.footer__col a:hover { opacity: 1; color: #E58BB2; }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--cream-soft);
}
.footer__bottom a:hover { color: #E58BB2; }

/* ------------------------------------------------------------------ *
 * Page hero (inner pages)
 * ------------------------------------------------------------------ */
.page-hero {
  background: var(--ink);
  color: var(--cream);
  margin-top: -84px;
  padding: clamp(160px, 22vh, 260px) 0 clamp(64px, 9vw, 110px);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 100% at 90% 10%, rgba(168, 56, 106, 0.15), transparent 55%);
  pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__title { font-size: clamp(2.8rem, 8vw, 6.5rem); font-weight: 300; letter-spacing: -0.03em; line-height: 0.98; max-width: 16ch; }
.page-hero__text { color: var(--cream-soft); max-width: 52ch; margin: 28px 0 0; font-size: clamp(1.05rem, 1.8vw, 1.3rem); line-height: 1.55; }
.breadcrumb {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-soft);
  margin-bottom: 28px;
  display: flex;
  gap: 10px;
}
.breadcrumb a:hover { color: #E58BB2; }

/* ------------------------------------------------------------------ *
 * Prose (legal pages)
 * ------------------------------------------------------------------ */
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 400; letter-spacing: -0.01em; margin: 56px 0 18px; }
.prose h3 { font-family: var(--serif); font-weight: 400; font-size: 1.25rem; margin: 32px 0 12px; }
.prose p, .prose li { color: var(--fg-soft); }
.prose ul { padding-left: 20px; margin: 0 0 1.1em; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose__meta { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 40px; }

/* ------------------------------------------------------------------ *
 * Thanks page
 * ------------------------------------------------------------------ */
.thanks {
  min-height: 84vh;
  display: flex;
  align-items: center;
  background: var(--ink);
  color: var(--cream);
  margin-top: -84px;
  padding-top: 84px;
  text-align: center;
}
.thanks__inner { max-width: 640px; margin: 0 auto; }
.thanks__title { font-size: clamp(2.6rem, 7vw, 5rem); font-weight: 300; letter-spacing: -0.03em; line-height: 1; margin-bottom: 24px; }
.thanks__text { color: var(--cream-soft); margin-bottom: 40px; }

/* ------------------------------------------------------------------ *
 * Scroll reveal
 * ------------------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s var(--ease), transform .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; }
  * { scroll-behavior: auto; }
}

/* ------------------------------------------------------------------ *
 * Cookie popup
 * ------------------------------------------------------------------ */
.cookie-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background: rgba(43, 39, 33, 0.42);
  -webkit-backdrop-filter: blur(4px);
  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);
  color: var(--fg);
  padding: 32px 36px;
  max-width: 480px;
  border-radius: 4px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.5);
  margin: 0 auto;
}
@media (min-width: 640px) { .cookie-popup { align-items: flex-end; justify-content: flex-start; } .cookie-popup__card { margin: 0; } }
.cookie-popup__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.cookie-popup__card h3 { font-family: var(--serif); font-weight: 400; font-size: 1.4rem; margin: 0 0 12px; letter-spacing: -0.01em; }
.cookie-popup__card p { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0; }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 22px; }
.cookie-popup__actions button {
  padding: 11px 24px;
  border: 1px solid var(--border);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 9999px;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.cookie-popup__actions button:first-child:hover { border-color: var(--fg); }
.cookie-popup__actions button:last-child { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.cookie-popup__actions button:last-child:hover { background: var(--accent); border-color: var(--accent); }

/* utility */
.mt-cta { margin-top: clamp(40px, 6vw, 64px); }
.center-narrow { max-width: 820px; margin: 0 auto; text-align: center; }
.text-block { max-width: 60ch; }
.text-block p + p { margin-top: 1.1em; }
