/* palette: bg=#0B0908 fg=#E6D8C1 accent=#8B1A1A */
/* fonts: display="Playfair Display" body="Inter" mono="Space Mono" */

:root {
  --bg: #0B0908;
  --bg-alt: #131010;
  --bg-deep: #050403;
  --fg: #E6D8C1;
  --fg-soft: #C9BBA3;
  --muted: #7B6E5F;
  --accent: #8B1A1A;
  --accent-deep: #5A0F0F;
  --accent-glow: rgba(139, 26, 26, 0.35);
  --border: rgba(230, 216, 193, 0.12);
  --border-strong: rgba(230, 216, 193, 0.22);
  --serif: 'Playfair Display', ui-serif, Georgia, serif;
  --black: 'UnifrakturMaguntia', 'Playfair Display', serif;
  --sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --mono: 'Space Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 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: 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; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--accent); color: var(--fg); }

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

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

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

h1 em { font-style: italic; color: var(--accent); font-family: var(--serif); }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.stagger.is-visible > * { opacity: 1; transform: none; }

/* ========== HEADER ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 9, 8, 0.78);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.header[data-scrolled="true"] {
  border-bottom-color: var(--border);
  box-shadow: 0 12px 40px -20px rgba(0, 0, 0, 0.7);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--black);
  font-size: 26px;
  letter-spacing: 0.02em;
  color: var(--fg);
}
.brand__mark { color: var(--accent); }
.brand__name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 21px;
  letter-spacing: -0.01em;
}
.nav { display: none; gap: 38px; }
@media (min-width: 1024px) { .nav { display: flex; } }
.nav a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-soft);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.nav a:hover { color: var(--fg); }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav a.is-active { color: var(--accent); }

.header__cta {
  display: none;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg);
  border: 1px solid var(--border-strong);
  padding: 11px 22px;
  border-radius: 999px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
@media (min-width: 1024px) { .header__cta { display: inline-flex; } }
.header__cta:hover { background: var(--accent); border-color: var(--accent); color: var(--fg); }

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

.mobile-menu {
  position: fixed;
  inset: 72px 0 0;
  z-index: 90;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 48px 32px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.mobile-menu[data-open="true"] { opacity: 1; pointer-events: all; transform: none; }
@media (min-width: 1024px) { .mobile-menu { display: none; } }
.mobile-menu nav { display: flex; flex-direction: column; gap: 24px; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.mobile-menu a:hover { color: var(--accent); }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 110%, rgba(139, 26, 26, 0.12) 0, transparent 50%),
    radial-gradient(circle at 90% 10%, rgba(139, 26, 26, 0.06) 0, transparent 40%),
    var(--bg);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(230, 216, 193, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230, 216, 193, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  opacity: 0.6;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
@media (min-width: 960px) {
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; gap: 80px; }
}
.hero__copy { position: relative; }
.hero__eyebrow { margin-bottom: 32px; }
.hero h1 {
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 400;
  margin-bottom: 36px;
}
.hero__lede {
  max-width: 480px;
  font-size: 17px;
  color: var(--fg-soft);
  margin-bottom: 40px;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--accent);
  transition: gap 0.35s var(--ease), color 0.3s var(--ease);
}
.hero__cta:hover { gap: 22px; color: var(--accent); }
.hero__cta span.arrow { color: var(--accent); }

.hero__stack {
  position: relative;
  height: 540px;
}
@media (max-width: 960px) { .hero__stack { height: 420px; } }
.hero__stack img {
  position: absolute;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.7);
  filter: brightness(0.85) contrast(1.05);
  animation: heroZoom 12s var(--ease) both;
}
.hero__stack img:nth-child(1) {
  top: 0; right: 10%;
  width: 56%; height: 60%;
  z-index: 3;
}
.hero__stack img:nth-child(2) {
  top: 20%; right: 0;
  width: 48%; height: 55%;
  z-index: 2;
  animation-delay: 0.4s;
}
.hero__stack img:nth-child(3) {
  bottom: 0; left: 4%;
  width: 50%; height: 50%;
  z-index: 1;
  animation-delay: 0.7s;
}
@keyframes heroZoom {
  from { transform: scale(1.08); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* ========== INTRO BAND ========== */
.intro {
  padding: clamp(80px, 12vw, 140px) 0;
  border-top: 1px solid var(--border);
}
.intro__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) { .intro__grid { grid-template-columns: 0.4fr 1fr; gap: 80px; } }
.intro__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.intro__body p {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.32;
  color: var(--fg);
  margin-bottom: 24px;
}
.intro__body p em { color: var(--accent); font-style: italic; }
.intro__meta {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.intro__stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 42px;
  letter-spacing: -0.02em;
  color: var(--accent);
  margin-bottom: 4px;
}
.intro__stat span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ========== SERVICES ========== */
.services {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 72px;
}
@media (min-width: 900px) {
  .section-head { grid-template-columns: 0.4fr 1fr; gap: 80px; align-items: end; }
}
.section-head h2 {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
}
.section-head h2 em { color: var(--accent); font-style: italic; }
.section-head__lead {
  font-size: 17px;
  color: var(--fg-soft);
  max-width: 520px;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (min-width: 720px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .services__grid { grid-template-columns: repeat(3, 1fr); } }
.service {
  background: var(--bg-alt);
  padding: 48px 36px 56px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background 0.4s var(--ease);
}
.service:hover { background: var(--bg); }
.service__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
}
.service h3 {
  font-size: 28px;
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}
.service p { color: var(--fg-soft); font-size: 15.5px; line-height: 1.7; }
.service ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.service ul li { padding: 6px 0; border-top: 1px solid var(--border); }
.service ul li:first-child { border-top: 0; }

/* ========== MANIFESTO ========== */
.manifesto {
  background: var(--bg-deep);
  padding: clamp(120px, 18vw, 200px) 0;
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: '"';
  position: absolute;
  top: 40px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 320px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.12;
  pointer-events: none;
}
.manifesto__inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.manifesto__eyebrow { margin-bottom: 32px; }
.manifesto blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin: 0 0 40px;
}
.manifesto blockquote em { color: var(--accent); font-style: italic; }
.manifesto__attr {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ========== WORK / CASES ========== */
.work { padding: clamp(80px, 12vw, 160px) 0; }
.work__list {
  display: grid;
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.case-row {
  background: var(--bg);
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 36px 0;
  align-items: center;
  transition: background 0.4s var(--ease);
}
@media (min-width: 900px) {
  .case-row {
    grid-template-columns: 0.6fr 1.2fr 0.8fr 0.3fr;
    gap: 32px;
    padding: 40px 24px;
  }
}
.case-row:hover { background: var(--bg-alt); }
.case-row__num { font-family: var(--mono); font-size: 12px; color: var(--accent); letter-spacing: 0.16em; }
.case-row__title { font-family: var(--serif); font-size: clamp(1.6rem, 3.2vw, 2.4rem); letter-spacing: -0.02em; line-height: 1.1; }
.case-row__sector { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.16em; text-transform: uppercase; }
.case-row__arrow { color: var(--accent); font-size: 22px; justify-self: end; transition: transform 0.4s var(--ease); }
.case-row:hover .case-row__arrow { transform: translateX(8px); }

/* ========== TEAM ========== */
.team {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.team__intro {
  max-width: 780px;
  margin-bottom: 80px;
}
.team__intro h2 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
}
.team__intro h2 em { color: var(--accent); font-style: italic; }
.team__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (min-width: 640px) { .team__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .team__grid { grid-template-columns: repeat(3, 1fr); } }
.member {
  background: var(--bg-alt);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 280px;
}
.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--fg);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  border: 1px solid var(--border-strong);
}
.member h3 { font-size: 22px; letter-spacing: -0.01em; line-height: 1.2; }
.member__role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.member p { color: var(--fg-soft); font-size: 14.5px; line-height: 1.7; margin-top: 6px; }

/* ========== CTA ========== */
.cta {
  padding: clamp(100px, 14vw, 160px) 0;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(139, 26, 26, 0.18) 0, transparent 60%),
    var(--bg);
  border-top: 1px solid var(--border);
}
.cta__eyebrow { margin-bottom: 28px; justify-content: center; display: inline-flex; }
.cta h2 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 900px;
  margin: 0 auto 36px;
}
.cta h2 em { color: var(--accent); font-style: italic; }
.cta p { color: var(--fg-soft); max-width: 560px; margin: 0 auto 40px; font-size: 17px; }
.button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  color: var(--fg);
  padding: 18px 36px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.35s var(--ease), transform 0.35s var(--ease);
}
.button:hover { background: var(--accent-deep); transform: translateY(-2px); }
.button--ghost {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--fg);
}
.button--ghost:hover { border-color: var(--accent); color: var(--accent); background: transparent; }

/* ========== FOOTER ========== */
.footer {
  background: var(--bg-deep);
  padding: 80px 0 32px;
  border-top: 1px solid var(--border);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 900px) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 60px; }
}
.footer__brand { font-family: var(--black); font-size: 32px; color: var(--fg); margin-bottom: 24px; }
.footer__brand em { color: var(--accent); font-family: var(--serif); font-style: italic; font-size: 24px; }
.footer p { color: var(--muted); font-size: 14.5px; }
.footer h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { padding: 6px 0; }
.footer li a { color: var(--fg-soft); font-size: 14.5px; transition: color 0.3s var(--ease); }
.footer li a:hover { color: var(--accent); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ========== FORM ========== */
.form { display: grid; gap: 22px; }
.field { display: grid; 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 {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border-strong);
  padding: 14px 0;
  font-family: var(--serif);
  font-size: 19px;
  color: var(--fg);
  outline: none;
  transition: border-color 0.3s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { border-bottom-color: var(--accent); }
.field textarea { resize: vertical; min-height: 110px; }
.form__row { display: grid; gap: 22px; }
@media (min-width: 720px) { .form__row { grid-template-columns: 1fr 1fr; } }
.form__submit { justify-self: start; margin-top: 18px; }

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 96px; } }
.contact-info { display: grid; gap: 32px; }
.contact-info__block h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 10px;
}
.contact-info__block p { font-family: var(--serif); font-size: 21px; line-height: 1.45; }
.contact-info__block a { border-bottom: 1px solid var(--border); transition: border-color 0.3s; }
.contact-info__block a:hover { border-color: var(--accent); color: var(--accent); }

/* ========== LEGAL PAGES ========== */
.legal { padding: 120px 0 100px; }
.legal__wrap { max-width: 780px; margin: 0 auto; }
.legal h1 { font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 24px; }
.legal h2 { font-size: 26px; margin: 48px 0 16px; }
.legal p, .legal li { color: var(--fg-soft); font-size: 16px; line-height: 1.8; }
.legal ul { padding-left: 22px; }
.legal__meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
}

/* ========== 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(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card {
  background: var(--bg-alt);
  border: 1px solid var(--border-strong);
  padding: 32px 36px;
  max-width: 460px;
  border-radius: 2px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.8);
}
.cookie-popup__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.cookie-popup h3 { font-family: var(--serif); font-size: 24px; margin: 0 0 10px; letter-spacing: -0.01em; }
.cookie-popup p { font-size: 14px; color: var(--fg-soft); line-height: 1.6; }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 22px; }
.cookie-popup__actions button {
  padding: 12px 22px;
  border: 1px solid var(--border-strong);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: transparent;
  color: var(--fg);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.cookie-popup__actions button[data-cookie="accept"] {
  background: var(--accent);
  border-color: var(--accent);
}
.cookie-popup__actions button[data-cookie="accept"]:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.cookie-popup__actions button[data-cookie="decline"]:hover { border-color: var(--fg-soft); color: var(--fg); }

/* ========== ABOUT-SPECIFIC ========== */
.page-hero {
  padding: 160px 0 100px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 80% 30%, rgba(139, 26, 26, 0.1) 0, transparent 50%),
    var(--bg);
}
.page-hero__eyebrow { margin-bottom: 28px; }
.page-hero h1 {
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 900px;
  margin-bottom: 32px;
}
.page-hero h1 em { color: var(--accent); font-style: italic; }
.page-hero__lede { max-width: 620px; font-size: 19px; color: var(--fg-soft); }

.principles {
  padding: clamp(80px, 12vw, 140px) 0;
  border-bottom: 1px solid var(--border);
}
.principles__list { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.principle {
  background: var(--bg);
  padding: 40px 36px;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 28px;
  align-items: start;
  transition: background 0.4s;
}
@media (max-width: 640px) {
  .principle { grid-template-columns: 1fr; gap: 14px; padding: 32px 24px; }
}
.principle:hover { background: var(--bg-alt); }
.principle__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--accent);
}
.principle h3 { font-size: 26px; letter-spacing: -0.015em; margin-bottom: 10px; line-height: 1.2; }
.principle p { color: var(--fg-soft); font-size: 15.5px; }

/* ========== UTILITIES ========== */
.muted { color: var(--muted); }
.divider { height: 1px; background: var(--border); margin: 0; }
.hidden { display: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .stagger > * { opacity: 1; transform: none; }
}
