@layer theme, base, revamp-tokens, components, utilities;
            @layer revamp-tokens {
            :root {
              --bg: #faf6ec;
              --surface: #f1ead8;
              --text: #1a1812;
              --muted: #5a4a36;
              --primary: #0f3d24;
              --accent: #c89b3c;
              --accent-text: #6b5947;
              --on-primary: #faf6ec;
              --on-accent: #1a1812;
              --radius-sm: 6px;
              --radius-md: 12px;
              --radius-lg: 20px;
              --shadow-sm: 0 2px 8px rgba(26, 24, 18, 0.06);
              --shadow-md: 0 8px 24px rgba(26, 24, 18, 0.10);
              --shadow-lg: 0 20px 48px rgba(26, 24, 18, 0.16);
              --font-display: 'Libre Caslon Display', Georgia, serif;
              --font-body: 'Outfit', system-ui, sans-serif;
              --section-py: clamp(40px, 5vw, 64px);
            }
            body {
              background-color: var(--bg);
              color: var(--text);
              font-family: var(--font-body);
              font-weight: 400;
              -webkit-font-smoothing: antialiased;
              -moz-osx-font-smoothing: grayscale;
            }
            h1, h2, h3, h4, h5, h6 {
              font-family: var(--font-display);
              color: var(--text);
              line-height: 1.05;
              font-weight: 500;
              letter-spacing: -0.01em;
            }
            p {
              color: var(--text);
              line-height: 1.65;
            }
            .btn-primary {
              display: inline-flex;
              align-items: center;
              justify-content: center;
              gap: 0.5rem;
              padding: 0.875rem 1.75rem;
              background-color: var(--primary);
              color: var(--on-primary);
              font-family: var(--font-body);
              font-weight: 500;
              font-size: 0.95rem;
              letter-spacing: 0.02em;
              border-radius: var(--radius-sm);
              text-decoration: none;
              transition: all 0.3s ease;
              border: 1px solid var(--primary);
            }
            .btn-primary:hover {
              background-color: var(--accent);
              border-color: var(--accent);
              color: var(--on-accent);
              transform: translateY(-1px);
              box-shadow: var(--shadow-md);
            }
            .btn-secondary {
              display: inline-flex;
              align-items: center;
              justify-content: center;
              gap: 0.5rem;
              padding: 0.875rem 1.75rem;
              background-color: transparent;
              color: var(--text);
              font-family: var(--font-body);
              font-weight: 500;
              font-size: 0.95rem;
              letter-spacing: 0.02em;
              border-radius: var(--radius-sm);
              text-decoration: none;
              transition: all 0.3s ease;
              border: 1px solid var(--text);
            }
            .btn-secondary:hover {
              background-color: var(--text);
              color: var(--bg);
              transform: translateY(-1px);
            }
            .card-surface {
              background-color: var(--surface);
              border-radius: var(--radius-md);
              box-shadow: var(--shadow-sm);
              transition: all 0.4s ease;
            }
            .card-surface:hover {
              box-shadow: var(--shadow-md);
              transform: translateY(-2px);
            }
            .icon-badge {
              display: inline-flex;
              align-items: center;
              justify-content: center;
              width: 48px;
              height: 48px;
              background-color: var(--primary);
              color: var(--on-primary);
              border-radius: var(--radius-sm);
            }
            .section-shell {
              padding-block: var(--section-py);
            }
            .eyebrow {
              font-family: var(--font-body);
              font-size: 0.75rem;
              font-weight: 600;
              letter-spacing: 0.18em;
              text-transform: uppercase;
              color: var(--accent);
            }
            .serif-italic {
              font-family: var(--font-display);
              font-style: italic;
              font-weight: 400;
            }
            .divider-line {
              width: 48px;
              height: 1px;
              background-color: var(--accent);
              display: inline-block;
            }
            }

/* Hash-link navigation glides instead of teleporting, and the target
               section clears the sticky header. In the base layer so an explicit
               scroll-mt-* utility on an element still wins. */
            @layer base {
              @media (prefers-reduced-motion: no-preference) {
                html { scroll-behavior: smooth; }
              }
              [id] { scroll-margin-top: 6rem; }
            }

/* Original-site header adapted for the flattened export. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
}

.site-navbar {
  width: 100%;
  min-height: 90px;
  background: #344831;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 5px 15px rgba(15, 36, 84, 0.05);
}

.site-nav-container {
  width: min(100% - 48px, 1180px);
  min-height: 90px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-navbar-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-logo {
  display: block;
  width: auto;
  height: 64px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.site-navbar-collapse {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
}

.site-navbar-nav,
.site-dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-navbar-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
}

.site-nav-item {
  position: relative;
}

.site-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 40px;
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.site-nav-link:hover,
.site-nav-link:focus-visible {
  color: #b99d75;
}

.site-dropdown-toggle span {
  font-size: 12px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.72);
}

.site-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 210px;
  padding: 15px;
  background: #344831;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.site-dropdown:hover > .site-dropdown-menu,
.site-dropdown:focus-within > .site-dropdown-menu,
.site-dropdown.is-open > .site-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-dropdown-item {
  display: block;
  padding: 8px 0;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-dropdown-item:hover,
.site-dropdown-item:focus-visible {
  color: #b99d75;
}

.site-nav-cta {
  margin-left: 10px;
  padding: 11px 20px;
  min-height: 42px;
  border-radius: 5px;
  background: #1f9a1d;
  color: #fff;
  font-weight: 600;
}

.site-nav-cta:hover,
.site-nav-cta:focus-visible {
  color: #fff;
  background: #104d0f;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(31, 154, 29, 0.3);
}

.site-navbar-toggler {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.site-navbar-toggler-icon,
.site-navbar-toggler-icon::before,
.site-navbar-toggler-icon::after {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-navbar-toggler-icon {
  position: relative;
}

.site-navbar-toggler-icon::before,
.site-navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.site-navbar-toggler-icon::before {
  top: -8px;
}

.site-navbar-toggler-icon::after {
  top: 8px;
}

.site-navbar.is-open .site-navbar-toggler-icon {
  background: transparent;
}

.site-navbar.is-open .site-navbar-toggler-icon::before {
  transform: translateY(8px) rotate(45deg);
}

.site-navbar.is-open .site-navbar-toggler-icon::after {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 1120px) {
  .site-nav-link {
    padding-inline: 8px;
    font-size: 11px;
  }
}

@media (max-width: 991px) {
  .site-navbar {
    min-height: 90px;
  }

  .site-nav-container {
    width: 100%;
    min-height: 90px;
    padding: 8px 20px;
    position: relative;
  }

  .site-navbar-brand {
    min-height: 64px;
  }

  .site-logo {
    height: 56px;
  }

  .site-navbar-toggler {
    display: inline-flex;
  }

  .site-navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    background: #344831;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 0 18px;
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.16);
    max-height: calc(100dvh - 90px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .site-navbar.is-open .site-navbar-collapse {
    display: block;
  }

  .site-navbar-nav {
    display: block;
  }

  .site-nav-link {
    width: 100%;
    min-height: 42px;
    padding: 0 24px;
    justify-content: space-between;
    color: #fff;
  }

  .site-dropdown-menu {
    position: static;
    width: 100%;
    padding: 0 0 8px 20px;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .site-dropdown.is-open > .site-dropdown-menu {
    display: block;
  }

  .site-dropdown-item {
    padding: 0 24px;
    line-height: 38px;
    font-size: 14px;
  }

  .site-nav-cta {
    display: inline-flex;
    width: auto;
    margin: 10px 24px 0;
    padding: 12px 20px;
  }
}

/* Match blog.html header behavior site-wide. */
.site-header {
  position: sticky;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
}

.site-header.is-scrolled {
  position: sticky;
  animation: none;
}

.site-header .site-navbar {
  background: #344831;
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 5px 15px rgba(15, 36, 84, 0.05);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled .site-navbar,
.site-navbar.is-open {
  background: #344831;
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 5px 15px rgba(15, 36, 84, 0.05);
}



/* Beds24 booking widgets, matching the original site placement. */
.hero-booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  align-items: end;
  gap: clamp(28px, 5vw, 64px);
}

.beds24-compact-booking {
  background: #fff;
  border: 1px solid rgba(16, 77, 15, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  color: #000;
  padding: 22px;
}

.beds24-compact-booking .head-box h4 {
  margin: 0 0 16px;
  color: #000;
  font-family: var(--font-display);
  font-size: 1.7rem;
}

.beds24-compact-widget {
  min-height: 320px;
}

.beds24-compact-fallback,
.beds24-booking-fallback {
  margin: 14px 0 0;
  text-align: center;
}

.beds24-compact-fallback a,
.beds24-booking-fallback a {
  color: #104d0f;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.beds24-booking-frame {
  background: var(--bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: clamp(18px, 4vw, 48px);
}

.beds24-booking-widget {
  min-height: 520px;
}

@media (max-width: 991px) {
  .hero-booking-grid {
    grid-template-columns: 1fr;
  }

  .beds24-compact-booking {
    max-width: 460px;
  }

  .beds24-compact-booking[data-lh-defer-mobile-widget] .beds24-compact-widget:empty {
    min-height: 0;
  }

  .beds24-compact-booking[data-lh-defer-mobile-widget] .beds24-compact-fallback {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .beds24-booking-widget {
    min-height: 560px;
  }
}

/* Keep inner-page headers readable where there is no dark hero behind them. */
body.inner-page .site-header,
.inner-page .site-header {
  position: sticky;
}

body.inner-page .site-header .site-navbar,
.inner-page .site-header .site-navbar {
  background: #344831;
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 5px 15px rgba(15, 36, 84, 0.05);
}

body.inner-page .site-header.is-scrolled,
.inner-page .site-header.is-scrolled {
  position: sticky;
  animation: none;
}

/* Homepage hero readability. */
#home > .absolute.inset-0::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  pointer-events: none;
}

#home .max-w-3xl {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

#home .eyebrow {
  color: #f2b93f;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
}

#home h1,
#home h1 span,
#home p {
  color: #fff;
}

#home h1 .serif-italic {
  color: #f2b93f;
}

#home .btn-primary,
#home .btn-secondary {
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
}
/* Accommodation sleeping card readability. */
#accommodation-sleeping article > .absolute.inset-0 {
  background: linear-gradient(0deg, rgba(8, 18, 11, 0.98) 0%, rgba(8, 18, 11, 0.88) 42%, rgba(8, 18, 11, 0.52) 72%, rgba(8, 18, 11, 0.22) 100%);
}

#accommodation-sleeping article .absolute.inset-x-0 {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.72);
}

#accommodation-sleeping article .eyebrow {
  color: #f2b93f;
}

#accommodation-sleeping article h3,
#accommodation-sleeping article p,
#accommodation-sleeping article li {
  color: #fff;
}

#accommodation-sleeping article [class*="bg-[var(--on-primary)]/15"] {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}
/* Accommodation dog garden caption readability. */
#accommodation-outdoor [data-oid="out-dog-cap"],
[data-oid="out-dog-cap"] {
  background: rgba(8, 18, 11, 0.92);
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.65);
}

#accommodation-outdoor [data-oid="out-dog-cap-txt"],
[data-oid="out-dog-cap-txt"] {
  color: #fff;
}
/* Accommodation good-to-know consistent text sizing. */
#accommodation-good-to-know [data-oid="-gcx--v"],
#accommodation-good-to-know [data-oid="wkbw2g9"],
#accommodation-good-to-know [data-oid="csdhfk9"] {
  font-family: var(--font-body);
  font-size: 1rem !important;
  line-height: 1.55 !important;
  color: var(--text) !important;
}

#accommodation-good-to-know [data-oid="-gcx--v"] {
  font-weight: 700;
  letter-spacing: 0.04em;
}

#accommodation-good-to-know [data-oid="wkbw2g9"] {
  font-weight: 600;
}
/* Dog-friendly hero readability. */
#dog-friendly-hero .dog-hero-copy,
#dog-friendly-hero h1,
#dog-friendly-hero p {
  color: #fff !important;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.72);
}

#dog-friendly-hero .dog-hero-chip {
  color: #fff !important;
  background: rgba(0, 0, 0, 0.36) !important;
  border-color: rgba(255, 255, 255, 0.38) !important;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}
/* Family-friendly hero readability. */
#family-friendly-hero .family-hero-eyebrow {
  color: #fff !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.65);
}
/* Family booking button clarity. */
#family-friendly-hero .family-book-button,
#family-friendly-cta .family-book-button,
a.family-book-button {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: var(--on-accent) !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
}

#family-friendly-hero .family-book-button:hover,
#family-friendly-cta .family-book-button:hover,
a.family-book-button:hover {
  background: #fff !important;
  border-color: #fff !important;
  color: var(--primary) !important;
}
/* Family at-a-glance card contrast. */
#family-friendly-glance .card-surface {
  background: #344831;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 30px rgba(20, 36, 22, 0.16);
}

#family-friendly-glance .card-surface h3,
#family-friendly-glance .card-surface p {
  color: #fff !important;
}

#family-friendly-glance .card-surface p {
  opacity: 0.86;
}

#family-friendly-glance .card-surface .icon-badge {
  background: var(--accent);
  color: var(--on-accent);
}

/* Original site footer. */
.footer {
  position: relative;
  display: block;
}

.footer .container {
  width: 100%;
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 12px;
  padding-left: 12px;
}

.footer .row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -12px;
  margin-left: -12px;
}

.footer .row > * {
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
}

.footer .col-md-3,
.footer .col-md-4,
.footer .col-md-12 {
  flex: 0 0 auto;
}

.footer-top {
  position: relative;
  display: block;
  background-color: #101010;
  padding: 90px 0 45px;
  z-index: 1;
}

.footer-top .footer-column {
  margin-bottom: 30px;
}

.footer-title {
  font-size: 27px;
  color: #fff;
  margin-bottom: 15px;
}

.footer-about-text {
  font-size: 15px;
  color: #999;
  margin: 0;
}

.footer-contact-text {
  font-size: 15px;
  margin: 0;
  color: #999;
  padding-bottom: 20px;
}

.footer-explore-list,
.footer-about-social-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-explore-list li + li {
  margin-top: 3px;
}

.footer-explore-list li a {
  position: relative;
  display: block;
  font-size: 15px;
  color: #999;
  text-decoration: none;
  transition: all 500ms ease;
}

.footer-explore-list li a:hover {
  padding-left: 15px;
  color: #b99d75;
}

.footer-explore-list li a::before {
  position: absolute;
  top: 55%;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background-color: #b99d75;
  transform: translateY(-50%);
  opacity: 0;
  border-radius: 50%;
  transition: all 500ms ease;
}

.footer-explore-list li a:hover::before {
  opacity: 1;
}

.footer-contact-info p {
  margin: 0;
}

.footer-contact-mail {
  font-size: 15px;
  line-height: 3em;
  color: #fff;
  position: relative;
  display: inline-block;
  transition: all 500ms ease;
}

.footer-contact-mail::before {
  position: absolute;
  bottom: 9px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #b99d75;
  content: "";
  transition: all 500ms ease;
}

.footer-about-social-list {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.footer-about-social-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 15px;
  background-color: transparent;
  text-decoration: none;
  transition: all 500ms ease;
}

.footer-about-social-list a:hover {
  color: #b99d75;
}

.footer-about-social-list .ti-facebook::before {
  content: "f";
  font-family: Arial, sans-serif;
  font-weight: 700;
}

.footer-bottom {
  position: relative;
  display: block;
  background-color: #101010;
  box-shadow: 0 -1px 0 0 rgba(255, 255, 255, 0.05);
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-copy-right {
  font-size: 13px;
  color: #999;
  margin: 0;
}

.footer-bottom-copy-right a {
  color: #fff;
  text-decoration: none;
  transition: all 500ms ease;
}

.footer-bottom-copy-right a:hover {
  color: #344831;
}

@media (min-width: 768px) {
  .footer .col-md-3 {
    width: 25%;
  }

  .footer .col-md-4 {
    width: 33.333333%;
  }

  .footer .col-md-12 {
    width: 100%;
  }

  .footer .offset-md-1 {
    margin-left: 8.333333%;
  }
}

/* Book-now address section: stronger photo overlay and tighter booking card. */
#book-now-address {
  padding-bottom: clamp(42px, 6vw, 72px);
}

#book-now-address .beds24-booking-frame {
  padding: 18px 18px 8px;
  box-shadow: none;
}

#book-now-address .beds24-booking-widget {
  min-height: 430px;
}

#book-now-address .beds24-booking-fallback {
  margin-top: 6px !important;
}

/* Book-now address section: solid dark green background. */
#book-now-address {
  background: #344831;
  color: #fff;
}

#book-now-address > img,
#book-now-address > [aria-hidden="true"] {
  display: none;
}

#book-now-address h2,
#book-now-address h3,
#book-now-address p {
  color: #fff !important;
}

/* Tighten the bottom space under the Find Us booking form. */
#book-now-address {
  padding-bottom: clamp(24px, 4vw, 44px);
}

#book-now-address .card-surface {
  padding-bottom: 12px !important;
}

#book-now-address .beds24-booking-frame {
  padding-bottom: 0;
}

#book-now-address .beds24-booking-widget {
  min-height: 360px;
}

#book-now-address .beds24-booking-fallback {
  margin: 4px 0 0 !important;
}

/* Further tighten Find Us booking form bottom space. */
#book-now-address {
  padding-bottom: clamp(16px, 3vw, 30px);
}

#book-now-address .card-surface {
  padding-bottom: 6px !important;
}

#book-now-address .beds24-booking-frame {
  padding-bottom: 0 !important;
}

#book-now-address .beds24-booking-widget {
  min-height: 320px;
}

#book-now-address .beds24-booking-fallback {
  margin: 2px 0 0 !important;
  line-height: 1.2;
}

/* Footer: dark green gradient with white text throughout. */
.footer-top,
.footer-bottom {
  background:
    radial-gradient(circle at top left, rgba(214, 167, 51, 0.18), transparent 34%),
    linear-gradient(135deg, #0b250f 0%, #16351b 42%, #344831 100%);
}

.footer,
.footer-top,
.footer-bottom,
.footer-title,
.footer-contact-text,
.footer-contact-mail,
.footer-contact-mail a,
.footer-explore-list li a,
.footer-bottom-copy-right,
.footer-bottom-copy-right a,
.footer-contact-info,
.footer-contact-info p,
.footer-contact-info a,
.footer-about-social-list a {
  color: #fff !important;
}

.footer-explore-list li a:hover,
.footer-bottom-copy-right a:hover,
.footer-about-social-list a:hover {
  color: #b99d75 !important;
}

/* Find Us: use the cottage background image with a dark readable overlay. */
#book-now-address {
  background: #344831;
}

#book-now-address > img {
  display: block;
}

#book-now-address > [aria-hidden="true"] {
  display: block;
  background: rgba(0, 0, 0, 0.68) !important;
}

/* Accommodation good-to-know rows: varied beige shades against the section. */
#accommodation-good-to-know [data-oid="z:zev-9"] {
  background: #fffaf1;
}

#accommodation-good-to-know [data-oid="gtk-strip"] > div {
  border-color: rgba(132, 100, 63, 0.18);
}

#accommodation-good-to-know [data-oid="gtk-strip"] > div:nth-child(8n + 1) {
  background: #f8ecd8;
}

#accommodation-good-to-know [data-oid="gtk-strip"] > div:nth-child(8n + 2) {
  background: #f2e1c5;
}

#accommodation-good-to-know [data-oid="gtk-strip"] > div:nth-child(8n + 3) {
  background: #fbf3e5;
}

#accommodation-good-to-know [data-oid="gtk-strip"] > div:nth-child(8n + 4) {
  background: #ead5b5;
}

#accommodation-good-to-know [data-oid="gtk-strip"] > div:nth-child(8n + 5) {
  background: #f6e7cf;
}

#accommodation-good-to-know [data-oid="gtk-strip"] > div:nth-child(8n + 6) {
  background: #efe0c8;
}

#accommodation-good-to-know [data-oid="gtk-strip"] > div:nth-child(8n + 7) {
  background: #fff6e8;
}

#accommodation-good-to-know [data-oid="gtk-strip"] > div:nth-child(8n) {
  background: #e8d2ad;
}

#accommodation-good-to-know [data-oid="gtk-strip"] > div:hover {
  background: #fffdf7;
}

/* Remote work hero: show more of the desk image on desktop. */
@media (min-width: 1024px) {
  #remote-work-hero {
    background: #344831;
  }

  #remote-work-hero .remote-work-hero-bg {
    object-fit: contain;
    object-position: center center;
  }
}

/* Book-now hero booking form. */
.book-now-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.hero-booking-card {
  background: #fff;
  color: var(--text);
  border-radius: var(--radius-md);
  padding: clamp(20px, 3vw, 32px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.hero-beds24-frame {
  margin-top: 18px;
  padding: 16px 16px 0;
  box-shadow: none;
}

.hero-beds24-widget {
  min-height: 360px;
}

@media (max-width: 991px) {
  .book-now-hero-grid {
    grid-template-columns: 1fr;
  }
}

/* Booking FAQ grid. */
.booking-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 767px) {
  .booking-faq-grid {
    grid-template-columns: 1fr;
  }
}

/* Stronger contrast for booking FAQ cards. */
#book-now-faq .booking-faq-grid .card-surface {
  background: #344831;
  border: 1px solid rgba(185, 157, 117, 0.55);
  box-shadow: 0 16px 34px rgba(20, 36, 22, 0.18);
}

#book-now-faq .booking-faq-grid .card-surface:nth-child(even) {
  background: #24371f;
}

#book-now-faq .booking-faq-grid h3 {
  color: #fff !important;
}

#book-now-faq .booking-faq-grid p {
  color: rgba(255, 255, 255, 0.86) !important;
}


/* Alternate contrast for booking FAQ cards. */
#book-now-faq .booking-faq-grid .card-surface {
  background: #fff8ea;
  border: 1px solid rgba(52, 72, 49, 0.28);
  box-shadow: 0 14px 32px rgba(52, 72, 49, 0.14);
}

#book-now-faq .booking-faq-grid .card-surface:nth-child(even) {
  background: #ead5b5;
}

#book-now-faq .booking-faq-grid h3 {
  color: #24371f !important;
}

#book-now-faq .booking-faq-grid p {
  color: #344831 !important;
}

/* Keep all booking FAQ cards on the preferred light contrast. */
#book-now-faq .booking-faq-grid .card-surface:nth-child(even) {
  background: #fff8ea;
}

/* Family-friendly glance cards: stronger alternating contrast. */
#family-friendly-glance [data-oid='au_m_1y'] > .card-surface {
  background: #344831 !important;
  border: 1px solid rgba(185, 157, 117, 0.5);
  box-shadow: 0 14px 30px rgba(20, 36, 22, 0.18);
}

#family-friendly-glance [data-oid='au_m_1y'] > .card-surface:nth-child(even) {
  background: #ead5b5 !important;
}

#family-friendly-glance [data-oid='au_m_1y'] > .card-surface:nth-child(odd) h3,
#family-friendly-glance [data-oid='au_m_1y'] > .card-surface:nth-child(odd) p {
  color: #fff !important;
}

#family-friendly-glance [data-oid='au_m_1y'] > .card-surface:nth-child(even) h3 {
  color: #24371f !important;
}

#family-friendly-glance [data-oid='au_m_1y'] > .card-surface:nth-child(even) p {
  color: #344831 !important;
}

/* Contact Pick Your Stay: bright white option boxes. */
#contact-stays-picker a {
  border-color: #fff !important;
}

#contact-stays-picker a i,
#contact-stays-picker a span {
  color: #fff !important;
}

#contact-stays-picker a:hover {
  border-color: var(--accent) !important;
}

#contact-stays-picker a:hover i,
#contact-stays-picker a:hover span {
  color: var(--on-accent) !important;
}

/* Family-friendly glance cards: light contrast, no dark green. */
#family-friendly-glance [data-oid='au_m_1y'] > .card-surface {
  background: #fff8ea !important;
  border: 1px solid rgba(185, 157, 117, 0.55);
  box-shadow: 0 14px 30px rgba(132, 100, 63, 0.14);
}

#family-friendly-glance [data-oid='au_m_1y'] > .card-surface:nth-child(even) {
  background: #ead5b5 !important;
}

#family-friendly-glance [data-oid='au_m_1y'] > .card-surface:nth-child(4n + 3) {
  background: #f6e7cf !important;
}

#family-friendly-glance [data-oid='au_m_1y'] > .card-surface h3 {
  color: #24371f !important;
}

#family-friendly-glance [data-oid='au_m_1y'] > .card-surface p {
  color: #344831 !important;
}

/* Remote work hero readability. */
#remote-work-hero h1,
#remote-work-hero p,
#remote-work-hero span:not(.eyebrow),
#remote-work-hero .btn-secondary {
  color: #fff !important;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.75);
}

#remote-work-hero .eyebrow {
  color: #f0d6ad !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

/* Family-friendly glance: match Board Games and Smart TV to Sleeps 6 / Private Garden. */
#family-friendly-glance [data-oid='au_m_1y'] > .card-surface:nth-child(4),
#family-friendly-glance [data-oid='au_m_1y'] > .card-surface:nth-child(8) {
  background: #fff8ea !important;
}

/* Discover Hay quiz section background. */
.quiz-discover-bg {
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.68)), url("./images/gallery/HAY-TOWN-birds-eye-view-of-hay-on-wye-landscape.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.quiz-discover-bg h2,
.quiz-discover-bg p,
.quiz-discover-bg span {
  color: #fff !important;
}

/* Family-friendly glance: all card text black. */
#family-friendly-glance [data-oid='au_m_1y'] > .card-surface h3,
#family-friendly-glance [data-oid='au_m_1y'] > .card-surface p {
  color: #000 !important;
}

/* Blog article pages */
.blog-article {
  color: var(--text);
}

.blog-article h2,
.blog-article h3 {
  font-family: var(--font-display);
  color: var(--primary);
  line-height: 1.15;
}

.blog-article h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.blog-article h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.blog-article p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
  margin: 0 0 1.1rem;
}

.blog-article p:first-child {
  font-size: 1.22rem;
  color: var(--text);
}

/* Revamped blog entry pages */
.blog-article .section-shell {
  padding-top: clamp(3rem, 6vw, 5.5rem);
  padding-bottom: clamp(3rem, 6vw, 5.5rem);
}

.blog-article .section-shell:first-child {
  padding-top: clamp(4rem, 8vw, 7rem);
}

.blog-article img {
  border-radius: 8px;
}

.blog-article a:not(.site-nav-link):not(.site-navbar-brand):not(.site-dropdown-item):not(.btn):not(.btn-primary):not(.btn-secondary) {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.blog-article [class*="bg-[var(--surface)]"],
.blog-article [class*="bg-[var(--bg)]"] {
  box-shadow: 0 18px 45px rgba(16, 77, 15, 0.08);
}

.blog-article ul,
.blog-article ol {
  color: var(--muted);
  line-height: 1.75;
}

.blog-article li + li {
  margin-top: 0.45rem;
}

.blog-article blockquote {
  border-left: 4px solid var(--accent);
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.35;
  margin: 2rem 0;
  padding: 0.5rem 0 0.5rem 1.25rem;
}

@media (max-width: 767px) {
  .blog-article .section-shell {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }
}

/* Three Tuns blog hero: white text without an image overlay. */
.three-tuns-hero-clean h1,
.three-tuns-hero-clean p {
  color: #fff !important;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.8);
}

.three-tuns-hero-clean .eyebrow {
  color: var(--accent) !important;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.75);
}

/* Hiking blog hero: white text over the image. */
.hiking-hero-clean h1,
.hiking-hero-clean p,
.hiking-hero-clean span {
  color: #fff !important;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.78);
}

.hiking-hero-clean .eyebrow {
  color: var(--accent) !important;
}



/* Header scrolls with the page; back-to-top handles return navigation. */
.site-header,
.site-header.is-scrolled,
body.inner-page .site-header,
.inner-page .site-header {
  position: relative !important;
  top: auto !important;
  transform: none !important;
  animation: none !important;
  z-index: 9999;
}

.site-header .site-navbar,
.site-header.is-scrolled .site-navbar,
.site-navbar.is-open,
body.inner-page .site-header .site-navbar,
.inner-page .site-header .site-navbar {
  background: #344831 !important;
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 5px 15px rgba(15, 36, 84, 0.05) !important;
}

.back-to-top-button {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 10000;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: #344831;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background-color 0.25s ease;
}

.back-to-top-button.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top-button:hover,
.back-to-top-button:focus-visible {
  background: #c89b3c;
  color: #1a1812;
  outline: none;
}

.back-to-top-button svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

.back-to-top-button {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}


/* lighthouse-hay-phase2-accessibility-and-rendering */
/* Keep gold for decoration and dark/photo panels, but use its darker
   companion where it is read on a light surface.  Match complete class
   tokens only: a substring match also catches hover: and group-hover:
   utilities, which changes their resting state. */
.eyebrow,
[class~="text-[var(--accent)]"] {
  color: var(--accent-text) !important;
}

/* An explicit text utility is intentional and must take precedence over the
   generic eyebrow treatment. */
.eyebrow[class~="text-[var(--primary)]"] {
  color: var(--primary) !important;
}

.eyebrow[class~="text-[var(--text)]"] {
  color: var(--text) !important;
}

.eyebrow[class~="text-[var(--text-muted)]"] {
  color: var(--text-muted) !important;
}

.eyebrow[class~="text-[var(--text-soft)]"] {
  color: var(--text-soft) !important;
}

.eyebrow[class~="text-[var(--muted)]"] {
  color: var(--muted) !important;
}

.eyebrow[class~="text-[var(--on-primary)]"] {
  color: var(--on-primary) !important;
}

.eyebrow[class~="text-[var(--on-accent)]"] {
  color: var(--on-accent) !important;
}

.eyebrow.text-white {
  color: #fff !important;
}

/* These are the actual dark or image-backed presentation surfaces.  Scoping
   the gold token here keeps it out of nested white cards and hover-only
   utilities while preserving the intended design on every affected page. */
#home .hero-booking-grid > .max-w-3xl,
#book-now-hero .book-now-hero-grid > .max-w-3xl,
#book-now-address > .relative > [class~="grid"] > :first-child,
#accommodation-sleeping article,
[data-oid="ins-darkroom-inner"],
[data-oid="out-feature-title"],
#journey-cottage [class~="aspect-[16/9]"],
#fishing-hero[class~="min-h-[65vh]"],
#hiking-hero[class~="min-h-[65vh]"],
#dog-friendly-hero,
#contact-stays-picker,
#gallery-outdoor,
#hiking-image-break,
#quiz-visitors-hero [class~="lg:col-span-8"],
#discover [class~="bg-[var(--primary)]"],
.card-surface[class~="bg-[var(--primary)]"] {
  --accent-text: #f2b93f;
}

/* The direct accent treatment above is deliberately important for contrast,
   so restore the two intended interactive state colours explicitly. */
[class~="text-[var(--accent)]"][class~="hover:text-[var(--primary)]"]:hover {
  color: var(--primary) !important;
}

.group:hover [class~="text-[var(--accent)]"][class~="group-hover:text-[var(--on-primary)]"] {
  color: var(--on-primary) !important;
}

/* Decorative quote marks were rendered at 30% opacity and missed the 3:1
   large-text threshold. */
[class~="text-[var(--accent)]/30"] {
  color: var(--accent-text) !important;
  opacity: 1;
}

/* The visible labels are unchanged; only their contrast is raised to the
   Lighthouse/WCAG threshold. */
.site-nav-cta {
  background: #157516;
}

.site-nav-cta:hover,
.site-nav-cta:focus-visible {
  background: #104d0f;
}

/* XMLCal/Beds24 emits this control dynamically. The override does not alter
   layout, only makes its white text sufficiently legible. */
.book-form-horizontal .book-btn {
  background-color: #006fa6 !important;
  border-color: #006fa6 !important;
  color: #fff !important;
}

/* An h2 retains this former h3 browser-sized appearance in the quiz modal. */
.quiz-modal-title {
  font-size: 1.17em;
  margin-block: 1em;
}


/* lighthouse-hay-phase3-responsive-images */
/* A semantic picture wrapper must not alter the existing flex/grid layout. */
.lh-responsive-picture { display: contents; }
.lh-responsive-picture > img { display: block; }


/* lighthouse-hay-phase9-local-fonts */
@font-face {
  font-family: "Outfit";
  src: url("./fonts/lighthouse/outfit-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}
@font-face {
  font-family: "Libre Caslon Display";
  src: url("./fonts/lighthouse/libre-caslon-display-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

.options li[role="button"]:focus-visible {
  outline: 3px solid var(--accent, #c89b3c);
  outline-offset: 3px;
}
.blog-article img[src*="cdn.revamp.dev"],
.blog-article img[data-lh-src*="cdn.revamp.dev"] {
  aspect-ratio: 3 / 2;
}
