:root {
  --ink: #1c1916;
  --ink-soft: #4a433c;
  --paper: #f4efe6;
  --paper-deep: #e8dfd0;
  --surface: #fffdf8;
  --line: #d4cbb8;
  --accent: #b44a2a;
  --accent-dark: #8c341c;
  --sage: #3d5a4c;
  --shadow: 0 18px 40px rgba(28, 25, 22, 0.08);
  --radius: 14px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --space: 1.25rem;
  --max: 72rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}

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

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

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

h1,
h2,
h3,
.display {
  font-family: var(--font-display);
  font-weight: 550;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

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

h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  margin: 0 0 0.75rem;
}

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

p {
  margin: 0 0 1rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244, 239, 230, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

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

.site-header__skip {
  position: absolute;
  left: -999px;
}

.site-header__skip:focus {
  left: 1rem;
  top: 0.5rem;
  background: var(--surface);
  padding: 0.4rem 0.7rem;
}

.site-header__brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
  text-decoration: none;
}

.site-header__toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font: inherit;
  cursor: pointer;
}

.site-header__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

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

.site-header__list a[aria-current="page"] {
  color: var(--ink);
  box-shadow: inset 0 -2px 0 var(--accent);
}

.site-header__enquire {
  background: var(--ink);
  color: var(--paper) !important;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  box-shadow: none !important;
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 4rem;
  padding: 3rem 0;
  background: var(--paper-deep);
}

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

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

.site-footer__label {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--ink-soft);
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn--solid {
  background: var(--accent);
  color: #fffdf8;
}

.btn--solid:hover {
  background: var(--accent-dark);
  color: #fffdf8;
}

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

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

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: stretch;
  padding: 3rem 0 2rem;
}

.hero__kicker {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.hero__lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 38rem;
}

.hero__aside {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.hero__caption {
  padding: 1.1rem 1.25rem 1.4rem;
  font-size: 0.98rem;
  color: var(--ink-soft);
}

.hero__caption strong {
  color: var(--ink);
  display: block;
  margin-bottom: 0.35rem;
}

.band {
  padding: 3rem 0;
}

.band--surface {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

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

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

.card__meta {
  font-size: 0.8rem;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.prose {
  max-width: 46rem;
}

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

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

.media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.media img {
  height: 22rem;
}

.quote {
  background: var(--surface);
  border-left: 4px solid var(--accent);
  padding: 1.2rem 1.3rem;
  margin: 0 0 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.quote p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.quote cite {
  font-style: normal;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

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

.person img {
  height: 16rem;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  background: var(--paper-deep);
  font-size: 0.85rem;
}

.form {
  display: grid;
  gap: 1rem;
  max-width: 38rem;
}

.form label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.35rem;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  font: inherit;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink);
}

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

.field-error {
  color: var(--accent-dark);
  font-size: 0.9rem;
  min-height: 1.2em;
}

.form-status {
  padding: 0.8rem 1rem;
  border-radius: 10px;
  margin-top: 0.5rem;
}

.form-status--ok {
  background: #e4efe8;
  color: var(--sage);
}

.form-status--err {
  background: #f8e6e0;
  color: var(--accent-dark);
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 40;
}

.cookie-banner__inner {
  width: min(100%, 52rem);
  margin: 0 auto;
  background: var(--ink);
  color: var(--paper);
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cookie-banner__inner a {
  color: #f3c7b8;
}

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

.cookie-banner .btn--solid {
  background: var(--paper);
  color: var(--ink);
}

.cookie-banner .btn--ghost {
  border-color: var(--paper);
  color: var(--paper);
}

.cookie-banner__error {
  color: #f3c7b8;
}

.page-hero {
  padding: 2.5rem 0 1.5rem;
}

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

.stack > * + * {
  margin-top: 1rem;
}

.fee-row {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}

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

@media (max-width: 900px) {
  .hero,
  .split,
  .card-grid,
  .people,
  .site-footer__inner,
  .fee-row {
    grid-template-columns: 1fr;
  }

  .site-header__toggle {
    display: inline-flex;
  }

  .site-header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 0.75rem 1rem 1rem;
  }

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

  .site-header__list {
    flex-direction: column;
    align-items: flex-start;
  }

  .media img,
  .page-hero img {
    height: 14rem;
  }
}
