:root {
  --paper: #f4efe6;
  --paper-deep: #ebe3d4;
  --card: #fbf8f3;
  --ink: #1c1917;
  --ink-soft: #4a433c;
  --muted: #7a7268;
  --rule: #d4c8b8;
  --burgundy: #8b3a2f;
  --burgundy-deep: #6c2c24;
  --olive: #3d5a4c;
  --gold: #b08d57;
  --error: #8b3a2f;
  --ok: #3d5a4c;
  --radius: 2px;
  --shadow: 0 18px 40px rgba(28, 25, 23, 0.08);
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
}

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

a {
  color: var(--burgundy-deep);
  text-underline-offset: 0.18em;
}

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

h1,
h2,
h3,
.display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin: 0 0 0.6rem;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin: 0 0 0.8rem;
}

h3 {
  font-size: 1.25rem;
  margin: 0 0 0.4rem;
}

p {
  margin: 0 0 1rem;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 0.5rem 1rem;
}

.skip-link:focus {
  left: 0;
  z-index: 40;
}

.site-header {
  border-bottom: 1px solid var(--rule);
  background: rgba(244, 239, 230, 0.92);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-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;
}

.site-header__brand {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}

.site-header__mark {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--burgundy);
  border: 1px solid var(--burgundy);
  padding: 0.15rem 0.35rem;
}

.site-header__name {
  font-weight: 600;
  letter-spacing: 0.01em;
}

.site-header__toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--ink);
  font-family: inherit;
  padding: 0.35rem 0.7rem;
  cursor: pointer;
}

.site-header__list {
  list-style: none;
  display: flex;
  gap: 1.1rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

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

.site-header__cta {
  border: 1px solid var(--burgundy);
  color: var(--burgundy-deep) !important;
  padding: 0.35rem 0.7rem;
}

.site-footer {
  border-top: 1px solid var(--rule);
  margin-top: 4rem;
  padding: 2.5rem 1.25rem 1.5rem;
  background: var(--paper-deep);
}

.site-footer__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

.site-footer__brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.site-footer__label {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

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

.site-footer__links li {
  margin-bottom: 0.35rem;
}

.site-footer__copy {
  max-width: var(--max);
  margin: 2rem auto 0;
  font-size: 0.85rem;
  color: var(--muted);
}

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

.main--wide {
  max-width: none;
  padding: 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 0;
  min-height: 78vh;
  background: var(--paper);
}

.hero__meta {
  padding: 3.5rem 2.5rem 2rem 1.25rem;
  max-width: calc(var(--max) * 0.45);
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-right: 1px solid var(--rule);
}

.hero__issue {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 1.2rem;
}

.hero__lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 28ch;
}

.hero__link {
  margin-top: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  align-self: flex-start;
}

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

.hero__figure img {
  width: 100%;
  height: 78vh;
  object-fit: cover;
}

.hero__caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--card);
  padding: 0.4rem 0.7rem;
  font-size: 0.8rem;
  color: var(--muted);
}

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

.band--tint {
  background: var(--paper-deep);
  max-width: none;
  padding: 3.5rem 1.25rem;
}

.band--tint .band__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.kicker {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 0.5rem;
}

.lede {
  font-size: 1.2rem;
  max-width: 62ch;
  color: var(--ink-soft);
}

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

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

.card {
  background: var(--card);
  border: 1px solid var(--rule);
  box-shadow: var(--shadow);
}

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

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

.card__link {
  font-weight: 600;
  text-decoration: none;
}

.obs {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--rule);
}

.obs__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
}

.quote {
  border-left: 3px solid var(--burgundy);
  padding: 0.2rem 0 0.2rem 1.2rem;
  font-size: 1.15rem;
  font-family: var(--font-display);
}

.quote cite {
  display: block;
  margin-top: 0.8rem;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--muted);
}

.btn {
  display: inline-block;
  font-family: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  border-radius: var(--radius);
  padding: 0.55rem 1rem;
  text-decoration: none;
}

.btn--solid {
  background: var(--burgundy);
  color: #fbf8f3;
  border: 1px solid var(--burgundy);
}

.btn--solid:hover {
  background: var(--burgundy-deep);
  color: #fbf8f3;
}

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

.page-head {
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--rule);
}

.prose {
  max-width: 68ch;
}

.prose h2 {
  margin-top: 2rem;
}

.figure-full {
  margin: 0 0 1.5rem;
}

.figure-full img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.figure-full figcaption {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.4rem;
}

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

.dl {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0.6rem 1rem;
  margin: 1.5rem 0;
}

.dl dt {
  font-weight: 700;
  color: var(--olive);
}

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

.team img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  filter: grayscale(0.15);
}

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

.rate-table th,
.rate-table td {
  border-bottom: 1px solid var(--rule);
  text-align: left;
  padding: 0.85rem 0.7rem;
  vertical-align: top;
}

.review {
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--rule);
}

.review--long {
  background: var(--card);
  border: 1px solid var(--rule);
  padding: 1.4rem;
  margin: 1.5rem 0;
}

.form {
  display: grid;
  gap: 1rem;
  max-width: 640px;
}

.form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  font: inherit;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--rule);
  background: var(--card);
  color: var(--ink);
}

.form textarea {
  min-height: 140px;
}

.form__error {
  color: var(--error);
  font-size: 0.88rem;
  min-height: 1.1em;
  margin: 0.25rem 0 0;
}

.form__status {
  margin-top: 0.5rem;
}

.form__status--ok {
  color: var(--ok);
  font-weight: 600;
}

.form__status--error {
  color: var(--error);
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink);
  color: var(--paper);
  z-index: 30;
  padding: 1rem 1.25rem;
}

.cookie-banner a {
  color: #e7d3a8;
}

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

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

.cookie-banner .btn--ghost {
  color: var(--paper);
  border-color: var(--paper);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.legal-table th,
.legal-table td {
  border: 1px solid var(--rule);
  padding: 0.55rem;
  text-align: left;
}

.inline-error {
  color: var(--error);
  font-size: 0.9rem;
}

.not-found {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.timeline {
  display: grid;
  gap: 0;
}

.timeline__item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.5rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--rule);
}

@media (max-width: 900px) {
  .hero,
  .split,
  .card-grid,
  .team,
  .site-footer__grid,
  .obs,
  .dl,
  .timeline__item {
    grid-template-columns: 1fr;
  }

  .hero__figure img {
    height: 42vh;
  }

  .hero__meta {
    border-right: 0;
    padding: 2rem 1.25rem 1rem;
  }

  .site-header__toggle {
    display: block;
  }

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

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

  .site-header__list {
    flex-direction: column;
    align-items: flex-start;
  }

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