:root {
  --ink: #1e1c18;
  --muted: #000000;
  --paper: #fbfaf6;
  --paper-deep: #f2eee6;
  --stone: #e7e4dc;
  --stone-2: #d9d5ca;
  --olive: #6f7257;
  --wine: #64674e;
  --gold: #b89b62;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(38, 32, 23, 0.16);
  --page-gutter: clamp(22px, 7vw, 110px);
  --media-overlay:
    linear-gradient(90deg, rgba(20, 18, 16, 0.22), rgba(20, 18, 16, 0.02) 76%),
    linear-gradient(0deg, rgba(20, 18, 16, 0.28), rgba(20, 18, 16, 0.02) 68%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Gill Sans", "Gill Sans MT", "Lato", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: geometricPrecision;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

input[type="date"] {
  color-scheme: light;
  min-width: 0;
}

.date-field {
  position: relative;
}

.date-field label {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 12px;
  margin: 0;
  color: var(--muted);
  line-height: 1;
  pointer-events: none;
  transform: translateY(-50%);
  transition: opacity 160ms ease;
}

.date-field:not(.has-value) input[type="date"] {
  color: transparent;
}

.date-field:focus-within label,
.date-field.has-value label {
  opacity: 0;
}

.date-field:focus-within input[type="date"],
.date-field.has-value input[type="date"] {
  color: inherit;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .brand {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

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

img {
  height: auto;
}

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

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

h1,
h2,
h3,
.menu-inner a,
.legacy-caption strong,
.page-nav a {
  font-family: "Felix Titling", "Cinzel", Georgia, serif;
  font-weight: 400;
}

h1 {
  font-size: clamp(28px, 3.5vw, 50px);
  line-height: 1.08;
}

h2 {
  font-size: clamp(28px, 3.5vw, 50px);
  line-height: 1.08;
}

h3 {
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.18;
}

.section-pad {
  padding: clamp(82px, 10vw, 150px) 0;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 106px;
  padding: 22px clamp(18px, 4vw, 58px);
  color: var(--white);
  transition: opacity 220ms ease;
}

.brand {
  justify-self: center;
  width: clamp(160px, 17.6vw, 242px);
  filter: brightness(0) invert(1);
  transition: filter 260ms ease, width 260ms ease, opacity 220ms ease, visibility 220ms ease;
}

.book-link,
.outline-link,
.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 180px;
  height: 60px;
  min-height: 60px;
  padding: 0 28px;
  border: 0;
  box-shadow: inset 0 0 0 1px currentColor;
  outline: none;
  background: transparent;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: color 260ms ease 80ms, background 260ms ease, box-shadow 260ms ease;
}

.site-header .book-link {
  height: 54px;
  min-height: 54px;
}

.book-link::before,
.book-link::after,
.outline-link::before,
.outline-link::after,
.submit-btn::before,
.submit-btn::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 0;
  height: 0;
  box-sizing: border-box;
  pointer-events: none;
  border: 0 solid transparent;
}

.book-link::before,
.outline-link::before,
.submit-btn::before {
  border-bottom-width: 2px;
  border-left-width: 2px;
}

.book-link::after,
.outline-link::after,
.submit-btn::after {
  border-top-width: 2px;
  border-right-width: 2px;
}

.book-link:hover,
.outline-link:hover,
.submit-btn:hover,
.book-link:focus-visible,
.outline-link:focus-visible,
.submit-btn:focus-visible {
  color: inherit;
  background: color-mix(in srgb, currentColor 6%, transparent);
  box-shadow: inset 0 0 0 1px transparent;
}

.book-link:hover::before,
.book-link:hover::after,
.outline-link:hover::before,
.outline-link:hover::after,
.submit-btn:hover::before,
.submit-btn:hover::after,
.book-link:focus-visible::before,
.book-link:focus-visible::after,
.outline-link:focus-visible::before,
.outline-link:focus-visible::after,
.submit-btn:focus-visible::before,
.submit-btn:focus-visible::after {
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  border-color: currentColor;
  transition: border-color 0s, width 320ms ease, height 320ms ease;
}

.book-link:hover::before,
.outline-link:hover::before,
.submit-btn:hover::before,
.book-link:focus-visible::before,
.outline-link:focus-visible::before,
.submit-btn:focus-visible::before {
  transition-delay: 0s, 0s, 320ms;
}

.book-link:hover::after,
.outline-link:hover::after,
.submit-btn:hover::after,
.book-link:focus-visible::after,
.outline-link:focus-visible::after,
.submit-btn:focus-visible::after {
  transition-delay: 0s, 320ms, 0s;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.language-switch span {
  width: 1px;
  height: 13px;
  background: currentColor;
  opacity: 0.55;
}

.burger {
  position: relative;
  display: grid;
  gap: 7px;
  width: 52px;
  height: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.burger span {
  display: block;
  height: 2px;
  background: currentColor;
  transform-origin: center;
  transition: width 320ms cubic-bezier(0.65, 0, 0.35, 1), margin 320ms cubic-bezier(0.65, 0, 0.35, 1), transform 320ms cubic-bezier(0.65, 0, 0.35, 1), opacity 180ms ease;
}

.burger span:nth-child(1) {
  width: 36px;
  margin-left: 8px;
}

.burger span:nth-child(2) {
  width: 26px;
  margin-left: 0;
}

.burger span:nth-child(3) {
  width: 42px;
  margin-left: 5px;
}

.burger:hover span:nth-child(1),
.burger:focus-visible span:nth-child(1) {
  width: 28px;
  margin-left: 0;
  transform: translateX(14px);
}

.burger:hover span:nth-child(2),
.burger:focus-visible span:nth-child(2) {
  width: 44px;
  margin-left: 4px;
  transform: translateX(-6px);
}

.burger:hover span:nth-child(3),
.burger:focus-visible span:nth-child(3) {
  width: 24px;
  margin-left: 18px;
  transform: translateX(-12px);
}

.burger.is-active span:nth-child(1) {
  width: 36px;
  margin-left: 8px;
  transform: translateY(9px) rotate(45deg);
}

.burger.is-active span:nth-child(2) {
  opacity: 0;
}

.burger.is-active span:nth-child(3) {
  width: 36px;
  margin-left: 8px;
  transform: translateY(-9px) rotate(-45deg);
}

.burger.is-active:hover span:nth-child(1),
.burger.is-active:focus-visible span:nth-child(1) {
  width: 36px;
  margin-left: 8px;
  transform: translateY(9px) rotate(45deg) scale(1.04);
}

.burger.is-active:hover span:nth-child(3),
.burger.is-active:focus-visible span:nth-child(3) {
  width: 36px;
  margin-left: 8px;
  transform: translateY(-9px) rotate(-45deg) scale(1.04);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: rgba(24, 23, 20, 0.34);
  -webkit-backdrop-filter: blur(14px) saturate(0.96);
  backdrop-filter: blur(14px) saturate(0.96);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 280ms ease, visibility 280ms ease;
}

.menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.menu-inner {
  display: grid;
  gap: clamp(14px, 2vw, 24px);
  text-align: center;
}

.menu-inner a {
  position: relative;
  justify-self: center;
  padding-bottom: 8px;
  font-size: clamp(17px, 3.5vw, 46px);
  line-height: 1;
  transform: translateY(18px);
  opacity: 0;
  transition: color 220ms ease, transform 420ms ease, opacity 420ms ease;
}

.menu-inner a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 360ms cubic-bezier(0.65, 0, 0.35, 1);
}

.menu-overlay.is-open .menu-inner a {
  transform: translateY(0);
  opacity: 1;
}

.menu-inner a:hover,
.menu-inner a:focus-visible {
  color: var(--white);
}

.menu-inner a:hover::after,
.menu-inner a:focus-visible::after {
  transform: scaleX(1);
}

.menu-close {
  position: absolute;
  top: 34px;
  right: clamp(18px, 4vw, 58px);
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(251, 250, 246, 0.28);
  color: var(--paper);
  background: rgba(251, 250, 246, 0.08);
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-section {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 40%),
    linear-gradient(135deg, #d9d5ca, #9b978d);
}

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

.hero-video {
  object-fit: cover;
  opacity: 1;
}

.hero-shade {
  background: none;
}

.hero-center {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 28px;
  padding: 0 22px;
  text-align: center;
}

.hero-center img {
  width: clamp(228px, 33.6vw, 504px);
  filter: brightness(0) invert(1);
}

.hero-center p {
  max-width: 560px;
  font-size: clamp(15px, 2vw, 22px);
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-center-payoff {
  transform: translateY(22vh);
}

.hero-center-payoff p {
  max-width: none;
  font-family: "Felix Titling", "Cinzel", Georgia, serif;
  font-size: clamp(16px, 2.6vw, 37px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 2;
  width: 1px;
  height: 62px;
  background: rgba(255, 255, 255, 0.4);
  overflow: hidden;
}

.scroll-cue::after {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
  background: var(--white);
  animation: scrollLine 1.8s ease-in-out infinite;
}

.kicker {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.lead-copy {
  max-width: 760px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 300;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  margin-top: 32px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-link::after {
  content: "";
  width: 58px;
  height: 1px;
  margin: auto 0 auto 14px;
  background: currentColor;
}

.welcome-section .text-link {
  color: var(--ink);
}

.split-story {
  background: var(--paper-deep);
}

#estate.split-story {
  color: var(--white);
  background: #64674e;
}

#estate.split-story .kicker {
  color: var(--white);
}

#estate.split-story p {
  color: rgba(255, 255, 255, 0.84);
}

#estate.split-story > .container-xl {
  width: 100%;
  max-width: none;
  padding: 0;
}

#estate.split-story .row {
  --bs-gutter-x: 0;
  margin: 0;
}

#estate.split-story .row > div {
  padding: 0;
}

#estate .estate-slideshow {
  height: 100%;
}

#estate .estate-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(72px, 9vw, 130px) clamp(30px, 5vw, 80px) !important;
}

#interiors > .container-xl {
  width: 100%;
  max-width: none;
  padding-right: var(--page-gutter);
  padding-left: var(--page-gutter);
}

.estate-video-section {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(72px, 9vw, 130px) var(--page-gutter);
  color: var(--white);
  background: #24221e;
}

.estate-video-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: var(--paper-deep);
  transform: scaleY(0);
  transform-origin: top;
}

.estate-video,
.estate-video-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.estate-video {
  object-fit: cover;
}

.estate-video-scrim {
  background:
    linear-gradient(90deg, rgba(15, 14, 12, 0.62), rgba(15, 14, 12, 0.08) 72%),
    linear-gradient(0deg, rgba(15, 14, 12, 0.58), transparent 58%);
}

.estate-video-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.estate-video-copy .kicker {
  color: var(--white);
}

.estate-video-copy h2 {
  max-width: 650px;
}

.estate-video-copy > p:not(.kicker) {
  max-width: 610px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 300;
  line-height: 1.65;
}

.estate-video-copy .outline-link {
  margin-top: 30px;
  color: var(--white);
}

.location-photo-section {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(72px, 9vw, 130px) var(--page-gutter);
  color: var(--white);
  background-color: #454039;
  background-image: url("../media/home/film-location/film-location-background.webp");
  background-position: center;
  background-size: cover;
}

.location-photo-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 14, 12, 0.7), rgba(15, 14, 12, 0.08) 76%),
    linear-gradient(0deg, rgba(15, 14, 12, 0.68), transparent 62%);
}

.location-photo-copy {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.location-photo-copy .kicker {
  color: var(--white);
}

.location-photo-copy h2 {
  max-width: 850px;
}

.location-photo-copy > p:not(.kicker) {
  max-width: 880px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 300;
  line-height: 1.7;
}

.location-photo-copy .outline-link {
  margin-top: 30px;
  color: var(--white);
}

.estate-video-section.reveal-pending {
  opacity: 1;
  clip-path: none;
}

.estate-video-section.reveal-pending::after {
  transform: scaleY(1);
}

.estate-video-section.reveal-pending .estate-video {
  transform: scale(1.12);
}

.estate-video-section.reveal-pending .estate-video-copy {
  opacity: 0;
  transform: translateY(44px);
}

.estate-video-section.is-visible {
  opacity: 1;
  clip-path: none;
}

.estate-video-section.is-visible::after {
  animation: estateCurtainReveal 1.25s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.estate-video-section.is-visible .estate-video {
  animation: estateVideoSettle 1.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.estate-video-section.is-visible .estate-video-copy {
  animation: estateCopyReveal 850ms cubic-bezier(0.22, 1, 0.36, 1) 620ms both;
}

.split-story p,
.farm-section p,
.booking-section p,
.experiences-section p {
  margin-top: 24px;
  color: var(--muted);
}

.placeholder-media {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 38%),
    linear-gradient(135deg, var(--stone), var(--stone-2));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.48);
  transition: filter 300ms ease, box-shadow 300ms ease;
}

.placeholder-media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-media::before {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 0;
  height: 0;
  box-sizing: border-box;
  pointer-events: none;
  border: 0 solid transparent;
  border-bottom-width: 2px;
  border-left-width: 2px;
}

.placeholder-media::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 0;
  height: 0;
  box-sizing: border-box;
  pointer-events: none;
  border: 0 solid transparent;
  border-top-width: 2px;
  border-right-width: 2px;
}

.placeholder-media:hover {
  filter: brightness(1.035) contrast(1.02);
  box-shadow: inset 0 0 0 1px transparent;
}

.placeholder-media:hover::before,
.placeholder-media:hover::after {
  width: calc(100% - 36px);
  height: calc(100% - 36px);
  border-color: rgba(255, 255, 255, 0.9);
  transition: border-color 0s, width 320ms ease, height 320ms ease;
}

.placeholder-media:hover::before {
  transition-delay: 0s, 0s, 320ms;
}

.placeholder-media:hover::after {
  transition-delay: 0s, 320ms, 0s;
}

.placeholder-media span {
  position: absolute;
  inset: auto 22px 22px;
  color: rgba(30, 28, 24, 0.42);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.placeholder-media.large {
  min-height: clamp(430px, 54vw, 700px);
}

.placeholder-media.tall {
  min-height: clamp(500px, 60vw, 760px);
}

.placeholder-media.full {
  min-height: clamp(480px, 66vw, 820px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(34px, 5vw, 70px);
}

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

.banner-card {
  display: block;
  height: 100%;
}

.banner-card .placeholder-media {
  min-height: clamp(320px, 35vw, 520px);
}

.banner-copy {
  padding-top: 28px;
}

.banner-copy h3 {
  font-size: clamp(30px, 3vw, 54px);
  line-height: 1;
  text-transform: uppercase;
}

.banner-copy p {
  max-width: 420px;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(16px, 1.3vw, 20px);
}

.feature-card,
.destination-card {
  height: 100%;
}

.feature-card .placeholder-media,
.destination-card .placeholder-media {
  min-height: 300px;
}

.feature-card h3,
.destination-card h3 {
  margin-top: 26px;
  font-size: clamp(23px, 2vw, 30px);
}

.feature-card p,
.destination-card p {
  margin-top: 14px;
  color: var(--muted);
}

.experiences-section {
  color: var(--paper);
  background: var(--olive);
}

.experiences-section .kicker,
.experiences-section p {
  color: rgba(251, 250, 246, 0.76);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.experience-grid a {
  display: flex;
  align-items: end;
  min-height: 190px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  font-family: "Felix Titling", "Cinzel", Georgia, serif;
  font-size: clamp(25px, 3vw, 42px);
  transition: background 220ms ease, color 220ms ease;
}

.experience-grid a:hover {
  color: var(--ink);
  background: var(--paper);
}

.home-gallery-section {
  color: var(--white);
  background: #64674e;
}

.home-gallery-section > .container-xl,
.site-footer > .container-xl {
  width: 100%;
  max-width: none;
  padding-right: var(--page-gutter);
  padding-left: var(--page-gutter);
}

.home-gallery-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: clamp(34px, 5vw, 64px);
}

.home-gallery-section .kicker {
  color: var(--white);
}

.home-gallery-controls {
  display: flex;
  gap: 10px;
}

.home-gallery-controls button,
.gallery-lightbox-nav {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: var(--white);
  background: transparent;
  font-size: 22px;
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease, opacity 220ms ease;
}

.home-gallery-controls button:hover,
.home-gallery-controls button:focus-visible,
.gallery-lightbox-nav:hover,
.gallery-lightbox-nav:focus-visible {
  color: #64674e;
  background: var(--white);
}

.home-gallery-controls button:disabled {
  opacity: 0.35;
  cursor: default;
}

.home-gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 60px) / 4);
  gap: 20px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.home-gallery-track::-webkit-scrollbar {
  display: none;
}

.home-gallery-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: rgba(91, 23, 23, 0.14);
  cursor: zoom-in;
  scroll-snap-align: start;
}

.home-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1), filter 300ms ease;
}

.home-gallery-item:hover img,
.home-gallery-item:focus-visible img {
  filter: brightness(0.9);
  transform: scale(1.045);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(12px, 3vw, 36px);
  padding: clamp(68px, 8vw, 110px) clamp(16px, 4vw, 60px) clamp(24px, 4vw, 60px);
  background: rgba(20, 18, 16, 0.88);
  backdrop-filter: blur(18px);
  animation: lightbox-backdrop-in 320ms ease both;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox img {
  justify-self: center;
  max-width: 100%;
  max-height: calc(100svh - 130px);
  object-fit: contain;
  filter: drop-shadow(0 28px 70px rgba(0, 0, 0, 0.42));
}

.gallery-lightbox img.is-switching {
  animation: lightbox-image-in 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes lightbox-backdrop-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes lightbox-image-in {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(24px);
    filter: blur(10px) drop-shadow(0 28px 70px rgba(0, 0, 0, 0));
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0) drop-shadow(0 28px 70px rgba(0, 0, 0, 0.42));
  }
}

.is-lightbox-clickable {
  cursor: zoom-in;
  pointer-events: none;
}

.is-lightbox-clickable.is-active,
.is-lightbox-clickable.is-companion {
  pointer-events: auto;
}

.gallery-lightbox-close {
  position: absolute;
  top: 24px;
  right: clamp(18px, 4vw, 58px);
  padding: 10px 0;
  border: 0;
  color: var(--white);
  background: transparent;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

body.lightbox-open {
  overflow: hidden;
}

.legacy-section {
  background: var(--ink);
}

.legacy-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(72px, 9vw, 130px) var(--page-gutter);
}

.parallax-video,
.legacy-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.parallax-video {
  object-fit: cover;
  transform: scale(1.12);
  animation: parallaxDrift 18s ease-in-out infinite alternate;
}

.legacy-scrim {
  background:
    linear-gradient(90deg, rgba(30, 28, 24, 0.76), rgba(30, 28, 24, 0.08) 58%),
    linear-gradient(180deg, rgba(30, 28, 24, 0.32), rgba(30, 28, 24, 0.68));
}

.legacy-caption {
  position: relative;
  max-width: 820px;
  color: var(--white);
  z-index: 2;
}

.legacy-caption .kicker {
  color: var(--white);
}

.legacy-caption h2 {
  max-width: 720px;
}

.legacy-caption .legacy-copy {
  max-width: 760px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 1.4vw, 21px);
  line-height: 1.68;
}

.legacy-caption .outline-link {
  margin-top: 30px;
  color: var(--white);
}

.brand-home-section {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 120svh;
  overflow: hidden;
  padding: clamp(72px, 9vw, 130px) var(--page-gutter);
  color: var(--white);
  background-color: #3a3631;
  background-image: url("../media/home/brand/brand-campaign-greenhouse.webp");
  background-position: center;
  background-size: cover;
}

.brand-home-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 14, 12, 0.7), rgba(15, 14, 12, 0.08) 76%),
    linear-gradient(0deg, rgba(15, 14, 12, 0.68), transparent 62%);
}

.brand-home-copy {
  position: relative;
  z-index: 1;
  max-width: 840px;
}

.brand-home-copy .kicker {
  color: var(--white);
}

.brand-home-copy > p:not(.kicker) {
  max-width: 780px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 300;
  line-height: 1.68;
}

.brand-home-copy .outline-link {
  margin-top: 30px;
  color: var(--white);
}

.guest-house-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(100px, 12vw, 170px) var(--page-gutter) clamp(72px, 9vw, 130px);
  color: var(--white);
  background: #34342c;
}

.guest-house-hero-video,
.guest-house-hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.guest-house-hero-video {
  object-fit: cover;
}

.guest-house-hero-scrim {
  background: none;
}

.guest-house-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.guest-house-hero-copy .kicker {
  color: var(--white);
}

.guest-house-hero-copy > p:not(.kicker) {
  max-width: 760px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 300;
  line-height: 1.68;
}

.garden-section {
  color: var(--white);
  background: #64674e;
}

.garden-section .kicker {
  color: var(--white);
}

.garden-inner {
  width: 100%;
  padding-right: var(--page-gutter);
  padding-left: var(--page-gutter);
}

.garden-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(34px, 5vw, 64px);
}

.garden-controls {
  display: flex;
  gap: 10px;
}

.garden-controls button {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: var(--white);
  background: transparent;
  font-size: 22px;
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease;
}

.garden-controls button:hover,
.garden-controls button:focus-visible {
  color: var(--white);
  background: var(--olive);
}

.garden-slideshow {
  position: relative;
  min-height: clamp(440px, 62vw, 860px);
  overflow: hidden;
  background: var(--stone);
}

.garden-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 700ms ease, transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.garden-slideshow img.is-active {
  opacity: 1;
  transform: scale(1);
}

.garden-description {
  max-width: 920px;
  margin: clamp(30px, 4vw, 54px) auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.65;
  text-align: center;
}

.amenities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.amenities li {
  padding: 13px 16px;
  background: #f1f1ef;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  transition: opacity 260ms ease, background-color 260ms ease;
}

.amenities li:hover {
  opacity: 0.58;
  background: #f6f6f4;
}

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

.duo-media {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  align-items: end;
  gap: 22px;
}

.duo-media .placeholder-media:first-child {
  min-height: 280px;
}

.duo-media .placeholder-media:last-child {
  min-height: 430px;
}

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

.alt-feature {
  background: var(--paper);
}

.alt-feature:nth-of-type(even) {
  background: var(--paper-deep);
}

.alt-feature h1 {
  margin-top: 12px;
  text-transform: uppercase;
}

.alt-feature p:not(.kicker) {
  max-width: 500px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(18px, 1.45vw, 22px);
}

.alt-feature-media {
  min-height: clamp(420px, 48vw, 680px);
}

.alt-feature-reverse {
  background: var(--olive);
}

.alt-feature-reverse p:not(.kicker) {
  color: var(--muted);
}

.alt-feature-location {
  background: #e8e2d6;
}

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

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
  color: var(--muted);
}

.contact-list a:hover {
  color: var(--wine);
}

.booking-form {
  padding: clamp(24px, 4vw, 46px);
  background: var(--paper-deep);
  box-shadow: var(--shadow);
}

.form-control,
.form-select {
  min-height: 56px;
  border: 0;
  border-bottom: 1px solid rgba(30, 28, 24, 0.28);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--wine);
  box-shadow: none;
  background: transparent;
}

.privacy-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  cursor: pointer;
}

.privacy-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: #64674e;
}

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

.site-footer {
  padding: 54px 0 34px;
  color: #111111;
  background: #ffffff;
  border-top: 1px solid #e4e4e4;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 34px;
  border-bottom: 1px solid #e4e4e4;
}

.footer-top img {
  width: 132px;
  filter: none;
}

.footer-top nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer p {
  margin-top: 24px;
  color: #666666;
  font-size: 13px;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 28px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.footer-legal p {
  margin: 0;
}

.footer-legal a {
  color: inherit;
  transition: opacity 220ms ease;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  opacity: 0.58;
}

.page-hero {
  position: relative;
  min-height: clamp(520px, 72svh, 780px);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 160px 0 86px;
  color: var(--white);
  background: var(--ink);
}

.page-hero .placeholder-media {
  position: absolute;
  inset: 0;
  min-height: 100%;
  opacity: 0.44;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(30, 28, 24, 0.84), rgba(30, 28, 24, 0.2)),
    linear-gradient(180deg, rgba(30, 28, 24, 0.22), rgba(30, 28, 24, 0.72));
}

.page-hero .container-xl {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  max-width: 880px;
}

.page-hero p:not(.kicker) {
  max-width: 680px;
  margin-top: 24px;
  color: rgba(251, 250, 246, 0.82);
  font-size: clamp(18px, 2vw, 22px);
}

.page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 38px;
}

.page-nav a {
  color: rgba(251, 250, 246, 0.78);
  font-size: 20px;
  transition: color 220ms ease;
}

.page-nav a:hover {
  color: var(--gold);
}

.content-band {
  background: var(--paper);
}

.content-band.alt {
  background: var(--paper-deep);
}

.editorial-copy p {
  margin-top: 22px;
  color: var(--muted);
}

.story-slideshow {
  position: relative;
  min-height: clamp(560px, 68vw, 880px);
  overflow: hidden;
  background: var(--stone);
}

.story-slideshow > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 700ms ease, transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.story-slideshow > img.is-active {
  opacity: 1;
  transform: scale(1);
}

.story-static-image {
  min-height: clamp(560px, 68vw, 880px);
  margin: 0;
  overflow: hidden;
  background: var(--stone);
}

.story-static-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.story-slideshow-controls {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.story-slideshow-controls button {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.82);
  color: var(--white);
  background: rgba(20, 18, 16, 0.28);
  backdrop-filter: blur(5px);
  font-size: 21px;
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease;
}

.story-slideshow-controls button:hover,
.story-slideshow-controls button:focus-visible {
  color: var(--olive);
  background: var(--white);
}

.film-location-intro {
  color: var(--white);
  background: #64674e;
}

.film-location-intro > .row {
  --bs-gutter-x: 0;
  margin: 0;
}

.film-location-intro > .row > div {
  padding: 0;
}

.film-location-slideshow {
  height: 100%;
  min-height: 100%;
}

.film-location-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  padding: clamp(72px, 8vw, 120px) var(--page-gutter) !important;
}

.film-location-copy .kicker {
  color: var(--white);
}

.film-location-copy > p:not(.kicker) {
  max-width: 760px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.68;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.gallery-grid .placeholder-media {
  min-height: 280px;
}

.gallery-grid .wide {
  grid-column: span 8;
}

.gallery-grid .small {
  grid-column: span 4;
}

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

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.service-list a {
  display: block;
  height: 100%;
}

.service-list article {
  position: relative;
  height: 100%;
  padding: 34px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(30, 28, 24, 0.08);
  transition: background 260ms ease, border-color 260ms ease;
}

.service-list a:hover article {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(100, 103, 78, 0.32);
}

.service-list h3 {
  font-size: 28px;
}

.service-list p {
  margin-top: 16px;
  color: var(--muted);
}

.service-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.film-service-list {
  margin-top: 0;
}

.film-service-list article {
  min-height: clamp(440px, 42vw, 620px);
  overflow: hidden;
  padding: 0;
  border: 0;
  color: var(--white);
  background: var(--ink);
}

.film-service-list article > img,
.film-service-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.film-service-list article > img {
  object-fit: cover;
  transition: transform 850ms cubic-bezier(0.22, 1, 0.36, 1), filter 500ms ease;
}

.film-service-scrim {
  background: linear-gradient(0deg, rgba(17, 15, 13, 0.86), rgba(17, 15, 13, 0.02) 72%);
}

.film-service-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: clamp(26px, 3vw, 42px);
}

.film-service-list h3 {
  font-size: clamp(30px, 3vw, 48px);
}

.film-service-list p {
  max-width: 380px;
  color: rgba(255, 255, 255, 0.82);
}

.film-service-list .service-link {
  color: var(--white);
}

.film-service-list a:hover article,
.film-service-list a:focus-visible article {
  background: var(--ink);
  border-color: transparent;
}

.film-service-list a:hover article > img,
.film-service-list a:focus-visible article > img {
  filter: brightness(0.82);
  transform: scale(1.055);
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.photo-gallery .placeholder-media {
  min-height: 260px;
}

.photo-gallery .gallery-large {
  grid-column: span 6;
  min-height: 440px;
}

.photo-gallery .gallery-medium {
  grid-column: span 4;
}

.photo-gallery .gallery-small {
  grid-column: span 3;
}

.store-cta {
  display: grid;
  gap: 24px;
  padding: clamp(34px, 5vw, 64px);
  color: var(--paper);
  background: var(--ink);
}

.store-cta p {
  max-width: 720px;
  color: rgba(251, 250, 246, 0.76);
}

.reveal,
.reveal-group > * {
  --reveal-delay: 0ms;
  position: relative;
  opacity: 0;
  clip-path: inset(0 42% 0 42%);
}

.reveal-pending {
  opacity: 0;
  clip-path: inset(0 42% 0 42%);
}

.reveal.is-visible,
.reveal-group.is-visible > * {
  animation: splitAppear 820ms cubic-bezier(0.76, 0, 0.24, 1) forwards;
  animation-delay: var(--reveal-delay);
}

.delay-1 {
  --reveal-delay: 140ms;
}

.reveal-group.is-visible > *:nth-child(2) {
  --reveal-delay: 90ms;
}

.reveal-group.is-visible > *:nth-child(3) {
  --reveal-delay: 180ms;
}

.reveal-group.is-visible > *:nth-child(4) {
  --reveal-delay: 270ms;
}

.reveal-group.is-visible > *:nth-child(5) {
  --reveal-delay: 360ms;
}

.reveal-group.is-visible > *:nth-child(6) {
  --reveal-delay: 450ms;
}

@keyframes splitAppear {
  0% {
    opacity: 0;
    clip-path: inset(0 42% 0 42%);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

.media-reveal {
  will-change: transform, opacity;
}

:where(
  .placeholder-media,
  .location-photo-section,
  .home-gallery-track,
  .legacy-visual,
  .brand-home-section,
  .story-slideshow,
  .garden-slideshow,
  .film-production-video-section,
  .production-slideshow
) {
  opacity: 0;
}

:where(
  .placeholder-media,
  .location-photo-section,
  .home-gallery-track,
  .legacy-visual,
  .brand-home-section,
  .story-slideshow,
  .garden-slideshow,
  .film-production-video-section,
  .production-slideshow
).is-visible {
  opacity: 1;
}

.media-reveal.reveal-pending {
  opacity: 0;
  clip-path: none;
}

.media-reveal-up.reveal-pending {
  transform: translateY(52px);
}

.media-reveal-down.reveal-pending {
  transform: translateY(-52px);
}

.media-reveal-up.is-visible {
  animation: mediaRevealUp 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.media-reveal-down.is-visible {
  animation: mediaRevealDown 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes mediaRevealUp {
  from {
    opacity: 0;
    transform: translateY(52px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mediaRevealDown {
  from {
    opacity: 0;
    transform: translateY(-52px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes estateCurtainReveal {
  from {
    transform: scaleY(1);
  }
  to {
    transform: scaleY(0);
  }
}

@keyframes estateVideoSettle {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1);
  }
}

@keyframes estateCopyReveal {
  from {
    opacity: 0;
    transform: translateY(44px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollLine {
  0% {
    transform: translateY(-26px);
  }
  100% {
    transform: translateY(68px);
  }
}

@keyframes parallaxDrift {
  0% {
    transform: scale(1.12) translate3d(0, -2%, 0);
  }
  100% {
    transform: scale(1.18) translate3d(0, 2%, 0);
  }
}

@media (max-width: 991.98px) {
  .site-header {
    min-height: 86px;
    padding: 18px 20px;
  }

  .container-xl > .row {
    --bs-gutter-x: 0;
  }

  .site-header .book-link {
    min-width: 150px;
    height: 48px;
    min-height: 42px;
    padding: 0 15px;
    font-size: 11px;
  }

  .language-switch {
    display: none;
  }

  .brand {
    width: 161px;
  }

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

  .experience-grid a {
    min-height: 150px;
  }

  .home-gallery-track {
    grid-auto-columns: calc((100% - 20px) / 2);
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .photo-gallery .gallery-large,
  .photo-gallery .gallery-medium,
  .photo-gallery .gallery-small {
    grid-column: 1 / -1;
  }

  .gallery-grid .wide,
  .gallery-grid .small,
  .gallery-grid .half {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767.98px) {
  :root {
    --page-gutter: 22px;
  }

  body {
    font-size: 15px;
  }

  .container-xl {
    padding-right: 22px;
    padding-left: 22px;
  }

  .container-xl > .row {
    --bs-gutter-x: 0;
  }

  .section-pad {
    padding: 72px 0;
  }

  .site-header {
    grid-template-columns: 1fr auto 1fr;
    column-gap: clamp(10px, 3vw, 18px);
    padding-right: 12px;
    padding-left: 12px;
  }

  .brand {
    justify-self: center;
    width: 180px;
  }

  .site-header .book-link {
    min-width: 108px;
    height: 40px;
    min-height: 40px;
    padding: 0 10px;
  }

  .burger {
    width: 40px;
  }

  .burger span:nth-child(1) {
    width: 30px;
  }

  .burger span:nth-child(2) {
    width: 22px;
  }

  .burger span:nth-child(3) {
    width: 34px;
  }

  .burger.is-active span:nth-child(1),
  .burger.is-active span:nth-child(3),
  .burger.is-active:hover span:nth-child(1),
  .burger.is-active:hover span:nth-child(3),
  .burger.is-active:focus-visible span:nth-child(1),
  .burger.is-active:focus-visible span:nth-child(3) {
    width: 30px;
    margin-left: 5px;
  }

  .hero-center p {
    letter-spacing: 0.1em;
  }

  .estate-video-section {
    min-height: 88svh;
    padding: 64px var(--page-gutter);
  }

  .estate-video-scrim {
    background:
      linear-gradient(0deg, rgba(15, 14, 12, 0.72), rgba(15, 14, 12, 0.08) 82%),
      linear-gradient(90deg, rgba(15, 14, 12, 0.3), transparent);
  }

  .estate-video-copy > p:not(.kicker) {
    max-width: 520px;
  }

  #estate .estate-slideshow {
    min-height: 72svh;
  }

  #estate .estate-copy {
    padding: 64px var(--page-gutter) !important;
  }

  .location-photo-section {
    min-height: 88svh;
    padding: 64px var(--page-gutter);
    background-position: center;
  }

  .location-photo-scrim {
    background:
      linear-gradient(0deg, rgba(15, 14, 12, 0.78), rgba(15, 14, 12, 0.12) 88%),
      linear-gradient(90deg, rgba(15, 14, 12, 0.25), transparent);
  }

  .legacy-visual {
    min-height: 88svh;
    padding: 64px var(--page-gutter);
  }

  .brand-home-section {
    min-height: 110svh;
    padding: 64px var(--page-gutter);
    background-image: url("../media/home/brand/brand-campaign-greenhouse.webp");
    background-position: center;
  }

  .brand-home-scrim {
    background:
      linear-gradient(0deg, rgba(15, 14, 12, 0.78), rgba(15, 14, 12, 0.12) 88%),
      linear-gradient(90deg, rgba(15, 14, 12, 0.25), transparent);
  }

  .guest-house-hero {
    min-height: 100svh;
    padding: 120px var(--page-gutter) 64px;
  }

  .guest-house-hero-scrim {
    background: none;
  }

  .garden-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .garden-slideshow {
    min-height: 68svh;
  }

  .film-location-slideshow {
    min-height: 72svh;
  }

  .film-location-copy {
    min-height: auto;
    padding: 64px var(--page-gutter) !important;
  }

  .page-hero {
    min-height: 560px;
    padding: 128px 0 64px;
  }

  .page-nav a {
    font-size: 18px;
  }

  .placeholder-media,
  .feature-card .placeholder-media,
  .destination-card .placeholder-media {
    min-height: 250px;
  }

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

  .experience-grid a {
    min-height: 118px;
    padding: 22px;
  }

  .home-gallery-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-gallery-track {
    grid-auto-columns: 84%;
    gap: 14px;
  }

  .gallery-lightbox {
    grid-template-columns: 1fr 1fr;
    align-content: center;
  }

  .gallery-lightbox img {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .gallery-lightbox-nav {
    grid-row: 2;
    margin-top: 12px;
  }

  .gallery-lightbox-next {
    justify-self: end;
  }

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

  .duo-media {
    grid-template-columns: 1fr;
  }

  .duo-media .placeholder-media:first-child,
  .duo-media .placeholder-media:last-child {
    min-height: 260px;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-top nav {
    justify-content: flex-start;
  }
}

@media (max-width: 430px) {
  .site-header .book-link {
    min-width: clamp(86px, 24vw, 94px);
    height: 36px;
    min-height: 36px;
    padding: 0 8px;
    font-size: 10px;
  }

  .brand {
    width: 180px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal-group > *,
  .estate-video-section,
  .estate-video-section::after,
  .estate-video,
  .estate-video-copy {
    opacity: 1;
    clip-path: none;
    transform: none;
    filter: none;
  }

  .media-reveal {
    opacity: 1;
    transform: none;
  }

  :where(
    .placeholder-media,
    .location-photo-section,
    .home-gallery-track,
    .legacy-visual,
    .brand-home-section,
    .story-slideshow,
    .garden-slideshow,
    .film-production-video-section,
    .production-slideshow
  ) {
    opacity: 1;
  }
}

/* 2026 client review refinements */
.welcome-section h1,
.estate-video-copy h2,
.location-photo-copy h2,
.home-gallery-heading h2,
.legacy-caption h2,
.brand-home-copy h2 {
  font-size: clamp(28px, 3.5vw, 50px);
}

.welcome-section h1 {
  font-size: clamp(28px, 3.5vw, 50px);
}

.split-story p,
.farm-section p,
.booking-section p,
.editorial-copy p,
.film-location-copy > p:not(.kicker),
.page-hero p:not(.kicker) {
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 300;
}

.brand-home-copy h2 {
  max-width: 760px;
}

.story-page-hero,
.film-page-hero {
  min-height: 88svh;
}

.story-page-hero .placeholder-media,
.film-page-hero .placeholder-media {
  opacity: 0.82;
}

.story-page-hero::after,
.film-page-hero::after {
  background:
    linear-gradient(90deg, rgba(25, 23, 20, 0.58), rgba(25, 23, 20, 0.05) 76%),
    linear-gradient(0deg, rgba(25, 23, 20, 0.42), transparent 60%);
}

.story-page-hero .kicker,
.film-page-hero .kicker {
  color: var(--white);
}

.story-page-hero .placeholder-media img,
.film-page-hero .placeholder-media img {
  object-position: center;
}

.story-page-hero .container-xl,
.film-page-hero .container-xl {
  padding-bottom: clamp(10px, 2vw, 28px);
}

.story-page-hero + .content-band {
  background: var(--white);
}

.story-full-carousel-section {
  width: 100%;
  overflow: hidden;
  background: var(--ink);
}

.story-full-carousel {
  position: relative;
  width: 100%;
  height: 92svh;
  min-height: 680px;
  overflow: hidden;
}

.story-full-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  will-change: transform;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.story-full-carousel-track > img {
  flex: 0 0 33.333333%;
  width: 33.333333%;
  height: 100%;
  object-fit: cover;
  border-right: 2px solid rgba(255, 255, 255, 0.28);
}

.story-full-carousel .is-lightbox-clickable {
  pointer-events: auto;
}

.story-full-carousel-controls {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.story-full-carousel-controls button {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.82);
  color: var(--white);
  background: rgba(20, 18, 16, 0.28);
  backdrop-filter: blur(5px);
  font-size: 21px;
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease;
}

.story-full-carousel-controls button:hover,
.story-full-carousel-controls button:focus-visible {
  color: var(--olive);
  background: var(--white);
}

.story-final-video {
  width: 100%;
  min-height: 92svh;
  overflow: hidden;
  background: var(--ink);
}

.story-final-video video {
  width: 100%;
  height: 92svh;
  object-fit: cover;
}

.estate-gallery-section {
  width: 100%;
  min-height: 92svh;
  overflow: hidden;
  background: var(--ink);
}

.estate-gallery-section .estate-slideshow {
  width: 100%;
  min-height: 92svh;
}

.estate-gallery-section .estate-slideshow > img {
  inset: 0 auto 0 0;
  left: 100%;
  width: 50%;
  object-fit: cover;
  transform: none;
  transition: left 800ms cubic-bezier(0.65, 0, 0.35, 1), opacity 280ms ease;
}

.estate-gallery-section .estate-slideshow > img.is-active {
  left: 0;
  opacity: 1;
}

.estate-gallery-section .estate-slideshow > img.is-companion {
  left: 50%;
  opacity: 1;
}

.estate-gallery-section .estate-slideshow > img.is-off-left {
  left: -50%;
  opacity: 1;
}

.film-location-slideshow > img {
  inset: 0 auto 0 0;
  left: 100%;
  width: 50%;
  transform: none;
  transition: left 800ms cubic-bezier(0.65, 0, 0.35, 1), opacity 280ms ease;
}

.film-location-slideshow > img.is-active {
  left: 0;
  opacity: 1;
}

.film-location-slideshow > img.is-companion {
  left: 50%;
  opacity: 1;
}

.film-location-slideshow > img.is-off-left {
  left: -50%;
  opacity: 1;
}

.floor-plans-section {
  color: var(--ink);
  background: var(--white);
}

.floor-plans-section .section-heading {
  max-width: 760px;
  margin-bottom: clamp(42px, 6vw, 82px);
}

.floor-plans-section .section-heading > p:last-child {
  max-width: 620px;
  margin-top: 20px;
  color: var(--muted);
  font-weight: 300;
}

.floor-plans-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 64px);
}

.floor-plan-card a {
  display: block;
  padding: clamp(18px, 3vw, 44px);
  background: var(--paper-deep);
}

.floor-plan-lightbox-trigger {
  cursor: zoom-in;
}

.floor-plan-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1455 / 1280;
  object-fit: contain;
  transition: transform 350ms ease;
}

.floor-plan-card a:hover img,
.floor-plan-card a:focus-visible img {
  transform: scale(1.018);
}

.floor-plan-card h3 {
  margin: 22px 0 0;
  font-size: clamp(22px, 2.2vw, 32px);
}

#interiors,
.farm-section,
.booking-section {
  background: var(--white);
}

.farm-focus-image {
  min-height: clamp(480px, 58vw, 760px);
}

.booking-form {
  background: var(--white);
  border-right: 0;
  border-left: 0;
  box-shadow: none;
}

.garden-section {
  position: relative;
  min-height: 100svh;
  padding: 0;
  color: var(--white);
  background: var(--ink);
}

.garden-inner {
  position: relative;
  width: 100%;
  padding: 0;
}

.garden-heading {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: block;
  margin: 0;
  pointer-events: none;
}

.garden-heading > div:first-child {
  position: absolute;
  right: var(--page-gutter);
  bottom: clamp(34px, 5vw, 72px);
  text-align: right;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.garden-heading h2 {
  font-size: clamp(30px, 4vw, 54px);
}

.garden-controls {
  position: absolute;
  top: clamp(120px, 12vw, 170px);
  right: var(--page-gutter);
  pointer-events: auto;
}

.garden-slideshow {
  min-height: 100svh;
}

.garden-slideshow::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(20, 18, 16, 0.38), transparent 45%);
}

.film-text-break {
  color: var(--ink);
  background: var(--white);
}

.film-text-break h2 {
  max-width: 900px;
  margin: 0 auto;
}

.film-text-break > .container-xl > p:not(.kicker) {
  max-width: 760px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 300;
}

.film-production-video-section {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  background: var(--ink);
}

.film-production-video-section video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.film-production-video-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(20, 18, 16, 0.72), transparent 68%),
    linear-gradient(90deg, rgba(20, 18, 16, 0.42), transparent 64%);
  pointer-events: none;
}

.film-production-video-copy {
  position: absolute;
  left: var(--page-gutter);
  bottom: clamp(54px, 8vw, 112px);
  z-index: 2;
  max-width: 850px;
  color: var(--white);
}

.film-production-video-copy h2 {
  max-width: 800px;
  font-size: clamp(30px, 4vw, 54px);
}

.film-production-video-copy p {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 300;
  line-height: 1.7;
}

.production-gallery-section,
.production-slideshow {
  position: relative;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
}

.production-slideshow > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 700ms ease, transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.production-slideshow > img.is-active {
  opacity: 1;
  transform: scale(1);
}

.production-slideshow-controls {
  position: absolute;
  right: var(--page-gutter);
  bottom: clamp(32px, 5vw, 68px);
  z-index: 2;
  display: flex;
  gap: 10px;
}

.production-slideshow-controls button {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.78);
  color: var(--white);
  background: rgba(20, 18, 16, 0.24);
  font-size: 22px;
  cursor: pointer;
}

.contacts-page {
  background: var(--white);
}

.contacts-page .site-header {
  color: var(--ink);
  background: var(--white);
  border-bottom: 1px solid #e7e7e4;
}

.contacts-page .brand {
  grid-column: 2;
  filter: none;
}

.contacts-page .header-actions {
  grid-column: 3;
}

.contacts-page .site-header .book-link {
  border-color: rgba(30, 28, 24, 0.45);
}

.contacts-page .burger span,
.contacts-page .language-switch span {
  background: var(--ink);
}

.contacts-page .booking-section {
  padding-top: clamp(160px, 16vw, 220px);
}

.privacy-section {
  padding-top: clamp(170px, 16vw, 230px);
  color: var(--ink);
  background: var(--white);
}

.privacy-heading {
  max-width: 920px;
  margin-bottom: clamp(52px, 7vw, 94px);
}

.privacy-heading h1 {
  max-width: none;
  margin-top: 14px;
  font-size: clamp(28px, 3.5vw, 50px);
}

.privacy-content {
  width: 100%;
  max-width: none;
}

.privacy-content p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: clamp(15px, 1.15vw, 17px);
  font-weight: 300;
  line-height: 1.78;
}

.privacy-content p > strong:first-child,
.privacy-content p > b:first-child {
  color: var(--ink);
  font-weight: 600;
}

.privacy-content a {
  color: #64674e;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.privacy-consent a {
  color: #64674e;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.thank-you-section {
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: clamp(170px, 16vw, 230px) var(--page-gutter) 90px;
  text-align: center;
  background: var(--white);
}

.thank-you-content {
  max-width: 820px;
}

.thank-you-check {
  width: clamp(82px, 9vw, 112px);
  margin: 0 auto 38px;
  color: #64674e;
}

.thank-you-check svg {
  display: block;
  width: 100%;
  overflow: visible;
}

.thank-you-check circle,
.thank-you-check path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thank-you-check circle {
  stroke-dasharray: 271;
  stroke-dashoffset: 271;
  animation: checkCircleDraw 900ms cubic-bezier(0.65, 0, 0.35, 1) 180ms forwards;
}

.thank-you-check path {
  stroke-dasharray: 58;
  stroke-dashoffset: 58;
  animation: checkMarkDraw 520ms cubic-bezier(0.22, 1, 0.36, 1) 920ms forwards;
}

.thank-you-content h1 {
  margin-top: 14px;
}

.thank-you-content > p:not(.kicker) {
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 300;
}

.thank-you-content .outline-link {
  margin: 38px auto 0;
  color: var(--ink);
}

.error-page {
  overflow: hidden;
  color: var(--white);
  background: #181714;
}

.error-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: 140px var(--page-gutter) 70px;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}

.error-hero-media,
.error-hero-shade {
  position: absolute;
  inset: 0;
}

.error-hero-media {
  z-index: -2;
  background: url("../media/roots-and-memories/hero/villa-niccolai-heritage-entrance.webp") center 46% / cover no-repeat;
  transform: scale(1.03);
  animation: errorImageDrift 16s ease-in-out infinite alternate;
}

.error-hero-shade {
  z-index: -1;
  background: linear-gradient(180deg, rgba(18, 17, 14, 0.42), rgba(18, 17, 14, 0.66));
}

.error-content {
  width: min(760px, 100%);
}

.error-code {
  margin: 0 0 -18px;
  color: rgba(255, 255, 255, 0.2);
  font-family: var(--font-display);
  font-size: clamp(118px, 22vw, 260px);
  font-weight: 400;
  line-height: 0.76;
  letter-spacing: -0.06em;
}

.error-content h1 {
  margin: 18px auto 0;
  max-width: 720px;
}

.error-content > p:not(.kicker):not(.error-code) {
  max-width: 620px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 300;
  line-height: 1.7;
}

.error-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  margin-top: 38px;
}

.error-actions .outline-link {
  color: var(--white);
}

.error-actions .text-link {
  color: var(--white);
}

@keyframes errorImageDrift {
  to { transform: scale(1.1) translate3d(0, -1.2%, 0); }
}

@media (max-width: 767px) {
  .error-hero {
    padding: 126px 24px 54px;
  }

  .error-code {
    margin-bottom: -8px;
    font-size: clamp(104px, 39vw, 152px);
  }

  .error-actions {
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
  }

  .error-actions .outline-link {
    min-width: 176px;
  }
}

@keyframes checkCircleDraw {
  to { stroke-dashoffset: 0; }
}

@keyframes checkMarkDraw {
  to { stroke-dashoffset: 0; }
}

@media (max-width: 767px) {
  .kicker {
    display: none;
  }

  .site-header .language-switch {
    position: absolute;
    top: 50%;
    left: 18px;
    display: flex;
    transform: translateY(-50%);
    gap: 7px;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.06em;
  }

  .site-header .book-link {
    display: none;
  }

  .site-header .brand {
    grid-column: 2;
  }

  .site-header .header-actions {
    grid-column: 3;
  }

  .hero-center-payoff {
    transform: translateY(20vh);
  }

  .estate-gallery-section,
  .estate-gallery-section .estate-slideshow,
  .story-full-carousel,
  .story-final-video,
  .story-final-video video,
  .production-gallery-section,
  .production-slideshow {
    min-height: 78svh;
    height: 78svh;
  }

  .story-full-carousel {
    min-height: 560px;
  }

  .story-full-carousel-track > img {
    flex-basis: 100%;
    width: 100%;
    border-right: 0;
  }

  .story-full-carousel-controls {
    right: 18px;
    bottom: 18px;
  }

  .estate-gallery-section .estate-slideshow > img {
    left: 100%;
    width: 100%;
  }

  .film-production-video-section {
    height: 100svh;
    min-height: 0;
  }

  .film-production-video-copy {
    right: var(--page-gutter);
    bottom: 46px;
  }

  .estate-gallery-section .estate-slideshow > img.is-active {
    left: 0;
  }

  .estate-gallery-section .estate-slideshow > img.is-companion {
    left: 100%;
    opacity: 0;
  }


  .estate-gallery-section .estate-slideshow > img.is-off-left {
    left: -100%;
  }

  .film-location-slideshow > img {
    left: 100%;
    width: 100%;
  }

  .film-location-slideshow > img.is-active {
    left: 0;
  }

  .film-location-slideshow > img.is-companion {
    opacity: 0;
  }

  .film-location-slideshow > img.is-off-left {
    left: -100%;
  }

  .garden-controls {
    top: 116px;
  }

  .garden-heading > div:first-child {
    bottom: 28px;
  }

  .booking-form {
    padding-right: 0;
    padding-left: 0;
  }

  .booking-form .form-control {
    padding-right: 0;
    padding-left: 0;
  }

  .booking-form .form-select {
    padding-left: 0;
  }

  .booking-form .date-field label {
    left: 0;
  }

  .site-footer {
    text-align: center;
  }

  .site-footer .footer-top {
    align-items: center;
  }

  .site-footer .footer-top img {
    margin-right: auto;
    margin-left: auto;
  }

  .site-footer .footer-top nav {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .site-footer .footer-legal {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .site-footer .footer-legal p {
    width: 100%;
  }

  .floor-plans-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

/* One consistent typographic treatment for descriptive copy across visual/content blocks. */
.lead-copy,
.estate-video-copy > p:not(.kicker),
.location-photo-copy > p:not(.kicker),
.legacy-caption .legacy-copy,
.brand-home-copy > p:not(.kicker),
.guest-house-hero-copy > p:not(.kicker),
.editorial-copy > p:not(.kicker),
.film-location-copy > p:not(.kicker),
.page-hero p:not(.kicker),
.film-text-break > .container-xl > p:not(.kicker),
.film-production-video-copy p,
.garden-description {
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 300;
  line-height: 1.68;
}

/* One consistent overlay for every full-width photo and video with superimposed copy. */
.estate-video-scrim,
.location-photo-scrim,
.legacy-scrim,
.brand-home-scrim,
.page-hero::after,
.film-service-scrim,
.film-production-video-scrim {
  background: var(--media-overlay);
}

.brand-home-section .brand-home-scrim {
  background:
    linear-gradient(90deg, rgba(20, 18, 16, 0.38), rgba(20, 18, 16, 0.06) 76%),
    linear-gradient(0deg, rgba(20, 18, 16, 0.44), rgba(20, 18, 16, 0.06) 68%);
}

.page-hero,
.story-page-hero,
.film-page-hero,
.guest-house-hero {
  min-height: 100svh;
}

@media (min-width: 768px) {
  h1,
  h2,
  .welcome-section h1,
  .privacy-heading h1,
  .estate-video-copy h2,
  .location-photo-copy h2,
  .home-gallery-heading h2,
  .legacy-caption h2,
  .brand-home-copy h2,
  .garden-heading h2,
  .film-production-video-copy h2 {
    font-size: clamp(27px, 3.2vw, 40px);
  }

  .estate-video-section .estate-video-copy h2 {
    font-size: clamp(27px, 3.2vw, 40px);
  }

}

.desktop-title-break {
  display: none;
}

.scroll-top-button {
  position: fixed;
  right: clamp(18px, 2.4vw, 34px);
  bottom: clamp(18px, 2.4vw, 34px);
  z-index: 42;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 28px rgba(30, 28, 24, 0.1);
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transform: translateY(12px);
  transition: opacity 240ms ease, visibility 240ms ease, transform 240ms ease, background-color 240ms ease;
}

.scroll-top-button span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
  transform: translate(-50%, -30%) rotate(45deg);
}

.scroll-top-button.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-button:hover,
.scroll-top-button:focus-visible {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-3px);
}

@media (min-width: 768px) {
  .desktop-title-break {
    display: inline;
  }
}
