/* palette: bg=#F1E7CE fg=#1C1813 accent=#A6180F */
/* fonts: display="Libre Caslon Display" body="Libre Franklin" mono="Courier Prime" */

:root {
  --bg: #F1E7CE;          /* aged, yellowed newsprint */
  --bg-alt: #E7D9B6;      /* deeper cream band */
  --bg-deep: #DFCEA4;     /* deepest cream (rules, insets) */
  --fg: #1C1813;          /* newspaper ink */
  --fg-soft: #38311F;     /* softer ink */
  --muted: #736A52;       /* faded sepia grey */
  --accent: #A6180F;      /* sealing-wax red */
  --accent-deep: #78100A; /* darker seal red for hover */
  --paper-on-dark: #EFE4C7;
  --border: rgba(28, 24, 19, 0.18);
  --border-strong: rgba(28, 24, 19, 0.34);

  --serif: 'Libre Caslon Display', 'Times New Roman', ui-serif, serif;
  --text-serif: 'Libre Caslon Text', 'Times New Roman', ui-serif, serif;
  --sans: 'Libre Franklin', ui-sans-serif, system-ui, sans-serif;
  --mono: 'Courier Prime', ui-monospace, 'Courier New', monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --container: 1220px;
  --shadow-card: 0 4px 24px -4px rgba(28, 24, 19, 0.10);
  --shadow-hover: 0 14px 44px -10px rgba(28, 24, 19, 0.20);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.75;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
::selection { background: var(--accent); color: var(--paper-on-dark); }

/* ------------------------------------------------------------------ */
/*  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(72px, 12vw, 156px) 0; position: relative; }
.section--alt { background: var(--bg-alt); }
.section--deep { background: var(--bg-deep); }
.section--dark {
  background: var(--fg);
  color: var(--paper-on-dark);
}
.section--tight { padding: clamp(56px, 8vw, 104px) 0; }

/* Newspaper rules */
.rule { height: 1px; background: var(--border-strong); border: 0; margin: 0; }
.rule--double {
  height: 6px;
  background: none;
  border-top: 2px solid var(--fg);
  border-bottom: 1px solid var(--fg);
}
.rule--accent { height: 3px; background: var(--accent); border: 0; }

/* ------------------------------------------------------------------ */
/*  TYPOGRAPHY HELPERS                                                 */
/* ------------------------------------------------------------------ */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  font-weight: 700;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}
.section--dark .eyebrow { color: #E8A79E; }
.section--dark .eyebrow::before { background: #E8A79E; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: inherit;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.06;
}

.h-display {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  letter-spacing: -0.025em;
  line-height: 1.02;
}
.h-section {
  font-size: clamp(2.4rem, 5.6vw, 4.6rem);
  letter-spacing: -0.02em;
  line-height: 1.04;
}
em, .accent-word { font-style: italic; color: var(--accent); }
.section--dark em { color: #E8A79E; }

.lead {
  font-size: clamp(1.12rem, 1.9vw, 1.4rem);
  line-height: 1.62;
  color: var(--fg-soft);
  font-weight: 400;
}
.section--dark .lead { color: rgba(239, 228, 199, 0.82); }

/* ------------------------------------------------------------------ */
/*  BUTTONS & LINKS                                                    */
/* ------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 15px 30px;
  border: 1.5px solid var(--fg);
  background: var(--fg);
  color: var(--paper-on-dark);
  border-radius: 1px;
  transition: transform 0.35s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  will-change: transform;
}
.btn:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-hover); }

.btn--ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--border-strong);
}
.btn--ghost:hover { background: transparent; border-color: var(--accent); color: var(--accent); transform: translateY(-2px); box-shadow: none; }

.btn--light {
  background: var(--paper-on-dark);
  color: var(--fg);
  border-color: var(--paper-on-dark);
}
.btn--light:hover { background: var(--accent); border-color: var(--accent); color: var(--paper-on-dark); }

.btn--sm { padding: 11px 20px; font-size: 13px; }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  border-bottom: 1.5px solid transparent;
  padding-bottom: 3px;
  transition: gap 0.3s var(--ease), border-color 0.3s var(--ease);
}
.arrow-link .a { transition: transform 0.3s var(--ease); }
.arrow-link:hover { gap: 14px; border-color: var(--accent); }

/* ------------------------------------------------------------------ */
/*  HEADER / MASTHEAD                                                  */
/* ------------------------------------------------------------------ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(241, 231, 206, 0.86);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.header[data-scrolled="true"] {
  box-shadow: 0 8px 30px -18px rgba(28, 24, 19, 0.55);
  border-bottom-color: var(--border-strong);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 68px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  font-family: var(--serif);
  font-size: 25px;
  letter-spacing: -0.01em;
  color: var(--fg);
  line-height: 1;
}
.brand__mark {
  width: 11px;
  height: 11px;
  background: var(--accent);
  display: inline-block;
  transform: translateY(-1px);
}
.brand small {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav { display: none; }
@media (min-width: 940px) {
  .nav { display: flex; align-items: center; gap: 30px; }
}
.nav__link {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-soft);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--accent); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 14px; }
.header__cta { display: none; }
@media (min-width: 940px) { .header__cta { display: inline-flex; } }

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  padding: 10px;
  border: 1px solid var(--border-strong);
  border-radius: 1px;
}
@media (min-width: 940px) { .menu-toggle { display: none; } }
.menu-toggle span {
  display: block;
  height: 1.6px;
  width: 100%;
  background: var(--fg);
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.6px) 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.6px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  padding: 96px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s var(--ease), opacity 0.4s var(--ease);
}
.mobile-menu[data-open="true"] { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-menu__link {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--fg);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  gap: 14px;
  transition: color 0.25s var(--ease), padding-left 0.3s var(--ease);
}
.mobile-menu__link .n { font-family: var(--mono); font-size: 12px; color: var(--accent); }
.mobile-menu__link:hover { color: var(--accent); padding-left: 8px; }
.mobile-menu__cta { margin-top: 26px; }

/* ------------------------------------------------------------------ */
/*  HERO                                                               */
/* ------------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--paper-on-dark);
}
.hero__media { position: absolute; inset: 0; overflow: hidden; }
.hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: sepia(0.52) contrast(1.05) brightness(0.82) saturate(0.85);
  animation: heroZoom 9s var(--ease) forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.09); }
  to   { transform: scale(1); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(28,24,19,0.30) 0%, rgba(28,24,19,0.52) 52%, rgba(28,24,19,0.86) 100%),
    linear-gradient(90deg, rgba(120,16,10,0.22) 0%, rgba(28,24,19,0) 60%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(56px, 8vw, 96px);
  padding-top: 120px;
}
.hero__eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper-on-dark);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
  opacity: 0.92;
}
.hero__eyebrow .dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
.hero__title {
  font-size: clamp(3rem, 9.4vw, 8.4rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.98;
  max-width: 15ch;
  text-shadow: 0 2px 40px rgba(0,0,0,0.28);
}
.hero__title em { color: #F0968A; }
.hero__lead {
  margin-top: 30px;
  max-width: 56ch;
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
  line-height: 1.6;
  color: rgba(239, 228, 199, 0.9);
}
.hero__actions {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero .btn { border-color: var(--paper-on-dark); background: var(--paper-on-dark); color: var(--fg); }
.hero .btn:hover { background: var(--accent); border-color: var(--accent); color: var(--paper-on-dark); }
.hero .btn--ghost { background: transparent; color: var(--paper-on-dark); border-color: rgba(239,228,199,0.5); }
.hero .btn--ghost:hover { border-color: var(--paper-on-dark); color: var(--paper-on-dark); background: transparent; }

.hero__meta {
  margin-top: clamp(40px, 6vw, 70px);
  padding-top: 22px;
  border-top: 1px solid rgba(239, 228, 199, 0.28);
  display: flex;
  flex-wrap: wrap;
  gap: 26px 44px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(239, 228, 199, 0.78);
}
.hero__meta b { color: var(--paper-on-dark); font-weight: 700; }

/* Sub-hero (interior pages) */
.subhero {
  position: relative;
  padding: clamp(140px, 20vw, 210px) 0 clamp(56px, 9vw, 96px);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.subhero__grid { display: grid; gap: 40px; }
@media (min-width: 900px) { .subhero__grid { grid-template-columns: 1.1fr 0.9fr; align-items: end; } }
.subhero__title { font-size: clamp(2.8rem, 7vw, 6rem); letter-spacing: -0.03em; line-height: 1; }
.subhero__lead { max-width: 46ch; }
.subhero__media {
  aspect-ratio: 5/4;
  overflow: hidden;
  border: 1px solid var(--border-strong);
}
.subhero__media img { width: 100%; height: 100%; object-fit: cover; filter: sepia(0.42) contrast(1.03) brightness(0.94); }

/* ------------------------------------------------------------------ */
/*  SECTION HEADER                                                     */
/* ------------------------------------------------------------------ */
.sec-head { max-width: 760px; margin-bottom: clamp(44px, 6vw, 72px); }
.sec-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head--center .eyebrow { justify-content: center; }
.sec-head .lead { margin-top: 22px; }

.sec-head--split {
  display: grid;
  gap: 24px;
  max-width: none;
  align-items: end;
}
@media (min-width: 860px) { .sec-head--split { grid-template-columns: 1.4fr 1fr; } }
.sec-head--split .lead { margin-top: 0; }

/* ------------------------------------------------------------------ */
/*  MANIFESTO / EDITORIAL COLUMNS                                      */
/* ------------------------------------------------------------------ */
.manifesto__title {
  font-size: clamp(2rem, 4.6vw, 3.7rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 20ch;
  margin-bottom: clamp(38px, 5vw, 56px);
}
.prose {
  font-family: var(--text-serif);
  font-size: 1.12rem;
  line-height: 1.78;
  color: var(--fg-soft);
}
.prose p { margin: 0 0 1.35em; }
.prose p:last-child { margin-bottom: 0; }
.columns { column-gap: 52px; }
@media (min-width: 820px) { .columns { column-count: 2; } }
.columns p:first-child::first-letter {
  font-family: var(--serif);
  float: left;
  font-size: 4.4rem;
  line-height: 0.72;
  padding: 8px 12px 0 0;
  color: var(--accent);
}

.byline {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ------------------------------------------------------------------ */
/*  PULL QUOTE / STATEMENT (dark band)                                 */
/* ------------------------------------------------------------------ */
.statement { text-align: center; }
.statement__mark {
  font-family: var(--serif);
  font-size: clamp(5rem, 12vw, 9rem);
  line-height: 0.4;
  color: var(--accent);
  display: block;
  margin-bottom: 24px;
  height: 0.5em;
}
.statement__mark span { color: #E8A79E; }
.statement__text {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 4.4vw, 3.4rem);
  line-height: 1.22;
  letter-spacing: -0.015em;
  max-width: 20ch;
  margin: 0 auto;
  font-weight: 400;
}
.statement__cite {
  margin-top: 34px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(239, 228, 199, 0.6);
}

/* ------------------------------------------------------------------ */
/*  SERVICES GRID                                                      */
/* ------------------------------------------------------------------ */
.service-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (min-width: 640px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  background: var(--bg);
  padding: 40px 34px 44px;
  position: relative;
  transition: background 0.35s var(--ease);
}
.section--alt .service-card { background: var(--bg-alt); }
.service-card:hover { background: var(--bg-deep); }
.service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}
.service-card__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 700;
}
.service-card__icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--fg);
  border-radius: 50%;
}
.service-card__icon svg { width: 22px; height: 22px; }
.service-card__title {
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.1;
  margin-bottom: 14px;
}
.service-card__text {
  font-size: 15.5px;
  line-height: 1.68;
  color: var(--muted);
  margin: 0;
}
.service-card__link { margin-top: 22px; }

/* Expanded services list (services.html) */
.service-row {
  display: grid;
  gap: 28px;
  padding: clamp(40px, 6vw, 64px) 0;
  border-top: 1px solid var(--border-strong);
  align-items: start;
}
@media (min-width: 860px) { .service-row { grid-template-columns: 0.2fr 0.4fr 1fr; gap: 44px; } }
.service-row:last-child { border-bottom: 1px solid var(--border-strong); }
.service-row__num {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--accent);
  line-height: 0.9;
}
.service-row__title { font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1.1; }
.service-row__body .prose { font-family: var(--sans); font-size: 16.5px; line-height: 1.72; }
.service-row__tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 22px;
}
.tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--border-strong);
  color: var(--fg-soft);
  border-radius: 1px;
}

/* ------------------------------------------------------------------ */
/*  PROCESS (dark numbered band)                                       */
/* ------------------------------------------------------------------ */
.process-grid {
  display: grid;
  gap: 1px;
  background: rgba(239, 228, 199, 0.16);
  border: 1px solid rgba(239, 228, 199, 0.16);
  margin-top: clamp(40px, 6vw, 64px);
}
@media (min-width: 720px) { .process-grid { grid-template-columns: repeat(5, 1fr); } }
.step {
  background: var(--fg);
  padding: 34px 26px 40px;
  transition: background 0.35s var(--ease);
}
.step:hover { background: #262019; }
.step__num {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  color: #E8A79E;
  line-height: 1;
  margin-bottom: 20px;
}
.step__title {
  font-family: var(--serif);
  font-size: 1.32rem;
  margin-bottom: 12px;
  color: var(--paper-on-dark);
}
.step__text {
  font-size: 14.5px;
  line-height: 1.62;
  color: rgba(239, 228, 199, 0.68);
  margin: 0;
}

/* ------------------------------------------------------------------ */
/*  STATS                                                              */
/* ------------------------------------------------------------------ */
.stats {
  display: grid;
  gap: 1px;
  background: var(--border);
  border-top: 2px solid var(--fg);
  border-bottom: 1px solid var(--fg);
}
@media (min-width: 640px) { .stats { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--bg); padding: 42px 26px; }
.section--alt .stat { background: var(--bg-alt); }
.stat__num {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.2vw, 4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.stat__num small { font-size: 0.45em; color: var(--accent); }
.stat__label {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 26ch;
}

/* ------------------------------------------------------------------ */
/*  FEATURE SPLIT (image + text)                                       */
/* ------------------------------------------------------------------ */
.split {
  display: grid;
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
.split--flip .split__media { order: -1; }
@media (min-width: 900px) { .split--flip .split__media { order: 0; } }
.split__media {
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  position: relative;
}
.split__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: sepia(0.45) contrast(1.04) brightness(0.92);
  transition: transform 0.9s var(--ease);
}
.split__media:hover img { transform: scale(1.05); }
.split__media .cap {
  position: absolute; left: 0; bottom: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--fg);
  color: var(--paper-on-dark);
  padding: 8px 14px;
}
.split__body .prose { margin-top: 26px; }
.split ul.ticks { list-style: none; padding: 0; margin: 28px 0 0; }
.split ul.ticks li {
  position: relative;
  padding: 14px 0 14px 32px;
  border-top: 1px solid var(--border);
  font-size: 16px;
  line-height: 1.55;
}
.split ul.ticks li::before {
  content: "";
  position: absolute; left: 0; top: 20px;
  width: 14px; height: 2px; background: var(--accent);
}

/* ------------------------------------------------------------------ */
/*  PRINCIPLES (about) text-only cards                                 */
/* ------------------------------------------------------------------ */
.principle-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (min-width: 700px) { .principle-grid { grid-template-columns: repeat(2, 1fr); } }
.principle {
  background: var(--bg);
  padding: 38px 32px 42px;
}
.section--alt .principle { background: var(--bg-alt); }
.principle__k {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 18px;
  display: block;
}
.principle__t { font-family: var(--serif); font-size: 1.6rem; line-height: 1.12; margin-bottom: 12px; }
.principle__d { font-size: 15.5px; line-height: 1.68; color: var(--muted); margin: 0; }

/* Team (text + monogram, no faces) */
.team-grid { display: grid; gap: 26px; }
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.member {
  border: 1px solid var(--border-strong);
  padding: 30px 28px 32px;
  background: var(--bg);
}
.section--alt .member { background: var(--bg-alt); }
.avatar {
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--paper-on-dark);
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}
.member__name { font-family: var(--serif); font-size: 1.45rem; margin-bottom: 4px; }
.member__role {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.member__bio { font-size: 15px; line-height: 1.62; color: var(--muted); margin: 0; }

/* Timeline */
.timeline { border-top: 2px solid var(--fg); }
.tl-item {
  display: grid;
  gap: 8px 40px;
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 720px) { .tl-item { grid-template-columns: 0.25fr 1fr; align-items: baseline; } }
.tl-year { font-family: var(--serif); font-size: 1.6rem; color: var(--accent); }
.tl-body h3 { font-family: var(--serif); font-size: 1.35rem; margin-bottom: 8px; }
.tl-body p { margin: 0; color: var(--muted); font-size: 15.5px; line-height: 1.66; }

/* ------------------------------------------------------------------ */
/*  FAQ                                                                */
/* ------------------------------------------------------------------ */
.faq { border-top: 2px solid var(--fg); }
.faq__item { border-bottom: 1px solid var(--border-strong); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  padding: 28px 4px;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  line-height: 1.2;
  color: var(--fg);
  transition: color 0.25s var(--ease);
}
.faq__q:hover { color: var(--accent); }
.faq__sign {
  flex: none;
  font-family: var(--mono);
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform 0.35s var(--ease);
  line-height: 1;
}
.faq__item[open] .faq__sign { transform: rotate(45deg); }
.faq__q::-webkit-details-marker { display: none; }
.faq__a {
  padding: 0 4px 30px;
  max-width: 68ch;
  color: var(--fg-soft);
  font-size: 16.5px;
  line-height: 1.72;
}
.faq__a p { margin: 0; }

/* ------------------------------------------------------------------ */
/*  CTA                                                                */
/* ------------------------------------------------------------------ */
.cta { text-align: center; }
.cta__title {
  font-size: clamp(2.2rem, 5.6vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 18ch;
  margin: 0 auto 24px;
}
.cta__text { max-width: 52ch; margin: 0 auto 38px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ------------------------------------------------------------------ */
/*  CONTACT                                                            */
/* ------------------------------------------------------------------ */
.contact-grid { display: grid; gap: clamp(40px, 6vw, 72px); }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.1fr 0.9fr; } }

.form-field { margin-bottom: 22px; }
.form-field label {
  display: block;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-soft);
  margin-bottom: 9px;
  font-weight: 700;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--fg);
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 1px;
  padding: 14px 16px;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.section--alt .form-field input,
.section--alt .form-field textarea,
.section--alt .form-field select { background: var(--bg); }
.form-field textarea { resize: vertical; min-height: 140px; }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(166, 24, 15, 0.12);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--muted); }
.form-consent { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 26px; }
.form-consent input { width: 18px; height: 18px; margin-top: 3px; flex: none; accent-color: var(--accent); }
.form-consent label {
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  margin: 0;
}
.form-consent a { color: var(--accent); border-bottom: 1px solid currentColor; }
.form button[type="submit"] { width: 100%; justify-content: center; }

.contact-cards { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.contact-card { background: var(--bg); padding: 28px 26px; }
.section--alt .contact-card { background: var(--bg-alt); }
.contact-card__k {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 700;
}
.contact-card__v { font-size: 16px; line-height: 1.6; color: var(--fg-soft); }
.contact-card__v a:hover { color: var(--accent); }

/* ------------------------------------------------------------------ */
/*  LEGAL / PROSE PAGES                                                */
/* ------------------------------------------------------------------ */
.legal { max-width: 780px; margin: 0 auto; }
.legal h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin: 48px 0 16px;
  line-height: 1.14;
}
.legal h3 { font-family: var(--serif); font-size: 1.3rem; margin: 30px 0 10px; }
.legal p, .legal li { font-size: 16.5px; line-height: 1.75; color: var(--fg-soft); }
.legal p { margin: 0 0 1.1em; }
.legal ul, .legal ol { padding-left: 22px; margin: 0 0 1.2em; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--accent); border-bottom: 1px solid rgba(166,24,15,0.4); }
.legal__meta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

/* Thank-you */
.thanks { text-align: center; max-width: 640px; margin: 0 auto; }
.thanks__mark {
  width: 76px; height: 76px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 32px;
}
.thanks__mark svg { width: 34px; height: 34px; stroke: var(--accent); }

/* ------------------------------------------------------------------ */
/*  FOOTER                                                             */
/* ------------------------------------------------------------------ */
.footer {
  background: var(--fg);
  color: var(--paper-on-dark);
  padding: clamp(64px, 9vw, 104px) 0 40px;
}
.footer__top {
  display: grid;
  gap: 44px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(239, 228, 199, 0.18);
}
@media (min-width: 860px) { .footer__top { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; } }
.footer__brand-mark {
  font-family: var(--serif);
  font-size: 2rem;
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  margin-bottom: 20px;
}
.footer__brand-mark .m { width: 11px; height: 11px; background: var(--accent); display: inline-block; }
.footer__tagline { color: rgba(239, 228, 199, 0.72); max-width: 34ch; font-size: 15.5px; line-height: 1.6; }
.footer__col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #E8A79E;
  margin-bottom: 20px;
  font-weight: 700;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer__col a, .footer__col li {
  color: rgba(239, 228, 199, 0.78);
  font-size: 15px;
  transition: color 0.25s var(--ease);
}
.footer__col a:hover { color: var(--paper-on-dark); }
.footer__bottom {
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(239, 228, 199, 0.56);
}

/* ------------------------------------------------------------------ */
/*  COOKIE POPUP                                                       */
/* ------------------------------------------------------------------ */
.cookie-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 24px;
  background: rgba(28, 24, 19, 0.44);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card {
  background: var(--bg);
  padding: 32px 34px 30px;
  max-width: 460px;
  border-radius: 2px;
  border-top: 3px solid var(--accent);
  box-shadow: var(--shadow-hover);
}
.cookie-popup__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 14px;
}
.cookie-popup__card h3 { font-family: var(--serif); font-size: 1.5rem; margin-bottom: 12px; }
.cookie-popup__card p { font-size: 14.5px; line-height: 1.62; color: var(--fg-soft); margin: 0; }
.cookie-popup__card p a { color: var(--accent); border-bottom: 1px solid currentColor; }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 22px; }
.cookie-popup__actions button {
  padding: 12px 22px;
  border: 1.5px solid var(--fg);
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13.5px;
  border-radius: 1px;
  transition: background 0.25s var(--ease), color 0.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-deep); }
.cookie-popup__actions button[data-cookie="accept"] { background: var(--fg); color: var(--paper-on-dark); }
.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.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) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__img { animation: none; }
}

/* Small helpers */
.text-center { text-align: center; }
.mt-cta { margin-top: clamp(44px, 6vw, 72px); }
.divider-space { height: clamp(40px, 6vw, 72px); }
