/* palette: bg=#ECEEE4 fg=#1D271F accent=#A87A2B */
/* fonts: display="Playfair Display" body="Work Sans" mono="IBM Plex Mono" */

:root {
  --bg: #ECEEE4;        /* pale sage ivory — dominant background */
  --bg-alt: #E2E7D6;    /* deeper sage cream — alternating sections */
  --fg: #1D271F;        /* deep pine ink — primary text */
  --fg-soft: #33413A;   /* softened ink */
  --muted: #5E6C5A;     /* muted olive-gray — secondary text */
  --accent: #A87A2B;    /* antique gold / sepia — brand accent */
  --accent-deep: #855F1E; /* darker gold for hover / small text */
  --sage: #7C9483;      /* decorative verdigris sage */
  --line-dark: #2A3A30; /* deep pine for dark bands */
  --border: rgba(29, 39, 31, 0.14);
  --border-soft: rgba(29, 39, 31, 0.08);
  --serif: 'Playfair Display', ui-serif, Georgia, serif;
  --sans: 'Work Sans', 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: 1260px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 18px;
  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; }
h1, h2, h3, h4 { font-weight: 400; margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

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

.section { padding: clamp(80px, 12vw, 160px) 0; position: relative; }
.section--tight { padding: clamp(56px, 8vw, 104px) 0; }
.section--alt { background: var(--bg-alt); }
.section--dark {
  background: var(--line-dark);
  color: var(--bg);
}
.section--dark .muted, .section--dark .eyebrow { color: rgba(236, 238, 228, 0.62); }

/* ---------- typography helpers ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.display {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.02em;
}
.h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: -0.02em;
  line-height: 1.02;
}
.h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  letter-spacing: -0.01em;
  line-height: 1.12;
}
.lede {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.6;
  color: var(--fg-soft);
  max-width: 46ch;
}
.body-muted { color: var(--muted); }
em { font-style: italic; color: var(--accent-deep); }
.section--dark em { color: #D2A34E; }

/* ---------- buttons ---------- */
.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.1em;
  text-transform: uppercase;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
  border: 1px solid transparent;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--fg); color: var(--bg); }
.btn--primary:hover { background: var(--accent-deep); }
.btn--ghost { border-color: var(--border); color: var(--fg); }
.btn--ghost:hover { border-color: var(--fg); }
.section--dark .btn--primary { background: var(--accent); color: #1B140A; }
.section--dark .btn--primary:hover { background: #C79A45; }
.section--dark .btn--ghost { border-color: rgba(236,238,228,0.28); color: var(--bg); }
.section--dark .btn--ghost:hover { border-color: var(--bg); }

.textlink {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.35s var(--ease), color 0.35s var(--ease);
}
.textlink .arw { transition: transform 0.35s var(--ease); }
.textlink:hover { gap: 12px; }
.textlink:hover .arw { transform: translateX(4px); }
.section--dark .textlink { color: #D2A34E; }

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}
.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (min-width: 768px) { .header__inner { padding: 20px 32px; } }
.header[data-scrolled="true"] {
  background: rgba(236, 238, 228, 0.86);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 0 var(--border-soft), 0 10px 30px -18px rgba(29,39,31,0.35);
}
.brand {
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.brand__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); display: inline-block; }

.nav-pill {
  display: none;
  align-items: center;
  gap: 4px;
  background: var(--line-dark);
  color: var(--bg);
  border-radius: 9999px;
  padding: 7px 8px 7px 22px;
}
@media (min-width: 1024px) { .nav-pill { display: flex; } }
.nav-pill a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 14px;
  color: rgba(236,238,228,0.82);
  transition: color 0.3s var(--ease);
  border-radius: 9999px;
}
.nav-pill a:hover { color: #fff; }
.nav-pill a.is-current { color: #D2A34E; }
.nav-pill__cta {
  background: var(--accent);
  color: #1B140A !important;
  padding: 9px 18px !important;
  margin-left: 4px;
  transition: background 0.3s var(--ease) !important;
}
.nav-pill__cta:hover { background: #C79A45; }

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  border-radius: 9999px;
  background: var(--line-dark);
  align-items: center;
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.menu-toggle span { display: block; width: 20px; height: 1.5px; background: var(--bg); transition: transform 0.35s var(--ease), opacity 0.3s var(--ease); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- mobile menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--bg);
  padding: 100px 28px 40px;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform 0.55s var(--ease);
  overflow-y: auto;
}
.mobile-menu[data-open="true"] { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--serif);
  font-size: clamp(2rem, 9vw, 2.8rem);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.mobile-menu a span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; color: var(--muted); }
.mobile-menu__foot { margin-top: auto; padding-top: 32px; font-family: var(--mono); font-size: 12px; color: var(--muted); }

/* ---------- hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 40px;
  position: relative;
  overflow: hidden;
}
.hero__ornament {
  position: absolute;
  top: -6%;
  right: -8%;
  width: min(58vw, 720px);
  color: var(--sage);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}
.hero__main { position: relative; z-index: 2; padding-top: clamp(24px, 6vw, 60px); }
.hero__eyebrow { margin-bottom: 26px; }
.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3.5rem, 13vw, 12rem);
  line-height: 0.86;
  letter-spacing: -0.035em;
  margin: 0;
}
.hero__title .line { display: block; }
.hero__title .line--accent { font-style: italic; color: var(--accent); }
.hero__ghost {
  position: relative;
  z-index: 1;
  margin-top: clamp(10px, 3vw, 26px);
}
.hero__ghost-text {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 9vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(29, 39, 31, 0.28);
  margin: 0;
}
.hero__sub {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 14px;
  text-transform: uppercase;
}
.hero__lede {
  max-width: 40ch;
  margin-top: 22px;
  color: var(--fg-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* ticker */
.ticker {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
  margin-top: clamp(30px, 5vw, 60px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.ticker__tag {
  background: var(--line-dark);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.ticker__track {
  display: flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  animation: tickerMove 34s linear infinite;
  padding-left: 24px;
}
.ticker__track span {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.ticker__track span::before { content: "◆"; color: var(--accent); font-size: 8px; }
@keyframes tickerMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }

/* ---------- section head ---------- */
.section-head { max-width: 760px; margin-bottom: clamp(48px, 6vw, 84px); }
.section-head--split {
  display: grid;
  gap: 24px;
  max-width: none;
  grid-template-columns: 1fr;
  align-items: end;
}
@media (min-width: 900px) { .section-head--split { grid-template-columns: 1.4fr 1fr; gap: 48px; } }
.section-head p { color: var(--muted); margin-top: 20px; max-width: 52ch; }

/* ---------- numbered solution (dark, mirrors reference) ---------- */
.solution { position: relative; overflow: hidden; }
.solution__lines { position: absolute; inset: 0; color: rgba(124,148,131,0.22); pointer-events: none; }
.sol-grid {
  position: relative;
  display: grid;
  gap: clamp(48px, 6vw, 90px);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .sol-grid { grid-template-columns: 1fr 1fr; column-gap: clamp(60px, 8vw, 140px); } }
.sol-item { position: relative; }
.sol-item__kicker { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; color: #D2A34E; text-transform: uppercase; }
.sol-item__title { font-family: var(--serif); font-size: clamp(2rem, 4.5vw, 3.4rem); line-height: 1.02; letter-spacing: -0.02em; margin: 16px 0 10px; }
.sol-item__sub { color: rgba(236,238,228,0.7); font-size: 1rem; margin-bottom: 22px; }
.sol-item__body { color: rgba(236,238,228,0.78); max-width: 42ch; }
.sol-item__num {
  font-family: var(--serif);
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: 1;
  margin-top: 36px;
  color: rgba(236,238,228,0.92);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.sol-item__num small { font-size: 0.9rem; font-family: var(--mono); color: rgba(236,238,228,0.5); }

/* ---------- services grid ---------- */
.svc-grid { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); }
@media (min-width: 640px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .svc-grid { grid-template-columns: 1fr 1fr 1fr; } }
.svc-card {
  background: var(--bg);
  padding: clamp(30px, 3.4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 280px;
  transition: background 0.4s var(--ease);
}
.section--alt .svc-card { background: var(--bg-alt); }
.svc-card:hover { background: #F4F5EC; }
.section--alt .svc-card:hover { background: #E9EEDD; }
.svc-card__no { font-family: var(--mono); font-size: 12px; color: var(--accent-deep); letter-spacing: 0.1em; }
.svc-card__title { font-family: var(--serif); font-size: clamp(1.4rem, 2.2vw, 1.8rem); letter-spacing: -0.01em; }
.svc-card__body { color: var(--muted); font-size: 0.98rem; margin-top: 2px; }
.svc-card__foot { margin-top: auto; padding-top: 20px; }

/* ---------- manifesto ---------- */
.manifesto { text-align: center; }
.manifesto__mark {
  font-family: var(--serif);
  font-size: clamp(6rem, 14vw, 12rem);
  line-height: 0.6;
  color: var(--accent);
  opacity: 0.55;
  display: block;
  margin-bottom: 10px;
  height: 0.5em;
}
.manifesto__text {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
  max-width: 960px;
  margin: 0 auto;
}
.manifesto__cite { margin-top: 40px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: rgba(236,238,228,0.6); text-transform: uppercase; }

/* ---------- work / case cards ---------- */
.work-grid { display: grid; gap: clamp(28px, 3vw, 44px); grid-template-columns: 1fr; }
@media (min-width: 760px) { .work-grid { grid-template-columns: 1fr 1fr; } }
.work-card { display: block; group: work; }
.work-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  border-radius: 4px;
  background: var(--bg-alt);
}
.work-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
  filter: saturate(0.82) contrast(1.02);
}
.work-card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(29,39,31,0) 40%, rgba(29,39,31,0.42) 100%),
              linear-gradient(120deg, rgba(168,122,43,0.14), rgba(124,148,131,0.12));
  mix-blend-mode: multiply;
}
.work-card:hover .work-card__media img { transform: scale(1.06); }
.work-card__tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-deep); margin-top: 22px; }
.work-card__title { font-family: var(--serif); font-size: clamp(1.6rem, 2.8vw, 2.2rem); letter-spacing: -0.01em; margin-top: 10px; line-height: 1.08; }
.work-card__body { color: var(--muted); margin-top: 12px; max-width: 48ch; font-size: 0.98rem; }

/* ---------- library / articles ---------- */
.lib-grid { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); }
@media (min-width: 700px) { .lib-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px) { .lib-grid { grid-template-columns: 1fr 1fr 1fr; } }
.lib-card {
  background: var(--bg);
  padding: clamp(26px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  min-height: 320px;
  transition: background 0.4s var(--ease);
}
.lib-card:hover { background: #F4F5EC; }
.lib-card__meta { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; }
.lib-card__meta .cat { color: var(--accent-deep); }
.lib-card__title { font-family: var(--serif); font-size: clamp(1.3rem, 2vw, 1.6rem); line-height: 1.14; letter-spacing: -0.01em; margin: 24px 0 12px; }
.lib-card__body { color: var(--muted); font-size: 0.95rem; }
.lib-card__foot { margin-top: auto; padding-top: 22px; }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(236,238,228,0.16); }
@media (min-width: 860px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--line-dark); padding: clamp(36px, 5vw, 60px) 26px; }
.stat__num { font-family: var(--serif); font-size: clamp(2.8rem, 6vw, 4.6rem); line-height: 1; letter-spacing: -0.02em; }
.stat__num em { color: #D2A34E; }
.stat__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(236,238,228,0.6); margin-top: 16px; }

/* ---------- faq ---------- */
.faq { border-top: 1px solid var(--border); }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%;
  text-align: left;
  padding: 28px 44px 28px 0;
  position: relative;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.faq__q::after {
  content: "+";
  position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-family: var(--sans); font-size: 1.6rem; color: var(--accent-deep);
  transition: transform 0.4s var(--ease);
}
.faq__item[data-open="true"] .faq__q::after { transform: translateY(-50%) rotate(45deg); }
.faq__a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.faq__a-inner { padding: 0 60px 30px 0; color: var(--muted); max-width: 70ch; }
.faq__item[data-open="true"] .faq__a { max-height: 340px; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; position: relative; overflow: hidden; }
.cta-band__orn { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: min(90vw, 900px); color: rgba(124,148,131,0.16); pointer-events: none; }
.cta-band__inner { position: relative; z-index: 2; }
.cta-band h2 { font-family: var(--serif); font-size: clamp(2.4rem, 6vw, 5rem); line-height: 1.02; letter-spacing: -0.02em; max-width: 16ch; margin: 0 auto; }
.cta-band p { color: rgba(236,238,228,0.72); max-width: 48ch; margin: 26px auto 0; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 38px; }

/* ---------- contact / form ---------- */
.contact-grid { display: grid; gap: clamp(40px, 6vw, 80px); grid-template-columns: 1fr; }
@media (min-width: 940px) { .contact-grid { grid-template-columns: 1fr 1.1fr; } }
.info-block { margin-bottom: 34px; }
.info-block__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 10px; }
.info-block__val { font-size: 1.1rem; color: var(--fg-soft); line-height: 1.6; }
.info-block__val a { border-bottom: 1px solid var(--border); }
.info-block__val a:hover { border-color: var(--accent-deep); color: var(--accent-deep); }

.form { display: grid; gap: 22px; }
.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(--muted); }
.field input, .field select, .field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--fg);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border);
  padding: 12px 2px;
  transition: border-color 0.35s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(94,108,90,0.6); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent-deep); }
.field textarea { resize: vertical; min-height: 130px; }
.field--row { display: grid; gap: 22px; }
@media (min-width: 620px) { .field--row { grid-template-columns: 1fr 1fr; } }
.form__consent { display: flex; gap: 12px; align-items: flex-start; font-size: 0.86rem; color: var(--muted); line-height: 1.5; }
.form__consent input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--accent-deep); flex-shrink: 0; }
.form__consent a { color: var(--accent-deep); border-bottom: 1px solid var(--border); }

/* ---------- footer ---------- */
.footer { background: var(--line-dark); color: var(--bg); padding: clamp(70px, 9vw, 120px) 0 40px; position: relative; overflow: hidden; }
.footer__orn { position: absolute; right: -6%; bottom: -10%; width: min(50vw, 560px); color: rgba(124,148,131,0.14); pointer-events: none; }
.footer__grid { position: relative; z-index: 2; display: grid; gap: 48px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr; } }
.footer__brand { font-family: var(--serif); font-size: 2.4rem; font-weight: 500; margin-bottom: 20px; }
.footer__tag { color: rgba(236,238,228,0.68); max-width: 34ch; }
.footer__col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(236,238,228,0.5); margin-bottom: 18px; }
.footer__col a, .footer__col p { display: block; color: rgba(236,238,228,0.82); padding: 6px 0; transition: color 0.3s var(--ease); }
.footer__col a:hover { color: #D2A34E; }
.footer__bottom {
  position: relative; z-index: 2;
  margin-top: clamp(56px, 7vw, 90px);
  padding-top: 28px;
  border-top: 1px solid rgba(236,238,228,0.14);
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em;
  color: rgba(236,238,228,0.56);
}
.footer__bottom a:hover { color: #D2A34E; }

/* ---------- page hero (interior) ---------- */
.page-hero { padding: clamp(120px, 16vw, 200px) 0 clamp(40px, 6vw, 80px); position: relative; overflow: hidden; }
.page-hero__orn { position: absolute; right: -6%; top: 6%; width: min(52vw, 620px); color: var(--sage); opacity: 0.34; pointer-events: none; }
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  max-width: 15ch;
}
.page-hero h1 em { font-style: italic; color: var(--accent); }
.page-hero__lede { margin-top: 28px; max-width: 54ch; color: var(--fg-soft); font-size: clamp(1.1rem, 1.8vw, 1.35rem); }
.crumbs { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 26px; }
.crumbs a:hover { color: var(--accent-deep); }

/* ---------- generic prose (legal) ---------- */
.prose { max-width: 760px; }
.prose h2 { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: -0.01em; margin: 56px 0 16px; }
.prose h3 { font-family: var(--serif); font-size: 1.3rem; margin: 34px 0 12px; }
.prose p { color: var(--fg-soft); margin: 0 0 18px; }
.prose ul.bullets { margin: 0 0 20px; padding-left: 0; }
.prose ul.bullets li { color: var(--fg-soft); padding: 8px 0 8px 26px; position: relative; }
.prose ul.bullets li::before { content: "◆"; position: absolute; left: 0; top: 8px; color: var(--accent); font-size: 9px; }
.prose a { color: var(--accent-deep); border-bottom: 1px solid var(--border); }
.prose__updated { font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: 0.06em; }

/* ---------- about values / process ---------- */
.split { display: grid; gap: clamp(40px, 6vw, 90px); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
.split--rev .split__media { order: -1; }
@media (min-width: 900px) { .split--rev .split__media { order: 0; } }
.split__media { position: relative; overflow: hidden; border-radius: 4px; aspect-ratio: 4/5; }
.split__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.82); }
.split__media::after { content:""; position:absolute; inset:0; background: linear-gradient(140deg, rgba(168,122,43,0.16), rgba(29,39,31,0.28)); mix-blend-mode: multiply; }
.split p { color: var(--muted); margin-top: 18px; }
.split p + p { margin-top: 14px; }

.process-list { border-top: 1px solid var(--border); }
.process-row { display: grid; grid-template-columns: 1fr; gap: 8px; padding: 30px 0; border-bottom: 1px solid var(--border); }
@media (min-width: 760px) { .process-row { grid-template-columns: 0.4fr 1fr 1.4fr; gap: 32px; align-items: baseline; } }
.process-row__no { font-family: var(--mono); font-size: 12px; color: var(--accent-deep); letter-spacing: 0.1em; }
.process-row__title { font-family: var(--serif); font-size: clamp(1.4rem, 2.4vw, 1.9rem); letter-spacing: -0.01em; }
.process-row__body { color: var(--muted); }

/* team-ish text cards (no faces) */
.people { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); }
@media (min-width: 700px) { .people { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .people { grid-template-columns: 1fr 1fr 1fr; } }
.person { background: var(--bg); padding: clamp(28px, 3vw, 40px); }
.section--alt .person { background: var(--bg-alt); }
.avatar {
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.3rem; color: #FBF7EC;
  margin-bottom: 22px; letter-spacing: 0.02em;
}
.person__name { font-family: var(--serif); font-size: 1.4rem; letter-spacing: -0.01em; }
.person__role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-deep); margin-top: 6px; }
.person__bio { color: var(--muted); font-size: 0.95rem; margin-top: 16px; }

/* ---------- 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; }
  .ticker__track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- cookie popup ---------- */
.cookie-popup { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: flex-end; padding: 24px; background: rgba(29,39,31,0.4); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card { background: var(--bg); padding: 32px 36px; max-width: 480px; border-radius: 4px; box-shadow: 0 24px 70px -20px rgba(29,39,31,0.5); border: 1px solid var(--border); }
.cookie-popup__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 14px; }
.cookie-popup__card h3 { font-family: var(--serif); font-size: 1.5rem; letter-spacing: -0.01em; margin-bottom: 12px; }
.cookie-popup__card p { color: var(--muted); font-size: 0.92rem; line-height: 1.6; }
.cookie-popup__card p a { color: var(--accent-deep); border-bottom: 1px solid var(--border); }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 22px; }
.cookie-popup__actions button { padding: 12px 26px; 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 0.3s var(--ease), color 0.3s var(--ease); }
.cookie-popup__actions button:hover { border-color: var(--fg); }
.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); }

/* ---------- misc ---------- */
.divider-orn { display: flex; justify-content: center; color: var(--sage); opacity: 0.6; margin: 0 auto; }
.pill-label { display: inline-block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-deep); border: 1px solid var(--border); border-radius: 9999px; padding: 7px 16px; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 16px; top: 16px; z-index: 999; background: var(--fg); color: var(--bg); padding: 10px 16px; border-radius: 6px; }
