:root {
  --ink: #1b2623;
  --ink-soft: #3d4f49;
  --paper: #f3eee4;
  --paper-deep: #e7e0d2;
  --cream: #faf7f1;
  --sage: #2d4a43;
  --sage-mid: #3f6b60;
  --copper: #b56a3e;
  --line: #d4cbb8;
  --white: #fffdf8;
  --error: #8c2f2f;
  --ok: #2d4a43;
  --shadow: 0 18px 40px rgba(27, 38, 35, 0.08);
  --radius: 14px;
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --space: 1.15rem;
  --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.65;
}

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

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

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

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

.main {
  min-height: 60vh;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.72rem 1.25rem;
  border: 1px solid var(--sage);
  font-family: var(--font-body);
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
  color: var(--cream);
}

.button--primary {
  background: var(--sage);
  color: var(--cream);
}

.button--primary:hover {
  background: var(--ink);
  color: var(--cream);
}

.button--ghost {
  background: transparent;
  color: var(--sage);
}

.button--ghost:hover {
  background: var(--sage);
  color: var(--cream);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(243, 238, 228, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

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

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

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

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

.site-header__toggle {
  display: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-family: var(--font-body);
}

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

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

.site-header__list a:hover {
  color: var(--copper);
}

.site-header__enquire {
  background: var(--copper);
  color: var(--cream) !important;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
}

.site-footer {
  background: var(--sage);
  color: var(--cream);
  margin-top: 4rem;
  padding: 3rem 1.25rem 1.5rem;
}

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

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
}

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

.site-footer__heading {
  font-size: 1rem;
  margin: 0 0 0.6rem;
}

.site-footer__address {
  white-space: pre-wrap;
}

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

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

.site-footer__legal {
  max-width: var(--max);
  margin: 2.5rem auto 0;
  border-top: 1px solid rgba(243, 238, 228, 0.2);
  padding-top: 1rem;
  font-size: 0.88rem;
  opacity: 0.85;
}

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

.cookie-banner__panel {
  max-width: 42rem;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.1rem 1.2rem;
}

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

.cookie-banner__error {
  color: var(--error);
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  min-height: 78vh;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.hero__panel {
  padding: 4.5rem 8vw 3.5rem 8vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero__kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--copper);
  margin: 0 0 1rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 4.6vw, 4.1rem);
  margin: 0 0 1.1rem;
}

.hero__aside {
  margin: 1.4rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.hero__figure {
  margin: 0;
  min-height: 22rem;
}

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

.section {
  padding: 4.2rem 0;
}

.section--tint {
  background: var(--paper-deep);
}

.section__label {
  color: var(--copper);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin: 0 0 0.6rem;
}

.lede {
  font-size: 1.2rem;
  max-width: 42rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(27, 38, 35, 0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

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

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

.card p {
  margin: 0;
  color: var(--ink-soft);
}

.card__link {
  margin-top: auto;
  font-weight: 500;
}

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

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

.quote {
  background: var(--sage);
  color: var(--cream);
  padding: 1.6rem 1.7rem;
  border-radius: var(--radius);
}

.quote p {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.4;
}

.quote cite {
  display: block;
  margin-top: 0.9rem;
  font-style: normal;
  font-size: 0.92rem;
  opacity: 0.88;
}

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

.page-hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  margin: 0.3rem 0 0.8rem;
}

.prose {
  max-width: 44rem;
}

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

.figure-wide {
  margin: 0 0 1.5rem;
}

.figure-wide img {
  width: 100%;
  max-height: 26rem;
  object-fit: cover;
  border-radius: var(--radius);
}

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

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

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

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

.fee {
  background: var(--white);
  border-left: 4px solid var(--copper);
  padding: 1.2rem 1.3rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.story {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  margin-bottom: 1.2rem;
}

.form {
  display: grid;
  gap: 0.9rem;
  max-width: 36rem;
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 500;
}

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

.form__error,
.form__status {
  margin: 0;
}

.form__error {
  color: var(--error);
  font-size: 0.9rem;
}

.form__status--ok {
  color: var(--ok);
}

.table-wrap {
  overflow-x: auto;
}

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

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

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding: 0.4rem 0 1rem 3rem;
  border-left: 1px solid var(--line);
  margin-left: 0.7rem;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: -0.85rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: var(--copper);
  color: var(--cream);
  font-size: 0.85rem;
  display: grid;
  place-items: center;
}

.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  margin-bottom: 0.6rem;
}

.error-page {
  min-height: 50vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 1rem;
}

@media (max-width: 900px) {
  .hero,
  .pull,
  .grid-2,
  .grid-3,
  .team,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .hero__figure img {
    min-height: 18rem;
  }

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

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

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

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