:root {
  --forest-950: #10261d;
  --forest-900: #163b2d;
  --forest-700: #245940;
  --moss-300: #cbd8bc;
  --moss-100: #edf3e7;
  --paper: #f7f8f3;
  --white: #ffffff;
  --ink: #16211b;
  --muted: #5f6d64;
  --line: rgba(22, 33, 27, 0.14);
  --gold: #d7a44d;
  --berry: #9e3d34;
  --shadow: 0 22px 70px rgba(16, 38, 29, 0.16);
  --radius: 8px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body::selection {
  background: var(--gold);
  color: var(--forest-950);
}

a {
  color: inherit;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--forest-950);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 12px 40px;
  color: var(--forest-950);
  background: rgba(247, 248, 243, 0.88);
  border-bottom: 1px solid rgba(22, 33, 27, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(22, 59, 45, 0.35);
  border-radius: 50%;
  background: var(--forest-900);
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.custom-logo-link {
  display: inline-flex;
  flex: 0 0 auto;
}

.custom-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.brand strong,
.site-footer strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  min-height: 42px;
  padding: 10px 12px;
  color: rgba(22, 33, 27, 0.82);
  font-size: 0.92rem;
  text-decoration: none;
  border-radius: var(--radius);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(36, 89, 64, 0.1);
  color: var(--forest-900);
  outline: none;
}

.language-switcher {
  display: flex;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(22, 33, 27, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
}

.language-switcher ul {
  display: flex;
  gap: 6px;
  margin: 0;
  padding: 0;
}

.language-switcher li {
  list-style: none;
}

.language-switcher a,
.language-switcher span {
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 34px;
  padding: 0 8px;
  color: var(--muted);
  text-decoration: none;
  border-radius: 6px;
}

.language-switcher .current-lang a,
.language-switcher .current-lang span,
.language-switcher .language-current {
  background: var(--forest-900);
  color: var(--white);
}

.language-switcher button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 34px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.language-switcher button[aria-pressed="true"] {
  background: var(--forest-900);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 82svh;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 24, 18, 0.88) 0%, rgba(9, 24, 18, 0.62) 42%, rgba(9, 24, 18, 0.12) 100%),
    linear-gradient(0deg, rgba(9, 24, 18, 0.62) 0%, rgba(9, 24, 18, 0.02) 48%);
}

.hero-content {
  width: min(720px, calc(100% - 48px));
  padding: 108px 0 118px;
  margin-left: max(24px, calc((100vw - var(--content)) / 2));
}

.eyebrow,
.section-kicker,
.hero-panel span,
.quick-facts span,
.contact-list dt {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.03;
  text-wrap: balance;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 4.7rem;
}

h2 {
  margin-bottom: 18px;
  font-size: 3rem;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.24rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 156px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--gold);
  color: var(--forest-950);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #e7b964;
  outline: none;
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.hero-panel {
  position: absolute;
  right: max(24px, calc((100vw - var(--content)) / 2));
  bottom: 34px;
  width: min(360px, calc(100% - 48px));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(16, 38, 29, 0.68);
  backdrop-filter: blur(20px);
}

.hero-panel strong {
  display: block;
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.16;
}

.hero-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.quick-facts {
  width: min(var(--content), calc(100% - 40px));
  margin: -34px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border: 1px solid rgba(22, 33, 27, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quick-facts div,
.quick-facts a {
  min-height: 126px;
  padding: 24px;
  border-right: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}

.quick-facts div:last-child,
.quick-facts a:last-child {
  border-right: 0;
}

.quick-facts span {
  display: block;
  color: var(--berry);
}

.quick-facts strong {
  display: block;
  color: var(--forest-950);
  font-size: 1.08rem;
  line-height: 1.3;
}

.question-nav a {
  transition: background 180ms ease, transform 180ms ease;
}

.question-nav a:hover {
  background: #f7f5ed;
  transform: translateY(-2px);
}

.section {
  width: min(var(--content), calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.split,
.section-heading,
.conservation-layout,
.travel-section,
.enquiry-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 54px;
  align-items: start;
}

.lead,
.section-heading p,
.intro-note p,
.stay-content p,
.conservation-section p,
.travel-section p,
.enquiry-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.lead {
  max-width: 760px;
  font-size: 1.28rem;
}

.intro-note {
  padding: 30px;
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 46px rgba(16, 38, 29, 0.08);
}

.intro-note p {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--forest-900);
  font-size: 1.5rem;
  line-height: 1.25;
}

.image-band {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: stretch;
  padding: 0;
  background: var(--forest-950);
  color: var(--white);
}

.image-band img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.image-band > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 620px;
  min-height: 560px;
  padding: 64px 64px 64px 9%;
}

.image-band h2 {
  color: var(--white);
}

.image-band p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.12rem;
}

.answer-grid,
.experience-grid,
.season-grid,
.programme-grid,
.travel-grid,
.service-grid,
.gallery-grid {
  display: grid;
  gap: 18px;
}

.answer-grid,
.experience-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.gallery-grid {
  grid-template-columns: repeat(4, 1fr);
}

.answer-card,
.experience-card,
.season-card,
.programme-card,
.travel-card,
.service-card,
.gallery-card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(22, 33, 27, 0.1);
  border-radius: var(--radius);
  background: var(--white);
}

.experience-card {
  position: relative;
  overflow: hidden;
}

.experience-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--gold);
}

.answer-card h3,
.experience-card h3,
.season-card h3,
.programme-card h3,
.travel-card h3,
.service-card h3 {
  color: var(--forest-900);
}

.answer-card p,
.experience-card p,
.season-card p,
.programme-card p,
.travel-card p,
.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.gallery-card {
  padding: 0;
  overflow: hidden;
}

.gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-card figcaption {
  padding: 14px 16px 16px;
  color: var(--forest-950);
  font-weight: 800;
}

.card-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 18px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--moss-100);
  color: var(--forest-700);
  font-size: 0.75rem;
  font-weight: 800;
}

.stay-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 54px;
  align-items: center;
}

.stay-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.stay-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.amenity-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.amenity {
  min-height: 64px;
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  color: var(--forest-900);
  font-weight: 800;
}

.conservation-section {
  padding: 96px max(20px, calc((100vw - var(--content)) / 2));
  background:
    linear-gradient(135deg, rgba(215, 164, 77, 0.16), rgba(215, 164, 77, 0) 34%),
    var(--forest-900);
  color: var(--white);
}

.conservation-section h2 {
  color: var(--white);
}

.conservation-section p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
}

.pledge-list {
  display: grid;
  gap: 12px;
}

.pledge {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.pledge strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
}

.pledge p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.season-grid {
  grid-template-columns: repeat(4, 1fr);
}

.season-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 245px;
}

.season-card .month {
  margin-top: auto;
  color: var(--berry);
  font-weight: 800;
}

.programme-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.programme-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 330px;
}

.programme-card .duration {
  color: var(--berry);
  font-weight: 800;
}

.programme-price {
  display: inline-flex;
  width: fit-content;
  margin-top: -4px;
  padding: 7px 10px;
  border-radius: var(--radius);
  background: var(--moss-100);
  color: var(--forest-900);
}

.programme-card ul {
  display: grid;
  gap: 8px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.package-booking-button {
  margin-top: 4px;
  width: 100%;
}

.programme-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.programme-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.travel-section {
  width: 100%;
  max-width: none;
  padding: 90px max(20px, calc((100vw - var(--content)) / 2));
  background: var(--moss-100);
}

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

.booking-section {
  border-bottom: 1px solid var(--line);
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.availability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.booking-card,
.booking-note,
.availability-card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(22, 33, 27, 0.1);
  border-radius: var(--radius);
  background: var(--white);
}

.booking-card,
.availability-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.booking-card h3,
.booking-note strong,
.availability-card h3 {
  color: var(--forest-900);
}

.booking-card p,
.booking-note p,
.booking-sync-note,
.availability-card p,
.availability-meta,
.availability-events {
  color: var(--muted);
}

.booking-card .button {
  margin-top: auto;
  width: 100%;
}

.button.ghost-dark {
  margin-top: auto;
  border-color: rgba(22, 33, 27, 0.18);
  background: rgba(237, 243, 231, 0.76);
  color: var(--forest-900);
}

.button.ghost-dark:hover,
.button.ghost-dark:focus-visible {
  background: var(--forest-900);
  color: var(--white);
  outline: none;
}

.availability-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0;
}

.availability-meta div {
  padding: 12px;
  border-radius: var(--radius);
  background: var(--moss-100);
}

.availability-meta dt,
.availability-meta dd {
  margin: 0;
}

.availability-meta dt {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.availability-meta dd {
  color: var(--forest-900);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.1;
}

.availability-events {
  display: grid;
  gap: 8px;
}

.availability-events strong {
  color: var(--forest-900);
}

.availability-events ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.availability-events li {
  display: grid;
  gap: 3px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.availability-events time {
  color: var(--forest-950);
  font-weight: 800;
}

.availability-events span,
.availability-empty {
  font-size: 0.92rem;
}

.booking-note {
  max-width: 760px;
}

.booking-sync-note {
  max-width: 880px;
  margin: 22px 0 0;
  font-size: 0.95rem;
}

.enquiry-section {
  align-items: stretch;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
}

.contact-list div {
  display: grid;
  gap: 4px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.contact-list dt,
.contact-list dd {
  margin: 0;
}

.contact-list dd {
  color: var(--forest-900);
  font-weight: 800;
}

.enquiry-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-status {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(51, 122, 85, 0.24);
  border-radius: var(--radius);
  background: #eef6ed;
  color: var(--forest-900);
  font-weight: 800;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.enquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--forest-900);
  font-weight: 800;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(22, 33, 27, 0.16);
  border-radius: var(--radius);
  background: #fbfcf8;
  color: var(--ink);
  padding: 12px 13px;
  font-weight: 500;
}

.enquiry-form textarea {
  resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--forest-700);
  outline: 3px solid rgba(36, 89, 64, 0.15);
}

.form-button {
  width: 100%;
}

.site-footer {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 28px;
  padding: 42px max(20px, calc((100% - var(--content)) / 2));
  background: var(--forest-950);
  color: var(--white);
}

.site-footer p {
  max-width: 520px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  min-height: 40px;
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  border-radius: var(--radius);
}

.footer-cookie-button {
  min-height: 40px;
  padding: 8px 11px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-cookie-button:hover,
.footer-cookie-button:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  outline: none;
}

.analytics-consent {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  width: min(680px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid rgba(22, 33, 27, 0.12);
  border-radius: var(--radius);
  background: rgba(247, 248, 243, 0.96);
  box-shadow: 0 24px 70px rgba(16, 38, 29, 0.22);
  backdrop-filter: blur(18px);
}

.analytics-consent h2 {
  margin-bottom: 6px;
  color: var(--forest-950);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.analytics-consent p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.analytics-consent-actions {
  display: flex;
  gap: 10px;
}

.analytics-consent .button {
  min-width: 110px;
  min-height: 42px;
  padding: 10px 14px;
}

.analytics-consent .analytics-decline {
  border-color: var(--line);
  background: var(--white);
  color: var(--forest-950);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding-inline: 22px;
  }

  .nav-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  h1 {
    font-size: 3.55rem;
  }

  h2 {
    font-size: 2.4rem;
  }

  .hero-content {
    padding-top: 86px;
  }

  .quick-facts,
  .answer-grid,
  .experience-grid,
  .season-grid,
  .programme-grid,
  .booking-grid,
  .availability-grid,
  .travel-grid,
  .service-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-facts div:nth-child(2),
  .quick-facts a:nth-child(2) {
    border-right: 0;
  }

  .quick-facts div:nth-child(-n + 2),
  .quick-facts a:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .image-band,
  .stay-section,
  .travel-section,
  .enquiry-section,
  .split,
  .section-heading,
  .conservation-layout {
    grid-template-columns: 1fr;
  }

  .image-band img,
  .image-band > div {
    min-height: 0;
    height: auto;
  }

  .image-band img {
    aspect-ratio: 16 / 9;
  }

  .image-band > div {
    max-width: 760px;
    padding: 50px 32px;
  }

  .stay-media img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  .site-header {
    position: relative;
    min-height: 0;
    padding: 12px 16px;
  }

  .brand small {
    max-width: 168px;
  }

  .language-switcher a,
  .language-switcher span,
  .language-switcher button {
    width: 38px;
    min-width: 38px;
    padding-inline: 6px;
  }

  .nav-links {
    gap: 4px;
  }

  .nav-links a {
    padding-inline: 9px;
  }

  .hero {
    min-height: 76svh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(9, 24, 18, 0.9) 0%, rgba(9, 24, 18, 0.68) 100%),
      linear-gradient(0deg, rgba(9, 24, 18, 0.64) 0%, rgba(9, 24, 18, 0.06) 44%);
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-inline: 16px;
    padding: 54px 0 172px;
  }

  h1 {
    font-size: 2.28rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy,
  .lead {
    font-size: 1.02rem;
  }

  .button {
    width: 100%;
  }

  .hero-actions .button.ghost {
    display: none;
  }

  .hero-panel {
    right: 16px;
    bottom: 18px;
    width: calc(100% - 32px);
    padding: 16px;
  }

  .hero-panel strong {
    font-size: 1.2rem;
  }

  .quick-facts,
  .answer-grid,
  .experience-grid,
  .season-grid,
  .programme-grid,
  .booking-grid,
  .availability-grid,
  .travel-grid,
  .service-grid,
  .gallery-grid,
  .amenity-list {
    grid-template-columns: 1fr;
  }

  .quick-facts {
    width: calc(100% - 28px);
    margin-top: -18px;
  }

  .quick-facts div,
  .quick-facts a {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 20px;
  }

  .quick-facts div:last-child,
  .quick-facts a:last-child {
    border-bottom: 0;
  }

  .section {
    width: calc(100% - 32px);
    padding: 68px 0;
  }

  .section-heading,
  .split,
  .stay-section,
  .conservation-layout,
  .travel-section,
  .enquiry-section {
    gap: 28px;
  }

  .intro-note,
  .enquiry-form,
  .answer-card,
  .experience-card,
  .season-card,
  .programme-card,
  .travel-card,
  .service-card {
    padding: 20px;
  }

  .conservation-section,
  .travel-section,
  .site-footer {
    padding-inline: 16px;
  }

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

  .analytics-consent {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
    width: auto;
  }

  .analytics-consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
