/* palette: bg=#EFE5D0 fg=#28332A accent=#A43F1D */
/* fonts: display="PT Serif" body="Karla" mono="IBM Plex Mono" */

:root {
  --bg: #EFE5D0;
  --bg-alt: #E2D3B0;
  --bg-deep: #1F2A1E;
  --fg: #28332A;
  --fg-soft: #3F4F40;
  --muted: #7E7460;
  --accent: #A43F1D;
  --accent-deep: #762A0F;
  --glaze: #4F6E3F;
  --border: rgba(40, 51, 42, 0.16);
  --border-soft: rgba(40, 51, 42, 0.08);
  --serif: 'PT Serif', ui-serif, Georgia, serif;
  --sans: 'Karla', ui-sans-serif, system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, 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(--bg); }

/* ─── Type scale ─── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  margin: 0;
  color: var(--fg);
}
h1 { letter-spacing: -0.03em; line-height: 0.96; }
h2 { letter-spacing: -0.02em; line-height: 1.02; }
h3 { letter-spacing: -0.01em; line-height: 1.18; }
p { margin: 0 0 1.2em; }
em { font-style: italic; color: var(--accent); font-family: var(--serif); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) {
  .container { padding: 0 22px; }
}

/* ─── Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ─── Header ─── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(239, 229, 208, 0.86);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  transition: box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}
.header[data-scrolled="true"] {
  box-shadow: 0 1px 0 var(--border-soft), 0 8px 28px -16px rgba(40, 51, 42, 0.18);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
}
.brand__mark {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
  flex: none;
  box-shadow: inset 0 -6px 10px rgba(0,0,0,0.14), inset 2px 4px 6px rgba(255,255,255,0.18);
}
.brand__mark::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  border: 1px solid rgba(239, 229, 208, 0.55);
}
.nav { display: flex; gap: 36px; align-items: center; }
.nav a {
  font-size: 14px;
  letter-spacing: 0.01em;
  position: relative;
  padding: 4px 0;
  color: var(--fg);
  transition: color 0.3s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1px;
  background: var(--accent);
  transition: right 0.45s var(--ease);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { right: 0; }
.nav a[aria-current="page"] { color: var(--accent); }
.header__cta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 22px;
  border: 1px solid var(--fg);
  border-radius: 999px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.header__cta:hover { background: var(--fg); color: var(--bg); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.menu-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--fg);
  display: block;
  transition: transform 0.4s 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 {
  position: fixed;
  inset: 84px 0 0 0;
  background: var(--bg);
  z-index: 99;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
  pointer-events: none;
}
.mobile-menu[data-open="true"] { transform: none; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 32px;
  border-bottom: 1px solid var(--border-soft);
  padding-bottom: 16px;
}
.mobile-menu .header__cta { align-self: flex-start; margin-top: 12px; }

@media (max-width: 920px) {
  .nav, .header__cta:not(.mobile-menu .header__cta) { display: none; }
  .menu-toggle { display: flex; }
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
  overflow: hidden;
  background: var(--bg);
  border-bottom: 1px solid var(--border-soft);
}
.hero__copy {
  padding: clamp(40px, 8vw, 100px) clamp(32px, 6vw, 88px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  position: relative;
}
.hero__copy::after {
  content: "";
  position: absolute;
  left: clamp(32px, 6vw, 88px);
  bottom: 36px;
  width: 60px;
  height: 1px;
  background: var(--accent);
}
.hero h1 {
  font-size: clamp(3.4rem, 9vw, 8.4rem);
  font-weight: 400;
}
.hero__lede {
  max-width: 460px;
  font-size: 19px;
  color: var(--fg-soft);
  line-height: 1.7;
}
.hero__actions { display: flex; gap: 18px; flex-wrap: wrap; }
.btn {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 18px 32px;
  border-radius: 999px;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.btn--primary {
  background: var(--fg);
  color: var(--bg);
  border: 1px solid var(--fg);
}
.btn--primary:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--fg);
}
.btn--ghost:hover { background: var(--fg); color: var(--bg); }
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.link-arrow:hover { gap: 14px; color: var(--accent); }

.hero__media {
  position: relative;
  overflow: hidden;
  background: var(--bg-deep);
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 9s var(--ease) both;
}
@keyframes heroZoom {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}
.hero__badge {
  position: absolute;
  bottom: 36px;
  right: 36px;
  background: var(--bg);
  color: var(--fg);
  padding: 22px 26px;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  max-width: 240px;
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.24);
}
.hero__badge strong {
  display: block;
  font-family: var(--serif);
  font-size: 36px;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--accent);
  font-weight: 400;
  margin-bottom: 4px;
}
@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__media { height: 60vh; order: -1; }
  .hero__copy { padding: 56px 22px 80px; }
}

/* ─── Stats ─── */
.stats {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border-soft);
}
.stats__head {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: end;
}
.stats__head h2 {
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
}
.stats__head p {
  color: var(--fg-soft);
  max-width: 480px;
  font-size: 18px;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}
.stat {
  padding: 36px 32px 36px 0;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; padding-right: 0; }
.stat__num {
  font-family: var(--serif);
  font-size: clamp(3rem, 5.5vw, 4.6rem);
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.stat__num span { font-size: 0.4em; color: var(--muted); letter-spacing: 0; font-family: var(--mono); }
.stat__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-soft);
}
@media (max-width: 920px) {
  .stats__head { grid-template-columns: 1fr; gap: 28px; margin-bottom: 56px; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat { border-bottom: 1px solid var(--border); padding: 28px 22px; }
  .stat:nth-child(2n) { border-right: none; padding-right: 0; }
}

/* ─── Section base ─── */
.section { padding: clamp(80px, 12vw, 160px) 0; }
.section-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 72px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.section-head h2 {
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  max-width: 760px;
}
.section-head__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--muted);
  align-self: start;
  padding-top: 10px;
}
.section-head__link { white-space: nowrap; }
@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; gap: 22px; }
}

/* ─── Spotlights ─── */
.spotlights { background: var(--bg); }
.spotlights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.member {
  display: flex;
  flex-direction: column;
  position: relative;
}
.member__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-alt);
  margin-bottom: 24px;
}
.member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
  transition: transform 1.2s var(--ease), filter 0.6s var(--ease);
}
.member:hover .member__photo img {
  transform: scale(1.05);
  filter: saturate(1.05) contrast(1);
}
.member__num {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--bg);
  background: rgba(31, 42, 30, 0.7);
  padding: 6px 10px;
  backdrop-filter: blur(4px);
}
.member__role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.member h3 {
  font-size: 28px;
  margin-bottom: 10px;
}
.member__where {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
  font-family: var(--mono);
  letter-spacing: 0.04em;
}
.member__quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.55;
  color: var(--fg-soft);
  border-left: 2px solid var(--accent);
  padding-left: 18px;
}
@media (max-width: 920px) {
  .spotlights__grid { grid-template-columns: 1fr; gap: 56px; }
}

/* ─── Manifesto ─── */
.manifesto {
  background: var(--bg-deep);
  color: var(--bg);
  padding: clamp(110px, 16vw, 200px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.manifesto::before, .manifesto::after {
  content: "";
  position: absolute;
  background: var(--accent);
  opacity: 0.7;
}
.manifesto::before { top: 60px; left: 50%; transform: translateX(-50%); width: 1px; height: 40px; }
.manifesto::after { bottom: 60px; left: 50%; transform: translateX(-50%); width: 1px; height: 40px; }
.manifesto__quote {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  line-height: 1.18;
  letter-spacing: -0.015em;
  font-weight: 400;
  max-width: 980px;
  margin: 0 auto;
  color: var(--bg);
}
.manifesto__quote em { color: #E6A877; font-style: italic; }
.manifesto__attrib {
  margin-top: 48px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(239, 229, 208, 0.6);
}

/* ─── Events ─── */
.events { background: var(--bg-alt); }
.events__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.event {
  display: grid;
  grid-template-columns: 100px 1fr 1.4fr auto;
  gap: 40px;
  padding: 44px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: padding-left 0.5s var(--ease), background 0.5s var(--ease);
}
.event:hover {
  padding-left: 24px;
  background: linear-gradient(90deg, rgba(164,63,29,0.06), transparent 70%);
}
.event__date {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.1;
}
.event__date strong {
  display: block;
  font-size: 44px;
  letter-spacing: -0.03em;
  font-weight: 400;
  color: var(--accent);
}
.event__date span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
  display: block;
}
.event__type {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-soft);
  border-left: 2px solid var(--accent);
  padding-left: 14px;
}
.event__title {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.25;
}
.event__title small {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
  font-weight: 500;
}
.event__action { font-family: var(--mono); font-size: 22px; transition: transform 0.4s var(--ease); }
.event:hover .event__action { transform: translateX(8px); color: var(--accent); }
@media (max-width: 920px) {
  .event { grid-template-columns: 80px 1fr; gap: 24px; padding: 32px 0; }
  .event__type, .event__action { grid-column: 2; }
  .event__title { grid-column: 1 / -1; }
}

/* ─── Discussion ─── */
.discussion { background: var(--bg); }
.discussion__layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.discussion__intro h2 {
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  margin-bottom: 24px;
}
.discussion__intro p {
  color: var(--fg-soft);
  font-size: 18px;
  margin-bottom: 32px;
}
.thread {
  display: block;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  transition: padding-left 0.4s var(--ease);
}
.thread:last-child { border-bottom: 1px solid var(--border); }
.thread:hover { padding-left: 16px; }
.thread__meta {
  display: flex;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.thread__meta span:first-child { color: var(--accent); }
.thread__title {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  line-height: 1.3;
  margin-bottom: 12px;
  transition: color 0.3s var(--ease);
}
.thread:hover .thread__title { color: var(--accent); }
.thread__author {
  font-size: 14px;
  color: var(--fg-soft);
  display: flex;
  align-items: center;
  gap: 12px;
}
.thread__author::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
}
@media (max-width: 920px) {
  .discussion__layout { grid-template-columns: 1fr; gap: 40px; }
}

/* ─── Join CTA ─── */
.join {
  padding: clamp(110px, 16vw, 180px) 0;
  background: var(--bg);
  border-top: 1px solid var(--border-soft);
  position: relative;
  overflow: hidden;
}
.join__inner {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.join h2 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  margin: 24px 0 28px;
}
.join p {
  font-size: 19px;
  color: var(--fg-soft);
  margin-bottom: 44px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.join__form {
  display: flex;
  max-width: 540px;
  margin: 0 auto;
  border-bottom: 1px solid var(--fg);
}
.join__form input {
  flex: 1;
  padding: 18px 0;
  background: transparent;
  border: 0;
  font-family: var(--sans);
  font-size: 17px;
  color: var(--fg);
  outline: 0;
}
.join__form input::placeholder { color: var(--muted); }
.join__form button {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 18px 0 18px 24px;
  white-space: nowrap;
  transition: padding 0.4s var(--ease);
}
.join__form button:hover { padding-right: 8px; padding-left: 32px; }
.join__note {
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── Footer ─── */
.footer {
  background: var(--bg-deep);
  color: rgba(239, 229, 208, 0.74);
  padding: 100px 0 32px;
}
.footer .container { color: inherit; }
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(239,229,208,0.14);
}
.footer__brand .brand { color: var(--bg); font-size: 26px; margin-bottom: 22px; }
.footer__tagline { font-family: var(--serif); font-size: 22px; line-height: 1.35; max-width: 380px; color: rgba(239,229,208,0.85); }
.footer h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(239,229,208,0.5);
  font-weight: 500;
  margin-bottom: 24px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.footer ul a:hover { color: #E6A877; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(239,229,208,0.45);
}
.footer__bottom a:hover { color: var(--bg); }
@media (max-width: 920px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; padding-bottom: 56px; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ─── 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(31, 42, 30, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card {
  background: var(--bg);
  padding: 36px 38px;
  max-width: 460px;
  border-radius: 4px;
  border: 1px solid var(--border);
  box-shadow: 0 32px 64px -16px rgba(0,0,0,0.32);
}
.cookie-popup__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.cookie-popup__card h3 {
  font-family: var(--serif);
  font-size: 24px;
  margin-bottom: 14px;
}
.cookie-popup__card p {
  font-size: 14px;
  color: var(--fg-soft);
  line-height: 1.65;
  margin-bottom: 22px;
}
.cookie-popup__actions { display: flex; gap: 12px; }
.cookie-popup__actions button {
  padding: 12px 22px;
  border: 1px solid var(--border);
  cursor: pointer;
  font-size: 13px;
  font-family: var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  color: var(--fg);
  border-radius: 999px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.cookie-popup__actions button:hover { background: var(--bg-alt); }
.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); border-color: var(--accent); }

/* ─── Subpage hero ─── */
.subhero {
  padding: clamp(140px, 18vw, 220px) 0 clamp(60px, 9vw, 120px);
  border-bottom: 1px solid var(--border-soft);
}
.subhero__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: end;
}
.subhero h1 {
  font-size: clamp(3rem, 7vw, 6.4rem);
  font-weight: 400;
}
.subhero__lede {
  font-size: 19px;
  color: var(--fg-soft);
  line-height: 1.7;
  max-width: 540px;
}
@media (max-width: 920px) {
  .subhero__inner { grid-template-columns: 1fr; gap: 28px; }
}

/* ─── Pillars (about) ─── */
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}
.pillar {
  padding: 56px 36px 56px 0;
  border-right: 1px solid var(--border);
  position: relative;
}
.pillar:last-child { border-right: none; padding-right: 0; }
.pillar__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 24px;
}
.pillar h3 { font-size: 28px; margin-bottom: 18px; }
.pillar p { color: var(--fg-soft); font-size: 16px; }
@media (max-width: 920px) {
  .pillars__grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--border); padding: 40px 0; }
  .pillar:last-child { border-bottom: none; }
}

/* ─── Council (team) ─── */
.council__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.council__card {
  display: flex;
  flex-direction: column;
}
.council__card .member__photo { aspect-ratio: 1 / 1; }
.council__card h3 { font-size: 22px; }
@media (max-width: 920px) {
  .council__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .council__grid { grid-template-columns: 1fr; }
}

/* ─── Services list ─── */
.svc-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.svc {
  display: grid;
  grid-template-columns: 80px 1fr 1.6fr;
  gap: 44px;
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  transition: background 0.5s var(--ease), padding-left 0.5s var(--ease);
}
.svc:hover { padding-left: 24px; background: linear-gradient(90deg, rgba(164,63,29,0.05), transparent 60%); }
.svc__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--accent);
}
.svc h3 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 14px; }
.svc__tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.svc__body { color: var(--fg-soft); font-size: 17px; }
.svc__body p { margin-bottom: 14px; }
.svc__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 36px;
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg);
}
.svc__meta strong { color: var(--accent); display: block; font-weight: 500; margin-bottom: 4px; }
@media (max-width: 920px) {
  .svc { grid-template-columns: 1fr; gap: 16px; padding: 40px 0; }
}

/* ─── Process ─── */
.process { background: var(--bg-alt); }
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.step {
  padding: 28px 24px 28px 0;
  border-top: 2px solid var(--accent);
}
.step__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 14px;
}
.step h4 { font-family: var(--serif); font-size: 22px; margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--fg-soft); }
@media (max-width: 920px) {
  .process__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .process__grid { grid-template-columns: 1fr; }
}

/* ─── Contact ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-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.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field textarea, .field select {
  font-family: var(--sans);
  font-size: 17px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  color: var(--fg);
  outline: 0;
  transition: border-color 0.3s var(--ease);
  border-radius: 0;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-form button { justify-self: flex-start; margin-top: 8px; }

.contact-info { padding-left: 0; }
.contact-info__block { padding: 28px 0; border-bottom: 1px solid var(--border); }
.contact-info__block:first-child { border-top: 1px solid var(--border); }
.contact-info h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  font-weight: 500;
}
.contact-info p { font-family: var(--serif); font-size: 22px; line-height: 1.4; margin: 0; }
.contact-info p span { color: var(--muted); font-size: 14px; font-family: var(--sans); display: block; margin-top: 6px; }
@media (max-width: 920px) {
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .field-row { grid-template-columns: 1fr; }
}

/* ─── Legal pages ─── */
.legal {
  padding: clamp(140px, 16vw, 220px) 0 clamp(80px, 12vw, 140px);
}
.legal__inner { max-width: 760px; margin: 0 auto; }
.legal h1 {
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  margin-bottom: 16px;
}
.legal__updated {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 60px;
  display: block;
}
.legal h2 {
  font-size: 28px;
  margin: 48px 0 20px;
}
.legal h3 { font-size: 21px; margin: 32px 0 14px; }
.legal p, .legal li { color: var(--fg-soft); font-size: 17px; line-height: 1.78; }
.legal ul { padding-left: 20px; }
.legal a { color: var(--accent); border-bottom: 1px solid currentColor; }

/* ─── Thanks ─── */
.thanks {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px;
}
.thanks__inner { max-width: 640px; }
.thanks h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); margin: 28px 0 20px; }
.thanks p { font-size: 18px; color: var(--fg-soft); margin-bottom: 36px; }
