:root {
  --ink: #1a1210;
  --paper: #f3e6d0;
  --paper-deep: #e8d4b4;
  --plum: #3d1838;
  --plum-soft: #5a2a52;
  --gold: #c4a35a;
  --gold-deep: #9a7a38;
  --terracotta: #a34b32;
  --cream: #faf3e6;
  --rule: 2px solid var(--ink);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --space: clamp(1rem, 2vw, 2rem);
  --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.6;
  min-height: 100vh;
}

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

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

a:hover,
a:focus-visible {
  color: var(--terracotta);
}

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

h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  margin: 0 0 0.6em;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

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

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

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

.site-header__bar {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.7rem var(--space);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-header__mark {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
}

.site-header__glyph {
  width: 1.4rem;
  height: 1.4rem;
  border: 2px solid var(--gold);
  background: var(--plum);
  transform: rotate(45deg);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: var(--rule);
  padding: 0.35rem 0.6rem;
  font-family: inherit;
  cursor: pointer;
}

.nav-toggle__bars {
  display: block;
  width: 1.2rem;
  height: 2px;
  background: var(--ink);
  box-shadow: 0 5px 0 var(--ink), 0 -5px 0 var(--ink);
}

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

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

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--plum);
  text-decoration: underline;
}

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

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--plum-soft);
  margin: 0 0 0.6rem;
}

.lede {
  font-size: 1.15rem;
  max-width: 40rem;
}

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

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

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

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

.text-link {
  font-weight: 600;
}

.hero-panels {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.hero-panels__stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 10rem 12rem;
  gap: 0.6rem;
}

.hero-panels__cell {
  margin: 0;
  overflow: hidden;
  border: 3px solid var(--ink);
  animation: panel-in 0.7s ease both;
}

.hero-panels__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}

.hero-panels__cell--a {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  animation-delay: 0.05s;
}

.hero-panels__cell--b {
  animation-delay: 0.15s;
}

.hero-panels__cell--c {
  animation-delay: 0.25s;
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-panels__copy h1::first-letter {
  color: var(--gold-deep);
  font-weight: 700;
}

.band {
  margin: 3rem 0;
}

.band__intro {
  max-width: 40rem;
  margin-bottom: 1.5rem;
}

.band--plum {
  background: var(--plum);
  color: var(--cream);
  padding: 2rem;
  border: 3px solid var(--ink);
}

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

.offer-list,
.programme-grid,
.note-grid,
.team-grid,
.variant-board {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.2rem;
}

.offer-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.offer-card {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  background: var(--cream);
  border: var(--rule);
  text-decoration: none;
  color: inherit;
  min-height: 8rem;
}

.offer-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-card__body {
  padding: 0.8rem 0.8rem 0.8rem 0;
}

.offer-card h3 {
  margin: 0 0 0.3rem;
  font-size: 1.35rem;
}

.split-note {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 3rem 0;
  align-items: start;
}

.split-note__quote {
  margin: 0;
  background: var(--paper-deep);
  border-left: 8px solid var(--gold);
  padding: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-style: italic;
}

.split-note__quote cite {
  display: block;
  margin-top: 1rem;
  font-size: 1rem;
  font-style: normal;
  font-family: var(--font-body);
}

.step-list {
  padding-left: 1.2rem;
}

.quote-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.quote-card {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  padding: 1rem;
  border: 2px solid var(--gold);
}

.quote-card figcaption {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  margin-top: 0.8rem;
  font-size: 0.9rem;
}

.quote-card img {
  width: 3rem;
  height: 3rem;
  object-fit: cover;
  border: 2px solid var(--ink);
}

.note-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.note-grid--full {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.note-teaser {
  display: block;
  color: inherit;
  text-decoration: none;
  border: var(--rule);
  background: var(--cream);
  height: 100%;
}

.note-teaser img {
  width: 100%;
  height: 11rem;
  object-fit: cover;
}

.note-teaser h2,
.note-teaser h3,
.note-teaser p,
.note-teaser time {
  padding: 0 0.9rem;
}

.note-teaser h2,
.note-teaser h3 {
  margin: 0.4rem 0;
  font-size: 1.35rem;
}

.note-teaser p {
  padding-bottom: 1rem;
}

.page-head {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.page-head--wide {
  max-width: 50rem;
}

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

.programme-grid__item--flag {
  grid-column: 1 / -1;
}

.programme-card {
  background: var(--cream);
  border: var(--rule);
  padding: 0 0 1rem;
}

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

.programme-card h2,
.programme-card p,
.flag {
  margin-left: 1rem;
  margin-right: 1rem;
}

.flag {
  display: inline-block;
  margin-top: 0.8rem;
  background: var(--gold);
  padding: 0.15rem 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

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

.service-detail__hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.service-detail__hero img {
  width: 100%;
  height: 100%;
  max-height: 22rem;
  object-fit: cover;
  border: 3px solid var(--ink);
}

.prose {
  max-width: 42rem;
}

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

.team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
}

.team-card {
  background: var(--cream);
  border: var(--rule);
  padding: 0 0 1rem;
}

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

.team-card h3,
.team-card p {
  margin: 0.4rem 1rem;
}

.rate-table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
}

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

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

.rate-table th {
  background: var(--plum);
  color: var(--cream);
  font-weight: 500;
}

.story-stack {
  display: grid;
  gap: 1.5rem;
}

.story-block {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 1rem;
  background: var(--cream);
  border: var(--rule);
  padding: 1rem;
}

.story-block img {
  width: 6rem;
  height: 6rem;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.story-block blockquote {
  margin: 0;
  grid-column: 2;
}

.story-block figcaption {
  grid-column: 2;
  font-size: 0.9rem;
  color: var(--plum-soft);
}

.story-block--wide {
  border-left: 8px solid var(--terracotta);
}

.post__head img {
  width: 100%;
  max-height: 22rem;
  object-fit: cover;
  border: 3px solid var(--ink);
  margin-top: 1rem;
}

.variant-board {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.variant-tile {
  background: var(--cream);
  border: var(--rule);
  padding: 0 0 1rem;
}

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

.variant-tile h2,
.variant-tile p {
  margin: 0.35rem 0.9rem;
  font-size: 1rem;
}

.variant-tile h2 {
  font-size: 1.35rem;
}

.variant-tile__issue {
  font-style: italic;
}

.cta-strip {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: var(--paper-deep);
  border: 3px solid var(--gold);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cta-strip p {
  margin: 0;
  max-width: 36rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
}

.enquire-form,
.contact-aside {
  background: var(--cream);
  border: var(--rule);
  padding: 1.2rem;
}

.field {
  margin-bottom: 1rem;
}

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

.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  padding: 0.5rem 0.6rem;
  border: 2px solid var(--ink);
  background: var(--paper);
}

.field__error {
  color: var(--terracotta);
  font-size: 0.88rem;
  margin: 0.3rem 0 0;
}

.form-status {
  margin-top: 0.8rem;
  padding: 0.6rem;
  border: 2px solid var(--ink);
}

.form-status--ok {
  background: #dce8c8;
}

.form-status--err {
  background: #f3d0c6;
}

.faq dt {
  font-weight: 600;
  margin-top: 0.8rem;
}

.faq dd {
  margin: 0.2rem 0 0;
}

.miss {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 32rem;
}

.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 2.5rem var(--space);
}

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

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

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

.site-footer__heading {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 40rem;
  background: var(--cream);
  border: 3px solid var(--ink);
  padding: 1rem;
  z-index: 30;
  box-shadow: 8px 8px 0 var(--plum);
}

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

@media (max-width: 860px) {
  .hero-panels,
  .split-note,
  .quote-row,
  .offer-list,
  .programme-grid,
  .note-grid,
  .note-grid--full,
  .team-grid,
  .service-detail__hero,
  .contact-layout,
  .site-footer__grid,
  .variant-board {
    grid-template-columns: 1fr;
  }

  .hero-panels__stack {
    grid-template-rows: 8rem 8rem;
  }

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

  .site-nav {
    display: none;
    width: 100%;
  }

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

  .site-nav__list {
    flex-direction: column;
    padding: 0.5rem 0 1rem;
  }

  .story-block,
  .offer-card {
    grid-template-columns: 1fr;
  }

  .story-block blockquote,
  .story-block figcaption {
    grid-column: 1;
  }
}
