/* palette: bg=#F2E4D2 fg=#15161B accent=#2747F0 */
/* fonts: display="Bricolage Grotesque" body="Inter" mono="IBM Plex Mono" */

:root {
  --bg: #F2E4D2;
  --bg-alt: #E8D6BD;
  --bg-deep: #DCC6A8;
  --fg: #15161B;
  --fg-soft: #2A2C33;
  --muted: #6F6A60;
  --accent: #2747F0;
  --accent-deep: #1A30B8;
  --accent-soft: rgba(39, 71, 240, 0.08);
  --border: rgba(21, 22, 27, 0.14);
  --border-soft: rgba(21, 22, 27, 0.07);

  --display: 'Bricolage Grotesque', ui-sans-serif, system-ui, sans-serif;
  --sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --container: 1280px;
  --gutter: 32px;
}

*, *::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.72;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: 'ss01', 'cv11';
}
img, svg, video { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; }

/* TYPOGRAPHY */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  font-weight: 500;
}
.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.92;
}
.h1 { font-family: var(--display); font-weight: 400; font-size: clamp(3.25rem, 9.5vw, 8.5rem); line-height: 0.92; letter-spacing: -0.035em; }
.h2 { font-family: var(--display); font-weight: 400; font-size: clamp(2.25rem, 5.5vw, 4.5rem); line-height: 1.0; letter-spacing: -0.025em; }
.h3 { font-family: var(--display); font-weight: 400; font-size: clamp(1.5rem, 2.6vw, 2.25rem); line-height: 1.1; letter-spacing: -0.018em; }

p { margin: 0 0 1.1em; }
.lede { font-size: 19px; line-height: 1.6; color: var(--fg-soft); max-width: 56ch; }

em { font-style: italic; color: var(--accent); font-family: var(--display); font-weight: 400; }

/* CONTAINER */
.wrap { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); width: 100%; }
@media (max-width: 720px) { :root { --gutter: 20px; } body { font-size: 16px; } }

/* HEADER */
.header {
  position: sticky; top: 0; z-index: 100;
  padding: 14px 0;
  background: rgba(242, 228, 210, 0.78);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  transition: box-shadow .35s var(--ease), background .35s var(--ease), padding .35s var(--ease);
}
.header[data-scrolled="true"] {
  padding: 10px 0;
  box-shadow: 0 1px 0 var(--border-soft);
  background: rgba(242, 228, 210, 0.92);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { font-family: var(--display); font-size: 15px; font-weight: 500; letter-spacing: -0.01em; display: inline-flex; align-items: center; gap: 6px; }
.brand .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); display: inline-block; }
.brand:hover .dot { animation: pulse 1.6s var(--ease) infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.8); } }

.nav-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(21, 22, 27, 0.06);
  border: 1px solid var(--border-soft);
  border-radius: 9999px;
  padding: 5px;
  gap: 2px;
}
.nav-pill a {
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 9999px;
  color: var(--fg-soft);
  transition: background .25s var(--ease), color .25s var(--ease);
  letter-spacing: -0.005em;
}
.nav-pill a:hover { color: var(--fg); background: rgba(21, 22, 27, 0.05); }
.nav-pill a.is-active { background: var(--fg); color: var(--bg); }

.social-links {
  display: inline-flex; align-items: center; gap: 22px;
  font-size: 13px;
}
.social-links a { color: var(--fg-soft); transition: color .2s var(--ease); position: relative; }
.social-links a:hover { color: var(--accent); }
.social-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.social-links a:hover::after { transform: scaleX(1); }

.menu-toggle { display: none; width: 40px; height: 40px; border-radius: 50%; align-items: center; justify-content: center; background: rgba(21, 22, 27, 0.06); }
.menu-toggle span { display: block; width: 18px; height: 1.5px; background: var(--fg); position: relative; transition: transform .3s var(--ease); }
.menu-toggle span::before, .menu-toggle span::after {
  content: ''; position: absolute; left: 0; width: 18px; height: 1.5px; background: var(--fg); transition: transform .3s var(--ease);
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 880px) {
  .nav-pill, .social-links { display: none; }
  .menu-toggle { display: inline-flex; }
}

.mobile-menu {
  position: fixed; inset: 0; top: 64px; z-index: 90;
  background: var(--bg);
  padding: 40px 24px 60px;
  transform: translateY(-12px);
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  display: flex; flex-direction: column; gap: 8px;
}
.mobile-menu[data-open="true"] { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-menu a {
  font-family: var(--display); font-size: 32px; letter-spacing: -0.025em;
  padding: 14px 0; border-bottom: 1px solid var(--border-soft);
}
.mobile-menu .social-mobile { display: flex; gap: 22px; margin-top: 28px; font-size: 13px; }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 60px 0 0;
  background: var(--bg);
  margin-top: -68px;
}
.hero__image {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.hero__image img {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroZoom 9s var(--ease) forwards;
}
.hero__image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(242, 228, 210, 0.35) 0%, rgba(242, 228, 210, 0) 25%, rgba(242, 228, 210, 0) 60%, rgba(242, 228, 210, 0.55) 100%);
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }

.hero__inner { position: relative; z-index: 2; width: 100%; padding-bottom: 56px; }
.hero__eyebrow {
  position: absolute; top: 100px; left: var(--gutter);
  font-family: var(--display); font-size: 17px; line-height: 1.2; color: var(--fg);
  max-width: 240px; letter-spacing: -0.01em; font-weight: 500;
}
.hero__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(4.5rem, 16vw, 18rem);
  line-height: 0.84; letter-spacing: -0.045em;
  color: var(--fg);
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap;
  gap: 0 4vw;
}
.hero__title span:nth-child(2) { color: var(--accent); }
.hero__sub {
  position: absolute; bottom: 28px; right: var(--gutter);
  font-family: var(--display); font-size: 15px;
  color: var(--fg-soft); letter-spacing: -0.005em;
  max-width: 240px; text-align: right;
}

.hero__chip {
  position: absolute; left: 50%; top: 56%;
  transform: translate(-50%, -50%) rotate(-4deg);
  width: min(280px, 36vw);
  background: var(--accent);
  color: #fff; padding: 10px;
  border-radius: 8px;
  box-shadow: 0 30px 60px -20px rgba(21, 22, 27, 0.45), 0 8px 20px -8px rgba(21, 22, 27, 0.3);
  font-family: var(--mono);
  font-size: 12px;
  z-index: 1;
}
.hero__chip-bar { display: flex; align-items: center; gap: 6px; padding: 4px 8px 10px; border-bottom: 1px solid rgba(255,255,255,0.18); margin-bottom: 12px; }
.hero__chip-bar i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); }
.hero__chip-rows { display: grid; gap: 6px; padding: 0 4px 4px; }
.hero__chip-row { display: flex; justify-content: space-between; gap: 12px; opacity: 0.92; }
.hero__chip-row b { font-weight: 500; }
.hero__chip-row span { font-feature-settings: 'tnum'; opacity: 0.7; }
.hero__chip-tag { display: inline-block; background: rgba(255,255,255,0.18); padding: 3px 8px; border-radius: 999px; font-size: 10px; margin-bottom: 8px; letter-spacing: 0.06em; text-transform: uppercase; }

@media (max-width: 720px) {
  .hero__eyebrow { top: 84px; font-size: 14px; max-width: 200px; }
  .hero__sub { font-size: 12px; max-width: 180px; }
  .hero__chip { width: 220px; top: 52%; }
}

/* SCROLL CUE */
.scroll-cue {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg); opacity: 0.7;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  z-index: 2;
}
.scroll-cue::after {
  content: ''; width: 1px; height: 24px;
  background: linear-gradient(180deg, var(--fg), transparent);
  animation: scrollPulse 2.2s var(--ease) infinite;
}
@keyframes scrollPulse { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* SECTIONS */
section { padding: clamp(80px, 12vw, 160px) 0; position: relative; }
section.tight { padding: clamp(60px, 8vw, 110px) 0; }
.section-head { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end; margin-bottom: 64px; }
.section-head__intro { display: flex; flex-direction: column; gap: 16px; }
.section-head__copy { color: var(--fg-soft); max-width: 44ch; }
@media (max-width: 880px) { .section-head { grid-template-columns: 1fr; gap: 28px; } }

/* TRANSITION GHOST WORD */
.ghost {
  position: relative;
  text-align: center;
  padding: clamp(100px, 14vw, 180px) 0;
  overflow: hidden;
}
.ghost__word {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--display); font-weight: 400;
  font-size: clamp(12rem, 28vw, 28rem);
  line-height: 0.85; letter-spacing: -0.045em;
  color: var(--bg-deep);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
.ghost__content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  text-align: center;
}
.ghost__lead { font-size: 18px; color: var(--fg-soft); }
.ghost__folder {
  width: 220px; height: 170px;
  background: var(--accent);
  border-radius: 12px 12px 14px 14px;
  position: relative;
  box-shadow: 0 24px 50px -12px rgba(39, 71, 240, 0.45), 0 8px 18px -8px rgba(39, 71, 240, 0.3);
  display: flex; align-items: center; justify-content: center;
  transition: transform .4s var(--ease);
  margin: 14px 0;
}
.ghost__folder::before {
  content: ''; position: absolute; top: -10px; left: 16px;
  width: 90px; height: 18px;
  background: var(--accent-deep);
  border-radius: 6px 6px 0 0;
}
.ghost__folder-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,0.22);
  color: #fff; padding: 3px 8px; border-radius: 999px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.ghost__folder-mark {
  font-family: var(--display); font-size: 56px; font-weight: 500;
  color: rgba(255,255,255,0.5); line-height: 1;
}
.ghost__folder:hover { transform: scale(1.04) rotate(-1.5deg); }

/* CARDS — articles / case studies */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 980px) { .cards-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .cards-grid { grid-template-columns: 1fr; gap: 28px; } }

.card {
  position: relative;
  display: flex; flex-direction: column;
  background: transparent;
}
.card__media {
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-alt);
  margin-bottom: 18px;
}
.card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.card:hover .card__media img { transform: scale(1.04); }
.card__meta {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); margin-bottom: 10px;
}
.card__meta::before { content: ''; width: 16px; height: 1px; background: var(--accent); display: inline-block; }
.card__title {
  font-family: var(--display); font-weight: 400;
  font-size: 22px; letter-spacing: -0.018em; line-height: 1.18;
  margin-bottom: 12px;
}
.card__copy { color: var(--fg-soft); font-size: 15px; line-height: 1.6; }
.card__link {
  margin-top: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--accent);
  font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.12em;
}
.card__link::after { content: '→'; transition: transform .25s var(--ease); }
.card:hover .card__link::after { transform: translateX(4px); }

/* CATEGORIES — topic grid */
.topic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 980px) { .topic-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .topic-grid { grid-template-columns: 1fr; } }
.topic {
  background: var(--bg);
  padding: 36px 28px;
  display: flex; flex-direction: column; gap: 12px;
  transition: background .3s var(--ease);
  min-height: 200px;
  justify-content: space-between;
}
.topic:hover { background: var(--bg-alt); }
.topic__num { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.12em; }
.topic__title { font-family: var(--display); font-size: 24px; letter-spacing: -0.018em; line-height: 1.12; }
.topic__count { font-family: var(--mono); font-size: 12px; color: var(--accent); margin-top: 6px; }

/* STATS BAR */
.stats {
  background: var(--fg);
  color: var(--bg);
  padding: clamp(60px, 9vw, 110px) 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media (max-width: 880px) { .stats__grid { grid-template-columns: 1fr 1fr; gap: 56px 32px; } }
@media (max-width: 460px) { .stats__grid { grid-template-columns: 1fr; } }
.stat {
  display: flex; flex-direction: column; gap: 8px;
  border-top: 1px solid rgba(242, 228, 210, 0.2);
  padding-top: 18px;
}
.stat__num {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(3rem, 6vw, 5rem); line-height: 0.9;
  letter-spacing: -0.04em;
}
.stat__num em { color: var(--accent); }
.stat__label { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(242, 228, 210, 0.65); }

/* MANIFESTO */
.manifesto {
  text-align: center;
  padding: clamp(120px, 16vw, 200px) 0;
  background: var(--bg-alt);
}
.manifesto__quote {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.12; letter-spacing: -0.025em;
  max-width: 22ch; margin: 0 auto 32px;
  color: var(--fg);
}
.manifesto__mark {
  font-family: var(--display); font-size: 140px; line-height: 0.7;
  color: var(--accent); margin-bottom: -10px;
}
.manifesto__author {
  font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted);
  display: inline-flex; align-items: center; gap: 14px;
}
.manifesto__author::before { content: ''; width: 30px; height: 1px; background: var(--muted); }

/* NEWSLETTER */
.newsletter {
  background: var(--fg);
  color: var(--bg);
  padding: clamp(100px, 14vw, 160px) 0;
  position: relative;
  overflow: hidden;
}
.newsletter__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: end;
}
@media (max-width: 880px) { .newsletter__inner { grid-template-columns: 1fr; gap: 36px; } }
.newsletter__title { color: var(--bg); font-family: var(--display); font-weight: 400; font-size: clamp(2.25rem, 5.5vw, 4.5rem); line-height: 1.0; letter-spacing: -0.025em; }
.newsletter__copy { color: rgba(242, 228, 210, 0.7); margin-bottom: 24px; }
.newsletter__form {
  display: flex; gap: 0;
  border-bottom: 1px solid rgba(242, 228, 210, 0.3);
  padding-bottom: 6px;
}
.newsletter__form input {
  flex: 1; background: transparent; border: 0; padding: 14px 0;
  color: var(--bg); font-size: 16px; outline: none;
}
.newsletter__form input::placeholder { color: rgba(242, 228, 210, 0.45); }
.newsletter__form button {
  font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--accent); padding: 14px 0 14px 16px;
  display: inline-flex; align-items: center; gap: 8px;
}
.newsletter__form button::after { content: '→'; transition: transform .25s var(--ease); }
.newsletter__form button:hover::after { transform: translateX(4px); }
.newsletter__small { font-family: var(--mono); font-size: 11px; color: rgba(242, 228, 210, 0.5); margin-top: 14px; letter-spacing: 0.06em; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px;
  border-radius: 9999px;
  font-family: var(--mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.14em;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
  border: 1px solid transparent;
}
.btn--primary { background: var(--fg); color: var(--bg); }
.btn--primary:hover { background: var(--accent); }
.btn--ghost { border-color: var(--border); color: var(--fg); }
.btn--ghost:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--accent-deep); }
.btn::after { content: '→'; transition: transform .25s var(--ease); }
.btn:hover::after { transform: translateX(3px); }

/* SERVICES PAGE — list view */
.svc-list { display: flex; flex-direction: column; }
.svc-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.6fr auto;
  gap: 40px;
  align-items: start;
  padding: 38px 0;
  border-top: 1px solid var(--border-soft);
  transition: padding-left .3s var(--ease);
}
.svc-row:last-child { border-bottom: 1px solid var(--border-soft); }
.svc-row:hover { padding-left: 12px; }
.svc-row__num { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.12em; padding-top: 14px; }
.svc-row__title { font-family: var(--display); font-size: clamp(1.5rem, 3vw, 2.25rem); line-height: 1.05; letter-spacing: -0.02em; }
.svc-row__copy { color: var(--fg-soft); font-size: 15px; line-height: 1.65; max-width: 56ch; }
.svc-row__link { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); padding-top: 16px; white-space: nowrap; }
.svc-row__link::after { content: ' →'; }
@media (max-width: 880px) {
  .svc-row { grid-template-columns: 1fr; gap: 14px; }
  .svc-row__num { padding-top: 0; }
  .svc-row__link { padding-top: 6px; }
}

/* PROCESS / TIMELINE */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  counter-reset: step;
}
@media (max-width: 980px) { .process { grid-template-columns: 1fr 1fr; gap: 40px 24px; } }
@media (max-width: 540px) { .process { grid-template-columns: 1fr; } }
.process__step {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  position: relative;
}
.process__step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute; top: -10px; left: 0;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  background: var(--bg); color: var(--accent); padding-right: 10px;
}
.process__title { font-family: var(--display); font-size: 22px; letter-spacing: -0.018em; margin-bottom: 10px; line-height: 1.1; }
.process__copy { color: var(--fg-soft); font-size: 14.5px; line-height: 1.65; }

/* TEAM / PRINCIPLES — text only, monograms */
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
@media (max-width: 880px) { .principles { grid-template-columns: 1fr; } }
.principle {
  background: var(--bg);
  padding: 40px 32px;
}
.principle__num { font-family: var(--mono); font-size: 11px; color: var(--accent); letter-spacing: 0.12em; }
.principle__title { font-family: var(--display); font-size: 24px; letter-spacing: -0.018em; margin: 14px 0 12px; line-height: 1.1; }
.principle__copy { color: var(--fg-soft); font-size: 15px; line-height: 1.65; }

/* MONOGRAM AVATAR */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px 24px;
}
@media (max-width: 980px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .team-grid { grid-template-columns: 1fr; } }
.member { display: flex; flex-direction: column; gap: 12px; }
.member__mono {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 400;
  font-size: 80px; letter-spacing: -0.04em;
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.member__mono::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.18), transparent 60%);
}
.member--m1 { background: var(--accent); }
.member--m2 { background: var(--fg); }
.member--m3 { background: var(--bg-deep); color: var(--fg); }
.member--m4 { background: #C9DAF8; color: var(--accent-deep); }
.member__name { font-family: var(--display); font-size: 17px; letter-spacing: -0.012em; line-height: 1.2; }
.member__role { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; }

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info__row {
  display: grid; grid-template-columns: 100px 1fr;
  gap: 24px; padding: 18px 0;
  border-top: 1px solid var(--border-soft);
  align-items: start;
}
.contact-info__label { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; padding-top: 2px; }
.contact-info__value { font-family: var(--display); font-size: 17px; letter-spacing: -0.005em; line-height: 1.4; }
.contact-info__value a:hover { color: var(--accent); }

.contact-form {
  background: var(--bg-alt);
  padding: 40px;
  border-radius: 4px;
}
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.field label { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
.field input, .field textarea, .field select {
  padding: 12px 0; background: transparent; border: 0;
  border-bottom: 1px solid var(--border);
  color: var(--fg); font-size: 16px; outline: none;
  transition: border-color .25s var(--ease);
  font-family: var(--sans);
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 110px; line-height: 1.5; }
.contact-form button { width: 100%; justify-content: center; margin-top: 8px; }

/* FAQ */
.faq { display: flex; flex-direction: column; }
.faq__item {
  border-top: 1px solid var(--border-soft);
  padding: 22px 0;
}
.faq__item:last-child { border-bottom: 1px solid var(--border-soft); }
.faq__q {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; text-align: left;
  font-family: var(--display); font-size: clamp(1.1rem, 2vw, 1.4rem);
  letter-spacing: -0.012em; line-height: 1.25;
  padding-right: 16px;
}
.faq__q::after { content: '+'; font-size: 22px; color: var(--accent); flex-shrink: 0; transition: transform .3s var(--ease); }
.faq__item[open] .faq__q::after { content: '–'; }
.faq__a { color: var(--fg-soft); padding-top: 14px; max-width: 70ch; line-height: 1.7; font-size: 15.5px; }

/* PRICING / COMMITMENT */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (max-width: 880px) { .tiers { grid-template-columns: 1fr; } }
.tier {
  background: var(--bg);
  padding: 40px 32px;
  display: flex; flex-direction: column; gap: 14px;
}
.tier--feat { background: var(--fg); color: var(--bg); }
.tier--feat .tier__name { color: var(--accent); }
.tier__name { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent); }
.tier__title { font-family: var(--display); font-size: 30px; letter-spacing: -0.02em; line-height: 1.1; }
.tier__copy { color: var(--fg-soft); font-size: 15px; line-height: 1.6; flex: 1; }
.tier--feat .tier__copy { color: rgba(242, 228, 210, 0.7); }
.tier__list { list-style: none; padding: 0; margin: 14px 0 0; display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; }
.tier__list li { padding-left: 18px; position: relative; line-height: 1.45; }
.tier__list li::before { content: '·'; position: absolute; left: 6px; color: var(--accent); font-weight: 700; font-size: 22px; line-height: 0; top: 12px; }

/* FOOTER */
.footer {
  padding: clamp(60px, 8vw, 100px) 0 28px;
  background: var(--bg);
  border-top: 1px solid var(--border-soft);
}
.footer__hero {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(4rem, 14vw, 14rem);
  line-height: 0.86; letter-spacing: -0.045em;
  color: var(--fg);
  margin-bottom: 60px;
}
.footer__hero em { color: var(--accent); }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--border-soft);
}
@media (max-width: 880px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 460px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__col h4 { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin: 0 0 18px; font-weight: 500; }
.footer__col a { display: block; padding: 5px 0; font-size: 14px; color: var(--fg-soft); transition: color .2s var(--ease); }
.footer__col a:hover { color: var(--accent); }
.footer__brand p { color: var(--fg-soft); font-size: 14px; max-width: 38ch; }
.footer__copy {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px;
  margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border-soft);
  font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.06em;
}

/* COOKIE POPUP */
.cookie-popup {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: flex-end; justify-content: flex-end;
  padding: 24px;
  background: rgba(21, 22, 27, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease);
}
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card {
  background: var(--bg); padding: 32px 36px;
  max-width: 460px; width: 100%;
  border-radius: 6px;
  box-shadow: 0 30px 60px -20px rgba(21, 22, 27, 0.35);
}
.cookie-popup__label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  color: var(--accent); text-transform: uppercase; margin-bottom: 14px;
}
.cookie-popup__card h3 { font-family: var(--display); font-size: 22px; margin: 0 0 12px; letter-spacing: -0.015em; line-height: 1.2; }
.cookie-popup__card p { font-size: 14px; color: var(--fg-soft); line-height: 1.6; margin: 0; }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 22px; }
.cookie-popup__actions button {
  padding: 11px 22px; border: 1px solid var(--border);
  font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
  border-radius: 9999px;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.cookie-popup__actions button[data-cookie="decline"] { background: transparent; color: var(--fg); }
.cookie-popup__actions button[data-cookie="decline"]:hover { background: var(--bg-alt); }
.cookie-popup__actions button[data-cookie="accept"] { background: var(--fg); color: var(--bg); border-color: var(--fg); flex: 1; }
.cookie-popup__actions button[data-cookie="accept"]:hover { background: var(--accent); border-color: var(--accent); }

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* INNER HERO (subpage) */
.page-hero {
  padding: clamp(140px, 18vw, 240px) 0 clamp(70px, 10vw, 120px);
  background: var(--bg);
  position: relative;
}
.page-hero__eyebrow { margin-bottom: 28px; }
.page-hero h1 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(3rem, 8.5vw, 7rem);
  line-height: 0.94; letter-spacing: -0.035em;
  max-width: 12ch;
  margin: 0 0 28px;
}
.page-hero h1 em { color: var(--accent); }
.page-hero .lede { font-size: clamp(17px, 1.6vw, 21px); }

/* legal page styling */
.legal { padding: clamp(140px, 18vw, 220px) 0 clamp(60px, 8vw, 100px); }
.legal__wrap { max-width: 760px; margin: 0 auto; }
.legal__wrap h1 { font-family: var(--display); font-weight: 400; font-size: clamp(2.5rem, 6vw, 4rem); letter-spacing: -0.025em; line-height: 1.0; margin: 0 0 16px; }
.legal__wrap h2 { font-family: var(--display); font-weight: 400; font-size: 22px; letter-spacing: -0.018em; line-height: 1.2; margin: 38px 0 12px; }
.legal__wrap p, .legal__wrap li { color: var(--fg-soft); font-size: 15.5px; line-height: 1.75; }
.legal__wrap .meta { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 36px; }
.legal__wrap ul { padding-left: 20px; }
.legal__wrap a { color: var(--accent); }
.legal__wrap a:hover { text-decoration: underline; }

/* MARQUEE */
.marquee {
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: var(--bg);
  padding: 22px 0;
  overflow: hidden;
}
.marquee__track {
  display: flex; gap: 56px;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
  font-family: var(--display); font-size: 24px; letter-spacing: -0.018em; color: var(--fg);
  align-items: center;
}
.marquee__track span { display: inline-flex; align-items: center; gap: 56px; }
.marquee__track i { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); display: inline-block; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
