/* palette: bg=#ECEAE0 fg=#0E0E0E accent=#FF3120 */
/* fonts: display="Anton" body="DM Sans" mono="Space Mono" */

:root {
  --bg: #ECEAE0;
  --bg-alt: #DCD7C5;
  --bg-deep: #0E0E0E;
  --fg: #0E0E0E;
  --fg-soft: #1F1F1D;
  --muted: #6B685E;
  --paper: #F6F4ED;
  --accent: #FF3120;
  --accent-deep: #D6230F;
  --yellow: #F5D426;
  --blue: #1A2DE5;
  --border: rgba(14, 14, 14, 0.14);
  --border-strong: rgba(14, 14, 14, 0.32);
  --serif: 'Anton', 'Archivo Narrow', ui-sans-serif, sans-serif;
  --sans: 'DM Sans', ui-sans-serif, system-ui, sans-serif;
  --mono: 'Space Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 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.72;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "ss01", "ss02";
}
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); }

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

.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(--fg);
}
.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin: 0;
  text-transform: none;
}

p { margin: 0; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(236, 234, 224, 0.88);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.header[data-scrolled="true"] {
  border-bottom-color: var(--border);
  box-shadow: 0 8px 30px -20px rgba(0,0,0,0.3);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 30px;
  letter-spacing: 0.01em;
  color: var(--fg);
  line-height: 1;
}
.brand__dot {
  width: 14px; height: 14px;
  background: var(--accent);
  border-radius: 50%;
}
.nav { display: none; gap: 36px; }
@media (min-width: 960px) { .nav { display: flex; } }
.nav a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg);
  position: relative;
  padding: 6px 0;
  transition: color .3s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .3s var(--ease);
}
.nav a:hover::after, .nav a.is-active::after { width: 100%; }
.nav a.is-active { color: var(--accent); }

.header__cta {
  display: none;
  padding: 12px 22px;
  background: var(--fg);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 0;
  transition: background .25s var(--ease);
}
.header__cta:hover { background: var(--accent); }
@media (min-width: 1080px) { .header__cta { display: inline-flex; } }

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 0;
}
@media (min-width: 960px) { .menu-toggle { display: none; } }
.menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--fg);
  transition: transform .3s var(--ease), opacity .25s var(--ease);
  margin: 0 auto;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 76px 0 0 0;
  background: var(--bg);
  z-index: 99;
  padding: 48px 28px;
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
  overflow-y: auto;
}
.mobile-menu[data-open="true"] { transform: translateY(0); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 28px; }
.mobile-menu nav a {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 0.95;
  color: var(--fg);
}
.mobile-menu nav a:hover { color: var(--accent); }
.mobile-menu__meta {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: grid;
  gap: 8px;
}
@media (min-width: 960px) { .mobile-menu { display: none; } }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-bottom: 1px solid var(--fg);
}
.hero__topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
  flex-wrap: wrap;
}
.hero__topline span { display: inline-flex; gap: 10px; align-items: center; }
.hero__topline .dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.hero__headline {
  margin: 56px 0 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 14vw, 13rem);
  line-height: 0.86;
  letter-spacing: -0.025em;
  color: var(--fg);
  text-transform: uppercase;
}
.hero__headline em {
  font-style: normal;
  color: var(--accent);
  display: block;
}
.hero__headline span {
  display: block;
  font-family: var(--sans);
  font-size: 0.18em;
  letter-spacing: 0.01em;
  text-transform: none;
  font-weight: 400;
  margin-top: 28px;
  max-width: 640px;
  line-height: 1.3;
  color: var(--fg-soft);
}
@media (min-width: 720px) {
  .hero__headline span { margin-top: 32px; }
}

.hero__bottom {
  display: grid;
  gap: 40px;
  margin-top: 64px;
}
@media (min-width: 880px) {
  .hero__bottom {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}

.search {
  display: flex;
  align-items: center;
  gap: 0;
  border: 2px solid var(--fg);
  background: var(--paper);
  max-width: 640px;
  width: 100%;
}
.search input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 22px 24px;
  font-size: 17px;
  outline: none;
  font-family: var(--sans);
}
.search input::placeholder { color: var(--muted); }
.search button {
  padding: 22px 28px;
  background: var(--fg);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background .25s var(--ease);
  white-space: nowrap;
}
.search button:hover { background: var(--accent); }

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero__chips span:first-child { color: var(--muted); align-self: center; }
.hero__chips a {
  padding: 8px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  transition: all .25s var(--ease);
}
.hero__chips a:hover {
  background: var(--fg);
  color: var(--paper);
  border-color: var(--fg);
}

.marquee {
  margin-top: 64px;
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
  overflow: hidden;
  padding: 14px 0;
  background: var(--bg);
}
.marquee__track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
  animation: marquee 36s linear infinite;
  width: max-content;
}
.marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.marquee__track span::after {
  content: "✱";
  color: var(--accent);
  font-size: 18px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SECTION COMMON ===== */
section {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
}

.section-head {
  display: grid;
  gap: 24px;
  margin-bottom: 64px;
}
@media (min-width: 880px) {
  .section-head {
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    align-items: end;
  }
}
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.section-head h2 em { font-style: normal; color: var(--accent); }
.section-head p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg-soft);
  max-width: 440px;
}

/* ===== LATEST ARTICLES ===== */
.articles {
  background: var(--bg);
}
.articles__grid {
  display: grid;
  gap: 48px;
}
@media (min-width: 880px) {
  .articles__grid {
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 32px;
  }
}

.article {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-top: 1px solid var(--fg);
  padding-top: 24px;
  transition: transform .35s var(--ease);
}
.article:hover { transform: translateY(-4px); }
.article__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-alt);
}
.article--feature .article__media { aspect-ratio: 16 / 11; }
.article__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.article:hover .article__media img { transform: scale(1.04); }
.article__category {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  background: var(--accent);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.article__meta {
  display: flex;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.article__meta span:not(:last-child)::after {
  content: "·";
  margin-left: 14px;
  color: var(--border-strong);
}
.article h3 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.article--feature h3 {
  font-size: clamp(2.4rem, 4.4vw, 4rem);
}
.article p {
  color: var(--fg-soft);
  line-height: 1.6;
}
.article__author {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px dashed var(--border-strong);
}
.article__author img {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.article__author-info {
  display: grid;
  gap: 2px;
}
.article__author-info strong { font-weight: 500; font-size: 14px; }
.article__author-info span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ===== CATEGORIES ===== */
.categories {
  background: var(--bg-alt);
  border-top: 1px solid var(--fg);
  border-bottom: 1px solid var(--fg);
}
.categories__grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--fg);
  border-left: 1px solid var(--fg);
}
@media (min-width: 600px) { .categories__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .categories__grid { grid-template-columns: repeat(4, 1fr); } }

.category {
  border-right: 1px solid var(--fg);
  border-bottom: 1px solid var(--fg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 240px;
  position: relative;
  background: var(--bg-alt);
  transition: background .35s var(--ease), color .35s var(--ease);
  overflow: hidden;
}
.category::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateY(101%);
  transition: transform .5s var(--ease);
  z-index: 0;
}
.category:hover::before { transform: translateY(0); }
.category:hover { color: var(--paper); }
.category > * { position: relative; z-index: 1; }

.category__no {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
}
.category h3 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 0.95;
  text-transform: uppercase;
}
.category p {
  font-size: 14px;
  color: var(--fg-soft);
  line-height: 1.55;
  margin-top: auto;
  transition: color .35s var(--ease);
}
.category:hover p { color: rgba(246, 244, 237, 0.85); }
.category__count {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--fg);
  transition: border-color .35s var(--ease);
}
.category:hover .category__count { border-top-color: rgba(246, 244, 237, 0.4); }

/* ===== STATS BAR ===== */
.stats {
  background: var(--bg-deep);
  color: var(--paper);
  padding: clamp(80px, 11vw, 140px) 0;
}
.stats__intro {
  display: grid;
  gap: 16px;
  margin-bottom: 56px;
}
.stats__intro .eyebrow { color: var(--paper); }
.stats__intro .eyebrow::before { background: var(--yellow); }
.stats__intro h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  max-width: 900px;
}
.stats__intro h2 em {
  font-style: normal;
  color: var(--yellow);
}

.stats__grid {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(246, 244, 237, 0.2);
}
@media (min-width: 720px) { .stats__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }

.stat {
  padding: 36px 24px 36px 0;
  border-bottom: 1px solid rgba(246, 244, 237, 0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 720px) {
  .stat:not(:last-child) { border-right: 1px solid rgba(246, 244, 237, 0.2); padding-right: 32px; padding-left: 32px; }
  .stat:first-child { padding-left: 0; }
}
.stat__value {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--paper);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat__value sup {
  font-size: 0.4em;
  color: var(--accent);
  vertical-align: super;
  line-height: 1;
}
.stat__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246, 244, 237, 0.7);
}
.stat__note { font-size: 14px; color: rgba(246, 244, 237, 0.6); margin-top: auto; padding-top: 12px; }

/* ===== NEWSLETTER ===== */
.newsletter {
  background: var(--accent);
  color: var(--paper);
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
  overflow: hidden;
}
.newsletter__deco {
  position: absolute;
  font-family: var(--serif);
  font-size: clamp(20rem, 50vw, 40rem);
  color: rgba(246, 244, 237, 0.08);
  line-height: 0.8;
  top: -20%;
  right: -8%;
  user-select: none;
  pointer-events: none;
}
.newsletter__inner {
  position: relative;
  display: grid;
  gap: 48px;
}
@media (min-width: 880px) {
  .newsletter__inner { grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: end; }
}
.newsletter h2 {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--paper);
}
.newsletter h2 em { font-style: normal; color: var(--yellow); }
.newsletter p { color: rgba(246, 244, 237, 0.92); max-width: 460px; margin-top: 20px; }

.newsletter__form { display: grid; gap: 16px; }
.newsletter__form label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.newsletter__form-row {
  display: flex;
  border: 2px solid var(--paper);
  background: rgba(246, 244, 237, 0.06);
}
.newsletter__form-row input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 20px 22px;
  color: var(--paper);
  outline: none;
  font-size: 17px;
}
.newsletter__form-row input::placeholder { color: rgba(246, 244, 237, 0.6); }
.newsletter__form-row button {
  padding: 20px 26px;
  background: var(--paper);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.newsletter__form-row button:hover { background: var(--bg-deep); color: var(--paper); }
.newsletter__form-fine {
  font-size: 12px;
  color: rgba(246, 244, 237, 0.78);
  line-height: 1.5;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.newsletter__form-fine input {
  margin-top: 3px;
  accent-color: var(--paper);
}

/* ===== MANIFESTO ===== */
.manifesto {
  background: var(--bg-deep);
  color: var(--paper);
  padding: clamp(100px, 14vw, 180px) 0;
  text-align: center;
}
.manifesto__quote {
  max-width: 920px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5.4vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--paper);
}
.manifesto__quote em {
  font-style: normal;
  color: var(--yellow);
  font-family: var(--serif);
}
.manifesto__attr {
  margin-top: 56px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246, 244, 237, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.manifesto__attr::before, .manifesto__attr::after {
  content: "";
  width: 60px;
  height: 1px;
  background: rgba(246, 244, 237, 0.4);
}

/* ===== ABOUT / SERVICES / CONTACT (page-specific) ===== */
.page-hero {
  padding: 160px 0 80px;
  border-bottom: 1px solid var(--fg);
}
.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.page-hero__eyebrow::before {
  content: "";
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 11vw, 11rem);
  line-height: 0.86;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.page-hero h1 em { font-style: normal; color: var(--accent); display: block; }
.page-hero__lede {
  margin-top: 40px;
  font-size: 19px;
  line-height: 1.6;
  max-width: 680px;
  color: var(--fg-soft);
}

.page-hero__meta {
  margin-top: 64px;
  display: grid;
  gap: 24px;
  border-top: 1px solid var(--border-strong);
  padding-top: 32px;
}
@media (min-width: 720px) { .page-hero__meta { grid-template-columns: repeat(4, 1fr); } }
.page-hero__meta div { display: grid; gap: 6px; }
.page-hero__meta dt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.page-hero__meta dd {
  font-family: var(--serif);
  font-size: 24px;
  margin: 0;
  line-height: 1;
}

/* services */
.services-list { border-top: 1px solid var(--fg); }
.service {
  display: grid;
  gap: 24px;
  padding: 64px 0;
  border-bottom: 1px solid var(--fg);
}
@media (min-width: 880px) {
  .service {
    grid-template-columns: 0.7fr 1.6fr 1fr;
    gap: 56px;
    align-items: start;
  }
}
.service__no {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-strong);
  padding-bottom: 12px;
}
.service__title h3 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
  line-height: 0.92;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.service__title h3 em { font-style: normal; color: var(--accent); }
.service__title p { margin-top: 20px; color: var(--fg-soft); max-width: 560px; }
.service__details ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.service__details li {
  display: flex;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--border-strong);
  font-size: 15px;
}
.service__details li::before {
  content: "→";
  color: var(--accent);
  font-weight: 600;
}

/* about page */
.about-grid {
  display: grid;
  gap: 56px;
}
@media (min-width: 880px) {
  .about-grid { grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: start; }
}
.about-grid h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.about-grid p { margin-top: 20px; line-height: 1.72; color: var(--fg-soft); }
.about-grid p + p { margin-top: 16px; }

.values {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--fg);
  margin-top: 48px;
}
@media (min-width: 720px) { .values { grid-template-columns: repeat(3, 1fr); } }
.value {
  padding: 28px 28px 28px 0;
  border-bottom: 1px solid var(--fg);
  display: grid;
  gap: 12px;
}
@media (min-width: 720px) {
  .value:not(:last-child) { border-right: 1px solid var(--fg); padding-right: 32px; padding-left: 0; }
  .value + .value { padding-left: 28px; }
}
.value__no {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
}
.value h4 {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 0.95;
  text-transform: uppercase;
}
.value p { font-size: 14px; color: var(--fg-soft); line-height: 1.6; }

.team {
  border-top: 1px solid var(--fg);
  padding-top: 80px;
  margin-top: 80px;
}
.team__grid {
  display: grid;
  gap: 32px;
  margin-top: 48px;
}
@media (min-width: 720px) { .team__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .team__grid { grid-template-columns: repeat(4, 1fr); } }

.member {
  display: grid;
  gap: 16px;
}
.member__photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-alt);
  position: relative;
}
.member__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.05);
  transition: transform .8s var(--ease), filter .35s var(--ease);
}
.member:hover .member__photo img { transform: scale(1.05); filter: grayscale(0); }
.member h4 {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 0.95;
  text-transform: uppercase;
}
.member__role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.member p { font-size: 14px; color: var(--fg-soft); line-height: 1.6; }

/* contact page */
.contact-grid {
  display: grid;
  gap: 56px;
}
@media (min-width: 960px) {
  .contact-grid { grid-template-columns: 1.3fr 1fr; gap: 80px; align-items: start; }
}
.contact-form { display: grid; gap: 22px; }
.contact-form label {
  display: grid;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 0;
  border-bottom: 2px solid var(--fg);
  background: transparent;
  padding: 14px 0;
  font-size: 17px;
  outline: none;
  border-radius: 0;
  font-family: var(--sans);
  color: var(--fg);
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-bottom-color: var(--accent); }
.contact-form__submit {
  margin-top: 12px;
  padding: 20px 36px;
  background: var(--fg);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  align-self: start;
  transition: background .25s var(--ease);
}
.contact-form__submit:hover { background: var(--accent); }

.contact-aside {
  background: var(--bg-deep);
  color: var(--paper);
  padding: 48px 40px;
  display: grid;
  gap: 32px;
}
.contact-aside h3 {
  font-family: var(--serif);
  font-size: 36px;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--paper);
}
.contact-aside dl { margin: 0; display: grid; gap: 22px; }
.contact-aside dt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 6px;
}
.contact-aside dd { margin: 0; line-height: 1.5; color: rgba(246, 244, 237, 0.92); }
.contact-aside dd a:hover { color: var(--yellow); }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-deep);
  color: var(--paper);
  padding: 80px 0 32px;
  margin-top: 0;
}
.newsletter + .footer { padding-top: 80px; }
.footer__top {
  display: grid;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(246, 244, 237, 0.2);
}
@media (min-width: 880px) {
  .footer__top { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
}
.footer__brand {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.9;
  text-transform: uppercase;
}
.footer__brand em {
  font-style: normal;
  color: var(--accent);
}
.footer__tagline {
  margin-top: 16px;
  color: rgba(246, 244, 237, 0.7);
  max-width: 360px;
  font-size: 15px;
}
.footer__col h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 20px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer__col a {
  color: rgba(246, 244, 237, 0.85);
  font-size: 15px;
  transition: color .25s var(--ease);
}
.footer__col a:hover { color: var(--paper); }
.footer__bottom {
  display: grid;
  gap: 16px;
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 244, 237, 0.6);
}
@media (min-width: 720px) {
  .footer__bottom { grid-template-columns: 1fr auto; align-items: center; }
}
.footer__bottom-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__bottom a:hover { color: var(--paper); }

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

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

/* ===== 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(14, 14, 14, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card {
  background: var(--paper);
  padding: 32px 36px;
  max-width: 480px;
  border: 2px solid var(--fg);
  border-radius: 0;
}
.cookie-popup__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.cookie-popup h3 {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.cookie-popup p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-soft);
}
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 24px; }
.cookie-popup__actions button {
  padding: 12px 22px;
  border: 2px solid var(--fg);
  background: transparent;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.cookie-popup__actions button:last-child {
  background: var(--fg);
  color: var(--paper);
}
.cookie-popup__actions button:hover {
  background: var(--accent);
  color: var(--paper);
  border-color: var(--accent);
}

/* ===== LEGAL PAGES ===== */
.legal {
  padding: 120px 0;
  max-width: 760px;
  margin: 0 auto;
}
.legal h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.legal h2 {
  font-family: var(--serif);
  font-size: 32px;
  text-transform: uppercase;
  margin: 56px 0 16px;
}
.legal p, .legal li { font-size: 16px; line-height: 1.75; color: var(--fg-soft); margin-bottom: 16px; }
.legal ul { padding-left: 20px; }
.legal__updated {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
}
