:root {
  --ink: #1c1914;
  --ink-soft: #3d3830;
  --muted: #5c564c;
  --paper: #f3ecdf;
  --paper-deep: #e7dcc8;
  --card: #fffaf1;
  --line: #d4c7b0;
  --copper: #c45c26;
  --copper-dark: #8d3a12;
  --forest: #2c4a38;
  --shadow: 0 18px 40px rgba(28, 25, 20, 0.08);
  --radius: 18px;
  --font-sans: "Outfit", system-ui, sans-serif;
  --font-serif: "Newsreader", Georgia, serif;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background:
    radial-gradient(1200px 400px at 10% -10%, #efe4cf 0%, transparent 55%),
    var(--paper);
  line-height: 1.6;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--copper-dark);
}

a:hover {
  color: var(--copper);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--ink);
  color: var(--paper);
  padding: 0.5rem 0.8rem;
  z-index: 100;
}

.skip-link:focus {
  top: 0.75rem;
}

.island-error {
  background: #f4d6c8;
  color: #6b2410;
  padding: 0.75rem 1.25rem;
  text-align: center;
  font-size: 0.95rem;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(243, 236, 223, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header__mark {
  font-family: var(--font-serif);
  font-weight: 650;
  font-size: 1.35rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.03em;
}

.header__toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font: inherit;
}

.header__list {
  display: flex;
  gap: 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.header__list a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.header__list a:hover,
.header__list a:focus {
  color: var(--copper-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--copper);
  color: #fff8f2;
}

.btn--primary:hover {
  background: var(--copper-dark);
  color: #fff8f2;
}

.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn--veve {
  background: var(--forest);
  color: #f3ecdf;
}

.btn--veve:hover {
  background: #1d3327;
  color: #f3ecdf;
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 1rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: end;
}

.hero__figure {
  margin: 0;
  position: relative;
}

.hero__figure img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero__caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: var(--card);
  padding: 0.45rem 0.7rem;
  font-size: 0.82rem;
  color: var(--muted);
  border-radius: 8px;
}

.hero__kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--copper-dark);
  margin: 0 0 0.8rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  font-weight: 650;
}

.hero__lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 38rem;
}

.hero__rule {
  width: 4.5rem;
  height: 3px;
  background: var(--copper);
  border: 0;
  margin: 1.4rem 0;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 0.6rem;
}

.section__intro {
  color: var(--muted);
  max-width: 40rem;
}

.band {
  background: var(--paper-deep);
  border-block: 1px solid var(--line);
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 1.25rem;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card__body {
  padding: 1.15rem 1.2rem 1.3rem;
}

.card__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 0 0 0.4rem;
}

.card__title a {
  color: inherit;
  text-decoration: none;
}

.card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.prose {
  max-width: 46rem;
}

.prose h1,
.prose h2,
.prose h3 {
  font-family: var(--font-serif);
  line-height: 1.2;
}

.prose h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.2rem 1.25rem 0.5rem;
}

.page-hero img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-top: 1.2rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.quote {
  background: var(--card);
  border-left: 4px solid var(--copper);
  padding: 1.2rem 1.3rem;
  margin: 0 0 1.2rem;
}

.quote p {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin: 0 0 0.6rem;
}

.quote cite {
  font-style: normal;
  color: var(--muted);
  font-size: 0.92rem;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
}

th,
td {
  text-align: left;
  padding: 0.7rem 0.8rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  background: var(--paper-deep);
  font-weight: 600;
}

.footer {
  background: #231f1a;
  color: #e7dcc8;
  margin-top: 3rem;
}

.footer a {
  color: #f0c9b0;
}

.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.4rem 1.25rem 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 1.5rem;
}

.footer__name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin: 0 0 0.6rem;
}

.footer__place,
.footer__heading {
  margin: 0.2rem 0;
}

.footer__heading {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: #cbbda6;
}

.footer__links {
  list-style: none;
  margin: 0.4rem 0 0;
  padding: 0;
}

.footer__links li {
  margin: 0.25rem 0;
}

.footer__legal {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid #3a342c;
  font-size: 0.82rem;
  color: #cbbda6;
  line-height: 1.55;
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 40;
}

.cookie-banner__inner {
  max-width: 720px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem 1.1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner__text {
  margin: 0;
  font-size: 0.95rem;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.stat-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 1.2rem;
}

.stat-note__num {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1;
  color: var(--copper-dark);
}

.people {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.people img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
}

@media (max-width: 900px) {
  .hero,
  .split,
  .grid-3,
  .grid-2,
  .footer__grid,
  .people {
    grid-template-columns: 1fr;
  }

  .hero__figure img,
  .page-hero img {
    height: 280px;
  }

  .header__toggle {
    display: inline-flex;
  }

  .header__nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 0.8rem 1.25rem 1.1rem;
  }

  .header__nav.is-open {
    display: block;
  }

  .header__list {
    flex-direction: column;
    gap: 0.7rem;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }
}
