@font-face {
  font-display: swap;
  font-family: "Asap";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/asap-400.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Asap";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/asap-600.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Asap";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/asap-700.ttf") format("truetype");
}

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

@font-face {
  font-display: swap;
  font-family: "Playfair Display SC";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/playfair-display-sc-700.ttf") format("truetype");
}

:root {
  --bbb-forest: #1e453e;
  --bbb-forest-dark: #15352f;
  --bbb-gold: #cdb474;
  --bbb-wine: #6e2f3e;
  --bbb-canvas: #ede7d8;
  --bbb-surface: #fffcf7;
  --bbb-charcoal: #222222;
  --bbb-muted: #6e716d;
  --bbb-border: rgb(34 34 34 / 12%);
  --bbb-shadow: 0 12px 35px rgb(30 69 62 / 8%);
  --bbb-radius-lg: 26px;
  --bbb-radius: 18px;
  --bbb-max: 1240px;
  --bbb-display: "Playfair Display SC", "Times New Roman", serif;
  --bbb-body: Asap, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bbb-canvas); color: var(--bbb-charcoal); font-family: var(--bbb-body); font-size: 16px; line-height: 1.6; }
body.admin-bar .bbb-site-header { top: 32px; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
:focus-visible { outline: 3px solid var(--bbb-gold); outline-offset: 3px; }
.screen-reader-text { clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; overflow: hidden; position: absolute; width: 1px; }
.bbb-skip-link { background: var(--bbb-gold); color: var(--bbb-charcoal); left: 1rem; padding: .75rem 1rem; position: fixed; top: -100px; z-index: 10000; }
.bbb-skip-link:focus { top: 1rem; }

h1, h2, h3, .bbb-brand { color: var(--bbb-forest); font-family: var(--bbb-display); font-weight: 500; line-height: 1.08; margin-top: 0; }
h1 { font-size: clamp(3rem, 6vw, 5.4rem); margin-bottom: 1.25rem; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); }
p { margin-top: 0; }

.bbb-site-header { background: rgb(255 252 247 / 96%); border-bottom: 1px solid var(--bbb-border); position: sticky; top: 0; z-index: 1000; }
.bbb-header-inner { align-items: center; display: grid; gap: 2rem; grid-template-columns: 88px 1fr auto; margin: 0 auto; max-width: var(--bbb-max); min-height: 82px; padding: .55rem 1.5rem; }
.bbb-brand { align-items: center; display: inline-flex; text-decoration: none; }
.bbb-brand img { height: 64px; width: 64px; }
.bbb-primary-nav { align-items: center; display: flex; gap: clamp(1.1rem, 2.5vw, 2.5rem); justify-content: center; }
.bbb-primary-nav a { font-size: .96rem; font-weight: 600; padding: .8rem 0; position: relative; text-decoration: none; }
.bbb-primary-nav a::after { background: var(--bbb-forest); bottom: .45rem; content: ""; height: 1px; left: 0; position: absolute; transform: scaleX(0); transform-origin: left; transition: transform 200ms ease; width: 100%; }
.bbb-primary-nav a:hover::after, .bbb-primary-nav a:focus-visible::after { transform: scaleX(1); }
.bbb-menu-toggle { background: transparent; border: 0; display: none; height: 44px; padding: 10px; width: 44px; }
.bbb-menu-toggle > span:not(.screen-reader-text) { background: var(--bbb-forest); display: block; height: 2px; margin: 5px 0; width: 24px; }

.bbb-button { align-items: center; background: var(--bbb-forest); border: 1px solid var(--bbb-forest); border-radius: 12px; color: white; display: inline-flex; font-weight: 700; justify-content: center; min-height: 46px; padding: .75rem 1.4rem; text-decoration: none; transition: background 180ms ease, color 180ms ease, transform 180ms ease; }
.bbb-button:hover { background: var(--bbb-forest-dark); color: white; transform: translateY(-1px); }
.bbb-button--outline-light { background: transparent; border-color: rgb(255 255 255 / 70%); color: white; }
.bbb-button--outline-light:hover { background: white; color: var(--bbb-forest); }
.bbb-text-link { color: var(--bbb-forest); font-weight: 700; text-decoration: none; }
.bbb-text-link:hover { text-decoration: underline; text-underline-offset: 4px; }
.bbb-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.bbb-section { margin-inline: auto; max-width: var(--bbb-max); padding: clamp(3.5rem, 7vw, 6.5rem) 1.5rem; }
.bbb-section-heading { margin-bottom: 2rem; }
.bbb-section-heading > p:last-child { color: var(--bbb-muted); max-width: 60ch; }
.bbb-section-heading--inline { align-items: end; display: flex; gap: 2rem; justify-content: space-between; }
.bbb-section-heading--inline h1, .bbb-section-heading--inline h2 { margin-bottom: .5rem; }
.bbb-eyebrow { color: var(--bbb-forest); font-size: .75rem; font-weight: 800; letter-spacing: .18em; margin-bottom: .65rem; text-transform: uppercase; }
.bbb-eyebrow--light { color: var(--bbb-gold); }

.bbb-hero { background: var(--bbb-forest) url("../images/hero-poster.webp") center 56% / cover no-repeat; color: white; min-height: min(76svh, 760px); position: relative; }
.bbb-hero-video { height: 100%; inset: 0; object-fit: cover; object-position: center; opacity: 0; position: absolute; transition: opacity 450ms ease; width: 100%; }
.bbb-hero-video.is-ready { opacity: 1; }
.bbb-hero-overlay { background: linear-gradient(90deg, rgb(10 27 23 / 82%) 0%, rgb(10 27 23 / 45%) 48%, rgb(10 27 23 / 8%) 75%); inset: 0; position: absolute; }
.bbb-hero-content { margin: 0 auto; max-width: var(--bbb-max); padding: clamp(7rem, 15vh, 10rem) 1.5rem 9rem; position: relative; z-index: 1; }
.bbb-hero-content h1 { color: white; max-width: 720px; }
.bbb-hero-content > p:not(.bbb-eyebrow) { font-size: clamp(1.05rem, 1.4vw, 1.25rem); margin-bottom: 2rem; max-width: 580px; }

.bbb-facts { background: var(--bbb-surface); border: 1px solid var(--bbb-border); border-radius: var(--bbb-radius); box-shadow: var(--bbb-shadow); display: grid; gap: 0; grid-template-columns: repeat(4, 1fr); margin: -4.2rem auto 0; max-width: min(calc(100% - 3rem), var(--bbb-max)); padding: 1.35rem; position: relative; z-index: 3; }
.bbb-facts > div { align-items: center; border-right: 1px solid var(--bbb-border); display: grid; gap: 0 .8rem; grid-template-columns: 42px 1fr; padding: .45rem 1.2rem; }
.bbb-facts > div:last-child { border-right: 0; }
.bbb-fact-icon { color: var(--bbb-forest); font-size: 2rem; grid-row: span 2; }
.bbb-facts strong { color: var(--bbb-forest); font-family: var(--bbb-display); font-size: 1.35rem; line-height: 1.2; }
.bbb-facts small { color: var(--bbb-muted); }

.bbb-home-grid { align-items: start; display: grid; gap: 2rem; grid-template-columns: 1.05fr .95fr 1.18fr; }
.bbb-story-image { aspect-ratio: 4 / 3; border-radius: var(--bbb-radius-lg); height: 100%; object-fit: cover; }
.bbb-story-copy { padding: 1.5rem .5rem; }
.bbb-story-copy h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); }
.bbb-home-availability .bbb-availability { height: 100%; }

.bbb-availability, .bbb-booking-card, .bbb-price-table, .bbb-faq, .bbb-contact-cards article, .bbb-partner-grid article { background: var(--bbb-surface); border: 1px solid var(--bbb-border); border-radius: var(--bbb-radius); box-shadow: var(--bbb-shadow); padding: clamp(1.4rem, 3vw, 2rem); }
.bbb-availability h2, .bbb-booking-card h2, .bbb-price-table h2, .bbb-faq h2 { font-size: clamp(1.65rem, 2.6vw, 2.3rem); }
.bbb-section-heading--inline .bbb-minimum-note { background: rgb(205 180 116 / 18%); border-radius: 999px; color: var(--bbb-charcoal); font-size: .8rem; margin: 0; padding: .5rem .8rem; white-space: nowrap; }
.bbb-calendar-navigation { align-items: center; display: grid; gap: 1rem; grid-template-columns: 44px 1fr 44px; margin: 1.1rem 0 .85rem; }
.bbb-calendar-navigation strong { color: var(--bbb-forest); font-size: .9rem; text-align: center; }
.bbb-calendar-navigation button { align-items: center; background: white; border: 1px solid var(--bbb-border); border-radius: 50%; color: var(--bbb-forest); cursor: pointer; display: inline-flex; font-size: 1.15rem; height: 44px; justify-content: center; padding: 0; width: 44px; }
.bbb-calendar-navigation button:hover:not(:disabled), .bbb-calendar-navigation button:focus-visible { border-color: var(--bbb-forest); box-shadow: 0 0 0 3px rgb(30 69 62 / 10%); }
.bbb-calendar-navigation button:disabled { cursor: not-allowed; opacity: .35; }
.bbb-calendar-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.bbb-availability--compact .bbb-calendar-grid { grid-template-columns: 1fr; }
.bbb-availability--compact .bbb-calendar-month { align-content: center; display: grid; min-height: 430px; }
.bbb-availability--compact .bbb-calendar-month[hidden] { display: none; }
.bbb-availability--compact .bbb-calendar-month h3 { display: none; }
.bbb-calendar-month { border: 1px solid var(--bbb-border); border-radius: 14px; padding: 1rem; }
.bbb-calendar-month h3 { font-family: var(--bbb-body); font-size: 1rem; font-weight: 800; text-align: center; }
.bbb-calendar-weekdays, .bbb-calendar-days { display: grid; gap: .35rem; grid-template-columns: repeat(7, 1fr); text-align: center; }
.bbb-calendar-weekdays { color: var(--bbb-muted); font-size: .72rem; font-weight: 800; margin-bottom: .45rem; }
.bbb-calendar-days > * { align-items: center; aspect-ratio: 1; border-radius: 8px; display: flex; font-size: .78rem; justify-content: center; min-width: 0; }
.bbb-calendar-days button { border: 0; font-family: inherit; min-height: 44px; padding: 0; }
.bbb-calendar-days .is-available { background: rgb(30 69 62 / 9%); color: var(--bbb-forest); }
.bbb-calendar-days .is-unavailable { background: rgb(110 47 62 / 16%); color: var(--bbb-wine); text-decoration: line-through; }
.bbb-calendar-days .is-past { color: rgb(110 113 109 / 55%); }
.bbb-calendar-days .is-outside-window { color: rgb(110 113 109 / 38%); }
.bbb-calendar-legend { border-top: 1px solid var(--bbb-border); display: flex; gap: 1.3rem; margin-top: 1rem; padding-top: 1rem; }
.bbb-calendar-legend span { align-items: center; display: inline-flex; font-size: .8rem; gap: .45rem; }
.bbb-calendar-legend i { border-radius: 50%; display: inline-block; height: 11px; width: 11px; }
.bbb-calendar-legend .is-available { background: rgb(30 69 62 / 24%); }
.bbb-calendar-legend .is-unavailable { background: rgb(110 47 62 / 54%); }

.bbb-teaser-gallery { display: grid; gap: .75rem; grid-template-columns: 1.3fr 1fr 1fr 1.3fr; }
.bbb-teaser-gallery img { aspect-ratio: 4 / 3; border-radius: 14px; height: 100%; object-fit: cover; width: 100%; }
.bbb-program-teaser { padding-top: 2rem; }
.bbb-program-teaser-grid { display: grid; gap: 1rem; grid-template-columns: repeat(3, 1fr); }
.bbb-program-teaser-grid a { background: var(--bbb-surface); border: 1px solid var(--bbb-border); border-radius: var(--bbb-radius); display: grid; gap: .3rem; grid-template-columns: 48px 1fr; padding: 1.4rem; text-decoration: none; transition: transform 180ms ease, box-shadow 180ms ease; }
.bbb-program-teaser-grid a:hover { box-shadow: var(--bbb-shadow); transform: translateY(-3px); }
.bbb-program-teaser-grid span { align-items: center; background: var(--bbb-forest); border-radius: 50%; color: var(--bbb-gold); display: flex; font-weight: 800; grid-row: span 2; height: 42px; justify-content: center; width: 42px; }
.bbb-program-teaser-grid strong { color: var(--bbb-forest); font-family: var(--bbb-display); font-size: 1.35rem; }
.bbb-program-teaser-grid small { color: var(--bbb-muted); }
.bbb-price-callout { align-items: center; background: var(--bbb-forest); border-radius: var(--bbb-radius-lg); color: white; display: flex; justify-content: space-between; margin-bottom: 6rem; padding: clamp(2rem, 5vw, 4rem); }
.bbb-price-callout h2 { color: white; }
.bbb-price-callout p:not(.bbb-eyebrow) { margin-bottom: 0; max-width: 680px; }
.bbb-price-callout .bbb-button { background: var(--bbb-gold); border-color: var(--bbb-gold); color: var(--bbb-charcoal); flex: none; }

.bbb-page-hero { align-items: center; background: linear-gradient(90deg, rgb(10 27 23 / 84%), rgb(10 27 23 / 28%)), url("../images/hero-poster.jpg") center 56% / cover no-repeat; color: white; display: flex; min-height: 360px; }
.bbb-page-hero > div { margin: 0 auto; max-width: var(--bbb-max); padding: 4rem 1.5rem; width: 100%; }
.bbb-page-hero h1 { color: white; margin-bottom: .8rem; }
.bbb-page-hero p:not(.bbb-eyebrow) { font-size: 1.15rem; max-width: 560px; }
.bbb-page-main, .bbb-default-main, .bbb-error-page { margin: 0 auto; max-width: var(--bbb-max); min-height: 55vh; padding: 5rem 1.5rem; }
.bbb-legal-page { max-width: 820px; }
.bbb-legal-page > h1 { margin-bottom: 1rem; }
.bbb-legal-intro { color: var(--bbb-muted); font-size: 1.08rem; max-width: 70ch; }
.bbb-legal-draft { background: rgb(205 180 116 / 18%); border: 1px solid rgb(154 104 71 / 24%); border-radius: 14px; color: var(--bbb-charcoal); margin: 2rem 0; padding: 1rem 1.2rem; }
.bbb-legal-draft code, .bbb-legal-section code { background: rgb(110 47 62 / 9%); border-radius: 5px; color: var(--bbb-wine); font-size: .82em; padding: .1rem .3rem; }
.bbb-legal-section { background: var(--bbb-surface); border: 1px solid var(--bbb-border); border-radius: var(--bbb-radius); box-shadow: var(--bbb-shadow); margin-top: 1rem; padding: clamp(1.25rem, 3vw, 2rem); }
.bbb-legal-section h2 { font-family: var(--bbb-body); font-size: clamp(1.25rem, 2.5vw, 1.65rem); margin-bottom: 1rem; }
.bbb-legal-section p, .bbb-legal-section li { color: var(--bbb-muted); }
.bbb-legal-section li + li { margin-top: .5rem; }
.bbb-legal-section a, .bbb-faq-page a { color: var(--bbb-forest); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.bbb-faq-page details { background: var(--bbb-surface); border: 1px solid var(--bbb-border); border-radius: 14px; box-shadow: var(--bbb-shadow); margin-top: .8rem; padding: 1rem 1.2rem; }
.bbb-faq-page summary { color: var(--bbb-forest); cursor: pointer; font-weight: 800; }
.bbb-faq-page details p { color: var(--bbb-muted); margin: .8rem 0 0; }

.bbb-booking-layout { align-items: start; display: grid; gap: 1.5rem; grid-template-columns: minmax(0, 1.85fr) minmax(330px, .85fr); }
.bbb-booking-layout .bbb-availability { min-width: 0; }
.bbb-booking-layout .bbb-availability--full { padding: clamp(1.6rem, 3vw, 2.5rem); }
.bbb-booking-layout .bbb-availability--full .bbb-calendar-days > * { font-size: .88rem; }
.bbb-booking-card { min-width: 0; position: relative; }
.bbb-local-notice { background: rgb(205 180 116 / 18%); border-left: 3px solid var(--bbb-gold); font-size: .86rem; margin-bottom: 1.2rem; padding: .75rem 1rem; }
.bbb-booking-form { display: grid; gap: .85rem; }
.bbb-booking-form label { color: var(--bbb-charcoal); display: grid; font-size: .86rem; font-weight: 700; gap: .35rem; }
.bbb-form-row { display: grid; gap: .8rem; grid-template-columns: 1fr 1fr; }
.bbb-date-fallback[hidden] { display: none; }
.bbb-booking-form input:not([type="checkbox"]):not([type="hidden"]), .bbb-booking-form textarea { background: white; border: 1px solid var(--bbb-border); border-radius: 10px; min-height: 46px; padding: .7rem .8rem; }
.bbb-booking-form > button[type="submit"] { background: var(--bbb-forest); border: 0; border-radius: 10px; color: white; cursor: pointer; font-weight: 800; min-height: 48px; }
.bbb-booking-form :disabled { cursor: not-allowed; opacity: .68; }
.bbb-booking-form .bbb-honeypot { left: -10000px; position: absolute; }
.bbb-consent-group { border: 0; border-top: 1px solid var(--bbb-border); display: grid; gap: .75rem; margin: .25rem 0 0; padding: 1rem 0 0; }
.bbb-consent-group legend { color: var(--bbb-forest); font-size: .82rem; font-weight: 800; padding: 0 .45rem 0 0; }
.bbb-booking-form .bbb-consent-check, .bbb-contact-form .bbb-consent-check { align-items: start; display: grid; font-size: .78rem; font-weight: 400; gap: .65rem; grid-template-columns: 20px minmax(0, 1fr); line-height: 1.5; }
.bbb-booking-form .bbb-consent-check input[type="checkbox"], .bbb-contact-form .bbb-consent-check input[type="checkbox"] { accent-color: var(--bbb-forest); background: white; border-radius: 4px; height: 20px; margin: .1rem 0 0; min-height: 20px; padding: 0; width: 20px; }
.bbb-consent-check a { color: var(--bbb-forest); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.bbb-consent-check input:focus-visible { outline: 2px solid var(--bbb-forest); outline-offset: 3px; }
.bbb-date-picker-fields { align-items: stretch; background: white; border: 1px solid var(--bbb-border); border-radius: 12px; display: grid; grid-template-columns: 1fr auto 1fr; overflow: hidden; }
.bbb-date-picker-fields > span { align-items: center; color: var(--bbb-muted); display: flex; padding-inline: .2rem; }
.bbb-date-picker-fields button { align-items: start; background: white; border: 0; border-radius: 0; box-shadow: none; color: var(--bbb-charcoal); cursor: pointer; display: flex; flex-direction: column; font-weight: 400; justify-content: center; min-height: 62px; padding: .65rem .8rem; text-align: left; }
.bbb-date-picker-fields button:hover, .bbb-date-picker-fields button:focus-visible { background: rgb(30 69 62 / 6%); box-shadow: inset 0 0 0 2px var(--bbb-forest); outline: 0; }
.bbb-date-picker-fields button[aria-invalid="true"] { box-shadow: inset 0 0 0 2px var(--bbb-wine); }
.bbb-date-picker-fields button span { color: var(--bbb-muted); font-size: .7rem; font-weight: 700; text-transform: uppercase; }
.bbb-date-picker-fields button strong { color: var(--bbb-forest); font-size: .83rem; margin-top: .15rem; }
.bbb-date-picker-popover { background: var(--bbb-surface); border: 1px solid var(--bbb-border); border-radius: 18px; box-shadow: 0 24px 70px rgb(8 18 15 / 24%); max-width: min(720px, calc(100vw - 2rem)); padding: 1.1rem; position: absolute; right: 0; top: 12.5rem; width: 720px; z-index: 20; }
.bbb-date-picker-heading { align-items: start; display: flex; justify-content: space-between; }
.bbb-date-picker-heading > div { display: grid; gap: .2rem; }
.bbb-date-picker-heading strong { color: var(--bbb-forest); }
.bbb-date-picker-heading small { color: var(--bbb-muted); }
.bbb-date-picker-heading > button { align-items: center; background: transparent; border: 0; border-radius: 50%; box-shadow: none; color: var(--bbb-charcoal); cursor: pointer; display: inline-flex; font-size: 1.5rem; height: 44px; justify-content: center; min-height: 44px; padding: 0; width: 44px; }
.bbb-date-picker-heading > button:hover { background: rgb(30 69 62 / 7%); }
.bbb-date-picker-popover .bbb-calendar-month { background: white; padding: .8rem; }
.bbb-date-picker-popover .bbb-calendar-days button { cursor: pointer; }
.bbb-date-picker-popover .bbb-calendar-days button:focus-visible { box-shadow: 0 0 0 3px rgb(30 69 62 / 25%); outline: 2px solid var(--bbb-forest); outline-offset: 1px; }
.bbb-date-picker-popover .bbb-calendar-days button.is-in-range { background: rgb(205 180 116 / 34%); border-radius: 0; color: var(--bbb-charcoal); text-decoration: none; }
.bbb-date-picker-popover .bbb-calendar-days button.is-range-start, .bbb-date-picker-popover .bbb-calendar-days button.is-range-end { background: var(--bbb-forest); color: white; text-decoration: none; }
.bbb-date-picker-footer { align-items: center; border-top: 1px solid var(--bbb-border); display: flex; gap: 1rem; justify-content: space-between; margin-top: 1rem; padding-top: .85rem; }
.bbb-date-picker-footer p { color: var(--bbb-muted); font-size: .78rem; margin: 0; }
.bbb-date-picker-footer p.is-error { color: var(--bbb-wine); font-weight: 700; }
.bbb-date-picker-actions { display: flex; flex: none; gap: .6rem; }
.bbb-date-picker-footer button { background: transparent; border: 1px solid var(--bbb-border); border-radius: 10px; box-shadow: none; color: var(--bbb-forest); cursor: pointer; font-size: .78rem; font-weight: 700; min-height: 44px; padding: .55rem .9rem; }
.bbb-date-picker-footer [data-date-picker-clear]:hover { background: rgb(30 69 62 / 6%); border-color: rgb(30 69 62 / 28%); }
.bbb-date-picker-footer [data-date-picker-confirm] { background: var(--bbb-forest); border-color: var(--bbb-forest); color: white; min-width: 64px; }
.bbb-date-picker-footer [data-date-picker-confirm]:hover:not(:disabled) { background: var(--bbb-forest-dark); }
.bbb-form-status { border-left: 3px solid; font-size: .86rem; margin-bottom: 1rem; padding: .75rem 1rem; }
.bbb-form-status--success { background: rgb(30 69 62 / 10%); border-color: var(--bbb-forest); }
.bbb-form-status--error { background: rgb(110 47 62 / 9%); border-color: var(--bbb-wine); }
.bbb-booking-success-toast { align-items: center; animation: bbb-toast-in 320ms ease-out both; background: #17663d; border: 1px solid rgb(255 255 255 / 18%); border-radius: 16px; box-shadow: 0 22px 60px rgb(8 18 15 / 32%); color: white; display: grid; gap: .9rem; grid-template-columns: 54px minmax(0, 1fr) 44px; max-width: min(560px, calc(100vw - 2rem)); padding: 1rem; position: fixed; right: 1rem; top: calc(1rem + var(--wp-admin--admin-bar--height, 0px)); transition: opacity 240ms ease, transform 240ms ease; width: max-content; z-index: 1000; }
.bbb-booking-success-toast:focus { outline: 3px solid var(--bbb-gold); outline-offset: 3px; }
.bbb-booking-success-toast.is-leaving { opacity: 0; transform: translateY(-12px); }
.bbb-booking-success-icon { align-items: center; background: white; border-radius: 50%; color: #17663d; display: inline-flex; font-size: 1.8rem; font-weight: 800; height: 54px; justify-content: center; width: 54px; }
.bbb-booking-success-toast strong { color: white; display: block; font-size: 1rem; margin-bottom: .2rem; }
.bbb-booking-success-toast p { color: rgb(255 255 255 / 88%); font-size: .82rem; line-height: 1.45; margin: 0; }
.bbb-booking-success-toast button { align-items: center; background: transparent; color: white; display: inline-flex; font-size: 1.5rem; height: 44px; justify-content: center; min-height: 44px; padding: 0; width: 44px; }
@keyframes bbb-toast-in { from { opacity: 0; transform: translateY(-18px); } to { opacity: 1; transform: translateY(0); } }
.bbb-booking-secondary { display: grid; gap: 1.5rem; grid-template-columns: 1.55fr 1fr; margin-top: 1.5rem; }
.bbb-table-row { align-items: center; border-top: 1px solid var(--bbb-border); display: grid; gap: 1rem; grid-template-columns: 1.3fr .8fr .7fr 1fr; padding: .9rem .2rem; }
.bbb-price-table .bbb-table-row { grid-template-columns: 1fr auto; }
.bbb-price-table .bbb-table-row > :last-child { text-align: right; }
.bbb-price-table .bbb-table-row strong { color: var(--bbb-forest); font-size: 1.15rem; }
.bbb-price-note { border-top: 1px solid var(--bbb-border); color: var(--bbb-muted); font-size: .82rem; margin: .4rem 0 0; padding-top: 1rem; }
.bbb-table-head { border-top: 0; color: var(--bbb-muted); font-size: .78rem; font-weight: 800; text-transform: uppercase; }
.bbb-faq details { border-top: 1px solid var(--bbb-border); padding: .85rem 0; }
.bbb-faq summary { cursor: pointer; font-weight: 700; }
.bbb-faq details p { color: var(--bbb-muted); margin: .7rem 0 0; }

.bbb-property-details { margin-top: clamp(3rem, 7vw, 6rem); }
.bbb-property-details-header { align-items: end; display: flex; gap: 2rem; justify-content: space-between; }
.bbb-property-details-header h2 { margin-bottom: 0; }
.bbb-property-intro { color: var(--bbb-muted); font-size: 1.05rem; margin: 1rem 0 2rem; max-width: 70ch; }
.bbb-review-score { align-items: center; background: var(--bbb-forest); border-radius: 16px; color: white; display: flex; flex: none; gap: .8rem; padding: .85rem 1rem; }
.bbb-review-score strong { color: var(--bbb-gold); font-family: var(--bbb-display); font-size: 1.7rem; line-height: 1; }
.bbb-review-score strong span { font-family: var(--bbb-body); font-size: .8rem; }
.bbb-review-score > span { font-size: .74rem; font-weight: 700; max-width: 8rem; }
.bbb-amenities-grid { display: grid; gap: 1rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.bbb-amenity-card { align-items: start; background: var(--bbb-surface); border: 1px solid var(--bbb-border); border-radius: var(--bbb-radius); display: grid; gap: 1rem; grid-template-columns: 48px 1fr; padding: 1.4rem; }
.bbb-amenity-card--wide { grid-column: 1 / -1; }
.bbb-amenity-icon { align-items: center; background: rgb(30 69 62 / 10%); border-radius: 50%; color: var(--bbb-forest); display: flex; font-size: .72rem; font-weight: 800; height: 48px; justify-content: center; width: 48px; }
.bbb-amenity-card h3 { font-family: var(--bbb-body); font-size: 1rem; margin: .1rem 0 .45rem; }
.bbb-amenity-card p, .bbb-amenity-card ul { color: var(--bbb-muted); font-size: .9rem; margin: 0; }
.bbb-amenity-card ul { padding-left: 1.15rem; }
.bbb-amenity-card li + li { margin-top: .35rem; }
.bbb-house-rules { background: var(--bbb-forest); border-radius: var(--bbb-radius-lg); color: white; display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: minmax(0, 1.5fr) minmax(260px, .65fr); margin-top: 1.5rem; overflow: hidden; padding: clamp(1.5rem, 4vw, 3rem); }
.bbb-house-rules h2, .bbb-house-rules h3 { color: white; }
.bbb-house-rules .bbb-eyebrow { color: var(--bbb-gold); }
.bbb-house-rules dl { margin: 1.5rem 0 0; }
.bbb-house-rules dl > div { border-top: 1px solid rgb(255 255 255 / 14%); display: grid; gap: 1rem; grid-template-columns: minmax(150px, .8fr) minmax(0, 1.6fr); padding: .85rem 0; }
.bbb-house-rules dt { color: rgb(255 255 255 / 68%); font-size: .78rem; font-weight: 700; }
.bbb-house-rules dd { font-size: .9rem; margin: 0; }
.bbb-payment-card { align-self: start; background: var(--bbb-surface); border-radius: var(--bbb-radius); color: var(--bbb-charcoal); padding: 1.5rem; }
.bbb-payment-card h3 { color: var(--bbb-forest); font-family: var(--bbb-display); font-size: 1.65rem; }
.bbb-payment-card ul { display: grid; gap: .6rem; list-style: none; margin: 1.3rem 0; padding: 0; }
.bbb-payment-card li { align-items: center; border-top: 1px solid var(--bbb-border); display: flex; font-size: .82rem; font-weight: 700; gap: .75rem; padding-top: .6rem; }
.bbb-payment-card img { border-radius: 3px; flex: none; height: 21px; object-fit: contain; width: 32px; }
.bbb-payment-card > p:last-child { color: var(--bbb-muted); font-size: .75rem; margin-bottom: 0; }

.bbb-gallery-page h1, .bbb-program-page h1 { margin-bottom: .6rem; }
.bbb-gallery-switch { background: var(--bbb-surface); border: 1px solid var(--bbb-border); border-radius: 13px; display: flex; padding: .3rem; }
.bbb-gallery-switch button { background: transparent; border: 0; border-radius: 10px; color: var(--bbb-muted); cursor: pointer; min-height: 42px; padding: .6rem 1rem; }
.bbb-gallery-switch button.is-active { background: white; box-shadow: 0 3px 12px rgb(30 69 62 / 10%); color: var(--bbb-forest); font-weight: 800; }
.bbb-gallery-grid { display: grid; gap: .75rem; grid-auto-flow: dense; grid-auto-rows: 240px; grid-template-columns: repeat(3, 1fr); }
.bbb-gallery-grid figure { border-radius: 14px; margin: 0; min-width: 0; overflow: hidden; }
.bbb-gallery-grid img { height: 100%; object-fit: cover; width: 100%; }
.bbb-gallery-open { background: transparent; border: 0; cursor: zoom-in; display: block; height: 100%; overflow: hidden; padding: 0; text-decoration: none; width: 100%; }
.bbb-gallery-open img { transition: transform 260ms ease; }
.bbb-gallery-open:hover img, .bbb-gallery-open:focus-visible img { transform: scale(1.025); }
.bbb-gallery-grid .is-wide { grid-column: span 2; }
.bbb-gallery-grid .is-tall { grid-row: span 2; }
.bbb-gallery-grid.is-grid { grid-auto-rows: auto; }
.bbb-gallery-grid.is-grid figure, .bbb-gallery-grid.is-grid .is-wide, .bbb-gallery-grid.is-grid .is-tall { aspect-ratio: 4 / 3; grid-column: span 1; grid-row: span 1; }
.bbb-lightbox { background: transparent; border: 0; height: 100%; margin: auto; max-height: none; max-width: none; overflow: visible; padding: 0; width: 100%; }
.bbb-lightbox::backdrop { background: rgb(8 18 15 / 94%); backdrop-filter: blur(5px); }
.bbb-lightbox-frame { align-items: center; display: grid; height: 100%; place-items: center; position: relative; width: 100%; }
.bbb-lightbox figure { align-items: center; display: flex; flex-direction: column; gap: .75rem; justify-content: center; margin: 0; max-height: 100%; max-width: 100%; }
.bbb-lightbox img { display: block; height: auto; max-height: calc(100svh - 7rem); max-width: calc(100vw - 10rem); width: auto; }
.bbb-lightbox figcaption { color: rgb(255 255 255 / 82%); font-size: .82rem; min-height: 1.35rem; text-align: center; }
.bbb-lightbox button { align-items: center; background: rgb(255 252 247 / 94%); border: 1px solid rgb(255 255 255 / 28%); border-radius: 50%; color: var(--bbb-forest); cursor: pointer; display: flex; font-size: 1.55rem; height: 48px; justify-content: center; padding: 0; position: absolute; width: 48px; z-index: 2; }
.bbb-lightbox button:hover { background: white; }
.bbb-lightbox-close { right: 1.5rem; top: 1.5rem; }
.bbb-lightbox-nav { top: 50%; transform: translateY(-50%); }
.bbb-lightbox-nav--previous { left: 1.5rem; }
.bbb-lightbox-nav--next { right: 1.5rem; }
.bbb-lightbox button:disabled { cursor: default; opacity: .35; }

.bbb-program-intro { text-align: center; }
.bbb-program-intro > p { margin-inline: auto; }
.bbb-program-slogan { color: var(--bbb-forest) !important; font-family: var(--bbb-display); font-size: clamp(1.65rem, 3vw, 2.5rem); letter-spacing: .06em; margin: -.25rem auto 1rem; }
.bbb-program-tabs { background: var(--bbb-surface); border: 1px solid var(--bbb-border); border-radius: 999px; display: flex; gap: .35rem; margin: 0 auto 3rem; padding: .4rem; position: sticky; top: 96px; width: fit-content; z-index: 10; }
.bbb-program-tabs a { border-radius: 999px; font-weight: 700; padding: .65rem 1.4rem; text-decoration: none; }
.bbb-program-tabs a:hover { background: var(--bbb-forest); color: white; }
.bbb-program-section { background: rgb(255 252 247 / 55%); border: 1px solid var(--bbb-border); border-radius: var(--bbb-radius-lg); margin-bottom: 1.5rem; padding: clamp(1.5rem, 4vw, 3rem); scroll-margin-top: 170px; }
.bbb-program-section-heading { align-items: end; border-bottom: 1px solid var(--bbb-border); display: flex; gap: 2rem; justify-content: space-between; padding-bottom: 1.5rem; }
.bbb-program-section-heading h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0; }
.bbb-program-section-heading p:last-child { color: var(--bbb-muted); margin: 0; max-width: 48ch; }
.bbb-partner-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 1.5rem; }
.bbb-partner-grid article { box-shadow: none; overflow: hidden; padding: 0; }
.bbb-partner-card { display: flex; flex-direction: column; min-height: 100%; transition: box-shadow 180ms ease, transform 180ms ease; }
.bbb-partner-card:hover { box-shadow: var(--bbb-shadow); transform: translateY(-2px); }
.bbb-partner-grid > .bbb-partner-card:only-child { display: grid; grid-column: 1 / -1; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.bbb-partner-grid > .bbb-partner-card:only-child .bbb-partner-card-media { aspect-ratio: auto; min-height: 300px; }
.bbb-partner-card-media { aspect-ratio: 16 / 9; background: var(--bbb-forest); margin: 0; overflow: hidden; position: relative; }
.bbb-partner-card-media img { height: 100%; object-fit: cover; transition: transform 300ms ease; width: 100%; }
.bbb-partner-card:hover .bbb-partner-card-media img { transform: scale(1.025); }
.bbb-partner-card-media figcaption { background: linear-gradient(0deg, rgb(8 18 15 / 76%), transparent); bottom: 0; color: white; font-size: .68rem; left: 0; padding: 1.7rem .8rem .55rem; position: absolute; right: 0; }
.bbb-partner-card-media figcaption a { color: inherit; text-decoration-color: rgb(255 255 255 / 55%); text-underline-offset: 2px; }
.bbb-partner-card-body { display: flex; flex: 1; flex-direction: column; padding: 1.35rem; }
.bbb-partner-card .bbb-text-link { margin-top: auto; padding-top: 1rem; }
.bbb-partner-card--pending { background: transparent !important; border-style: dashed !important; }
.bbb-partner-placeholder-art { align-items: center; aspect-ratio: 16 / 9; background: linear-gradient(135deg, rgb(205 180 116 / 18%), rgb(30 69 62 / 8%)); color: var(--bbb-forest); display: flex; justify-content: center; }
.bbb-partner-placeholder-art span { align-items: center; border: 1px dashed currentcolor; border-radius: 50%; display: flex; font-size: 2rem; height: 64px; justify-content: center; width: 64px; }
.bbb-partner-grid h3 { font-family: var(--bbb-body); font-size: 1.15rem; font-weight: 800; }
.bbb-partner-grid p { color: var(--bbb-muted); font-size: .92rem; margin-bottom: 0; }

.bbb-contact-layout { display: grid; gap: 1.5rem; grid-template-columns: .8fr 1.5fr; }
.bbb-contact-cards { display: grid; gap: 1rem; }
.bbb-contact-cards article { align-items: center; display: grid; gap: 1rem; grid-template-columns: 54px 1fr; }
.bbb-contact-cards article > span { align-items: center; background: var(--bbb-forest); border-radius: 50%; color: white; display: flex; font-size: 1.2rem; height: 50px; justify-content: center; width: 50px; }
.bbb-contact-cards h2 { font-family: var(--bbb-body); font-size: .9rem; font-weight: 800; margin: 0 0 .2rem; }
.bbb-contact-cards a, .bbb-contact-cards p { color: var(--bbb-forest); font-family: var(--bbb-display); font-size: 1.25rem; margin: 0; text-decoration: none; }
.bbb-contact-cards small { color: var(--bbb-muted); display: block; font-size: .72rem; }
.bbb-map { border: 1px solid var(--bbb-border); border-radius: var(--bbb-radius); min-height: 520px; overflow: hidden; position: relative; }
.bbb-map iframe { border: 0; display: block; height: 100%; inset: 0; min-height: 520px; position: absolute; width: 100%; }
.bbb-map-link { bottom: 1.25rem; box-shadow: var(--bbb-shadow); position: absolute; right: 1.25rem; }
.bbb-owner-confirm { color: var(--bbb-wine); font-weight: 800; }

.bbb-contact-form-section { align-items: center; background: var(--bbb-forest); border-radius: var(--bbb-radius-lg); display: grid; gap: clamp(2rem, 6vw, 5rem); grid-template-columns: .8fr 1.2fr; margin-bottom: clamp(3rem, 7vw, 6rem); margin-top: clamp(2rem, 5vw, 4rem); overflow: hidden; padding: clamp(2rem, 5vw, 4.5rem); position: relative; }
.bbb-contact-form-section::before, .bbb-contact-form-section::after { border: 1px solid rgb(205 180 116 / 18%); border-radius: 50%; content: ""; pointer-events: none; position: absolute; }
.bbb-contact-form-section::before { height: 280px; left: -150px; top: -170px; width: 280px; }
.bbb-contact-form-section::after { bottom: -210px; height: 360px; left: 28%; width: 360px; }
.bbb-contact-form-copy { color: rgb(255 255 255 / 82%); position: relative; z-index: 1; }
.bbb-contact-form-copy .bbb-eyebrow { color: var(--bbb-gold); }
.bbb-contact-form-copy h2 { color: white; margin-bottom: 1.25rem; }
.bbb-contact-form-copy > p:last-of-type { max-width: 42ch; }
.bbb-contact-form-mark { align-items: center; background: rgb(205 180 116 / 16%); border: 1px solid rgb(205 180 116 / 34%); border-radius: 50%; color: var(--bbb-gold); display: flex; font-size: 1.5rem; height: 54px; justify-content: center; margin-bottom: 2rem; width: 54px; }
.bbb-contact-form-points { display: grid; gap: .65rem; list-style: none; margin: 1.75rem 0 0; padding: 0; }
.bbb-contact-form-points li { align-items: center; display: flex; gap: .65rem; }
.bbb-contact-form-points li::before { align-items: center; background: var(--bbb-gold); border-radius: 50%; color: var(--bbb-forest-dark); content: "✓"; display: inline-flex; flex: none; font-size: .7rem; font-weight: 800; height: 20px; justify-content: center; width: 20px; }
.bbb-contact-form-card { background: var(--bbb-surface); border: 1px solid rgb(255 255 255 / 36%); border-radius: var(--bbb-radius-lg); box-shadow: 0 24px 70px rgb(8 18 15 / 28%); padding: clamp(1.5rem, 4vw, 3rem); position: relative; z-index: 1; }
.bbb-contact-form-card-heading { border-bottom: 1px solid var(--bbb-border); margin-bottom: 1.5rem; padding-bottom: .8rem; }
.bbb-contact-form-card-heading h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: .35rem; }
.bbb-contact-form { display: grid; gap: 1rem; }
.bbb-contact-form-meta { display: contents; }
.bbb-contact-form-hidden { display: none; }
.bbb-contact-form label { color: var(--bbb-charcoal); display: grid; font-size: .86rem; font-weight: 700; gap: .4rem; }
.bbb-contact-form input, .bbb-contact-form textarea { background: white; border: 1px solid var(--bbb-border); border-radius: 12px; color: var(--bbb-charcoal); padding: .75rem .85rem; transition: border-color 180ms ease, box-shadow 180ms ease; width: 100%; }
.bbb-contact-form input:focus, .bbb-contact-form textarea:focus { border-color: var(--bbb-forest); box-shadow: 0 0 0 3px rgb(30 69 62 / 10%); outline: 0; }
.bbb-contact-form input { min-height: 48px; }
.bbb-contact-form textarea { min-height: 150px; resize: vertical; }
.bbb-contact-form .bbb-button { justify-self: start; }
.bbb-form-privacy { color: var(--bbb-muted); font-size: .75rem; margin: 0; }
.bbb-form-status { border-left: 3px solid var(--bbb-forest); margin-bottom: 1rem; padding: .75rem 1rem; }
.bbb-form-status--success { background: rgb(30 69 62 / 9%); }
.bbb-form-status--error { background: rgb(110 47 62 / 9%); border-left-color: var(--bbb-wine); }
.bbb-honeypot { height: 1px; left: -10000px; overflow: hidden; position: absolute; width: 1px; }

.bbb-contact-cta { align-items: center; background: var(--bbb-surface); display: flex; flex-direction: column; padding: clamp(4rem, 8vw, 7rem) 1.5rem; text-align: center; }
.bbb-contact-cta h2 { font-family: var(--bbb-body); font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 400; margin-bottom: 1rem; }
.bbb-contact-cta > span { background: var(--bbb-border); display: block; height: 2px; margin-bottom: 1.4rem; width: 84px; }
.bbb-contact-cta .bbb-button { min-width: 160px; }
body:has(.bbb-contact-page) .bbb-contact-cta { display: none; }

.bbb-site-footer { background: var(--bbb-forest); color: rgb(255 255 255 / 82%); padding: 3rem 1.5rem 1.2rem; }
.bbb-footer-grid { display: grid; gap: 2rem; grid-template-columns: 1.35fr repeat(4, minmax(0, 1fr)); margin: 0 auto; max-width: var(--bbb-max); }
.bbb-site-footer a { color: white; text-decoration: none; }
.bbb-footer-brand img { filter: brightness(0) invert(1); height: auto; width: 170px; }
.bbb-footer-label { color: var(--bbb-gold); font-size: .72rem; font-weight: 800; letter-spacing: .13em; margin-bottom: .5rem; text-transform: uppercase; }
.bbb-footer-links { display: grid; font-size: .88rem; gap: .45rem; }
.bbb-footer-links a:hover, .bbb-footer-links a:focus-visible { text-decoration: underline; text-underline-offset: 3px; }
.bbb-footer-meta { align-items: center; border-top: 1px solid rgb(255 255 255 / 12%); display: flex; font-size: .75rem; gap: 1rem 2rem; justify-content: space-between; margin: 2.5rem auto 0; max-width: var(--bbb-max); padding-top: 1rem; }
.bbb-footer-meta p { margin: 0; }
.bbb-footer-meta a { text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 1020px) {
  .bbb-header-inner { grid-template-columns: 76px 1fr auto; }
  .bbb-home-grid { grid-template-columns: 1fr 1fr; }
  .bbb-home-availability { grid-column: 1 / -1; }
  .bbb-facts { grid-template-columns: repeat(2, 1fr); }
  .bbb-facts > div:nth-child(2) { border-right: 0; }
  .bbb-facts > div:nth-child(-n+2) { border-bottom: 1px solid var(--bbb-border); }
  .bbb-contact-layout { grid-template-columns: 1fr 1.3fr; }
  .bbb-footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  body.admin-bar .bbb-site-header { top: 46px; }
  .bbb-header-inner { grid-template-columns: 1fr auto auto; min-height: 70px; }
  .bbb-brand img { height: 52px; width: 52px; }
  .bbb-menu-toggle { display: block; grid-column: 3; }
  .bbb-header-cta { grid-column: 2; grid-row: 1; }
  .bbb-primary-nav { align-items: stretch; background: var(--bbb-surface); border-top: 1px solid var(--bbb-border); display: none; flex-direction: column; gap: 0; grid-column: 1 / -1; margin: 0 -1.5rem -.55rem; padding: .75rem 1.5rem 1.5rem; }
  .bbb-primary-nav[data-open="true"] { display: flex; }
  .bbb-primary-nav a { border-bottom: 1px solid var(--bbb-border); min-height: 48px; padding: .85rem 0; }
  .bbb-hero { min-height: 700px; }
  .bbb-hero-video { display: none; }
  .bbb-hero-content { padding-bottom: 8rem; padding-top: 8rem; }
  .bbb-home-grid, .bbb-booking-layout, .bbb-booking-secondary, .bbb-contact-layout, .bbb-contact-form-section { grid-template-columns: 1fr; }
	.bbb-date-picker-popover { left: 0; right: auto; top: 12.5rem; }
	.bbb-house-rules { grid-template-columns: 1fr; }
  .bbb-calendar-grid { grid-template-columns: 1fr; }
  .bbb-program-section-heading { align-items: start; flex-direction: column; gap: .75rem; }
  .bbb-partner-grid > .bbb-partner-card:only-child { display: flex; grid-column: 1 / -1; }
  .bbb-partner-grid > .bbb-partner-card:only-child .bbb-partner-card-media { aspect-ratio: 16 / 9; min-height: 0; }
  .bbb-program-teaser-grid { grid-template-columns: 1fr; }
  .bbb-teaser-gallery { grid-template-columns: 1fr 1fr; }
  .bbb-gallery-grid { grid-auto-rows: 210px; grid-template-columns: repeat(2, 1fr); }
  .bbb-lightbox img { max-height: calc(100svh - 8rem); max-width: calc(100vw - 7rem); }
  .bbb-lightbox-close { right: 1rem; top: 1rem; }
  .bbb-lightbox-nav--previous { left: 1rem; }
  .bbb-lightbox-nav--next { right: 1rem; }
  .bbb-footer-grid { grid-template-columns: 1fr 1fr; }
  .bbb-footer-links a { align-items: center; display: flex; min-height: 44px; }
  .bbb-consent-check { min-height: 44px; }
  .bbb-faq-page summary { align-items: center; display: flex; min-height: 44px; }
}

@media (max-width: 560px) {
  .bbb-header-cta { display: none; }
  .bbb-header-inner { grid-template-columns: 1fr auto; padding-inline: 1rem; }
  .bbb-menu-toggle { grid-column: 2; }
  .bbb-primary-nav { margin-inline: -1rem; }
  .bbb-hero { min-height: 82svh; }
  .bbb-hero-overlay { background: linear-gradient(0deg, rgb(10 27 23 / 78%), rgb(10 27 23 / 30%)); }
  .bbb-hero-content { padding: 7rem 1rem 8rem; }
  .bbb-hero-content h1 { font-size: clamp(2.7rem, 13vw, 4rem); }
  .bbb-actions { align-items: stretch; flex-direction: column; }
  .bbb-facts { grid-template-columns: 1fr; margin-top: -3rem; padding: .6rem 1rem; }
  .bbb-facts > div { border-bottom: 1px solid var(--bbb-border); border-right: 0; }
  .bbb-facts > div:last-child { border-bottom: 0; }
  .bbb-section { padding: 3.5rem 1rem; }
  .bbb-section-heading--inline { align-items: start; flex-direction: column; }
  .bbb-section-heading--inline .bbb-minimum-note { white-space: normal; }
  .bbb-home-grid { gap: 1.2rem; }
  .bbb-story-copy { padding-inline: 0; }
  .bbb-teaser-gallery { grid-template-columns: 1fr; }
  .bbb-price-callout { align-items: stretch; border-radius: 0; flex-direction: column; margin-bottom: 0; }
  .bbb-form-row, .bbb-partner-grid { grid-template-columns: 1fr; }
	.bbb-date-picker-fields { grid-template-columns: 1fr auto 1fr; }
	.bbb-date-picker-popover { left: 50%; padding: .5rem; position: fixed; right: auto; top: max(5rem, calc(var(--wp-admin--admin-bar--height, 0px) + 1rem)); transform: translateX(-50%); width: calc(100vw - 1.5rem); }
	.bbb-date-picker-popover .bbb-calendar-month { padding: .25rem; }
	.bbb-date-picker-popover .bbb-calendar-weekdays, .bbb-date-picker-popover .bbb-calendar-days { gap: .2rem; }
	.bbb-date-picker-popover .bbb-calendar-grid { grid-template-columns: 1fr; }
	.bbb-date-picker-footer { align-items: stretch; flex-direction: column; }
	.bbb-booking-success-toast { bottom: 1rem; right: 1rem; top: auto; }
	.bbb-property-details-header { align-items: stretch; flex-direction: column; }
	.bbb-review-score { width: fit-content; }
	.bbb-amenities-grid { grid-template-columns: 1fr; }
	.bbb-amenity-card--wide { grid-column: auto; }
	.bbb-house-rules { border-radius: 20px; padding: 1.25rem; }
	.bbb-house-rules dl > div { gap: .3rem; grid-template-columns: 1fr; }
  .bbb-table-head { display: none; }
  .bbb-table-row { grid-template-columns: 1fr; }
  .bbb-gallery-switch { width: 100%; }
  .bbb-gallery-switch button { flex: 1; }
  .bbb-gallery-grid { display: flex; flex-direction: column; }
  .bbb-gallery-grid figure { aspect-ratio: 4 / 3; max-height: none; }
  .bbb-lightbox img { max-height: calc(100svh - 9rem); max-width: calc(100vw - 2rem); }
  .bbb-lightbox button { background: rgb(255 252 247 / 88%); height: 44px; width: 44px; }
  .bbb-lightbox-close { right: .75rem; top: .75rem; }
  .bbb-lightbox-nav { top: auto; transform: none; }
  .bbb-lightbox-nav--previous { bottom: 1rem; left: calc(50% - 54px); }
  .bbb-lightbox-nav--next { bottom: 1rem; right: calc(50% - 54px); }
  .bbb-program-tabs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); overflow: visible; top: 78px; width: 100%; }
  .bbb-program-tabs a { padding: .55rem .35rem; text-align: center; white-space: normal; }
  .bbb-program-section { padding: 1.25rem; }
  .bbb-contact-cards article { grid-template-columns: 44px 1fr; padding: 1.2rem; }
  .bbb-contact-cards article > span { height: 42px; width: 42px; }
  .bbb-contact-cards a, .bbb-contact-cards p { font-size: 1.05rem; overflow-wrap: anywhere; }
  .bbb-map, .bbb-map iframe { min-height: 400px; }
  .bbb-contact-form-section { border-radius: 20px; margin-inline: 1rem; padding: 2rem 1.25rem; }
  .bbb-footer-meta { align-items: flex-start; flex-direction: column; }
  .bbb-footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .bbb-hero-video { display: none; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
	.bbb-booking-success-toast { animation: none; }
}
