/* Local fonts */
@font-face {
  font-family: "Inter";
  src: url("/fonts/InterVariable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/InterVariable-Italic.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("/fonts/PlayfairDisplay-VariableFont_wght.ttf") format("truetype");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("/fonts/PlayfairDisplay-Italic-VariableFont_wght.ttf") format("truetype");
  font-weight: 400 900;
  font-style: italic;
  font-display: swap;
}

:root{
  --cp-ink:#111;
  --cp-muted:#6b7280;
  --cp-paper:#fff;
  --cp-sand:#f6f3ee;
  --cp-line:rgba(17,17,17,.12);
  --cp-accent:#1F5E79;
}

html, body { height: 100%; }

body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--cp-ink);
  background: var(--cp-paper);
}

h1, h2, h3, .display-font{
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: .2px;
}

/* Site loading overlay */
body.is-loading {
  overflow: hidden;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background: #f7f3ec;
  color: #1F5E79;
  transition: opacity 350ms ease, visibility 350ms ease;
}

body:not(.is-loading) .site-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loader-card {
  width: min(90vw, 420px);
  padding: 32px 28px;
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(31, 94, 121, 0.18);
  border-radius: 24px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.12);
}

.site-loader-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  line-height: 1.08;
  margin-bottom: 10px;
}

.site-loader-title span {
  display: block;
}

.site-loader-text {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: rgba(31, 94, 121, 0.78);
  margin-bottom: 22px;
}

.site-loader-logo {
  display: block;
  width: min(260px, 78vw);
  height: auto;
  margin: 0 auto 14px;
}

.site-loader-spinner {
  width: 34px;
  height: 34px;
  margin: 0 auto;
  border: 3px solid rgba(31, 94, 121, 0.18);
  border-top-color: #1F5E79;
  border-radius: 50%;
  animation: siteLoaderSpin 800ms linear infinite;
}

@keyframes siteLoaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-loader,
  .site-loader-spinner {
    transition: none;
    animation: none;
  }
}

/* Navbar */
.nav-link{
  color: rgba(255,255,255,.96) !important;
  font-weight: 500;
  text-shadow: 0 1px 8px rgba(0,0,0,.45);
}

.nav-link:hover,
.nav-link:focus{
  color: #1F5E79 !important;
}

.navbar.is-scrolled .nav-link{
  color: rgba(17,17,17,.85) !important;
  text-shadow: none;
}

.navbar.is-scrolled .nav-link:hover,
.navbar.is-scrolled .nav-link:focus{
  color: #1F5E79 !important;
}

/* Mobile hamburger button */
.navbar-toggler{
  border-color: #1F5E79 !important;
  background: transparent;
  border-width: 2px;
}

.navbar-toggler:focus{
  box-shadow: 0 0 0 .2rem rgba(31,94,121,.25);
}

.navbar-toggler-icon{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%231F5E79' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

/* Logo */
.site-logo{
  height: 150px;
  width: auto;
  display: block;
  transition: opacity 1.1s ease, transform 1.1s ease;
}

/* Hide logo after the hero section has passed */
.navbar .navbar-brand{
  max-width: 260px;
  max-height: 170px;
  transition:
    opacity 1.1s ease,
    max-width 250ms ease,
    max-height 250ms ease,
    margin 250ms ease,
    padding 250ms ease;
  overflow: hidden;
}

.navbar.is-past-hero .navbar-brand{
  width: 0;
  margin: 0 !important;
  opacity: 0;
  pointer-events: none;
}

.navbar.is-past-hero .site-logo{
  opacity: 0;
  transform: translateY(-8px);
}

/* Hero */
.hero{
  min-height: 92vh;
  position: relative;
  overflow: hidden;
  background: #000;
}

.hero .overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.45),
    rgba(0,0,0,.25) 45%,
    rgba(0,0,0,.55)
  );
  pointer-events:none;
  z-index: 2;
}

/* Two-layer background for smooth crossfade */
.hero-bg{
  position:absolute;
  inset:0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  z-index: 1;
  opacity: 1;
  transition: opacity 1.2s ease;
  will-change: opacity;
}

.hero-bg.is-hidden{ opacity: 0; }

.hero-content{
  position: relative;
  z-index: 3;
  color: #fff;
  padding-top: 190px !important;
}

.hero-kicker{
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .78rem;
  opacity: .9;
}

.hero-title{
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  line-height: 1.05;
}

.hero-subtitle{
  max-width: 46rem;
  color: rgba(255,255,255,.86);
  font-size: 1.05rem;
}

/* Buttons */
.btn-accent{
  background: var(--cp-accent);
  border-color: var(--cp-accent);
  color: #fff !important;
}

.btn-accent:hover,
.btn-accent:focus{
  background: #17485d;
  border-color: #17485d;
  color: #fff !important;
}

/* Section styles */
.section{
  padding: 5.5rem 0;
}

.section.alt{
  background: var(--cp-sand);
}

.eyebrow{
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .78rem;
  color: var(--cp-muted);
}

.lead-muted{
  color: rgba(17,17,17,.72);
  max-width: 52rem;
}

/* Cards */
.cp-card{
  border: 1px solid var(--cp-line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 40px rgba(0,0,0,.06);
  height: 100%;
}

.cp-card img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display:block;
}

.cp-card .body{
  padding: 1.25rem 1.25rem 1.35rem;
}

.cp-meta{
  color: var(--cp-muted);
  font-size: .95rem;
}

.garden-intro{
  background: #fff;
}

.garden-image-wrap{
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--cp-line);
  box-shadow: 0 18px 45px rgba(0,0,0,.10);
  background: #fff;
}

.garden-image-wrap img{
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.availability-card{
  border-color: var(--cp-line) !important;
  background: var(--cp-sand);
}

.booking-section{
  background: #fff;
}

.booking-panel{
  border-color: var(--cp-line) !important;
  background: var(--cp-sand);
  box-shadow: 0 18px 45px rgba(0,0,0,.06);
}

.booking-note{
  background: var(--cp-sand);
  border: 1px solid var(--cp-line);
}

.booking-form .form-control,
.booking-form .form-select{
  border-radius: 12px;
  border-color: rgba(17,17,17,.18);
  padding: .75rem .9rem;
}

.booking-form .form-control:focus,
.booking-form .form-select:focus{
  border-color: #1F5E79;
  box-shadow: 0 0 0 .2rem rgba(31,94,121,.15);
}

.booking-result{
  border-radius: 12px;
  padding: .85rem 1rem;
  font-size: .95rem;
}

.booking-result.is-success{
  background: rgba(31,94,121,.10);
  color: #1F5E79;
  border: 1px solid rgba(31,94,121,.25);
}

.booking-result.is-error{
  background: rgba(180,40,40,.08);
  color: #842029;
  border: 1px solid rgba(180,40,40,.25);
}

@media (max-width: 991.98px){
  .garden-image-wrap img{
    height: 320px;
  }
}

/* Gallery */
.gallery img{
  border-radius: 16px;
  width: 100%;
  height: 240px;
  object-fit: cover;
  border: 1px solid var(--cp-line);
}

.garden-intro{
  background: #fff;
}

.garden-image-wrap{
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--cp-line);
  box-shadow: 0 18px 45px rgba(0,0,0,.10);
  background: #fff;
}

.garden-image-wrap img{
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.availability-card{
  border-color: var(--cp-line) !important;
  background: var(--cp-sand);
}

.availability-card .btn-accent{
  color: #fff !important;
}

@media (max-width: 991.98px){
  .garden-image-wrap img{
    height: 320px;
  }
}

/* Footer */
footer{
  background: #0f172a;
  color: rgba(255,255,255,.85);
}

footer a{ color: rgba(255,255,255,.85); }
footer a:hover{ color: #fff; }

/* Small touches */
.divider{
  height:1px;
  background: var(--cp-line);
}

/* Mobile rule */
@media (max-width: 991.98px){
  .site-logo{
    height: 110px;
  }

  .hero-content{
    padding-top: 165px !important;
  }

  .navbar-collapse{
    background: rgba(15,23,42,.94);
    padding: 1rem;
    border-radius: 14px;
    margin-top: .75rem;
  }

  .navbar.is-scrolled .navbar-collapse{
    background: rgba(255,255,255,.96);
  }
}

/* Desktop navbar: transparent over hero, glass-white after hero */
.navbar {
  transition:
    background-color 350ms ease,
    box-shadow 350ms ease,
    padding 250ms ease,
    backdrop-filter 350ms ease;
}

@media (min-width: 992px) {
  .navbar {
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
  }

  .navbar .container {
    align-items: flex-start;
  }

  .navbar .navbar-collapse {
    justify-content: flex-end;
  }

  .navbar .navbar-nav {
    margin-left: auto;
  }

  /* Keep the desktop menu white while still over the hero */
  .navbar.is-scrolled:not(.is-past-hero) {
    background-color: transparent !important;
    box-shadow: none;
  }

  .navbar.is-scrolled:not(.is-past-hero) .nav-link {
    color: rgba(255,255,255,.96) !important;
    text-shadow: 0 1px 8px rgba(0,0,0,.45);
  }

  .navbar.is-scrolled:not(.is-past-hero) .nav-link:hover,
  .navbar.is-scrolled:not(.is-past-hero) .nav-link:focus {
    color: #1F5E79 !important;
  }

  /* Fade in the white transparent navbar after the hero */
  .navbar.is-past-hero {
    background-color: rgba(255,255,255,.86) !important;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 26px rgba(0,0,0,.08);
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
  }

  .navbar.is-past-hero .container {
    align-items: center;
    justify-content: flex-end;
  }

  /* Fully collapse the logo space after the hero */
  .navbar.is-past-hero .navbar-brand {
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
  }

  .navbar.is-past-hero .site-logo {
    opacity: 0;
    transform: translateY(-8px);
  }

  .navbar.is-past-hero .navbar-collapse {
    flex-grow: 0;
  }

  .navbar.is-past-hero .nav-link {
    color: rgba(17,17,17,.88) !important;
    text-shadow: none;
  }

  .navbar.is-past-hero .nav-link:hover,
  .navbar.is-past-hero .nav-link:focus {
    color: #1F5E79 !important;
  }

  .navbar.is-past-hero .btn-accent {
    color: #fff !important;
  }
}

/* Fade logo first, then collapse its space */
@media (min-width: 992px) {
  .navbar.is-logo-faded .site-logo {
    opacity: 0;
    transform: translateY(-8px);
    transition:
      opacity 1.1s ease,
      transform 1.1s ease;
  }

  .navbar.is-logo-faded .navbar-brand {
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 1.1s ease,
      max-width 0s linear 1.1s,
      max-height 0s linear 1.1s,
      margin 0s linear 1.1s,
      padding 0s linear 1.1s;
  }

  .navbar.is-logo-faded.is-past-hero .navbar-brand {
    max-width: 0 !important;
    max-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
  }
}

/* Mobile hamburger colour: white over hero, blue after hero */
.navbar-toggler {
  border-color: rgba(255,255,255,.92) !important;
  background: rgba(0,0,0,.08);
  border-width: 2px;
  transition:
    border-color 900ms ease,
    background-color 900ms ease,
    box-shadow 900ms ease;
}

.navbar-toggler-icon {
  background-image: none !important;
  position: relative;
  width: 1.55em;
  height: 1.55em;
  color: #fff;
  transition: color 900ms ease;
}

.navbar-toggler-icon::before {
  content: "";
  position: absolute;
  left: 0.14em;
  right: 0.14em;
  top: 0.34em;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  box-shadow:
    0 0.43em 0 currentColor,
    0 0.86em 0 currentColor;
}

/* Once below the hero, fade the hamburger back to brand blue */
.navbar.is-past-hero .navbar-toggler {
  border-color: #1F5E79 !important;
  background: transparent;
}

.navbar.is-past-hero .navbar-toggler-icon {
  color: #1F5E79;
}

/* Keep focus ring readable in both states */
.navbar-toggler:focus {
  box-shadow: 0 0 0 .2rem rgba(31,94,121,.25);
}

/* Smooth logo fade on mobile and desktop */
.navbar .site-logo {
  transition:
    opacity 1.1s ease,
    transform 1.1s ease;
}

.navbar .navbar-brand {
  width: auto !important;
  height: auto !important;
  max-width: 280px;
  max-height: 180px;
  opacity: 1;
  overflow: hidden;
  transition:
    opacity 1.1s ease,
    max-width 250ms ease,
    max-height 250ms ease,
    margin 250ms ease,
    padding 250ms ease;
}

/* Fade image first */
.navbar.is-logo-faded .site-logo,
.navbar.is-past-hero .site-logo {
  opacity: 0;
  transform: translateY(-8px);
}

/* Delay the wrapper collapse until after the fade */
.navbar.is-logo-faded .navbar-brand,
.navbar.is-past-hero .navbar-brand {
  width: auto !important;
  height: auto !important;
  max-width: 0 !important;
  max-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  transition:
    opacity 1.1s ease,
    max-width 0s linear 1.1s,
    max-height 0s linear 1.1s,
    margin 0s linear 1.1s,
    padding 0s linear 1.1s;
}

/* ==========================================================
   Chandelle Park booking/payment styles moved from index12.html
   Patch v9
   ========================================================== */

/* Payment modal, contact form and return-to-top styles */
.cp-payment-summary {
  background: #f6f3ee;
  border: 1px solid rgba(17,17,17,.12);
  border-radius: 16px;
  padding: 1rem;
}

.cp-payment-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .35rem 0;
  border-bottom: 1px solid rgba(17,17,17,.08);
}

.cp-payment-summary-row:last-child {
  border-bottom: 0;
}

.cp-payment-modal-header {
  background: #1F5E79;
  color: #fff;
}

.cp-payment-card-container {
  min-height: 90px;
  padding: 1rem;
  border: 1px solid rgba(17,17,17,.16);
  border-radius: 14px;
  background: #fff;
}

.cp-secure-note {
  color: rgba(17,17,17,.62);
  font-size: .92rem;
}

.cp-payment-error {
  border-radius: 12px;
  padding: .85rem 1rem;
  background: rgba(180,40,40,.08);
  color: #842029;
  border: 1px solid rgba(180,40,40,.25);
}

.cp-back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1040;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: #1F5E79;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 26px;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
}

.cp-back-to-top:hover,
.cp-back-to-top:focus {
  color: #fff;
  background: #17465b;
}

.cp-contact-panel {
  background: #fff;
  border: 1px solid var(--cp-line);
  border-radius: 18px;
  padding: 1.5rem;
}

@media (max-width: 575.98px) {
  .cp-back-to-top {
    right: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px;
    font-size: 24px;
  }
}

/* Experience section */
.experience-section .experience-card-row {
  align-items: stretch;
}

.experience-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--cp-line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0,0,0,.06);
}

.experience-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.experience-card-body {
  padding: 1.35rem 1.35rem 1.45rem;
}

.experience-kicker {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  color: var(--cp-muted);
  margin-bottom: .45rem;
}

.experience-card h3 {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: .65rem;
}

.experience-card p {
  color: rgba(17,17,17,.72);
  margin-bottom: .9rem;
}

.experience-meta {
  color: #1F5E79;
  font-size: .9rem;
  font-weight: 600;
}

/* Booking date-range calendar */
.cp-date-range-trigger {
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .9rem;
  text-align: left;
  border: 1px solid rgba(17,17,17,.18);
  border-radius: 12px;
  background: #fff;
  color: var(--cp-ink);
  padding: .72rem .9rem;
  line-height: 1.25;
}

.cp-date-range-trigger:hover,
.cp-date-range-trigger:focus {
  border-color: #1F5E79;
  box-shadow: 0 0 0 .2rem rgba(31,94,121,.15);
  outline: none;
}

.cp-date-range-trigger > span:not(.cp-date-arrow) {
  display: flex;
  flex-direction: column;
  gap: .16rem;
  min-width: 0;
}

.cp-date-range-trigger strong {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cp-muted);
}

#checkinDisplay,
#checkoutDisplay {
  display: block;
  color: var(--cp-ink);
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
}

.cp-date-arrow {
  flex: 0 0 auto;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: #1F5E79;
  font-size: 1.25rem;
  font-weight: 700;
}

.cp-booking-calendar {
  margin-top: .85rem;
  padding: 1rem;
  border: 1px solid var(--cp-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0,0,0,.06);
}

.cp-calendar-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: 1rem;
}

.cp-calendar-status {
  flex: 1 1 auto;
  text-align: center;
  color: rgba(17,17,17,.72);
  font-weight: 600;
}

.cp-calendar-nav {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(17,17,17,.18);
  border-radius: 999px;
  background: #f6f3ee;
  color: #1F5E79;
  font-size: 1.5rem;
  line-height: 1;
}

.cp-calendar-nav:hover,
.cp-calendar-nav:focus {
  border-color: #1F5E79;
  background: rgba(31,94,121,.08);
  outline: none;
}

.cp-calendar-months {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.cp-calendar-month-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: .65rem;
}

.cp-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: .28rem;
}

.cp-calendar-dow {
  text-align: center;
  color: var(--cp-muted);
  font-size: .78rem;
  font-weight: 700;
  padding: .2rem 0;
}

.cp-calendar-day {
  min-height: 38px;
  border: 1px solid rgba(17,17,17,.14);
  border-radius: 8px;
  background: #fff;
  color: var(--cp-ink);
  font: inherit;
  font-size: .92rem;
  cursor: pointer;
}

.cp-calendar-day:hover:not(:disabled),
.cp-calendar-day:focus:not(:disabled) {
  border-color: #1F5E79;
  box-shadow: 0 0 0 .16rem rgba(31,94,121,.12);
  outline: none;
}

.cp-calendar-day.is-empty {
  visibility: hidden;
  pointer-events: none;
}

.cp-calendar-day.is-past,
.cp-calendar-day.is-blocked {
  color: rgba(17,17,17,.32);
  background: rgba(17,17,17,.04);
  border-color: rgba(17,17,17,.08);
  text-decoration: line-through;
  cursor: not-allowed;
}

.cp-calendar-day.is-selected,
.cp-calendar-day.is-checkout {
  color: #fff;
  background: #1F5E79;
  border-color: #1F5E79;
  font-weight: 700;
}

.cp-calendar-day.is-in-range {
  color: #1F5E79;
  background: rgba(31,94,121,.12);
  border-color: rgba(31,94,121,.20);
  font-weight: 600;
}

.cp-calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  align-items: center;
  margin-top: .85rem;
  color: var(--cp-muted);
  font-size: .88rem;
}

.cp-legend-available,
.cp-legend-blocked {
  width: .72rem;
  height: .72rem;
  border-radius: 999px;
  display: inline-block;
  margin-right: .2rem;
}

.cp-legend-available {
  background: #fff;
  border: 1px solid rgba(17,17,17,.25);
}

.cp-legend-blocked {
  background: rgba(17,17,17,.14);
  border: 1px solid rgba(17,17,17,.14);
}

@media (max-width: 767.98px) {
  .cp-calendar-months {
    grid-template-columns: 1fr;
  }

  .cp-date-range-trigger {
    align-items: stretch;
    gap: .55rem;
  }

  #checkinDisplay,
  #checkoutDisplay {
    font-size: .95rem;
  }

  .cp-calendar-day {
    min-height: 36px;
    font-size: .88rem;
  }
}

/* Contact progressive reveal */
.contact-extra-field {
  transition: opacity 180ms ease, transform 180ms ease;
}

.contact-extra-field.d-none {
  display: none !important;
}

/* Keep desktop nav hover brand-blue over the hero image */
.navbar:not(.is-past-hero) .nav-link:hover,
.navbar:not(.is-past-hero) .nav-link:focus,
.navbar.is-scrolled:not(.is-past-hero) .nav-link:hover,
.navbar.is-scrolled:not(.is-past-hero) .nav-link:focus {
  color: #1F5E79 !important;
}

/* Booking panel desktop alignment */
@media (min-width: 992px) {
  #book .booking-panel {
    min-height: 320px;
    display: flex;
    align-items: flex-start;
  }

  #book .booking-panel .booking-form {
    width: 100%;
  }
}

/* Public page content carousels */
.cp-content-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.cp-content-carousel > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cp-intro-carousel {
  min-height: 460px;
}

.cp-experience-carousel {
  height: 220px;
}

.cp-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 999px;
  background: rgba(15,23,42,.58);
  color: #fff;
  font-size: 1.45rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cp-carousel-btn:hover,
.cp-carousel-btn:focus {
  background: #1F5E79;
  outline: none;
}

.cp-carousel-prev {
  left: 12px;
}

.cp-carousel-next {
  right: 12px;
}

.cp-carousel-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 7px;
}

.cp-carousel-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.88);
  border-radius: 999px;
  background: rgba(255,255,255,.45);
}

.cp-carousel-dot.is-active {
  background: #fff;
}

@media (max-width: 991.98px) {
  .cp-intro-carousel {
    min-height: 320px;
  }
}

/* 16:9 accommodation and content carousels */
.garden-image-wrap,
.cp-intro-carousel {
  aspect-ratio: 16 / 9;
  min-height: 0;
}

.garden-image-wrap img,
.cp-intro-carousel > img,
.cp-content-carousel > img {
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991.98px) {
  .garden-image-wrap,
  .cp-intro-carousel {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .garden-image-wrap img {
    height: 100%;
  }
}

/* ==========================================================
   Homepage section styles
   Patch v75 - cache-busted, Bootstrap-backed layouts
   ========================================================== */

.hero-meta { color: rgba(255,255,255,.85); }
.intro-feature-card { border-color: var(--cp-line) !important; background: #fff; }
.experience-placeholder-card { border-color: var(--cp-line) !important; }

/* Wildlife */
#wildlife-preview.wildlife-preview-section { background: var(--cp-sand); }
#wildlife-preview .wildlife-showcase-grid { align-items: stretch; }
#wildlife-preview .wildlife-preview-item { display: flex; }
#wildlife-preview .wildlife-preview-card,
#wildlife-preview .wildlife-preview-video {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--cp-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15,23,42,.07);
}
#wildlife-preview .wildlife-preview-card img,
#wildlife-preview .wildlife-preview-video video {
  width: 100% !important;
  height: 275px !important;
  min-height: 275px;
  flex: 0 0 275px;
  object-fit: cover !important;
  display: block !important;
  background: #0f172a;
}
#wildlife-preview .wildlife-preview-thumb-caption,
#wildlife-preview .wildlife-preview-video-caption {
  min-height: 68px;
  height: 68px;
  flex: 0 0 68px;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #475569;
  background: #fff;
  font-size: .92rem;
  line-height: 1.35;
}

/* Facebook direct-image cards */
#facebook.facebook-section { background: #fff; }
#facebook .facebook-section-header { align-items: end; }
#facebook .facebook-image-grid { align-items: stretch; }
#facebook .facebook-image-grid > div { display: flex; }
#facebook .facebook-image-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--cp-line);
  border-radius: 20px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(15,23,42,.06);
}
#facebook .facebook-image-card img {
  width: 100% !important;
  height: 300px !important;
  flex: 0 0 300px;
  display: block !important;
  object-fit: cover !important;
}
#facebook .facebook-image-caption {
  min-height: 68px;
  height: 68px;
  flex: 0 0 68px;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #475569;
  background: #fff;
  font-size: .92rem;
  line-height: 1.35;
}
#facebook .facebook-image-card:hover,
#facebook .facebook-image-card:focus {
  color: inherit;
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(15,23,42,.10);
}
#facebook .facebook-empty {
  max-width: 620px;
  margin-inline: auto;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--cp-line);
  border-radius: 20px;
  background: var(--cp-sand);
}
@media (max-width: 991.98px) {
  #facebook .facebook-section-header .text-lg-end { text-align: left !important; }
  #facebook .facebook-image-card img { height: 280px !important; flex-basis: 280px; }
}
@media (max-width: 575.98px) {
  #facebook .facebook-image-card img { height: 260px !important; flex-basis: 260px; }
  #facebook .facebook-image-caption { height: auto; min-height: 64px; flex-basis: auto; }
}

/* Location */
#location .location-layout { align-items: stretch; }
#location .location-copy { display: flex; flex-direction: column; min-width: 0; }
#location .location-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.25rem; }
#location .location-info-card { margin-top: 1.25rem; border-color: var(--cp-line) !important; background: var(--cp-sand); }
#location .location-map-card {
  width: 100%;
  height: 100%;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--cp-line);
  border-radius: 22px;
  background: var(--cp-sand);
  box-shadow: 0 14px 34px rgba(15,23,42,.06);
}
#location .location-map-card iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 390px;
  border: 0 !important;
  display: block !important;
}

@media (max-width: 1199.98px) {
  #wildlife-preview .wildlife-preview-card img,
  #wildlife-preview .wildlife-preview-video video {
    height: 245px !important;
    min-height: 245px;
    flex-basis: 245px;
  }
}

@media (max-width: 991.98px) {
  #location .location-map-card,
  #location .location-map-card iframe { min-height: 350px; height: 350px !important; }
}

@media (max-width: 575.98px) {
  #wildlife-preview .wildlife-preview-card img,
  #wildlife-preview .wildlife-preview-video video {
    height: auto !important;
    min-height: 0;
    flex-basis: auto;
    aspect-ratio: 16 / 10;
  }
  #wildlife-preview .wildlife-preview-thumb-caption,
  #wildlife-preview .wildlife-preview-video-caption { min-height: 62px; height: 62px; flex-basis: 62px; }
  #location .location-map-card,
  #location .location-map-card iframe { min-height: 300px; height: 300px !important; }
}

/* ==========================================================
   Homepage section contrast and expanded footer - v79
   ========================================================== */

/* Location uses the alternate cream section, with a white information card. */
#location.section.alt {
  background: var(--cp-sand);
}

#location .location-info-card {
  background: #fff;
  border-color: var(--cp-line) !important;
}

/* Contact uses the white section, with a cream form panel. */
#contact.section {
  background: #fff;
}

#contact .cp-contact-panel {
  background: var(--cp-sand);
  border-color: var(--cp-line);
  box-shadow: 0 14px 34px rgba(15, 23, 42, .06);
}

#contact .form-control,
#contact .form-select,
#contact textarea.form-control {
  background: #fff;
}

/* Complete site footer. */
.site-footer {
  background: #0f172a;
  color: rgba(255, 255, 255, .88);
}

.site-footer .footer-heading {
  margin-bottom: .8rem;
  color: #fff;
  font-weight: 700;
}

.site-footer .footer-links {
  display: grid;
  gap: .5rem;
}

.site-footer a {
  color: rgba(255, 255, 255, .76);
  text-decoration: none;
  transition: color 160ms ease;
}

.site-footer a:hover,
.site-footer a:focus {
  color: #fff;
}

.site-footer .footer-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: .65rem 1rem;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 10px;
  color: #fff;
}

.site-footer .footer-cta:hover,
.site-footer .footer-cta:focus {
  background: rgba(255, 255, 255, .08);
}

.site-footer .footer-contact {
  display: grid;
  gap: .35rem;
}

.site-footer .footer-contact a {
  margin-top: .35rem;
}

.site-footer .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .75rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.site-footer .footer-credit {
  margin-left: auto;
  text-align: right;
}

.site-footer .footer-credit a {
  color: rgba(255, 255, 255, .92);
  font-weight: 600;
}

@media (max-width: 767.98px) {
  .site-footer .footer-bottom {
    display: grid;
  }

  .site-footer .footer-credit {
    margin-left: 0;
    text-align: left;
  }
}

/* ==========================================================
   SEO and accessibility enhancements - v80
   ========================================================== */

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100000;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: #fff;
  color: var(--cp-accent);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

#main-content:focus {
  outline: none;
}

.footer-contact {
  margin: 0;
  font-style: normal;
}

img {
  max-width: 100%;
}

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

.cp-policy-content{
    max-height:75vh;
    overflow-y:auto;
    padding:1rem;
    scroll-behavior:smooth;
}

.cp-policy-content h1,
.cp-policy-content h2{
    margin-top:1rem;
}

.cp-policy-content::-webkit-scrollbar{
    width:8px;
}

/* v87 homepage reviews, availability and editable inclusions */
.quick-availability-card{grid-template-columns:1fr;padding:18px}.quick-availability-controls{justify-content:stretch}.quick-month-select{max-width:none;flex:1}.quick-calendar-grid{gap:4px}.quick-calendar-day{border-radius:7px;font-size:.86rem}.trust-strip{justify-content:flex-start}}


/* v88 homepage refinement */
.stay-includes-card {
  background: var(--cp-card, #f6f2ec);
}
.stay-includes-card .stay-breakfast-description {
  line-height: 1.65;
}
.stay-includes-meta {
  padding-top: 0.9rem;
  border-top: 1px solid rgba(31, 94, 121, 0.14);
}

.reviews-section {
  background: #fbfaf8;
  overflow: hidden;
}
.reviews-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.25rem;
}
.review-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2rem;
}
.review-platform-summary {
  display: inline-flex;
  align-items: baseline;
  gap: 0.55rem;
  min-width: 0;
  padding: 0.62rem 0.9rem;
  border: 1px solid rgba(31, 94, 121, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: inherit;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}
a.review-platform-summary:hover {
  border-color: rgba(31, 94, 121, 0.35);
  background: #fff;
  transform: translateY(-1px);
}
.review-platform-summary-name {
  color: #5f6870;
  font-size: 0.83rem;
  font-weight: 650;
}
.review-platform-summary-score {
  color: #173d50;
  font-size: 0.94rem;
}
.review-platform-summary-count {
  color: #7a838a;
  font-size: 0.78rem;
}
.review-carousel {
  overflow: hidden;
  margin: 0 -12px;
  padding: 12px;
}
.review-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 420ms cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}
.review-carousel-slide {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
}
.review-card {
  display: flex;
  min-height: 285px;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.7rem;
  border: 1px solid rgba(28, 54, 66, 0.11);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(28, 54, 66, 0.07);
}
.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.review-card-platform {
  color: #61717a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.review-card-score {
  color: #1f5e79;
  font-size: 0.9rem;
}
.review-card-preview {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 1.5rem;
  color: #26363e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  line-height: 1.62;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}
.review-card-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(31, 94, 121, 0.1);
}
.review-card-guest {
  color: #65727a;
  font-size: 0.85rem;
}
.review-read-more {
  appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: #1f5e79;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(31, 94, 121, 0.35);
  text-underline-offset: 0.2em;
}
.review-read-more:hover {
  text-decoration-color: currentColor;
}
.review-carousel-controls {
  display: flex;
  gap: 0.55rem;
}
.review-carousel-button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(31, 94, 121, 0.18);
  border-radius: 50%;
  background: #fff;
  color: #1f5e79;
  font-size: 1.55rem;
  line-height: 1;
  box-shadow: 0 7px 18px rgba(28, 54, 66, 0.06);
}
.review-carousel-button:hover:not(:disabled) {
  border-color: rgba(31, 94, 121, 0.42);
}
.review-carousel-button:disabled {
  opacity: 0.35;
}
.review-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.48rem;
  margin-top: 1.35rem;
}
.review-carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(31, 94, 121, 0.22);
}
.review-carousel-dot.is-active {
  width: 24px;
  border-radius: 999px;
  background: #1f5e79;
}
.review-modal-content {
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  box-shadow: 0 28px 90px rgba(16, 37, 48, 0.24);
}
.review-modal-content .modal-header,
.review-modal-content .modal-footer {
  padding: 1.35rem 1.6rem;
  border-color: rgba(31, 94, 121, 0.1);
}
.review-modal-content .modal-body {
  padding: 1.7rem 1.6rem;
}
.review-modal-platform {
  margin-bottom: 0.25rem;
  color: #1f5e79;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.review-modal-score {
  margin-bottom: 1rem;
  color: #1f5e79;
  font-weight: 750;
}
.review-modal-text {
  color: #26363e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.13rem;
  line-height: 1.8;
  white-space: pre-line;
}
.review-modal-guest {
  margin-top: 1.35rem;
  color: #66757d;
  font-size: 0.9rem;
}

.experience-prices {
  margin: 0.35rem 0 0.85rem;
}
.experience-price-line {
  color: #50646e;
  font-size: 0.88rem;
  line-height: 1.55;
}
.experience-price-line + .experience-price-line {
  margin-top: 0.15rem;
}

.booking-from-price {
  border-left: 4px solid #1f5e79;
  padding: 10px 0 10px 16px;
}
.booking-from-price span {
  display: block;
  color: #64748b;
  font-size: 0.85rem;
}
.booking-from-price strong {
  display: block;
  font-size: 1.35rem;
}
.cp-admin-version {
  font-size: 0.8rem;
}

@media (max-width: 1199.98px) {
  .review-carousel-slide {
    flex-basis: calc((100% - 24px) / 2);
  }
}
@media (max-width: 767.98px) {
  .reviews-heading-row {
    align-items: start;
    flex-direction: column;
    margin-bottom: 1.6rem;
  }
  .review-carousel-controls {
    align-self: flex-end;
  }
  .review-platforms {
    gap: 0.5rem;
  }
  .review-platform-summary {
    padding: 0.55rem 0.75rem;
  }
  .review-carousel-slide {
    flex-basis: 100%;
  }
  .review-card {
    min-height: 270px;
    padding: 1.35rem;
  }
  .review-card-preview {
    font-size: 1.04rem;
  }
}


/* v89 booking, compact reviews and native policy modal */
.booking-rate-card {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: baseline;
  column-gap: 0.45rem;
  row-gap: 0.15rem;
  max-width: 390px;
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(31, 94, 121, 0.14);
  border-radius: 18px;
  background: #f6f2ec;
}
.booking-rate-label {
  grid-column: 1 / -1;
  color: #61717a;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.booking-rate-prefix {
  color: #61717a;
  font-size: 0.95rem;
}
.booking-rate-price {
  color: #173d50;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3vw, 2.3rem);
  font-weight: 500;
  line-height: 1;
}
.booking-rate-currency {
  color: #61717a;
  font-size: 0.9rem;
}

#reviews .reviews-heading-row {
  margin-bottom: 1.35rem;
}
#reviews .review-platforms {
  margin-bottom: 1.25rem;
}
#reviews .review-card {
  min-height: 205px;
  padding: 1.25rem 1.35rem;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(28, 54, 66, 0.055);
}
#reviews .review-card-top {
  margin-bottom: 0.75rem;
}
#reviews .review-card-preview {
  display: -webkit-box;
  margin: 0 0 0.95rem;
  overflow: hidden;
  font-size: 1rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
#reviews .review-card-footer {
  padding-top: 0.75rem;
}
#reviews .review-read-more,
.cp-policy-link {
  color: #1f5e79;
  font-weight: 400;
  text-decoration: underline;
  text-decoration-color: rgba(31, 94, 121, 0.32);
  text-underline-offset: 0.2em;
}
#reviews .review-read-more:hover,
.cp-policy-link:hover {
  color: #174b61;
  text-decoration-color: currentColor;
}
#reviews .review-carousel {
  padding-top: 6px;
  padding-bottom: 6px;
}
#reviews .review-carousel-dots {
  margin-top: 0.9rem;
}

.cp-policy-modal .modal-dialog {
  width: min(1120px, calc(100vw - 2rem));
  max-width: none;
}
.cp-policy-modal-content {
  overflow: hidden;
  max-height: min(86vh, 900px);
  border: 0;
  border-radius: 22px;
  box-shadow: 0 26px 80px rgba(18, 39, 50, 0.24);
}
.cp-policy-modal .modal-header {
  padding: 1rem 1.35rem;
  border-bottom: 1px solid rgba(31, 94, 121, 0.12);
}
.cp-policy-modal-body {
  min-height: 320px;
  overflow-y: auto;
  padding: 0;
  background: #fff;
}
.cp-policy-loading,
.cp-policy-error {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 2rem;
  color: #61717a;
}
.cp-policy-native-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 2.35rem 2.5rem;
}
.cp-policy-native-content h1,
.cp-policy-native-content h2 {
  color: #1f5e79;
  font-family: Georgia, "Times New Roman", serif;
}
.cp-policy-native-content h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}
.cp-policy-native-content h2 {
  margin: 1.8rem 0 0.65rem;
  font-size: 1.35rem;
}
.cp-policy-native-content p,
.cp-policy-native-content li {
  line-height: 1.7;
}
.cp-policy-native-content .note {
  padding: 1rem 1.1rem;
  border: 1px solid #e6ded3;
  border-radius: 14px;
  background: #fbfaf7;
}
.cp-policy-native-content .updated {
  margin-top: 1.8rem;
  color: #64748b;
  font-size: 0.82rem;
}
.cp-policy-modal-footer {
  justify-content: space-between;
  padding: 0.85rem 1.35rem;
  border-top: 1px solid rgba(31, 94, 121, 0.12);
}
.cp-policy-direct-link {
  color: #1f5e79;
  font-size: 0.88rem;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

@media (max-width: 767.98px) {
  .booking-rate-card {
    max-width: none;
  }
  #reviews .review-card {
    min-height: 195px;
  }
  .cp-policy-modal .modal-dialog {
    width: calc(100vw - 1rem);
    margin: 0.5rem auto;
  }
  .cp-policy-modal-content {
    max-height: calc(100vh - 1rem);
  }
  .cp-policy-native-content {
    padding: 1.35rem 1.2rem 1.8rem;
  }
  .cp-policy-modal-footer {
    align-items: stretch;
    flex-direction: column;
  }
}


/* v90 alternating section and card colour system */
#garden-studio.section,
#experiences.section,
#facebook.section,
#contact.section {
  background: #fff;
}
#reviews.section.alt,
#book.section.alt,
#location.section.alt {
  background: var(--cp-sand, #f6f3ee);
}

#garden-studio .availability-card,
#contact .cp-contact-panel {
  background: var(--cp-sand, #f6f3ee);
}
#reviews .review-card,
#reviews .review-platform-summary,
#book .booking-panel,
#book .booking-note,
#book .booking-rate-card,
#location .location-info-card,
#location .location-map-card {
  background: #fff;
}
#experiences .experience-card,
#experiences .experience-placeholder-card {
  background: var(--cp-sand, #f6f3ee);
}

#garden-studio .stay-includes-meta {
  padding-top: 0;
  border-top: 0;
  color: #075b7c;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.5;
}

#book > .container > .row {
  align-items: stretch !important;
}

/* ==========================================================
   Admin-controlled homepage section and card backgrounds - v112
   ========================================================== */

/*
 * Final authority for the outer background of every editable homepage
 * section. JavaScript applies one cp-section-bg-* class from pages.json.
 * The existing alt class is also kept in sync as a safe fallback.
 */
.section[data-cp-background-key] {
  background: var(--cp-paper, #fff) !important;
}

.section[data-cp-background-key].alt,
.section[data-cp-background-key].cp-section-bg-cream {
  background: var(--cp-sand, #f6f3ee) !important;
}

.section[data-cp-background-key].cp-section-bg-white {
  background: var(--cp-paper, #fff) !important;
}

/* Gallery images are wrapped in a card so the gallery card-background switch
 * has a visible, consistent target rather than changing the image itself. */
#gallery .gallery-image-card {
  height: 100%;
  padding: .45rem;
  overflow: hidden;
  border: 1px solid var(--cp-line);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .05);
}

#gallery .gallery-image-card img {
  height: 240px;
  border: 0;
  border-radius: 13px;
}

/* White info-card setting. */
#garden-studio.cp-card-bg-white .availability-card,
#reviews.cp-card-bg-white .review-card,
#reviews.cp-card-bg-white .review-platform-summary,
#experiences.cp-card-bg-white .experience-card,
#experiences.cp-card-bg-white .experience-placeholder-card,
#book.cp-card-bg-white .booking-panel,
#book.cp-card-bg-white .booking-note,
#book.cp-card-bg-white .booking-rate-card,
#gallery.cp-card-bg-white .gallery-image-card,
#wildlife-preview.cp-card-bg-white .wildlife-preview-card,
#wildlife-preview.cp-card-bg-white .wildlife-preview-video,
#wildlife-preview.cp-card-bg-white .wildlife-preview-thumb-caption,
#wildlife-preview.cp-card-bg-white .wildlife-preview-video-caption,
#facebook.cp-card-bg-white .facebook-image-card,
#facebook.cp-card-bg-white .facebook-image-caption,
#facebook.cp-card-bg-white .facebook-empty,
#location.cp-card-bg-white .location-info-card,
#location.cp-card-bg-white .location-map-card,
#contact.cp-card-bg-white .cp-contact-panel {
  background: var(--cp-paper, #fff) !important;
}

/* Cream info-card setting. */
#garden-studio.cp-card-bg-cream .availability-card,
#reviews.cp-card-bg-cream .review-card,
#reviews.cp-card-bg-cream .review-platform-summary,
#experiences.cp-card-bg-cream .experience-card,
#experiences.cp-card-bg-cream .experience-placeholder-card,
#book.cp-card-bg-cream .booking-panel,
#book.cp-card-bg-cream .booking-note,
#book.cp-card-bg-cream .booking-rate-card,
#gallery.cp-card-bg-cream .gallery-image-card,
#wildlife-preview.cp-card-bg-cream .wildlife-preview-card,
#wildlife-preview.cp-card-bg-cream .wildlife-preview-video,
#wildlife-preview.cp-card-bg-cream .wildlife-preview-thumb-caption,
#wildlife-preview.cp-card-bg-cream .wildlife-preview-video-caption,
#facebook.cp-card-bg-cream .facebook-image-card,
#facebook.cp-card-bg-cream .facebook-image-caption,
#facebook.cp-card-bg-cream .facebook-empty,
#location.cp-card-bg-cream .location-info-card,
#location.cp-card-bg-cream .location-map-card,
#contact.cp-card-bg-cream .cp-contact-panel {
  background: var(--cp-sand, #f6f3ee) !important;
}

