:root {
  --paper: #F4F6F1;
  --panel: #E6EBDF;
  --ink: #1E2A20;
  --moss: #3E6B41;
  --sage: #7B8A78;
  --sage-ink: #4F5D50;
  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Source Serif 4", "Source Serif Pro", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

html.no-js .lift-in {
  opacity: 1 !important;
  transform: none !important;
}

body {
  margin: 0;
  padding-top: 92px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 720px) {
  body {
    padding-top: 84px;
  }
}

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

a {
  color: var(--moss);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: #2E5231;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--moss);
  outline-offset: 2px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 0.7em;
}

h1 {
  font-weight: 700;
  font-size: clamp(2.05rem, 4.2vw, 3.3rem);
  letter-spacing: -0.015em;
  line-height: 1.08;
}

h2 {
  font-weight: 600;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  line-height: 1.18;
}

h3 {
  font-weight: 600;
  font-size: 1.06rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.35;
}

p {
  margin: 0 0 1.05em;
}

p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  margin: 0 0 1.1em;
  padding-left: 1.2em;
}

.page-frame {
  max-width: 1240px;
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.pill-rail {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 28px));
  border-radius: 999px;
  background: rgba(244, 246, 241, 0.93);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(123, 138, 120, 0.5);
  box-shadow: 0 6px 20px rgba(30, 42, 32, 0.07);
  padding: 8px 10px 8px 18px;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pill-rail.is-condensed {
  box-shadow: 0 10px 28px rgba(30, 42, 32, 0.14);
}

.pill-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.pill-brand svg {
  width: 22px;
  height: 22px;
  display: block;
}

.pill-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 2px;
}

.pill-links a {
  display: inline-block;
  padding: 9px 13px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-decoration: none;
}

.pill-links a:hover {
  background: #E6EBDF;
  color: var(--ink);
}

.pill-links a.is-active {
  background: #1E2A20;
  color: #F4F6F1;
}

.pill-sheet {
  display: none;
  position: relative;
}

.pill-sheet summary {
  list-style: none;
  cursor: pointer;
  padding: 9px 16px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(123, 138, 120, 0.45);
}

.pill-sheet summary::-webkit-details-marker {
  display: none;
}

.pill-sheet[open] summary {
  background: #E6EBDF;
}

.pill-sheet nav {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 240px;
  background: var(--paper);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(30, 42, 32, 0.14);
  border: 1px solid rgba(123, 138, 120, 0.4);
  padding: 10px;
  display: flex;
  flex-direction: column;
}

.pill-sheet nav a {
  display: block;
  padding: 10px 14px;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-decoration: none;
}

.pill-sheet nav a:hover {
  background: #E6EBDF;
}

.pill-sheet nav a.is-active {
  background: #1E2A20;
  color: #F4F6F1;
}

@media (max-width: 980px) {
  .pill-links {
    display: none;
  }

  .pill-sheet {
    display: block;
  }
}

.spread {
  padding-block: clamp(52px, 6vw, 88px);
}

.spread--tinted {
  background: var(--panel);
}

.spread--inked {
  background: var(--ink);
  color: var(--paper);
}

.spread--inked h1,
.spread--inked h2,
.spread--inked h3,
.spread--inked h4,
.spread--inked a {
  color: var(--paper);
}

.spread--inked a:hover {
  color: #E6EBDF;
}

.spread--inked .standfirst-tag,
.spread--inked .dateline,
.spread--inked .figure-plate__caption {
  color: #C9D2C4;
}

.split-1618 {
  display: grid;
  grid-template-columns: 1fr 1.618fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.split-1618--reverse > :first-child {
  order: 2;
}

.split-1618--reverse > :last-child {
  order: 1;
}

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

  .split-1618--reverse > :first-child,
  .split-1618--reverse > :last-child {
    order: unset;
  }
}

.column-set {
  column-count: 2;
  column-gap: 44px;
  column-rule: 1px solid rgba(123, 138, 120, 0.35);
}

.column-set p {
  break-inside: avoid;
}

@media (max-width: 820px) {
  .column-set {
    column-count: 1;
    column-rule: none;
  }
}

.lede {
  font-family: var(--font-body);
  font-size: 1.22rem;
  line-height: 1.6;
  margin-bottom: 1.2em;
}

.lede--cap::first-letter {
  float: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.6em;
  line-height: 0.82;
  padding: 6px 10px 0 0;
  color: var(--moss);
}

.standfirst-tag {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sage-ink);
  margin-bottom: 0.85em;
}

.sidenote {
  background: var(--panel);
  border-left: 3px solid var(--moss);
  padding: 18px 20px 18px 22px;
  margin: 1.4em 0;
}

.sidenote .standfirst-tag {
  margin-bottom: 0.5em;
}

.spread--inked .sidenote {
  background: rgba(244, 246, 241, 0.08);
  color: var(--paper);
}

.pullbox {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.32rem;
  line-height: 1.5;
  margin: 1.8em 0;
  padding: 1.15em 0;
  border-top: 1px solid rgba(123, 138, 120, 0.45);
  border-bottom: 1px solid rgba(123, 138, 120, 0.45);
}

.spread--inked .pullbox {
  border-color: rgba(244, 246, 241, 0.28);
}

.hairline {
  height: 1px;
  background: rgba(123, 138, 120, 0.45);
  border: 0;
  margin: 1.1em 0;
}

.card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
}

@media (max-width: 900px) {
  .card-row {
    grid-template-columns: 1fr;
  }
}

.card-item {
  background: var(--panel);
  padding: 22px 22px 24px;
  border: 1px solid rgba(123, 138, 120, 0.28);
}

.spread--tinted .card-item {
  background: var(--paper);
}

.spread--inked .card-item {
  background: rgba(244, 246, 241, 0.06);
  border-color: rgba(244, 246, 241, 0.16);
}

.stage-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.stage-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(123, 138, 120, 0.35);
}

.stage-item:last-child {
  border-bottom: 0;
}

.figure-plate {
  margin: 0;
}

.figure-plate img {
  width: 100%;
  object-fit: cover;
}

.figure-plate__caption {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--sage-ink);
  letter-spacing: 0.04em;
  margin-top: 0.55em;
}

.act-solid,
.act-line {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 13px 24px;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  line-height: 1.2;
}

.act-solid {
  background: #3E6B41;
  color: #F4F6F1;
  border: 1px solid #3E6B41;
}

.act-solid:hover,
.act-solid:focus-visible {
  background: #2E5231;
  color: #F4F6F1;
  border-color: #2E5231;
}

.act-line {
  background: transparent;
  color: #1E2A20;
  border: 1px solid #1E2A20;
}

.act-line:hover,
.act-line:focus-visible {
  background: #E6EBDF;
  color: #1E2A20;
}

.spread--inked .act-line {
  color: #F4F6F1;
  border-color: #F4F6F1;
}

.spread--inked .act-line:hover,
.spread--inked .act-line:focus-visible {
  background: #F4F6F1;
  color: #1E2A20;
}

.button-row,
.act-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.4em;
}

.enquiry-panel {
  background: var(--panel);
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid rgba(123, 138, 120, 0.3);
}

.field-row {
  margin-bottom: 16px;
}

.field-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage-ink);
  margin-bottom: 6px;
}

.enquiry-panel input,
.enquiry-panel textarea,
.enquiry-panel select,
.field-row input,
.field-row textarea,
.field-row select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(123, 138, 120, 0.55);
  border-radius: 2px;
  padding: 11px 12px;
}

.enquiry-panel textarea,
.field-row textarea {
  min-height: 140px;
  resize: vertical;
}

.notice-strip {
  background: var(--panel);
  border-left: 3px solid var(--moss);
  padding: 14px 18px;
  margin: 1.2em 0;
  font-size: 0.98rem;
}

.crumb-line {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage-ink);
  margin-bottom: 1.2em;
}

.crumb-line a {
  color: var(--sage-ink);
  text-decoration: none;
}

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

.dateline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-ink);
}

.article-block {
  max-width: 72ch;
}

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

.issue-list li {
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(123, 138, 120, 0.28);
}

.issue-list a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--ink);
}

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

.issue-list span {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--sage-ink);
  margin-top: 2px;
}

.site-foot {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(48px, 6vw, 80px) 0 28px;
}

.site-foot a {
  color: #E6EBDF;
}

.site-foot a:hover {
  color: #F4F6F1;
}

.site-foot h2,
.site-foot h3 {
  color: var(--paper);
}

.foot-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
}

.foot-brand svg {
  width: 18px;
  height: 18px;
}

.foot-meta {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: #C9D2C4;
  margin-top: 1.4em;
}

.foot-meta p {
  margin-bottom: 0.55em;
}

.foot-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.foot-nav li {
  margin-bottom: 8px;
}

.foot-nav a {
  font-family: var(--font-display);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid rgba(123, 138, 120, 0.5);
  box-shadow: 0 10px 28px rgba(30, 42, 32, 0.16);
  padding: 18px 20px;
  display: none;
  max-width: 720px;
  margin: 0 auto;
}

.cookie-banner.is-open {
  display: block;
}

.cookie-banner p {
  margin-bottom: 12px;
  font-size: 0.98rem;
}

.faq-item {
  border-bottom: 1px solid rgba(123, 138, 120, 0.35);
  padding: 16px 0;
}

.faq-item h3 {
  margin-bottom: 0.5em;
}

.lift-in {
  opacity: 1;
  transform: none;
}

html.js .lift-in {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

html.js .lift-in.is-shown {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .lift-in,
  html.js .lift-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--moss);
  color: var(--paper);
  padding: 8px 14px;
  z-index: 100;
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.skip-link:focus {
  left: 16px;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
  margin: 1.2em 0;
}

th,
td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(123, 138, 120, 0.35);
  vertical-align: top;
}

th {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sage-ink);
}

.legal-copy h2 {
  margin-top: 1.6em;
}

.contact-details {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-details li {
  margin-bottom: 10px;
}

.form-status {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-left: 3px solid var(--moss);
  background: var(--panel);
}

.form-status.is-error {
  border-left-color: #8A3A32;
}