:root {
  --cream: #f5eedf;
  --cream-light: #fcf8ef;
  --green: #173f32;
  --green-soft: #315747;
  --burgundy: #7b343d;
  --ink: #29332d;
  --muted: #687168;
  --line: rgba(23, 63, 50, 0.16);
  --white: #fffdf8;
  --shadow: 0 18px 50px rgba(28, 50, 39, 0.12);
  --radius: 1.35rem;
  --heading: Georgia, "Times New Roman", serif;
  --body: "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

h1,
h2,
h3 {
  font-family: var(--heading);
  font-weight: 500;
  line-height: 1.08;
}

h2 {
  margin-bottom: 1.25rem;
  color: var(--green);
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  letter-spacing: -0.035em;
}

h3 {
  color: var(--green);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.container {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.narrow {
  max-width: 850px;
  text-align: center;
}

.section {
  padding: clamp(5rem, 9vw, 8.5rem) 0;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--burgundy);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(252, 248, 239, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 5.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--green);
  font-family: var(--heading);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.05;
}

.logo-mark {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--cream-light);
  background: var(--green);
  border-radius: 50%;
  font-family: var(--body);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.8vw, 1.5rem);
  font-size: 0.84rem;
  font-weight: 600;
}

.primary-navigation > a:not(.button) {
  padding: 0.75rem 0;
  border-bottom: 1px solid transparent;
}

.primary-navigation > a:not(.button):hover,
.primary-navigation > a:not(.button):focus-visible,
.primary-navigation > a[aria-current="page"]:not(.button) {
  color: var(--burgundy);
  border-color: currentColor;
}

.menu-toggle {
  width: 2.8rem;
  height: 2.8rem;
  display: none;
  padding: 0.65rem;
  border: 0;
  color: var(--green);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 100%;
  height: 2px;
  display: block;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  color: var(--white);
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 999px;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: var(--green-soft);
  border-color: var(--green-soft);
}

.button-small {
  min-height: 2.75rem;
  padding: 0.7rem 1.15rem;
  font-size: 0.67rem;
}

.hero {
  min-height: min(780px, calc(100vh - 5.6rem));
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--green);
}

.hero-image {
  position: absolute;
  inset: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(7, 20, 17, 0.62) 0%, rgba(7, 20, 17, 0.38) 34%, rgba(7, 20, 17, 0.08) 62%, rgba(7, 20, 17, 0.16) 100%),
    url("images/village-at-night.jpg") center 50% / cover no-repeat;
}

.image-placeholder::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: inherit;
}

.image-placeholder > span:not(.card-number) {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1050px;
  padding-left: 0;
  padding-block: 6rem;
}

.hero .eyebrow {
  color: #f1c8b8;
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 1.5rem;
  color: var(--white);
  font-size: clamp(3.5rem, 6.6vw, 6.15rem);
  letter-spacing: -0.055em;
  text-shadow: 0 2px 18px rgba(9, 29, 22, 0.22);
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 2.25rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  text-shadow: 0 1px 12px rgba(9, 29, 22, 0.25);
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero .button-group {
  flex-wrap: nowrap;
}

.hero .button-outline-light {
  color: var(--white);
  background: rgba(10, 31, 24, 0.24);
  border-color: rgba(255, 255, 255, 0.65);
}

.hero .button-outline-light:hover,
.hero .button-outline-light:focus-visible {
  color: var(--green);
  background: var(--white);
  border-color: var(--white);
}

.button-accent {
  background: var(--burgundy);
  border-color: var(--burgundy);
}

.button-accent:hover,
.button-accent:focus-visible {
  background: #672a32;
  border-color: #672a32;
}

.welcome {
  position: relative;
  background: var(--cream-light);
}

.welcome-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.welcome-copy {
  max-width: 560px;
}

.welcome .lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.welcome-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button-outline-green {
  color: var(--green);
  background: transparent;
  border-color: var(--green);
}

.button-outline-green:hover,
.button-outline-green:focus-visible {
  color: var(--white);
  background: var(--burgundy);
  border-color: var(--burgundy);
}

.welcome-image {
  min-height: 540px;
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--green);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.welcome-image img {
  width: 100%;
  height: 540px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.welcome-image .welcome-site-image {
  object-position: center 56%;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  align-items: end;
  gap: 3rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading > p {
  color: var(--muted);
}

.accommodation {
  padding-block: clamp(4.25rem, 7vw, 6.75rem);
}

.accommodation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.stay-card,
.feature-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(23, 63, 50, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stay-card {
  display: flex;
  flex-direction: column;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.stay-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(28, 50, 39, 0.17);
}

.card-image,
.feature-image,
.explore-image {
  min-height: 370px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 30%, rgba(244, 232, 198, 0.8) 0 12%, transparent 13%),
    linear-gradient(145deg, #7b8f70, #b29f7e);
}

.card-image {
  margin: 0;
}

.card-image img {
  width: 100%;
  height: 370px;
  display: block;
  object-fit: cover;
  transition: transform 500ms ease;
}

.stay-card:hover .card-image img {
  transform: scale(1.025);
}

.homepage-vintage-caravan-image {
  object-position: center 48%;
}

.stay-card:first-child .card-image img {
  filter: brightness(1.12);
}

.stay-card:nth-child(2) .card-image img {
  object-position: center 62%;
}

.stay-card:nth-child(3) .card-image img {
  object-position: center 58%;
}

.image-placeholder-alt {
  background:
    radial-gradient(circle at 28% 25%, rgba(243, 227, 190, 0.72) 0 10%, transparent 11%),
    linear-gradient(145deg, #907a62, #597663);
}

.image-placeholder-third {
  background: linear-gradient(145deg, #7a5d57, #b69d75 55%, #627762);
}

.card-number {
  position: absolute;
  z-index: 2;
  top: 1.2rem;
  left: 1.2rem;
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  color: var(--green);
  background: var(--cream-light);
  border-radius: 50%;
  font-family: var(--heading);
}

.card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.7rem, 4vw, 2.6rem);
}

.card-content h3 {
  margin-bottom: 0.8rem;
}

.card-content > p:not(.eyebrow) {
  color: var(--muted);
}

.stay-details {
  margin: 0 0 1.5rem;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.stay-details li + li {
  margin-top: 0.35rem;
}

.card-content .button {
  margin-top: auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--burgundy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link span {
  font-size: 1.2rem;
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(4px);
}

.facilities {
  background: var(--cream-light);
}

.communal-facilities-intro {
  display: grid;
  justify-items: center;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: clamp(2.75rem, 5vw, 4.5rem);
  text-align: center;
}

.communal-facilities-copy {
  max-width: 720px;
}

.communal-facilities-copy h2 {
  margin-bottom: 1rem;
}

.communal-facilities-copy > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.communal-facilities-intro img {
  width: min(100%, 900px);
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.facilities-heading {
  max-width: 760px;
  margin: 0 auto clamp(2.75rem, 5vw, 4.5rem);
  text-align: center;
}

.facilities-heading h2 {
  margin-bottom: 1rem;
}

.facilities-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.facility-item {
  min-height: 250px;
  padding: clamp(1.6rem, 3vw, 2.15rem);
  background: var(--white);
  border: 1px solid rgba(23, 63, 50, 0.09);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(28, 50, 39, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.facility-item:hover {
  transform: translateY(-5px);
  border-color: rgba(123, 52, 61, 0.24);
  box-shadow: 0 18px 42px rgba(28, 50, 39, 0.13);
}

.facility-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  color: var(--burgundy);
  border: 1px solid rgba(123, 52, 61, 0.35);
  border-radius: 50%;
  padding: 0.7rem;
}

.facility-item h3 {
  margin-bottom: 0.75rem;
  color: var(--green);
  font-size: 1.45rem;
}

.facility-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.tuck-shop-section {
  background: var(--white);
}

.tuck-shop-inner {
  display: grid;
  justify-items: center;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  text-align: center;
}

.tuck-shop-heading {
  max-width: 680px;
}

.tuck-shop-heading h2 {
  margin-bottom: 1rem;
}

.tuck-shop-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.tuck-shop-video {
  display: block;
  width: min(100%, 420px);
  height: auto;
  max-height: 75vh;
  background: var(--green);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(28, 50, 39, 0.16);
}

.featured {
  background: var(--cream-light);
}

.featured-heading {
  max-width: 760px;
  margin: 0 auto clamp(2.75rem, 5vw, 4.5rem);
  text-align: center;
}

.featured-heading h2 {
  margin-bottom: 1rem;
}

.featured-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.35rem;
}

.feature-card {
  display: flex;
  flex-direction: column;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(28, 50, 39, 0.17);
}

.feature-image {
  min-height: 275px;
}

.feature-image img {
  width: 100%;
  height: 275px;
  display: block;
  object-fit: cover;
  transition: transform 500ms ease;
}

.feature-card:hover .feature-image img {
  transform: scale(1.025);
}

.feature-card:nth-child(2) .feature-image img,
.feature-card:nth-child(3) .feature-image img {
  object-position: center 58%;
}

.feature-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem;
}

.feature-label {
  margin-bottom: 0.5rem;
  color: var(--burgundy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.feature-content h3 {
  margin-bottom: 0.8rem;
  font-size: 1.55rem;
}

.feature-description {
  color: var(--muted);
}

.feature-meta {
  margin-bottom: 0.35rem;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.feature-price {
  margin-bottom: 1.35rem;
  color: var(--burgundy);
  font-family: var(--heading);
  font-size: 1.15rem;
}

.feature-content .button {
  margin-top: auto;
}

.featured-note {
  max-width: 820px;
  margin: 2rem auto 0;
  padding: 1.15rem 1.4rem;
  color: var(--green);
  background: rgba(123, 52, 61, 0.08);
  border: 1px solid rgba(123, 52, 61, 0.18);
  border-radius: calc(var(--radius) * 0.75);
  text-align: center;
}

.page-hero {
  padding: clamp(5.5rem, 10vw, 9rem) 0;
  color: var(--cream-light);
  background:
    linear-gradient(110deg, rgba(16, 46, 37, 0.96), rgba(49, 87, 71, 0.86)),
    url("images/facility-field.jpg") center 60% / cover no-repeat;
}

.page-hero-field {
  background:
    linear-gradient(110deg, rgba(16, 46, 37, 0.93), rgba(49, 87, 71, 0.76)),
    url("images/client-tent-open-countryside.jpg") center 58% / cover no-repeat;
}

.page-hero-inner {
  max-width: 820px;
}

.page-hero h1 {
  margin: 0 0 1.25rem;
  color: var(--white);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  letter-spacing: -0.05em;
}

.page-hero p:last-child {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.page-card-image,
.page-card-image img {
  min-height: 330px;
  height: 330px;
}

.caravan-carousel {
  position: relative;
  min-height: 330px;
  height: 330px;
  overflow: hidden;
  background: var(--green);
  outline: none;
  touch-action: pan-y;
}

.caravan-carousel:focus-visible {
  box-shadow: inset 0 0 0 3px var(--cream-light);
}

.carousel-track,
.carousel-slide {
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  display: block;
  min-height: 330px;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.015);
  transition: opacity 220ms ease, transform 300ms ease, visibility 220ms;
}

.carousel-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.carousel-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: rgba(16, 46, 37, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  font: inherit;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  background: var(--burgundy);
  transform: translateY(-50%) scale(1.06);
}

.carousel-arrow-prev { left: 0.7rem; }
.carousel-arrow-next { right: 0.7rem; }

.carousel-dots {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0.75rem;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
}

.carousel-dot {
  width: 0.58rem;
  height: 0.58rem;
  padding: 0;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(16, 46, 37, 0.38);
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(16, 46, 37, 0.25);
  cursor: pointer;
}

.carousel-dot.is-active {
  background: var(--white);
  transform: scale(1.2);
}

.section-action {
  margin-top: 2.5rem;
  text-align: center;
}

.things-preview {
  background: var(--cream);
}

.preview-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 6rem);
}

.preview-split > div:first-child {
  max-width: 560px;
}

.preview-image,
.content-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.content-grid,
.contact-grid {
  display: grid;
  gap: 1.25rem;
}

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

.photo-gallery-section {
  padding-block: clamp(2.5rem, 6vw, 5rem);
  background: var(--cream-light);
}

.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.25rem;
}

.photo-gallery-grid--two {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
}

.photo-gallery-grid figure {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.photo-gallery-grid img {
  width: 100%;
  height: clamp(250px, 28vw, 350px);
  object-fit: cover;
}

.gallery-section-heading {
  max-width: 760px;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.gallery-section-heading h2 {
  margin-bottom: 0;
}

.photo-gallery-grid--editorial {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, clamp(180px, 17vw, 245px));
  gap: clamp(0.85rem, 1.5vw, 1.25rem);
}

.photo-gallery-grid--editorial figure {
  position: relative;
  min-height: 0;
}

.photo-gallery-grid--editorial figure:first-child {
  grid-column: span 7;
  grid-row: span 2;
}

.photo-gallery-grid--editorial figure:nth-child(2),
.photo-gallery-grid--editorial figure:nth-child(3) {
  grid-column: span 5;
}

.photo-gallery-grid--editorial img {
  height: 100%;
}

.photo-gallery-grid--editorial figure:nth-child(2) img {
  object-position: center 58%;
}

.photo-gallery-grid--editorial figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.45rem 0.75rem;
  color: var(--cream-light);
  background: rgba(17, 49, 38, 0.78);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

@media (max-width: 760px) {
  .photo-gallery-grid--editorial {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 360px 250px;
  }

  .photo-gallery-grid--editorial figure:first-child {
    grid-column: span 2;
    grid-row: auto;
  }

  .photo-gallery-grid--editorial figure:nth-child(2),
  .photo-gallery-grid--editorial figure:nth-child(3) {
    grid-column: span 1;
  }
}

@media (max-width: 520px) {
  .photo-gallery-grid--editorial {
    grid-template-columns: 1fr;
    grid-template-rows: 300px 300px 300px;
  }

  .photo-gallery-grid--editorial figure:first-child,
  .photo-gallery-grid--editorial figure:nth-child(2),
  .photo-gallery-grid--editorial figure:nth-child(3) {
    grid-column: 1;
  }
}

.caravan-gallery-section {
  padding-top: clamp(4rem, 7vw, 7rem);
  padding-bottom: clamp(4.5rem, 8vw, 7.5rem);
}

.caravan-gallery-header {
  max-width: 850px;
  margin-bottom: clamp(2.75rem, 5vw, 4.5rem);
  text-align: center;
}

.caravan-gallery-header .eyebrow {
  margin-bottom: 0.9rem;
}

.caravan-gallery-header h2 {
  margin-bottom: 0.8rem;
}

.caravan-gallery-header p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.caravan-gallery-grid {
  width: min(1440px, calc(100% - 3rem));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(215px, 18vw, 275px);
  grid-auto-flow: dense;
  gap: clamp(0.9rem, 1.7vw, 1.5rem);
}

.caravan-gallery-grid figure {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.caravan-gallery-grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 500ms ease;
}

.caravan-gallery-grid figure:hover img {
  transform: scale(1.025);
}

.gallery-showcase-feature {
  grid-column: span 7;
  grid-row: span 2;
}

.gallery-showcase-side {
  grid-column: span 5;
}

.gallery-showcase-third {
  grid-column: span 4;
}

.gallery-showcase-half {
  grid-column: span 6;
}

.gallery-showcase-wide {
  grid-column: span 12;
}

.caravan-cards-section {
  padding-top: clamp(4.5rem, 7vw, 7rem);
}

.caravan-cards-heading {
  max-width: 760px;
  margin: 0 auto clamp(2.75rem, 5vw, 4rem);
  text-align: center;
}

.caravan-cards-heading h2 {
  margin-bottom: 0.8rem;
}

.caravan-cards-heading p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

@media (max-width: 1180px) {
  .caravan-gallery-grid {
    width: min(100% - 2.5rem, 1100px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 320px;
  }

  .gallery-showcase-feature,
  .gallery-showcase-half,
  .gallery-showcase-wide {
    grid-column: span 2;
  }

  .gallery-showcase-feature {
    grid-row: span 1;
    min-height: 440px;
  }

  .gallery-showcase-side,
  .gallery-showcase-third {
    grid-column: span 1;
  }
}

@media (max-width: 900px) {
  .caravan-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 285px;
  }
}

@media (max-width: 520px) {
  .caravan-gallery-grid {
    width: min(100% - 1.5rem, 1500px);
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-showcase-feature,
  .gallery-showcase-side,
  .gallery-showcase-third,
  .gallery-showcase-half,
  .gallery-showcase-wide {
    grid-column: 1;
    grid-row: auto;
    min-height: 0;
  }

  .caravan-gallery-grid img {
    height: auto;
    max-height: 430px;
    aspect-ratio: 4 / 3;
  }

  .caravan-gallery-grid figure:nth-child(2) img,
  .caravan-gallery-grid figure:nth-child(7) img,
  .caravan-gallery-grid figure:nth-child(8) img {
    aspect-ratio: 3 / 4;
  }
}

.content-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.t-pee { background: var(--cream-light); }
.t-pee-grid { display: grid; grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr); align-items: center; gap: clamp(2rem, 6vw, 5rem); }
.t-pee-gallery { width: min(100%, 540px); justify-self: center; display: grid; grid-template-columns: 1.35fr 0.65fr; gap: 0.75rem; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.t-pee-gallery img { display: block; width: 100%; height: 410px; object-fit: cover; }
.t-pee-gallery img:last-child { object-position: center; }
.t-pee-content { max-width: 680px; }
.t-pee-content h2 { margin-bottom: 1.25rem; }
.t-pee-intro { font-size: 1.08rem; }
.t-pee-facts { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.5rem 0; }
.t-pee-facts > * { padding: 0.65rem 1rem; color: var(--green); background: rgba(123, 52, 61, 0.08); border: 1px solid rgba(123, 52, 61, 0.18); border-radius: 999px; }
.t-pee-content h3 { margin: 2rem 0 1rem; font-size: 1.55rem; }
.t-pee-list { display: grid; gap: 0.55rem; margin: 0 0 1.5rem; padding-left: 1.2rem; }
.t-pee-booking-note { color: var(--muted); }
.t-pee-content .button { margin-top: 0.25rem; }
.t-pee-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.25rem; margin-top: 1.75rem; }
.t-pee-actions .button { margin-top: 0; }

.t-pee-hero {
  position: relative;
  min-height: clamp(560px, 72vh, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--green);
}

.t-pee-hero-image,
.t-pee-hero-image img,
.t-pee-hero::after { position: absolute; inset: 0; }
.t-pee-hero-image { margin: 0; }
.t-pee-hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 58%; }
.t-pee-hero::after { content: ""; background: linear-gradient(90deg, rgba(18, 49, 39, 0.78) 0%, rgba(18, 49, 39, 0.45) 48%, rgba(18, 49, 39, 0.12) 100%); }
.t-pee-hero-content { position: relative; z-index: 1; width: min(100% - 3rem, var(--container)); padding-block: clamp(4rem, 8vw, 7rem); color: var(--white); }
.t-pee-hero-content > * { max-width: 680px; }
.t-pee-hero-content h1 { color: var(--white); font-size: clamp(3rem, 7vw, 6.3rem); }
.t-pee-hero-content .eyebrow { color: var(--cream); }
.t-pee-hero-content > p:not(.eyebrow) { font-size: clamp(1.05rem, 2vw, 1.28rem); }
.t-pee-hero-facts { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.75rem; }
.t-pee-hero-facts > span { padding: 0.65rem 1rem; color: var(--green); background: var(--cream-light); border-radius: 999px; font-weight: 700; }
.t-pee-showcase-grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); align-items: start; gap: clamp(2.5rem, 6vw, 6rem); }
.t-pee-details { position: sticky; top: 120px; }
.t-pee-details .lead { color: var(--muted); font-size: 1.12rem; }
.t-pee-feature-list { display: grid; gap: 0.85rem; margin: 2rem 0; padding: 0; list-style: none; }
.t-pee-feature-list li { position: relative; padding: 1rem 1rem 1rem 3rem; background: var(--cream-light); border: 1px solid rgba(23, 63, 50, 0.09); border-radius: 14px; }
.t-pee-feature-list li::before { content: "✓"; position: absolute; left: 1rem; color: var(--burgundy); font-weight: 800; }
.t-pee-detail-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.t-pee-collage { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: repeat(2, 310px); gap: 1rem; }
.t-pee-collage figure { min-height: 0; margin: 0; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.t-pee-collage figure:first-child { grid-row: span 2; }
.t-pee-collage img { width: 100%; height: 100%; display: block; object-fit: cover; }
.t-pee-collage figure:first-child img { object-position: center 54%; }
.t-pee-collage figure:nth-child(2) img { object-position: center 43%; }
.t-pee-collage figure:nth-child(3) img { object-position: center; }
@media (max-width: 1050px) {
  .accommodation-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .t-pee-showcase-grid { grid-template-columns: 1fr; }
  .t-pee-details { position: static; max-width: 720px; }
}
@media (max-width: 760px) { .t-pee-grid { grid-template-columns: 1fr; } .t-pee-content { max-width: none; } }
@media (max-width: 760px) {
  .t-pee-hero { min-height: 650px; }
  .t-pee-hero-image img { object-position: 56% center; }
  .t-pee-hero::after { background: linear-gradient(180deg, rgba(18, 49, 39, 0.08), rgba(18, 49, 39, 0.84) 72%); }
  .t-pee-collage { grid-template-columns: 1fr 1fr; grid-template-rows: 420px 260px; }
  .t-pee-collage figure:first-child { grid-column: span 2; grid-row: auto; }
}
@media (max-width: 520px) {
  .t-pee-gallery { grid-template-columns: 1fr; }
  .t-pee-gallery img { height: 280px; }
  .t-pee-hero-content { width: min(100% - 1.5rem, var(--container)); }
  .t-pee-collage { grid-template-columns: 1fr; grid-template-rows: repeat(3, 320px); }
  .t-pee-collage figure:first-child { grid-column: 1; }
  .t-pee-detail-actions .button { width: 100%; }
}

.activity-notice,
.policy-block {
  max-width: 900px;
  margin: 2.5rem auto 0;
  padding: clamp(1.8rem, 4vw, 3rem);
  color: rgba(255, 255, 255, 0.84);
  background: var(--green);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.activity-notice h2,
.policy-block h2 {
  color: var(--cream-light);
  font-size: clamp(2rem, 4vw, 3rem);
}

.activity-notice p:last-child,
.policy-block p:last-child {
  margin-bottom: 0;
}

.information-card h2 {
  margin-bottom: 1.2rem;
  font-size: 1.65rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-map-section {
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
}

.contact-map-heading {
  margin-bottom: 1.5rem;
}

.contact-map-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.contact-map-frame {
  height: clamp(340px, 42vw, 480px);
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: var(--green-soft);
  border: 1px solid rgba(23, 63, 50, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.contact-details {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.contact-details p {
  margin: 0;
}

.policy-layout {
  max-width: 980px;
}

.policy-block {
  min-width: 0;
  max-width: none;
  margin-top: 0;
  overflow-wrap: anywhere;
}

.policy-sections {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.policy-section {
  scroll-margin-top: 7rem;
}

.policy-section h3 {
  margin: 2rem 0 0.7rem;
  color: var(--burgundy);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
}

.policy-section h2 + h3 {
  margin-top: 0.25rem;
}

.policy-list {
  margin: 0 0 1.25rem;
  padding-left: 1.3rem;
  color: var(--muted);
}

.policy-list li + li {
  margin-top: 0.35rem;
}

.things-to-do {
  background: var(--cream);
}

.things-heading {
  max-width: 820px;
  margin: 0 auto clamp(2.75rem, 5vw, 4.5rem);
  text-align: center;
}

.things-heading h2 {
  margin-bottom: 1rem;
}

.things-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.things-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(340px, 1fr);
  grid-template-rows: repeat(3, minmax(145px, 1fr));
  gap: 1.25rem;
}

.things-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(23, 63, 50, 0.09);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(28, 50, 39, 0.09);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.things-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 46px rgba(28, 50, 39, 0.15);
}

.things-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 500ms ease;
}

.things-card:hover img {
  transform: scale(1.025);
}

.things-card-feature {
  min-height: 0;
  display: flex;
  flex-direction: column;
  grid-row: 1 / 4;
}

.things-feature-collage {
  min-height: 410px;
  position: relative;
  display: grid;
  flex: 1;
  grid-template-columns: minmax(0, 1.55fr) minmax(150px, 0.85fr);
  gap: 0.65rem;
  padding: 0.65rem;
  background: var(--green);
}

.things-collage-main,
.things-collage-supporting {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.things-collage-main,
.things-collage-supporting img {
  border-radius: calc(var(--radius) - 0.45rem);
}

.things-collage-supporting {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.things-feature-collage img {
  object-fit: cover;
}

.things-collage-main img {
  object-position: 62% center;
}

.things-collage-supporting img {
  min-height: 0;
}

.things-feature-content {
  padding: clamp(1.6rem, 3vw, 2.15rem);
  background: var(--white);
}

.things-card-label {
  margin-bottom: 0.65rem;
  color: var(--burgundy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.things-feature-content h2,
.things-feature-content h3 {
  margin-bottom: 0.75rem;
  color: var(--green);
}

.things-feature-content h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
}

.things-feature-content p:last-child {
  max-width: 600px;
  margin-bottom: 0;
  color: var(--muted);
}

.things-card-small {
  min-height: 155px;
  display: grid;
  grid-template-columns: minmax(130px, 0.42fr) minmax(0, 0.58fr);
}

.things-card-media {
  min-height: 155px;
  overflow: hidden;
}

.things-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.2rem;
}

.things-card-content h3 {
  margin-bottom: 0.65rem;
  font-size: 1.25rem;
}

.things-card-content p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
}


.things-action {
  margin-top: 2.5rem;
  text-align: center;
}

.local-area-hero {
  background:
    linear-gradient(105deg, rgba(16, 46, 37, 0.94), rgba(49, 87, 71, 0.62)),
    url("images/singleton-village-cottages.jpg") center 58% / cover no-repeat;
}

.singleton-intro {
  background: var(--cream);
}

.singleton-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.singleton-feature figure {
  min-height: 520px;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.singleton-feature img {
  width: 100%;
  height: 520px;
  display: block;
  object-fit: cover;
  object-position: center 58%;
}

.singleton-feature-copy {
  max-width: 560px;
}

.singleton-feature-copy .lead,
.millers-copy .lead {
  color: var(--green);
  font-size: clamp(1.08rem, 2vw, 1.25rem);
}

.singleton-feature-copy p:last-child,
.millers-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.singleton-heritage {
  background: var(--cream-light);
}

.local-section-heading {
  max-width: 820px;
  margin: 0 auto clamp(2.75rem, 5vw, 4.5rem);
  text-align: center;
}

.local-section-heading h2 {
  margin-bottom: 1rem;
}

.local-section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.heritage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 5rem);
}

.heritage-collage {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  grid-template-rows: repeat(2, 295px);
  gap: 1rem;
}

.heritage-collage figure {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.heritage-collage-main {
  grid-row: span 2;
}

.heritage-collage img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.heritage-collage figure:nth-child(2) img {
  object-position: center 32%;
}

.heritage-stories {
  display: grid;
  gap: 1rem;
}

.heritage-stories article {
  padding: clamp(1.35rem, 3vw, 2rem);
  background: var(--white);
  border: 1px solid rgba(23, 63, 50, 0.09);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(28, 50, 39, 0.08);
}

.heritage-number {
  margin-bottom: 0.45rem;
  color: var(--burgundy);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.heritage-stories h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.heritage-stories article > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.millers-arms-section {
  color: var(--cream-light);
  background: var(--green);
}

.millers-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.millers-images {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(190px, 0.65fr);
  gap: 1rem;
}

.millers-images figure {
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
}

.millers-images img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.millers-image-main {
  height: 440px;
}

.millers-image-main img {
  object-position: center;
}

.millers-supporting-images {
  height: 440px;
  display: grid;
  grid-template-rows: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1rem;
}

.millers-food-images {
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.millers-image-garden img {
  object-position: center 56%;
}

.millers-food-images figure,
.millers-food-images img {
  min-height: 0;
}

.millers-copy {
  max-width: 560px;
}

.millers-copy h2,
.millers-copy .lead {
  color: var(--cream-light);
}

.millers-copy .eyebrow {
  color: #e8c8bc;
}

.millers-copy p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.local-attractions {
  background: var(--cream);
}

.more-nearby {
  background: var(--cream-light);
}

.nearby-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.nearby-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(23, 63, 50, 0.09);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(28, 50, 39, 0.09);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.nearby-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 46px rgba(28, 50, 39, 0.15);
}

.nearby-card-image,
.nearby-card-placeholder {
  height: 245px;
  overflow: hidden;
}

.nearby-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 38%;
  transition: transform 500ms ease;
}

.nearby-card:hover .nearby-card-image img {
  transform: scale(1.025);
}

.nearby-card-image-tower img {
  object-fit: contain;
  object-position: center;
}

.nearby-card-image-tower {
  background: #d8ded7;
}

.nearby-card:hover .nearby-card-image-tower img {
  transform: none;
}

.nearby-card-image-alpaca img {
  object-position: 60% 20%;
}

.nearby-card-placeholder {
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 0.85rem;
  padding: 2rem;
  color: var(--cream-light);
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.11), transparent 28%),
    linear-gradient(145deg, #476b58, var(--green));
  text-align: center;
}

.nearby-card-placeholder svg {
  width: 2.4rem;
  height: 2.4rem;
  stroke-width: 1.45;
}

.nearby-card-placeholder span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nearby-card-content {
  flex: 1;
  padding: clamp(1.4rem, 3vw, 1.85rem);
}

.nearby-category {
  margin-bottom: 0.55rem;
  color: var(--burgundy);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nearby-card-content h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
}

.nearby-card-content > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.photo-credits {
  margin-top: 2rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(30, 67, 51, 0.16);
  color: var(--muted);
}

.photo-credits h3 {
  margin-bottom: 0.35rem;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.photo-credits p {
  max-width: 72rem;
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.65;
}

.photo-credits a {
  color: var(--green);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

.resident-animals {
  background: var(--cream);
}

.resident-animals-intro {
  max-width: 780px;
  margin: 0 auto clamp(2.25rem, 5vw, 3.75rem);
  text-align: center;
}

.resident-animals-intro h2 {
  margin-bottom: 1rem;
}

.resident-animals-intro > p:not(.eyebrow) {
  color: var(--muted);
}

.resident-animals-notice {
  margin: 1.25rem 0 0;
  padding: 0.9rem 1.1rem;
  background: rgba(123, 52, 61, 0.08);
  border: 1px solid rgba(123, 52, 61, 0.18);
  border-radius: 14px;
  font-size: 0.9rem;
}

.resident-animals-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, 230px);
  gap: 1rem;
}

.resident-animals-gallery figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.resident-animals-gallery .resident-animal-main {
  grid-row: 1 / 3;
}

.resident-animals-gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.resident-animals-gallery figcaption {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 0.8rem;
  color: var(--white);
  background: rgba(20, 51, 40, 0.82);
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 1000px) {
  .nearby-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resident-animals-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 320px repeat(2, 220px);
  }

  .resident-animals-gallery .resident-animal-main {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  .nearby-grid {
    grid-template-columns: 1fr;
  }

  .nearby-card-image,
  .nearby-card-placeholder {
    height: 230px;
  }

  .resident-animals-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 285px repeat(4, 230px);
  }

  .resident-animals-gallery .resident-animal-main {
    grid-column: auto;
  }
}

@media (max-width: 1000px) {
  .singleton-feature,
  .heritage-layout,
  .millers-feature {
    grid-template-columns: 1fr;
  }

  .singleton-feature-copy,
  .millers-copy {
    max-width: 760px;
  }

  .heritage-collage {
    grid-template-rows: repeat(2, 260px);
  }
}

@media (max-width: 650px) {
  .singleton-feature figure,
  .singleton-feature img {
    min-height: 360px;
    height: 360px;
  }

  .heritage-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 360px 240px;
  }

  .heritage-collage-main {
    grid-column: span 2;
    grid-row: auto;
  }

  .millers-images {
    grid-template-columns: 1fr 0.7fr;
  }

  .millers-image-main,
  .millers-supporting-images {
    height: 360px;
  }
}

@media (max-width: 460px) {
  .heritage-collage,
  .millers-images {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .heritage-collage-main {
    grid-column: 1;
  }

  .heritage-collage figure,
  .heritage-collage img {
    min-height: 300px;
    height: 300px;
  }

  .millers-image-main {
    height: 300px;
  }

  .millers-supporting-images {
    height: auto;
    grid-template-rows: 220px 170px;
  }
}

.stay-information {
  background: var(--cream-light);
}

.information-heading {
  max-width: 780px;
  margin: 0 auto clamp(2.75rem, 5vw, 4.5rem);
  text-align: center;
}

.information-heading h2 {
  margin-bottom: 1rem;
}

.information-heading > p:last-child {
  color: var(--muted);
}

.price-grid,
.guest-info-grid {
  display: grid;
  gap: 1.25rem;
}

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

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

.information-card {
  min-width: 0;
  padding: clamp(1.6rem, 3vw, 2.2rem);
  overflow-wrap: anywhere;
  background: var(--white);
  border: 1px solid rgba(23, 63, 50, 0.09);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(28, 50, 39, 0.08);
}

.information-card h3 {
  margin-bottom: 1.4rem;
  font-size: 1.65rem;
}

.information-card > p:last-child {
  margin-bottom: 0;
}

.information-card address {
  margin-bottom: 1.25rem;
  color: var(--muted);
  font-style: normal;
}

.map-link {
  margin-top: 0.25rem;
}

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

.price-list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
}

.price-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.price-list small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
}

.price-list strong {
  flex: 0 0 auto;
  color: var(--burgundy);
  text-align: right;
}

.information-note {
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.faq-section {
  background: var(--cream);
}

.faq-list {
  max-width: 900px;
  margin-inline: auto;
}

.faq-list details {
  overflow: hidden;
  margin-bottom: 0.8rem;
  background: var(--white);
  border: 1px solid rgba(23, 63, 50, 0.1);
  border-radius: calc(var(--radius) * 0.75);
  box-shadow: 0 8px 24px rgba(28, 50, 39, 0.06);
}

.faq-list summary {
  padding: 1.25rem 1.5rem;
  color: var(--green);
  font-family: var(--heading);
  font-size: 1.2rem;
  cursor: pointer;
}

.faq-list details p {
  margin: 0;
  padding: 0 1.5rem 1.35rem;
  color: var(--muted);
}

.cancellation-section {
  color: rgba(255, 255, 255, 0.82);
  background: var(--green);
}

.cancellation-inner {
  max-width: 900px;
}

.cancellation-section h2,
.cancellation-section .eyebrow {
  color: var(--cream-light);
}

.cancellation-section p:last-child {
  margin-bottom: 0;
}

.booking {
  padding: clamp(4rem, 8vw, 6rem) 0;
  color: var(--white);
  background: var(--burgundy);
}

.booking-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.booking h2,
.booking .eyebrow {
  color: var(--cream-light);
}

.booking h2 {
  margin-bottom: 0.75rem;
}

.booking p:last-child {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.button-cream {
  flex: 0 0 auto;
  color: var(--green);
  background: var(--cream-light);
  border-color: var(--cream-light);
}

.button-cream:hover,
.button-cream:focus-visible {
  color: var(--green);
  background: #fff;
  border-color: #fff;
}

.site-footer {
  padding: 5rem 0 1.5rem;
  color: rgba(255, 255, 255, 0.68);
  background: #102e25;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1.2fr 1fr;
  gap: 3rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
  color: var(--cream-light);
}

.footer-brand p {
  max-width: 280px;
}

.footer-grid h2 {
  margin-bottom: 1.25rem;
  color: var(--cream-light);
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid span,
.footer-grid p {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--cream-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1280px) {
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 102;
  }

  .primary-navigation {
    position: fixed;
    z-index: 101;
    inset: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.65rem;
    padding: 6rem max(2rem, 8vw);
    color: var(--cream-light);
    background: var(--green);
    font-family: var(--heading);
    font-size: clamp(1.5rem, 5vw, 2.3rem);
    clip-path: inset(0 0 0 100%);
    pointer-events: none;
    visibility: hidden;
    transition: clip-path 230ms ease, visibility 230ms;
  }

  .primary-navigation.is-open {
    clip-path: inset(0);
    pointer-events: auto;
    visibility: visible;
  }

  .primary-navigation .button {
    margin-top: 1rem;
    font-family: var(--body);
    font-size: 0.72rem;
  }

  .menu-toggle[aria-expanded="true"] {
    position: fixed;
    top: 1.4rem;
    right: 1.25rem;
    color: var(--cream-light);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-image {
    background-position: center 50%;
  }

  .hero-content {
    padding-left: 0;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 7.5vw, 5.2rem);
  }

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

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

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

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 1.5rem, 1180px);
  }

  .section {
    padding-block: 4.5rem;
  }

  .accommodation {
    padding-block: 3.75rem;
  }

  .hero {
    min-height: 720px;
  }

  .hero-image {
    background:
      linear-gradient(180deg, rgba(7, 20, 17, 0.04) 0%, rgba(7, 20, 17, 0.12) 40%, rgba(7, 20, 17, 0.78) 100%),
      url("images/village-at-night.jpg") 52% center / cover no-repeat;
  }

  .hero-content {
    align-self: end;
    padding-left: 0;
    padding-block: 4.5rem;
  }

  .button-group .button {
    width: 100%;
  }

  .hero .button-group {
    flex-direction: column;
  }

  .section-heading,
  .welcome-grid,
  .accommodation-grid,
  .things-grid,
  .price-grid,
  .guest-info-grid,
  .preview-split,
  .two-columns,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .welcome-copy {
    max-width: 680px;
  }

  .preview-split > div:first-child {
    max-width: 680px;
  }

  .welcome-image {
    min-height: 420px;
  }

  .welcome-image img {
    height: 420px;
  }

  .section-heading {
    gap: 0.5rem;
  }

  .card-image {
    min-height: 290px;
  }

  .card-image img {
    height: 290px;
  }

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

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

  .things-grid {
    grid-template-rows: auto;
  }

  .things-card-feature {
    min-height: 0;
    grid-row: auto;
  }

  .things-feature-collage {
    min-height: 420px;
    flex: none;
  }

  .things-card-small {
    min-height: 190px;
  }

  .booking-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .header-inner {
    min-height: 4.8rem;
  }

  .logo {
    font-size: 0.9rem;
  }

  .logo-mark {
    width: 2.4rem;
    height: 2.4rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .facility-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .welcome-actions .button {
    width: 100%;
  }

  .things-card-small {
    grid-template-columns: 1fr;
  }

  .things-card-small .things-card-media {
    min-height: 220px;
  }

  .things-feature-collage {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1.45fr) minmax(0, 0.75fr);
  }

  .things-collage-supporting {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 1fr;
  }

  .facility-item {
    min-height: 140px;
  }

  .page-hero {
    padding-block: 4.5rem;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .price-list li {
    flex-direction: column;
  }

  .price-list strong {
    text-align: left;
  }

  .carousel-arrow {
    width: 2.65rem;
    height: 2.65rem;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.hero-status {
  max-width: 650px;
  margin-bottom: 1rem;
  color: #f1c8b8;
  font-family: var(--heading);
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  line-height: 1.15;
}

.homepage-contact {
  background: var(--cream-light);
}

.homepage-contact-inner {
  max-width: 980px;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: clamp(2.5rem, 7vw, 6rem);
}

.homepage-contact-intro p:not(.eyebrow) {
  color: var(--muted);
}

.homepage-contact-intro a {
  color: var(--burgundy);
  font-weight: 700;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

@media (max-width: 760px) {
  .homepage-contact-inner {
    grid-template-columns: 1fr;
  }
}
