:root {
  --paper: #f3ece1;
  --paper-deep: #e7dccb;
  --ink: #1b2428;
  --ink-soft: #3d4a50;
  --terracotta: #c45c3e;
  --terracotta-dark: #9e3f26;
  --pine: #2a5f5a;
  --pine-dark: #1d4642;
  --ochre: #c9a227;
  --rule: #d4c6b0;
  --white: #fffdf8;
  --shadow: 0 18px 40px rgba(27, 36, 40, 0.12);
  --radius: 18px;
  --font-sans: "Figtree", system-ui, sans-serif;
  --font-serif: "Literata", Georgia, serif;
  --header-h: 4.5rem;
}

*,
*::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%, rgba(196, 92, 62, 0.08), transparent 50%),
    linear-gradient(180deg, var(--paper) 0%, #efe6d6 100%);
  line-height: 1.65;
  min-height: 100vh;
}

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

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

a:hover {
  color: var(--terracotta-dark);
}

h1,
h2,
h3,
.lede {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}

h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 0 0 0.75rem;
}

h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
}

.wrap {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

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

.site-header__inner {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
  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.6rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-header__mark {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 0.4rem;
  background: var(--pine);
  box-shadow: inset 0 -10px 0 var(--terracotta);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--ink);
  background: var(--white);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font: inherit;
  cursor: pointer;
}

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

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

.site-nav a:hover {
  color: var(--terracotta-dark);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 78vh;
  border-bottom: 1px solid var(--rule);
}

.hero__media {
  position: relative;
  min-height: 420px;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.hero__caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(27, 36, 40, 0.72);
  color: var(--white);
  padding: 0.55rem 0.8rem;
  font-size: 0.85rem;
  max-width: 22rem;
}

.hero__panel {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--terracotta-dark);
  margin: 0 0 0.8rem;
}

.lede {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.season-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--rule);
}

.season-strip li {
  padding: 1rem 1.1rem;
  border-right: 1px solid var(--rule);
  background: var(--paper-deep);
}

.season-strip li:last-child {
  border-right: 0;
}

.season-strip strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
}

.season-strip span {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.section {
  padding: 4.2rem 0;
}

.section--alt {
  background: var(--white);
  border-block: 1px solid var(--rule);
}

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

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

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
}

.card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__body {
  padding: 1.15rem 1.2rem 1.4rem;
  border-top: 4px solid var(--pine);
}

.card__title {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--terracotta);
  color: var(--white);
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  padding: 0.75rem 1.3rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(196, 92, 62, 0.28);
}

.btn:hover {
  background: var(--terracotta-dark);
  color: var(--white);
}

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

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

.btn--veve {
  background: var(--pine);
  box-shadow: 0 8px 18px rgba(42, 95, 90, 0.28);
  margin-top: 0.75rem;
}

.btn--veve:hover {
  background: var(--pine-dark);
  color: var(--white);
}

.quote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin: 0 0 1rem;
}

.quote-meta {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.prose {
  max-width: 70ch;
}

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

.page-hero {
  padding: 3.5rem 0 1rem;
}

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

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

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

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

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

.site-footer {
  background: var(--ink);
  color: #e8e0d4;
  padding: 3rem 0 2rem;
  margin-top: 2rem;
}

.site-footer a {
  color: #f3d2c4;
}

.site-footer__inner {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

.site-footer__brand {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin: 0 0 0.5rem;
  color: var(--white);
}

.site-footer__label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--ochre);
  margin: 0 0 0.6rem;
}

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

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

.site-footer__legal {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(232, 224, 212, 0.2);
  font-size: 0.82rem;
  line-height: 1.55;
  color: #cfc4b4;
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  width: min(420px, calc(100% - 2rem));
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem 1.1rem;
}

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

.js-error {
  color: #8a1f11;
  background: #f8d7cf;
  padding: 0.5rem 0.75rem;
  margin: 0;
}

.veve-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 1.6rem;
  background: var(--pine);
  color: var(--white);
  border-radius: var(--radius);
}

.veve-band p {
  margin: 0;
}

.veve-band .btn--veve {
  background: var(--ochre);
  color: var(--ink);
  margin-top: 0;
}

.veve-band .btn--veve:hover {
  background: #e0bc4a;
  color: var(--ink);
}

.story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

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

.error-page {
  min-height: 50vh;
  padding: 5rem 0;
}

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

  .season-strip li {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .nav-toggle {
    display: inline-flex;
  }

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

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

  .site-nav__list {
    flex-direction: column;
  }

  .hero__panel {
    padding: 2rem 1.25rem 2.4rem;
  }

  .veve-band {
    flex-direction: column;
    align-items: flex-start;
  }
}
