:root {
  --green-950: #0c1b13;
  --green-900: #12261a;
  --green-700: #294936;
  --moss: #7b8662;
  --brick: #9c5e36;
  --gold: #ad8b55;
  --sky: #416ca9;
  --stone: #c8ad86;
  --paper: #f3f4f0;
  --linen: #e7e7df;
  --ink: #182019;
  --muted: #5d675f;
  --white: #ffffff;
  --shadow: 0 18px 46px rgba(12, 24, 18, 0.1);
  --radius: 2px;
  --max: 1180px;
  --font-display: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: rgba(8, 20, 13, 0.76);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 170px;
  min-width: 160px;
}

.brand img {
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2.4vw, 34px);
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

.nav-links a {
  text-decoration: none;
  opacity: 0.86;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 9px 12px;
  color: var(--white);
  background: rgba(13, 29, 20, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  font: inherit;
  font-weight: 800;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle-lines::before {
  top: -6px;
}

.menu-toggle-lines::after {
  top: 6px;
}

.menu-toggle-label {
  line-height: 1;
}

.hero {
  position: relative;
  min-height: 640px;
  height: calc(100svh - 72px);
  max-height: 920px;
  color: var(--white);
  overflow: hidden;
  display: grid;
  place-items: start center;
  isolation: isolate;
}

main > section[id],
.contact-section[id] {
  scroll-margin-top: 108px;
}

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

.hero-slideshow picture {
  display: contents;
}

.hero-slide {
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide-abbey {
  object-position: 68% 72%;
}

.hero-slide-folly-clouds {
  object-position: 54% 72%;
}

.hero-slide-woodland-drive {
  object-position: 44% 60%;
}

.hero-slide-valley {
  object-position: 60% 66%;
}

.hero-slide-water-gardens {
  object-position: center 66%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 17, 22, 0.62) 0%, rgba(7, 17, 22, 0.18) 48%, rgba(7, 17, 22, 0.04) 68%),
    linear-gradient(0deg, rgba(9, 22, 16, 0.42) 0%, rgba(9, 22, 16, 0) 28%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(150px, 20vh, 220px) 0 72px;
  text-align: center;
  text-shadow: 0 2px 24px rgba(7, 17, 22, 0.42);
}

.hero .eyebrow {
  margin-bottom: 18px;
  color: #efe4cf;
  font-size: 0.74rem;
  letter-spacing: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
}

h1,
h2 {
  font-weight: 500;
  line-height: 1.04;
}

h1 {
  max-width: none;
  margin-bottom: 12px;
  font-size: 6.15rem;
  line-height: 0.96;
}

h2 {
  margin-bottom: 18px;
  color: var(--green-950);
  font-size: 3.65rem;
}

h3 {
  color: var(--green-950);
  font-weight: 600;
  line-height: 1.22;
}

.hero-copy {
  max-width: 860px;
  margin: 14px auto 30px;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero-kicker {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.96);
}

.hero-actions {
  justify-content: center;
  text-shadow: none;
}

.hero-caption {
  position: absolute;
  z-index: 1;
  right: clamp(18px, 3vw, 42px);
  bottom: 18px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  text-shadow: 0 1px 12px rgba(7, 17, 22, 0.8);
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
  }
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 750;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--green-950);
  background: #eee7da;
  border-color: #eee7da;
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(8, 17, 15, 0.12);
}

.button-secondary.dark {
  color: var(--green-950);
  border-color: rgba(20, 41, 29, 0.3);
  background: transparent;
}

.facts-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--green-950);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.facts-band div {
  padding: 28px clamp(18px, 3vw, 34px);
  background: transparent;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.facts-band div:first-child {
  border-left: 0;
}

.facts-band strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.95rem;
  font-weight: 500;
  line-height: 1.1;
}

.facts-band span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(68px, 8vw, 104px) 0;
}

.section-heading {
  max-width: 720px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.07rem;
}

.two-column,
.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}

.two-column > *,
.split-feature > *,
.heritage-section > *,
.availability-layout > *,
.field-section > *,
.route-grid > *,
.contact-section > * {
  min-width: 0;
}

.copy-block {
  font-size: 1.06rem;
  color: #354035;
}

.image-panel {
  margin: 0;
}

.image-panel picture,
.field-cover picture,
.gallery-strip picture {
  display: block;
}

.image-panel img,
.gallery-strip img,
.field-cover img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: none;
  border: 1px solid rgba(12, 27, 19, 0.16);
}

#shoot .image-panel img {
  aspect-ratio: 5000 / 3333;
  object-fit: contain;
}

.image-panel figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-style: italic;
}

.heritage-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(64px, 7.5vw, 96px) max(18px, calc((100vw - var(--max)) / 2));
  background: #102117;
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(32px, 5vw, 60px);
}

.heritage-section h2,
.heritage-section h3 {
  color: var(--white);
}

.heritage-copy p:not(.eyebrow),
.history-copy p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.06rem;
}

.history-copy {
  max-width: 760px;
  padding-top: 32px;
}

.history-copy p:first-child {
  margin-top: 0;
}

.history-copy p:last-child {
  margin-bottom: 0;
}

.history-image {
  width: min(100%, 400px);
  margin-top: clamp(24px, 4vw, 40px);
}

.history-image img {
  aspect-ratio: 1711 / 1415;
  object-fit: contain;
}

.history-image figcaption {
  color: rgba(255, 255, 255, 0.72);
}

.text-link {
  color: var(--gold);
  font-weight: 800;
  text-underline-offset: 5px;
}

.heritage-points {
  display: grid;
  gap: 14px;
}

.heritage-points article {
  padding: 24px 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  background: transparent;
}

.heritage-points span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.heritage-points h3 {
  margin: 8px 0 6px;
}

.heritage-points p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.split-feature {
  grid-template-columns: minmax(360px, 1.06fr) minmax(0, 0.94fr);
}

.tick-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.tick-list li {
  position: relative;
  padding-left: 26px;
  color: #354035;
}

.tick-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 12px;
  height: 2px;
  background: var(--brick);
}

.availability-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(64px, 7.5vw, 96px) max(18px, calc((100vw - var(--max)) / 2));
  background: var(--linen);
}

.availability-section > .section-heading {
  max-width: none;
}

.availability-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.availability-live,
.availability-support-card {
  border: 1px solid rgba(20, 41, 29, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: none;
}

.availability-live {
  padding: clamp(20px, 2.5vw, 28px);
}

.availability-support-card {
  padding: clamp(20px, 2.5vw, 26px);
}

.availability-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(20, 41, 29, 0.14);
}

.availability-topline span {
  font-family: var(--font-display);
  color: var(--green-950);
  font-size: 1.4rem;
}

.availability-topline small {
  color: var(--muted);
}

.availability-summary {
  padding: 22px 0;
  border-bottom: 1px solid rgba(20, 41, 29, 0.14);
}

.availability-summary h3 {
  margin-bottom: 6px;
  color: var(--green-950);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.availability-summary p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.availability-body {
  padding-top: 20px;
}

.availability-days {
  display: grid;
  gap: 18px;
}

.availability-day-row {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
  gap: 18px;
  align-items: stretch;
}

.availability-day-row > * {
  min-width: 0;
}

.availability-day-card {
  padding: clamp(18px, 2.5vw, 24px);
  border: 1px solid rgba(20, 41, 29, 0.14);
  border-radius: calc(var(--radius) * 0.75);
  background: rgba(255, 255, 255, 0.52);
}

.availability-day-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(20, 41, 29, 0.12);
}

.availability-day-header h3 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.availability-price {
  color: var(--brick);
  font-size: 1rem;
}

.availability-day-card h4,
.availability-inclusion-card > h4 {
  margin: 18px 0 4px;
  color: var(--green-950);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.availability-inclusion-card {
  padding: clamp(18px, 2.2vw, 22px);
  border: 1px solid rgba(20, 41, 29, 0.14);
  border-radius: calc(var(--radius) * 0.75);
  background: rgba(255, 255, 255, 0.52);
}

.availability-inclusion-card > h4 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 0.86rem;
}

.availability-date-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.availability-date-list li {
  display: grid;
  grid-template-columns: minmax(150px, 0.45fr) minmax(180px, 0.55fr);
  gap: 14px;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid rgba(20, 41, 29, 0.1);
}

.availability-date-list li:last-child {
  border-bottom: 0;
}

.availability-date {
  color: var(--green-950);
  font-weight: 750;
}

.availability-status-badge {
  justify-self: start;
  padding: 5px 10px 5px 12px;
  color: #374236;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.35;
  text-transform: uppercase;
  border-left: 3px solid currentColor;
}

.availability-status-badge.is-sold-out {
  color: #7c2027;
  background: #f2dfde;
}

.availability-status-badge.is-limited {
  color: #8a3d27;
  background: #f3e3da;
}

.availability-support-card h3 {
  margin-bottom: 12px;
}

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

.availability-detail-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.availability-detail-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--brick);
  content: "\2014";
}

.availability-footnote {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-style: italic;
  text-align: left;
}

.availability-enquiry-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.availability-enquiry-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: clamp(24px, 5vw, 64px);
}

.availability-enquiry-card > div {
  max-width: 760px;
}

.availability-enquiry-card .button {
  flex: 0 0 auto;
}

.button-green {
  color: var(--white);
  background: var(--green-950);
  border-color: var(--green-950);
}

.field-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 360px);
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}

.field-copy p:not(.eyebrow) {
  color: #354035;
}

.field-cover {
  display: block;
  transform: none;
  text-decoration: none;
  padding: clamp(14px, 2vw, 24px);
  background: #fff;
  border: 1px solid rgba(12, 27, 19, 0.16);
  border-radius: var(--radius);
}

.field-cover img {
  display: block;
  border: 0;
  border-radius: 0;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.gallery-strip img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 0;
}

.legal-page,
.not-found-page {
  min-height: 100svh;
  padding: clamp(42px, 8vw, 96px) 20px;
  background: var(--paper);
}

.legal-shell,
.not-found-shell {
  width: min(780px, 100%);
  margin: 0 auto;
}

.legal-logo,
.not-found-logo {
  width: 210px;
  height: auto;
  margin-bottom: 42px;
}

.legal-logo,
.not-found-logo {
  filter: brightness(0) saturate(100%) invert(9%) sepia(16%) saturate(1267%) hue-rotate(91deg) brightness(94%) contrast(98%);
}

.legal-page h1,
.not-found-page h1 {
  max-width: 760px;
  color: var(--green-950);
  font-size: clamp(2.8rem, 9vw, 5.4rem);
}

.legal-page h2 {
  margin-top: 36px;
  font-size: clamp(1.65rem, 4vw, 2.3rem);
}

.legal-page li,
.legal-page p,
.not-found-page p {
  color: #354035;
}

.legal-meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-back,
.not-found-back {
  display: inline-flex;
  margin-top: 28px;
  color: var(--green-950);
  font-weight: 800;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.map-link {
  margin-top: 8px;
}

@media (min-width: 700px) {
  .location-title {
    white-space: nowrap;
  }
}

@media (min-width: 900px) {
  .availability-title,
  .faq-title {
    white-space: nowrap;
  }
}

.faq-section .section-heading {
  max-width: none;
}

.route-grid article {
  padding: 24px 0 0;
  border: 0;
  border-top: 1px solid rgba(20, 41, 29, 0.22);
  border-radius: 0;
  background: transparent;
}

.route-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.faq-section {
  padding-top: clamp(48px, 6vw, 72px);
}

.faq-list {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

details {
  border: 0;
  border-top: 1px solid rgba(20, 41, 29, 0.18);
  border-radius: 0;
  background: transparent;
}

details:last-child {
  border-bottom: 1px solid rgba(20, 41, 29, 0.18);
}

summary {
  cursor: pointer;
  padding: 16px 18px;
  color: var(--green-950);
  font-weight: 850;
}

details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.58fr);
  gap: 28px;
  align-items: center;
  width: 100%;
  margin: clamp(12px, 2.5vw, 32px) 0 0;
  padding: clamp(56px, 6.5vw, 80px) max(18px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--green-900);
  border-radius: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

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

.contact-section p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

address {
  display: grid;
  gap: 7px;
  font-style: normal;
}

address span,
address a {
  color: rgba(255, 255, 255, 0.82);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  text-decoration: none;
}

.contact-link .contact-icon {
  display: inline-grid;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.contact-link .contact-icon-whatsapp {
  font-size: 0.72rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  margin: 0;
  padding: 26px max(18px, calc((100vw - var(--max)) / 2)) 30px;
  color: rgba(255, 255, 255, 0.7);
  background: var(--green-950);
  border-radius: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer > img {
  width: 190px;
  height: auto;
}

.site-footer p {
  margin: 0;
}

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

.site-footer .powered-by {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-footer .powered-by img {
  width: 24px;
  height: 24px;
}

.site-footer .powered-by:hover,
.site-footer .powered-by:focus-visible {
  color: var(--gold);
}

@media (max-width: 1100px) {
  h1 {
    font-size: 5.2rem;
  }
}

@media (max-width: 920px) {
  html {
    scroll-padding-top: 96px;
  }

  main > section[id],
  .contact-section[id] {
    scroll-margin-top: 96px;
  }

  .site-header {
    position: fixed;
    align-items: center;
    padding: 14px;
    background: linear-gradient(180deg, rgba(9, 20, 13, 0.92), rgba(9, 20, 13, 0.54));
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header.is-open {
    flex-wrap: wrap;
    background: rgba(13, 29, 20, 0.96);
  }

  .site-header.is-open .nav-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    flex-basis: 100%;
    width: 100%;
    padding-top: 10px;
    font-family: inherit;
  }

  .site-header.is-open .nav-links a {
    padding: 14px 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-weight: 800;
  }

  .brand {
    width: 165px;
    min-width: 0;
  }

  .hero {
    min-height: 620px;
    height: calc(100svh - 58px);
    max-height: 840px;
  }

  .hero-slide-abbey {
    object-position: 67% 72%;
  }

  .hero-slide-folly-clouds {
    object-position: 57% 72%;
  }

  .hero-slide-woodland-drive {
    object-position: 40% 60%;
  }

  .hero-slide-valley {
    object-position: 64% 66%;
  }

  .hero-slide-water-gardens {
    object-position: 58% 66%;
  }

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

  h1 {
    font-size: 4.6rem;
  }

  h2 {
    font-size: 2.9rem;
  }

  .facts-band,
  .two-column,
  .split-feature,
  .heritage-section,
  .availability-layout,
  .field-section,
  .route-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  #hospitality .section-heading {
    order: -1;
  }

  .availability-day-row {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .facts-band div:nth-child(3) {
    border-left: 0;
  }

  .history-copy {
    padding-top: 0;
  }

}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 82px;
  }

  main > section[id],
  .contact-section[id] {
    scroll-margin-top: 82px;
  }

  .site-header {
    padding: 10px 14px;
  }

  .brand {
    width: 140px;
  }

  .hero {
    min-height: 700px;
    height: max(700px, calc(100svh - 58px));
    max-height: none;
  }

  .hero-content {
    width: min(100% - 28px, 760px);
    padding-top: 112px;
    padding-bottom: 48px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 17, 22, 0.6) 0%, rgba(7, 17, 22, 0.16) 48%, rgba(7, 17, 22, 0) 66%),
      linear-gradient(0deg, rgba(9, 22, 16, 0.52) 0%, rgba(9, 22, 16, 0) 32%);
  }

  h1 {
    font-size: clamp(2.9rem, 14vw, 3.35rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(2.05rem, 11vw, 2.35rem);
  }

  .hero-kicker {
    font-size: 1.22rem;
  }

  .hero-copy {
    font-size: 1.06rem;
    margin: 12px auto 24px;
  }

  .hero-copy-break {
    display: none;
  }

  .hero-caption {
    display: none;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 56px 0;
  }

  .two-column,
  .split-feature,
  .heritage-section,
  .availability-layout,
  .field-section,
  .route-grid,
  .contact-section {
    gap: 28px;
  }

  .facts-band {
    grid-template-columns: 1fr;
  }

  .facts-band div {
    padding: 20px 18px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .facts-band div:first-child {
    border-top: 0;
  }

  .facts-band strong {
    font-size: 1.7rem;
  }

  .heritage-section,
  .availability-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .availability-layout {
    margin-top: 22px;
  }

  .availability-enquiry-card {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .field-cover {
    width: min(100%, 320px);
    margin: 0 auto;
  }

  .gallery-strip {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .route-grid {
    gap: 0;
    margin-top: 20px;
  }

  .route-grid article {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .faq-list {
    margin-top: 14px;
  }

  .availability-date-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-section {
    width: 100%;
    margin-top: 0;
    padding: 48px 20px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 24px;
    padding-bottom: 26px;
  }

  address,
  .contact-link {
    max-width: 100%;
  }

  address span,
  address a {
    overflow-wrap: anywhere;
  }
}
