/* palette: bg=#ECE3C8 fg=#14110E accent=#B11A0E */
/* fonts: display="Libre Caslon Text" body="Lato" mono="IBM Plex Mono" */

:root {
  --bg: #ECE3C8;
  --bg-deep: #E0D5B5;
  --bg-alt: #14110E;
  --paper: #F4ECD2;
  --fg: #14110E;
  --fg-soft: #2A211B;
  --muted: #7A6F5E;
  --accent: #B11A0E;
  --accent-deep: #821008;
  --rule: #14110E;
  --border: rgba(20, 17, 14, 0.16);
  --border-soft: rgba(20, 17, 14, 0.08);
  --serif: 'Libre Caslon Text', 'Libre Caslon Display', ui-serif, Georgia, serif;
  --sans: 'Lato', ui-sans-serif, system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, 'SF Mono', monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shell: 1280px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.75;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "kern" 1, "liga" 1;
}
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; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--accent); color: var(--paper); }

/* ───── Typographic primitives ───── */
.serif { font-family: var(--serif); }
.mono  { font-family: var(--mono); }

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

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--fg);
}
p { margin: 0; }

/* ───── Shell ───── */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 640px) {
  .shell { padding: 0 20px; }
}

/* ───── Header ───── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(236, 227, 200, 0.86);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.header[data-scrolled="true"] {
  border-bottom-color: var(--border);
  background: rgba(236, 227, 200, 0.94);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 32px;
}
.brand {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
  font-weight: 400;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.brand__mark {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateY(-2px);
}
.nav {
  display: none;
  gap: 36px;
  font-size: 14px;
  letter-spacing: 0.02em;
}
@media (min-width: 900px) { .nav { display: flex; } }
.nav a {
  position: relative;
  color: var(--fg);
  padding: 6px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--fg);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav a:hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}
.header__cta {
  display: none;
}
@media (min-width: 900px) { .header__cta { display: inline-flex; } }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 14px;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  background: var(--accent);
  color: var(--paper);
  border: 1px solid var(--accent);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
  white-space: nowrap;
}
.btn:hover { background: var(--accent-deep); border-color: var(--accent-deep); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--fg); border-color: var(--fg); }
.btn--ghost:hover { background: var(--fg); color: var(--bg); transform: translateY(-1px); }
.btn--sm { padding: 10px 20px; font-size: 13px; }
.btn--paper { background: var(--paper); color: var(--fg); border-color: var(--paper); }
.btn--paper:hover { background: var(--bg); border-color: var(--bg); }

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}
@media (min-width: 900px) { .menu-toggle { display: none; } }
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--fg);
  transition: transform 0.3s 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: 76px 0 0 0;
  background: var(--bg);
  z-index: 90;
  padding: 48px 32px;
  transform: translateY(-100%);
  transition: transform 0.45s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-menu[data-open="true"] { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 32px;
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.mobile-menu .btn { align-self: flex-start; margin-top: 16px; }
@media (min-width: 900px) { .mobile-menu { display: none; } }

/* ───── Hero ───── */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  color: var(--paper);
  background: #14110E;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 14s var(--ease) forwards;
  filter: saturate(0.85) contrast(1.05);
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,17,14,0.55) 0%, rgba(20,17,14,0.25) 40%, rgba(20,17,14,0.85) 100%);
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 120px 0 64px;
}
.hero__eyebrow {
  color: rgba(244,236,210,0.85);
}
.hero__eyebrow::before { background: rgba(244,236,210,0.85); }
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 10vw, 9rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  font-weight: 400;
  color: var(--paper);
  max-width: 16ch;
  margin-top: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
}
.hero__byline {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244,236,210,0.7);
  border-left: 1px solid rgba(244,236,210,0.3);
  padding-left: 16px;
  max-width: 280px;
  line-height: 1.6;
}

.hero__masthead {
  position: absolute;
  top: 100px;
  left: 0;
  right: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,236,210,0.55);
  pointer-events: none;
}
.hero__masthead .shell {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 640px) {
  .hero__masthead { display: none; }
}

/* ───── Sections ───── */
section { position: relative; }
.section {
  padding: clamp(80px, 12vw, 160px) 0;
}
.section--alt { background: var(--bg-deep); }
.section--dark { background: var(--bg-alt); color: var(--paper); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--paper); }
.section--paper { background: var(--paper); }

.section__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 72px;
}
@media (min-width: 900px) {
  .section__head {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    gap: 48px;
    align-items: end;
  }
}
.section__title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: -0.025em;
  line-height: 1.02;
  max-width: 18ch;
}
.section__title em { font-style: italic; color: var(--accent); }
.section__lede {
  font-size: 18px;
  line-height: 1.72;
  color: var(--fg-soft);
  max-width: 38ch;
}
.section--dark .section__lede { color: rgba(244,236,210,0.78); }

.divider {
  border: 0;
  height: 1px;
  background: var(--border);
  margin: 0;
}
.divider--double {
  height: 7px;
  background: none;
  border-top: 1px solid var(--fg);
  border-bottom: 1px solid var(--fg);
}
.section--dark .divider { background: rgba(244,236,210,0.2); }
.section--dark .divider--double {
  border-color: rgba(244,236,210,0.5);
}

/* ───── Services / column grid ───── */
.cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 700px) { .cols--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .cols--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .cols--4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--paper);
  border: 1px solid var(--border-soft);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  box-shadow: 0 4px 24px -12px rgba(0,0,0,0.08);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px -16px rgba(0,0,0,0.18);
}
.card__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
}
.card__icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--fg);
  border-radius: 50%;
}
.card__icon svg { width: 20px; height: 20px; stroke: var(--fg); fill: none; stroke-width: 1.5; }
.card h3 {
  font-size: 26px;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.card p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--fg-soft);
}
.card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  font-family: var(--mono);
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--border-soft);
  padding-top: 20px;
}
.card__list li::before {
  content: "→";
  display: inline-block;
  margin-right: 10px;
  color: var(--accent);
}

/* ───── Selected work ───── */
.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 900px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); gap: 56px 40px; }
  .work-grid > article:nth-child(2) { transform: translateY(80px); }
}
.work {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.work__media {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--paper);
}
.work__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.work:hover .work__media img { transform: scale(1.04); }
.work__meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 8px;
  border-top: 1px solid var(--border-soft);
}
.work h3 {
  font-size: 32px;
  line-height: 1.12;
  letter-spacing: -0.015em;
}
.work p {
  font-size: 16px;
  color: var(--fg-soft);
  line-height: 1.7;
  max-width: 50ch;
}
.work__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(177,26,14,0.08);
  color: var(--accent);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  align-self: flex-start;
}

/* ───── Manifesto ───── */
.manifesto {
  text-align: center;
  padding: clamp(100px, 14vw, 180px) 0;
}
.manifesto__quote {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin: 32px auto 0;
}
.manifesto__quote em { font-style: italic; color: var(--accent); }
.manifesto__mark {
  font-family: var(--serif);
  font-size: 120px;
  line-height: 0.5;
  color: var(--accent);
  font-style: italic;
  display: inline-block;
}
.manifesto__attr {
  margin-top: 48px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.section--dark .manifesto__attr { color: rgba(244,236,210,0.6); }

/* ───── Process ───── */
.process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
@media (min-width: 900px) {
  .process { grid-template-columns: repeat(3, 1fr); }
}
.process__step {
  padding: 56px 32px;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 900px) {
  .process__step {
    padding: 56px 40px;
    border-right: 1px solid var(--border);
    border-bottom: 0;
  }
  .process__step:last-child { border-right: 0; }
}
.process__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--accent);
}
.process__step h3 {
  font-size: 28px;
  line-height: 1.15;
}
.process__step p {
  color: var(--fg-soft);
  line-height: 1.72;
  font-size: 16px;
}
.section--dark .process { border-color: rgba(244,236,210,0.2); }
.section--dark .process__step { border-color: rgba(244,236,210,0.2); }
.section--dark .process__step p { color: rgba(244,236,210,0.78); }

/* ───── Team (no faces — monogram avatars) ───── */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 700px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }

.member {
  background: var(--paper);
  padding: 36px 32px;
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 0.4s var(--ease);
}
.member:hover { transform: translateY(-4px); }
.avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--paper);
  letter-spacing: 0;
}
.avatar--accent { background: var(--accent); }
.avatar--ink    { background: var(--bg-alt); }
.avatar--deep   { background: var(--accent-deep); }
.member h3 {
  font-size: 24px;
  letter-spacing: -0.01em;
}
.member__role {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: -16px;
}
.member p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-soft);
}

/* ───── CTA / form ───── */
.cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 900px) {
  .cta { grid-template-columns: minmax(0,1fr) minmax(0,1.05fr); gap: 80px; align-items: start; }
}
.cta__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
}
.cta__title em { font-style: italic; color: var(--accent); }
.cta__lede {
  font-size: 17px;
  line-height: 1.72;
  color: var(--fg-soft);
  max-width: 42ch;
  margin-top: 28px;
}

.cta__contacts {
  margin-top: 40px;
  display: grid;
  gap: 18px;
  font-size: 15px;
}
.cta__contacts dt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.cta__contacts dd { margin: 0; }

.form {
  display: grid;
  gap: 22px;
  background: var(--paper);
  padding: 40px;
  border: 1px solid var(--border-soft);
}
@media (min-width: 700px) {
  .form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field textarea,
.field select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-size: 16px;
  font-family: var(--sans);
  color: var(--fg);
  outline: none;
  transition: border-color 0.25s var(--ease);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-bottom-color: var(--accent);
}
.field textarea { min-height: 120px; resize: vertical; line-height: 1.6; }

.form__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.form__legal {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 30ch;
}
.form__legal a { text-decoration: underline; }

/* ───── Footer ───── */
.footer {
  background: var(--bg-alt);
  color: var(--paper);
  padding: 96px 0 32px;
}
.footer__masthead {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(244,236,210,0.18);
}
@media (min-width: 700px) {
  .footer__masthead { flex-direction: row; justify-content: space-between; align-items: end; }
}
.footer__brand {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
}
.footer__tag {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,236,210,0.55);
  max-width: 28ch;
  line-height: 1.7;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 32px;
  padding: 56px 0 40px;
}
@media (min-width: 900px) { .footer__cols { grid-template-columns: repeat(4, 1fr); } }
.footer__col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,236,210,0.55);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  font-size: 15px;
  color: rgba(244,236,210,0.86);
  transition: color 0.25s var(--ease);
}
.footer__col a:hover { color: var(--accent); }
.footer__col p { font-size: 14px; color: rgba(244,236,210,0.7); line-height: 1.7; }

.footer__base {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(244,236,210,0.18);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244,236,210,0.5);
}
@media (min-width: 700px) { .footer__base { flex-direction: row; justify-content: space-between; } }
.footer__base a { color: inherit; transition: color 0.25s var(--ease); }
.footer__base a:hover { color: var(--accent); }
.footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }

/* ───── Reveal ───── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__bg img { animation: none; }
}

/* ───── Cookie popup ───── */
.cookie-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  background: rgba(20,17,14,0.5);
  backdrop-filter: blur(4px);
  -webkit-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 40px;
  max-width: 520px;
  border: 1px solid var(--fg);
  width: 100%;
}
.cookie-popup__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.cookie-popup h3 {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}
.cookie-popup p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--fg-soft);
}
.cookie-popup__actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.cookie-popup__actions button {
  flex: 1 1 auto;
  padding: 12px 24px;
  border: 1px solid var(--fg);
  background: transparent;
  color: var(--fg);
  font-size: 13px;
  letter-spacing: 0.04em;
  font-weight: 600;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.cookie-popup__actions button:last-child {
  background: var(--fg);
  color: var(--bg);
}
.cookie-popup__actions button:hover { background: var(--accent); border-color: var(--accent); color: var(--paper); }

/* ───── Page header (sub-pages) ───── */
.page-head {
  padding: clamp(120px, 18vw, 220px) 0 clamp(80px, 10vw, 120px);
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border);
}
.page-head__eyebrow { color: var(--accent); }
.page-head h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-top: 24px;
  max-width: 14ch;
}
.page-head h1 em { font-style: italic; color: var(--accent); }
.page-head__lede {
  font-size: 19px;
  line-height: 1.7;
  color: var(--fg-soft);
  max-width: 55ch;
  margin-top: 32px;
}

/* ───── Two-column editorial ───── */
.editorial {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) {
  .editorial { grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); gap: 80px; }
}
.editorial__label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  position: sticky;
  top: 120px;
}
.editorial__body p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--fg);
  margin-bottom: 24px;
}
.editorial__body p:first-letter {
  font-family: var(--serif);
  font-size: 64px;
  line-height: 1;
  float: left;
  padding: 8px 12px 0 0;
  color: var(--accent);
  font-style: italic;
}
.editorial__body p ~ p:first-letter { font-size: 18px; padding: 0; float: none; color: inherit; font-style: normal; }

/* ───── Stats / facts row ───── */
.facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
@media (min-width: 700px) { .facts { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .facts { grid-template-columns: repeat(4, 1fr); } }
.fact {
  padding: 40px 32px;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 700px) { .fact { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .fact:nth-child(2n) { border-right: 0; }
}
@media (min-width: 1000px) {
  .fact { border-right: 1px solid var(--border); border-bottom: 0; }
  .fact:nth-child(2n) { border-right: 1px solid var(--border); }
  .fact:last-child { border-right: 0; }
}
.fact__num {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--accent);
}
.fact__num em { font-style: italic; }
.fact__label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 16px;
}

/* ───── Legal pages typography ───── */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(80px, 12vw, 140px) 0;
}
.legal h2 {
  font-size: 28px;
  margin: 56px 0 16px;
  letter-spacing: -0.01em;
}
.legal h3 {
  font-size: 19px;
  margin: 32px 0 12px;
  font-family: var(--sans);
  font-weight: 700;
}
.legal p, .legal li {
  font-size: 16.5px;
  line-height: 1.78;
  color: var(--fg-soft);
  margin-bottom: 14px;
}
.legal ul { padding-left: 22px; }
.legal__meta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

/* ───── Contact page extras ───── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 700px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-card {
  background: var(--paper);
  padding: 36px 32px;
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-card__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.contact-card h3 {
  font-size: 22px;
  letter-spacing: -0.01em;
}
.contact-card p, .contact-card a {
  font-size: 16px;
  color: var(--fg-soft);
  line-height: 1.7;
}
.contact-card a:hover { color: var(--accent); }

/* ───── Tiny utilities ───── */
.center { text-align: center; }
.muted  { color: var(--muted); }
.accent { color: var(--accent); }
.italic { font-style: italic; }
.mb-0 { margin-bottom: 0; }
.mt-lg { margin-top: 48px; }

/* ───── Volume number tag (newspaper feel) ───── */
.volume {
  display: inline-flex;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  margin-bottom: 56px;
  width: 100%;
  justify-content: space-between;
}
.section--dark .volume {
  color: rgba(244,236,210,0.6);
  border-color: rgba(244,236,210,0.2);
}
