:root {
  --ink: #1a1210;
  --paper: #f4ead8;
  --paper-deep: #e8d9c0;
  --crimson: #8b1e1e;
  --crimson-hot: #b32626;
  --gold: #c9a227;
  --gold-dim: #9a7a1c;
  --panel: #fff8ec;
  --muted: #5c4f45;
  --line: #1a1210;
  --shadow: 6px 6px 0 #1a1210;
  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: "Libre Baskerville", Georgia, serif;
  --font-ui: "Archivo", system-ui, sans-serif;
  --space: 1.25rem;
  --max: 72rem;
}

*,
*::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.05rem;
  line-height: 1.65;
  background-image:
    radial-gradient(circle at 12% 8%, rgba(139, 30, 30, 0.06) 0 18%, transparent 19%),
    repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(26, 18, 16, 0.03) 3px, rgba(26, 18, 16, 0.03) 4px);
}

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

a {
  color: var(--crimson);
}

a:hover {
  color: var(--crimson-hot);
}

h1,
h2,
h3,
.display {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  line-height: 0.95;
  font-weight: 400;
  margin: 0 0 0.6em;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

h3 {
  font-size: 1.7rem;
}

p {
  margin: 0 0 1em;
}

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

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

.main {
  min-height: 60vh;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  background: var(--ink);
  color: var(--paper);
  border-bottom: 4px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header__bar {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 0;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--paper);
  text-decoration: none;
}

.site-header__mark {
  width: 1.4rem;
  height: 1.4rem;
  background: var(--crimson);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  border: 2px solid var(--gold);
}

.site-header__name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.08em;
}

.site-header__toggle {
  font-family: var(--font-ui);
  background: var(--crimson);
  color: var(--paper);
  border: 2px solid var(--gold);
  padding: 0.4rem 0.8rem;
  cursor: pointer;
}

.site-header__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 1.1rem;
  font-family: var(--font-ui);
  font-size: 0.92rem;
}

.site-header__nav a {
  color: var(--paper);
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.site-header__nav a:hover,
.site-header__nav a:focus {
  border-bottom-color: var(--gold);
  color: var(--gold);
}

@media (max-width: 860px) {
  .site-header__nav {
    display: none;
    width: 100%;
    padding-bottom: 0.8rem;
  }

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

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

@media (min-width: 861px) {
  .site-header__toggle {
    display: none;
  }
}

.site-footer {
  background: var(--ink);
  color: var(--paper-deep);
  margin-top: 3rem;
  padding: 2.5rem 0 1.2rem;
  border-top: 8px solid var(--crimson);
}

.site-footer__inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1.5rem;
}

.site-footer__brand {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  margin: 0 0 0.4rem;
}

.site-footer__label {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--gold);
  margin: 0 0 0.4rem;
}

.site-footer__address {
  font-style: normal;
}

.site-footer a {
  color: var(--paper);
}

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

.site-footer__copy {
  width: min(100% - 2rem, var(--max));
  margin: 2rem auto 0;
  font-size: 0.85rem;
  font-family: var(--font-ui);
}

.btn {
  font-family: var(--font-ui);
  font-weight: 700;
  display: inline-block;
  padding: 0.7rem 1.15rem;
  text-decoration: none;
  border: 2px solid var(--ink);
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--ink);
}

.btn--solid {
  background: var(--crimson);
  color: var(--paper);
}

.btn--solid:hover {
  color: var(--paper);
}

.btn--ghost {
  background: var(--gold);
  color: var(--ink);
}

.btn--ghost:hover {
  color: var(--ink);
}

.splash {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 78vh;
  border-bottom: 4px solid var(--ink);
}

.splash__copy {
  padding: clamp(1.5rem, 4vw, 3.5rem);
  background: var(--crimson);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}

.splash__kicker {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.splash__copy h1 {
  color: var(--paper);
}

.splash__lede {
  font-size: 1.08rem;
  max-width: 36rem;
}

.splash__meta {
  font-family: var(--font-ui);
  border-top: 2px solid var(--gold);
  margin-top: 1.5rem;
  padding-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  font-size: 0.85rem;
}

.splash__visual {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.splash__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 22rem;
  filter: contrast(1.08) saturate(0.9);
}

.splash__stamp {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.6rem;
  padding: 0.4rem 0.7rem;
  border: 3px solid var(--ink);
  transform: rotate(-4deg);
}

@media (max-width: 860px) {
  .splash {
    grid-template-columns: 1fr;
  }
}

.band {
  padding: 3.2rem 0;
}

.band--alt {
  background: var(--paper-deep);
  border-block: 3px solid var(--ink);
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 3px solid var(--ink);
}

.panel {
  background: var(--panel);
  border-right: 3px solid var(--ink);
  padding: 1.2rem;
}

.panel:last-child {
  border-right: 0;
}

.panel h2,
.panel h3 {
  margin-top: 0.4rem;
}

@media (max-width: 800px) {
  .panel-grid {
    grid-template-columns: 1fr;
  }

  .panel {
    border-right: 0;
    border-bottom: 3px solid var(--ink);
  }

  .panel:last-child {
    border-bottom: 0;
  }
}

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

.card {
  background: var(--panel);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
}

.card img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  border-bottom: 3px solid var(--ink);
}

.card__body {
  padding: 1rem;
}

.card__body h3 {
  margin-bottom: 0.4rem;
}

.prose {
  max-width: 42rem;
}

.prose--wide {
  max-width: 48rem;
}

.figure-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

@media (max-width: 800px) {
  .figure-split {
    grid-template-columns: 1fr;
  }
}

.figure-split img {
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
}

.table-wrap {
  overflow-x: auto;
  border: 3px solid var(--ink);
  background: var(--panel);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-ui);
  font-size: 0.95rem;
}

th,
td {
  text-align: left;
  padding: 0.7rem 0.85rem;
  border-bottom: 1px solid #d7c8b0;
  vertical-align: top;
}

th {
  background: var(--ink);
  color: var(--gold);
  font-weight: 600;
}

.quote {
  border-left: 8px solid var(--crimson);
  padding: 0.2rem 0 0.2rem 1rem;
  margin: 0 0 1.5rem;
}

.quote p {
  font-style: italic;
}

.quote footer {
  font-family: var(--font-ui);
  font-style: normal;
  font-size: 0.9rem;
  color: var(--muted);
}

.form {
  display: grid;
  gap: 0.9rem;
  max-width: 36rem;
}

.form label {
  font-family: var(--font-ui);
  font-weight: 600;
  display: grid;
  gap: 0.35rem;
}

.form input,
.form select,
.form textarea {
  font: inherit;
  padding: 0.55rem 0.65rem;
  border: 2px solid var(--ink);
  background: #fff;
}

.form__error {
  color: var(--crimson);
  font-family: var(--font-ui);
  font-size: 0.88rem;
  min-height: 1.1em;
}

.form__status {
  font-family: var(--font-ui);
  padding: 0.7rem;
  border: 2px solid var(--ink);
  display: none;
}

.form__status.is-visible {
  display: block;
}

.form__status--ok {
  background: #d9ead3;
}

.form__status--err {
  background: #f4c7c3;
}

.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1rem;
}

.team__person img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  border: 3px solid var(--ink);
}

.legal h2 {
  margin-top: 1.8rem;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  background: var(--paper);
  border-top: 4px solid var(--crimson);
  box-shadow: 0 -6px 0 var(--ink);
}

.cookie-banner__inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 1rem 0 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner__text {
  margin: 0;
  flex: 1 1 20rem;
}

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

.mast {
  padding: 2.5rem 0 1rem;
  border-bottom: 4px solid var(--ink);
  background: var(--crimson);
  color: var(--paper);
}

.mast h1 {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto 0.4rem;
}

.mast p {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.faq dt {
  font-family: var(--font-ui);
  font-weight: 700;
  margin-top: 1rem;
}

.list-plain {
  padding-left: 1.1rem;
}
