:root {
  --ink: #1a1214;
  --burgundy: #4a1020;
  --burgundy-deep: #2e0a14;
  --gold: #c4a35a;
  --gold-pale: #e8d5a3;
  --cream: #f4ede0;
  --cream-dark: #e6d9c4;
  --paper: #fbf7ef;
  --moss: #2c4a4a;
  --error: #8b1e2d;
  --ok: #2c4a4a;
  --radius: 2px;
  --shadow: 0 12px 40px rgba(26, 18, 20, 0.12);
  --header-h: 4.25rem;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  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);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

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

h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  margin: 0 0 0.6em;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  margin: 0 0 0.55em;
}

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

p {
  margin: 0 0 1em;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--burgundy-deep);
  color: var(--cream);
  border-bottom: 3px solid var(--gold);
}

.site-header a {
  color: var(--cream);
  text-decoration: none;
}

.site-header a:hover {
  color: var(--gold-pale);
}

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

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
}

.site-header__mark {
  width: 1.35rem;
  height: 1.35rem;
  border: 2px solid var(--gold);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px var(--burgundy-deep), inset 0 0 0 6px var(--gold);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-pale);
  padding: 0.4rem 0.7rem;
  font-family: inherit;
  cursor: pointer;
}

.nav-toggle__bars {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

.site-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.92rem;
}

.main {
  min-height: 60vh;
}

.wrap {
  max-width: 72rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

.wrap--narrow {
  max-width: 44rem;
}

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

.lede {
  font-size: 1.2rem;
  color: #3a3032;
}

.btn {
  display: inline-block;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.7rem 1.25rem;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  border-radius: var(--radius);
}

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

.btn--ghost {
  background: transparent;
  color: inherit;
}

.site-header .btn--ghost {
  border-color: var(--gold);
  color: var(--gold-pale);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: calc(88vh - var(--header-h));
  background: var(--burgundy);
  color: var(--cream);
}

.hero__panel {
  padding: 3.5rem 2rem 3.5rem 8vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-right: 1px solid rgba(196, 163, 90, 0.35);
}

.hero h1 {
  color: var(--gold-pale);
  max-width: 14ch;
}

.hero p {
  max-width: 38ch;
  color: var(--cream);
}

.hero__meta {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  border-top: 1px solid var(--gold);
  padding-top: 1rem;
  max-width: 36ch;
}

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

.hero__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 22rem;
}

.hero__caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(46, 10, 20, 0.82);
  color: var(--gold-pale);
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
}

.band {
  padding: 3.5rem 0;
}

.band--cream {
  background: var(--cream);
}

.band--ink {
  background: var(--ink);
  color: var(--cream);
}

.band--ink a {
  color: var(--gold-pale);
}

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

.card {
  background: var(--paper);
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}

.card__body {
  padding: 1.15rem 1.2rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card__body p {
  flex: 1;
}

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

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

.split img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 16rem;
  border: 8px solid var(--cream-dark);
}

.quote-list {
  display: grid;
  gap: 1.5rem;
}

.quote {
  border-left: 3px solid var(--gold);
  padding: 0.2rem 0 0.2rem 1.2rem;
}

.quote p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
}

.quote footer {
  font-size: 0.9rem;
  color: #5a4e50;
}

.site-footer {
  background: var(--burgundy-deep);
  color: var(--cream);
  border-top: 3px solid var(--gold);
  padding: 2.5rem 1.25rem;
  font-size: 0.95rem;
}

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

.site-footer__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr;
  gap: 2rem;
}

.site-footer__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 0.4rem;
}

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

.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form {
  display: grid;
  gap: 1rem;
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.92rem;
}

.form input,
.form select,
.form textarea {
  font: inherit;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--cream-dark);
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
}

.form textarea {
  min-height: 8rem;
  resize: vertical;
}

.field-error {
  color: var(--error);
  font-weight: 400;
  font-size: 0.85rem;
}

.form-status {
  padding: 0.85rem 1rem;
  border: 1px solid var(--gold);
  background: var(--cream);
}

.form-status--error {
  border-color: var(--error);
  background: #f8e8ea;
}

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

.table th,
.table td {
  border: 1px solid var(--cream-dark);
  padding: 0.65rem 0.75rem;
  text-align: left;
  vertical-align: top;
}

.table th {
  background: var(--cream);
}

.issue-list {
  display: grid;
  gap: 1.25rem;
}

.issue {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1.25rem;
  background: var(--cream);
  padding: 1.1rem;
  border: 1px solid var(--cream-dark);
}

.issue__code {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--burgundy);
}

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

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

.price-block {
  background: var(--cream);
  border-top: 4px solid var(--gold);
  padding: 1.5rem;
  margin: 0 0 1.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--cream);
  color: var(--ink);
  border-top: 3px solid var(--gold);
  box-shadow: 0 -8px 30px rgba(26, 18, 20, 0.15);
}

.cookie-banner__inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1rem 1.25rem 1.2rem;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
}

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

.page-hero {
  background: var(--burgundy);
  color: var(--cream);
  padding: 3rem 1.25rem 2.5rem;
}

.page-hero .wrap {
  padding-top: 0;
  padding-bottom: 0;
}

.page-hero h1 {
  color: var(--gold-pale);
}

.page-hero--img {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  padding: 0;
}

.page-hero--img .page-hero__copy {
  padding: 3rem 2rem 2.5rem 8vw;
}

.page-hero--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 16rem;
}

.prose ul {
  padding-left: 1.2rem;
}

.prose li {
  margin-bottom: 0.4rem;
}

.muted {
  color: #5a4e50;
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .hero,
  .page-hero--img,
  .split,
  .grid-cards,
  .team,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .hero__panel {
    padding: 2.5rem 1.25rem;
    border-right: 0;
    border-bottom: 1px solid rgba(196, 163, 90, 0.35);
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--burgundy);
    padding: 1rem 1.25rem 1.4rem;
    border-bottom: 2px solid var(--gold);
  }

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

  .site-nav__list {
    flex-direction: column;
    gap: 0.75rem;
  }

  .site-header {
    position: sticky;
  }

  .site-header__inner {
    position: relative;
  }

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

  .issue {
    grid-template-columns: 1fr;
  }
}
