:root {
  --ink: #17211d;
  --ink-soft: #53605a;
  --green: #1f4438;
  --green-dark: #15352c;
  --green-light: #dfe9e2;
  --river: #6e8f9b;
  --river-deep: #284d5a;
  --river-mist: #dceaf0;
  --river-pale: #edf5f6;
  --cream: #f7f3eb;
  --cream-deep: #ebe4d8;
  --sand: #c7a672;
  --sand-pale: #f1e2c8;
  --sage: #dce9df;
  --sage-deep: #bdd1c3;
  --white: #fff;
  --line: #d8d9d3;
  --shadow: 0 24px 60px rgba(23, 33, 29, .12);
  --shadow-soft: 0 10px 35px rgba(23, 33, 29, .09);
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1240px, calc(100vw - 64px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--river-pale);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

main {
  background:
    radial-gradient(circle at 4% 22%, rgba(110, 143, 155, .23) 0, rgba(110, 143, 155, 0) 24rem),
    radial-gradient(circle at 96% 42%, rgba(199, 166, 114, .22) 0, rgba(199, 166, 114, 0) 26rem),
    radial-gradient(circle at 8% 70%, rgba(91, 127, 104, .18) 0, rgba(91, 127, 104, 0) 30rem),
    linear-gradient(180deg, var(--river-pale) 0%, #fbf6eb 32%, #eaf3ee 64%, var(--sand-pale) 84%, #e8f1f3 100%);
}

body:has(dialog[open]) { overflow: hidden; }

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

button, input { font: inherit; }

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

button { color: inherit; }

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

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

h1, h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.035em;
}

h2 { font-size: clamp(2.25rem, 4vw, 4.45rem); line-height: .99; }

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: -60px;
  padding: 12px 18px;
  color: #fff;
  background: var(--green-dark);
  border-radius: 999px;
  transition: top .2s ease;
}

.skip-link:focus { top: 16px; }

.section-shell { width: var(--shell); margin-inline: auto; }

.eyebrow {
  margin-bottom: 16px;
  font-size: .72rem;
  line-height: 1.1;
  font-weight: 750;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.text-green { color: var(--green); }

.site-header {
  position: relative;
  z-index: 40;
  height: 86px;
  padding: 0 max(32px, calc((100vw - 1240px) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  background: linear-gradient(100deg, rgba(249, 244, 232, .98), rgba(230, 241, 239, .98));
  border-bottom: 1px solid rgba(40,77,90,.13);
}

.site-header.is-sticky {
  position: sticky;
  top: 0;
  box-shadow: 0 10px 28px rgba(23, 33, 29, .08);
}

.brand { display: inline-flex; width: max-content; align-items: center; gap: 12px; }

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--green);
  border: 1px solid currentColor;
  border-radius: 50%;
}

.brand-mark svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; }

.brand strong { display: block; font-family: var(--serif); font-size: 1.06rem; font-weight: 600; line-height: 1; }

.brand small { display: block; margin-top: 5px; color: var(--ink-soft); font-size: .61rem; font-weight: 650; letter-spacing: .09em; text-transform: uppercase; }

.desktop-nav { display: flex; align-items: center; gap: 24px; }

.desktop-nav a { position: relative; font-size: .83rem; font-weight: 650; }

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--green);
  transition: right .2s ease;
}

.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }

.button {
  min-height: 50px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 720;
  font-size: .85rem;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button:focus-visible, button:focus-visible, a:focus-visible { outline: 3px solid rgba(99,145,157,.55); outline-offset: 3px; }

.button-dark { color: #fff; background: var(--green); }
.button-dark:hover { background: var(--green-dark); box-shadow: 0 8px 24px rgba(31,68,56,.24); }

.button-light { color: var(--green-dark); background: #fff; }
.button-light:hover { box-shadow: 0 10px 30px rgba(0,0,0,.18); }

.button-outline { margin-top: 34px; border-color: var(--ink); background: transparent; }
.button-outline:hover { color: #fff; background: var(--ink); }

.header-actions { justify-self: end; display: flex; align-items: center; gap: 20px; }
.header-contact { font-size: .78rem; font-weight: 720; border-bottom: 1px solid var(--ink); }
.header-contact:hover { color: var(--green); }
.header-cta { min-height: 46px; padding-inline: 21px; }

.menu-toggle, .mobile-nav { display: none; }

.hero {
  position: relative;
  min-height: 730px;
  padding: 110px max(32px, calc((100vw - 1240px) / 2)) 68px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(10, 31, 26, .76) 0%, rgba(10, 31, 26, .48) 43%, rgba(10, 31, 26, .1) 78%),
    linear-gradient(0deg, rgba(8, 23, 19, .38), transparent 45%),
    url("assets/hero.jpeg") center 56% / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 -120px 140px rgba(6, 24, 18, .15);
}

.hero-award {
  position: absolute;
  z-index: 2;
  right: max(32px, calc((100vw - 1240px) / 2));
  top: 82px;
  width: 218px;
  height: 218px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(18, 52, 43, .7);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  box-shadow: 0 18px 50px rgba(6, 22, 17, .25);
  backdrop-filter: blur(9px);
}

.award-wreath { position: absolute; inset: 10px; width: calc(100% - 20px); height: calc(100% - 20px); fill: none; stroke: #e8cb8f; stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; }
.award-center { position: relative; z-index: 1; margin-top: -8px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.award-star { margin-bottom: 6px; color: #f0d39b; font-size: 1.05rem; }
.award-center strong { font-family: var(--serif); font-size: 1.55rem; font-weight: 600; line-height: .86; }
.award-center span:last-child { margin-top: 9px; font-size: .58rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hero-award > p { position: absolute; left: 0; right: 0; bottom: 28px; margin: 0; color: rgba(255,255,255,.76); text-align: center; font-size: .56rem; letter-spacing: .05em; }

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

.hero h1 { max-width: 760px; margin-bottom: 24px; font-size: clamp(3.4rem, 6.6vw, 6.75rem); line-height: .89; }

.hero-lede { max-width: 650px; margin-bottom: 36px; font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.55rem); line-height: 1.45; }

.hero-actions { display: flex; align-items: center; gap: 28px; }

.text-link {
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  font-weight: 720;
  font-size: .84rem;
  line-height: 2;
  cursor: pointer;
}

.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.text-link-light { color: #fff; }

.hero-facts {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  padding-top: 25px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.6);
}

.hero-facts span { padding-left: 24px; font-size: .77rem; letter-spacing: .03em; border-left: 1px solid rgba(255,255,255,.28); }
.hero-facts span:first-child { padding-left: 0; border-left: 0; }
.hero-facts strong { display: block; margin-bottom: 4px; font-family: var(--serif); font-size: 1.7rem; font-weight: 500; }

.photo-mosaic {
  margin-top: 64px;
  height: 530px;
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  overflow: hidden;
  border: 7px solid rgba(255,255,255,.72);
  border-radius: 18px;
  box-shadow: 0 26px 70px rgba(40,77,90,.16);
}

.photo { position: relative; padding: 0; overflow: hidden; border: 0; background: var(--cream-deep); cursor: pointer; }
.photo-large { grid-row: 1 / 3; }
.photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, filter .3s ease; }
.photo:hover img { transform: scale(1.035); filter: brightness(.95); }
.photo-with-label span { position: absolute; right: 18px; bottom: 18px; padding: 11px 16px; display: flex; align-items: center; gap: 8px; color: var(--ink); background: #fff; border: 1px solid rgba(23,33,29,.2); border-radius: 999px; box-shadow: var(--shadow-soft); font-size: .76rem; font-weight: 750; }
.photo-with-label svg { width: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.property-layout { margin-block: 72px; padding: 82px 56px 100px; display: grid; grid-template-columns: minmax(0, 1fr) 390px; gap: 88px; align-items: start; background: linear-gradient(145deg, rgba(255,255,255,.9), rgba(247,239,220,.76)); border: 1px solid rgba(199,166,114,.25); border-radius: 30px; box-shadow: 0 24px 70px rgba(59,83,72,.1); }

.title-row { padding-bottom: 34px; display: flex; justify-content: space-between; gap: 35px; border-bottom: 1px solid var(--line); }
.title-row h2 { margin-bottom: 14px; font-size: clamp(2.8rem, 5vw, 5rem); }
.property-summary { max-width: 620px; margin-bottom: 0; color: var(--ink-soft); font-family: var(--serif); font-size: 1.26rem; line-height: 1.45; }

.title-actions { display: flex; gap: 18px; }
.icon-button { padding: 0; display: flex; align-items: center; gap: 7px; height: max-content; border: 0; border-bottom: 1px solid var(--ink); background: transparent; font-size: .78rem; font-weight: 700; cursor: pointer; }
.icon-button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.icon-button.is-saved svg { fill: var(--green); }

.trust-bar { margin: 30px 0; min-height: 100px; padding: 20px 28px; display: grid; grid-template-columns: 1.3fr 1fr 1fr; align-items: center; background: linear-gradient(120deg, var(--sand-pale), #f8efd9 48%, var(--sage)); border: 1px solid rgba(155,111,52,.18); border-radius: 14px; }
.trust-bar > div { min-height: 52px; padding: 0 24px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border-left: 1px solid #d8d0c3; }
.trust-bar > div:first-child { padding-left: 0; border-left: 0; }
.trust-bar strong { font-family: var(--serif); font-size: 1.25rem; font-weight: 650; }
.trust-bar span { margin-top: 4px; color: var(--ink-soft); font-size: .67rem; }
.trust-badge { flex-direction: row !important; gap: 8px; }
.trust-badge strong { max-width: 90px; line-height: 1; }
.laurel { color: var(--sand) !important; font-family: var(--serif); font-size: 2rem !important; transform: rotate(-30deg); }
.laurel-right { transform: scaleX(-1) rotate(-30deg); }

.feature-list { border-top: 1px solid var(--line); }
.feature-list article { padding: 26px 4px; display: grid; grid-template-columns: 54px 1fr; gap: 20px; border-bottom: 1px solid var(--line); }
.feature-icon { width: 48px; height: 48px; display: grid; place-items: center; color: var(--green); background: var(--green-light); border-radius: 50%; }
.feature-icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.feature-list h3 { margin-bottom: 5px; font-family: var(--serif); font-size: 1.18rem; }
.feature-list p { margin-bottom: 0; color: var(--ink-soft); font-size: .87rem; line-height: 1.55; }

.story-block { padding-top: 66px; }
.story-block h2 { max-width: 760px; margin-bottom: 30px; font-size: clamp(2.5rem, 4vw, 4rem); }
.story-block > p:not(.eyebrow) { max-width: 700px; color: var(--ink-soft); font-family: var(--serif); font-size: 1.17rem; line-height: 1.65; }
.story-block .text-link { margin-top: 10px; }

.booking-card { position: sticky; top: 116px; padding: 28px; background: linear-gradient(165deg, #fff 0%, #f7fbfa 55%, #edf4ef 100%); border: 1px solid rgba(40,77,90,.18); border-radius: 18px; box-shadow: 0 24px 60px rgba(31,68,56,.16); }
.booking-card-header { margin-bottom: 20px; display: flex; align-items: start; justify-content: space-between; gap: 18px; }
.booking-kicker { margin-bottom: 3px; color: var(--ink-soft); font-size: .68rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.booking-card h3 { margin-bottom: 0; font-family: var(--serif); font-size: 1.75rem; }
.demo-pill { padding: 6px 9px; color: #715221; background: #f4e8cb; border-radius: 999px; font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.date-fields { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid #a8aca8; border-radius: 12px 12px 0 0; overflow: hidden; }
.date-fields button, .guest-field { min-height: 66px; padding: 12px 14px; text-align: left; border: 0; background: #fff; cursor: pointer; }
.date-fields button + button { border-left: 1px solid #a8aca8; }
.date-fields span, .guest-field small { display: block; margin-bottom: 5px; font-size: .58rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.date-fields strong, .guest-field strong { display: block; font-size: .8rem; font-weight: 560; }

.guest-field { width: 100%; min-height: 62px; display: flex; align-items: center; justify-content: space-between; border: 1px solid #a8aca8; border-top: 0; border-radius: 0 0 12px 12px; }
.guest-field svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; }

.guest-popover { position: absolute; z-index: 5; left: 28px; right: 28px; margin-top: 8px; padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-soft); }
.guest-popover > div { display: flex; justify-content: space-between; align-items: center; }
.guest-popover span > strong, .guest-popover small { display: block; }
.guest-popover small { margin-top: 3px; color: var(--ink-soft); font-size: .7rem; }
.stepper { display: flex !important; align-items: center; gap: 12px; }
.stepper button { width: 32px; height: 32px; border: 1px solid var(--ink-soft); border-radius: 50%; background: transparent; cursor: pointer; }

.button-book { width: 100%; margin-top: 16px; min-height: 54px; color: #fff; background: linear-gradient(100deg, var(--green) 0%, var(--river-deep) 100%); }
.button-book:hover { box-shadow: 0 10px 24px rgba(31,68,56,.22); }
.booking-note { margin: 15px 0 0; display: flex; align-items: center; justify-content: center; gap: 7px; color: var(--ink-soft); font-size: .68rem; }
.booking-note svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.6; }

.availability-status { margin-top: 22px; padding-top: 20px; display: grid; grid-template-columns: 10px 1fr; gap: 10px; border-top: 1px solid var(--line); }
.status-dot { width: 8px; height: 8px; margin-top: 4px; background: #d49937; border-radius: 50%; box-shadow: 0 0 0 4px #f7ecd9; }
.availability-status strong, .availability-status span { display: block; }
.availability-status strong { margin-bottom: 4px; font-size: .72rem; }
.availability-status span { color: var(--ink-soft); font-size: .65rem; line-height: 1.45; }

.booking-host { margin-top: 20px; padding-top: 20px; display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 11px; border-top: 1px solid var(--line); }
.booking-host img { width: 44px; height: 44px; object-fit: cover; border-radius: 50%; }
.booking-host small, .booking-host strong { display: block; }
.booking-host small { margin-bottom: 3px; color: var(--ink-soft); font-size: .62rem; }
.booking-host strong { font-family: var(--serif); font-size: .97rem; }
.booking-host > span:last-child { transition: transform .2s ease; }
.booking-host:hover > span:last-child { transform: translateX(4px); }

.host-section { padding-block: 120px; background: linear-gradient(110deg, #f3e1c2 0%, #f8f1e5 46%, #dbeae2 100%); border-top: 1px solid rgba(155,111,52,.2); border-bottom: 1px solid rgba(40,77,90,.16); }
.host-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 100px; align-items: center; }
.host-portrait-wrap { position: relative; width: min(100%, 470px); }
.host-portrait { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center; border-radius: 22px; box-shadow: var(--shadow); }
.host-medallion { position: absolute; right: -46px; bottom: 42px; width: 150px; height: 150px; padding: 18px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; text-align: center; background: var(--green); border: 5px solid var(--cream); border-radius: 50%; box-shadow: var(--shadow-soft); }
.host-medallion > span { margin-bottom: 6px; color: #e8cb8f; font-size: 1.2rem; }
.host-medallion strong { font-family: var(--serif); font-size: 1.3rem; }
.host-medallion small { margin-top: 4px; color: rgba(255,255,255,.72); font-size: .6rem; letter-spacing: .07em; text-transform: uppercase; }
.host-copy h2 { margin-bottom: 20px; font-size: clamp(3.5rem, 6vw, 6.4rem); }
.host-copy > p:not(.eyebrow) { max-width: 690px; color: var(--ink-soft); font-size: .92rem; line-height: 1.7; }
.host-copy .host-intro { color: var(--ink); font-family: var(--serif); font-size: 1.45rem !important; line-height: 1.48 !important; }

.direct-contact { margin: 34px 0 28px; display: grid; grid-template-columns: 1.25fr .9fr; border: 1px solid #cfc8bb; border-radius: 13px; overflow: hidden; }
.direct-contact a { padding: 18px 20px; background: rgba(255,255,255,.66); transition: background .2s ease; }
.direct-contact a + a { border-left: 1px solid #cfc8bb; }
.direct-contact a:hover { background: #fff; }
.direct-contact span, .direct-contact strong { display: block; }
.direct-contact span { margin-bottom: 6px; color: var(--green); font-size: .61rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.direct-contact strong { font-size: .88rem; overflow-wrap: anywhere; }

.host-credentials { margin-bottom: 30px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #d2cabb; border-bottom: 1px solid #d2cabb; }
.host-credentials > div { padding: 20px 18px; text-align: center; border-left: 1px solid #d2cabb; }
.host-credentials > div:first-child { border-left: 0; }
.host-credentials strong, .host-credentials span { display: block; }
.host-credentials strong { margin-bottom: 4px; font-family: var(--serif); font-size: 1.45rem; }
.host-credentials span { color: var(--ink-soft); font-size: .61rem; letter-spacing: .05em; text-transform: uppercase; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button-outline-inline { color: var(--green-dark); background: transparent; border-color: var(--green); }
.button-outline-inline:hover { color: #fff; background: var(--green); }
.verified-profiles { margin: 18px 0 0 !important; font-size: .66rem !important; }
.verified-profiles a { color: var(--green); font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }
.verified-profiles span { margin-inline: 6px; }

.experiences { margin-block: 46px; padding: 88px 46px 105px; background: linear-gradient(145deg, rgba(220,234,240,.94), rgba(220,233,223,.88)); border: 1px solid rgba(40,77,90,.13); border-radius: 30px; box-shadow: 0 24px 65px rgba(40,77,90,.09); }
.section-heading { margin-bottom: 46px; display: flex; justify-content: space-between; align-items: end; gap: 40px; }
.section-heading h2 { max-width: 780px; margin-bottom: 0; }
.section-intro { max-width: 680px; margin: 20px 0 0; color: var(--ink-soft); font-family: var(--serif); font-size: 1.12rem; line-height: 1.55; }
.experience-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.experience-card { position: relative; min-height: 480px; overflow: hidden; border-radius: 16px; background: var(--green); }
.experience-card::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(0deg, rgba(8,28,22,.94), transparent); }
.experience-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.season-spring img { object-position: center 55%; }
.season-autumn img { object-position: center 62%; }
.season-winter img { object-position: center 58%; }
.experience-card:hover img { transform: scale(1.04); }
.experience-card > div { position: absolute; z-index: 1; left: 28px; right: 28px; bottom: 30px; color: #fff; }
.experience-card > div > span { width: max-content; margin-bottom: 14px; padding: 7px 11px; display: block; color: var(--green-dark); background: rgba(248,239,217,.9); border-radius: 999px; font-size: .62rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.experience-card h3 { margin-bottom: 10px; font-family: var(--serif); font-size: 1.75rem; font-weight: 500; }
.experience-card p { margin-bottom: 0; font-size: .79rem; line-height: 1.6; opacity: .82; }
.season-note { margin: 24px 4px 0; color: var(--ink-soft); font-size: .72rem; line-height: 1.55; }
.season-note strong { color: var(--green-dark); }

.videos-section { margin-block: 78px 100px; }
.videos-heading { margin-bottom: 38px; display: flex; justify-content: space-between; align-items: end; gap: 48px; }
.videos-heading h2 { max-width: 760px; margin-bottom: 0; }
.videos-heading > div > p:last-child { max-width: 660px; margin: 22px 0 0; color: var(--ink-soft); font-family: var(--serif); font-size: 1.1rem; line-height: 1.58; }
.videos-heading .text-link { flex: 0 0 auto; color: var(--green); }
.featured-video { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(290px, .65fr); overflow: hidden; color: #fff; background: var(--green-dark); border: 1px solid rgba(40,77,90,.14); border-radius: 28px; box-shadow: var(--shadow); }
.video-player { position: relative; min-width: 0; aspect-ratio: 16 / 9; overflow: hidden; background: #091a16; }
.video-player iframe { width: 100%; height: 100%; display: block; border: 0; }
.video-poster { position: relative; width: 100%; height: 100%; padding: 0; overflow: hidden; border: 0; background: #091a16; cursor: pointer; }
.video-poster img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; transition: transform .7s ease, filter .7s ease; }
.video-poster-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,20,16,.04), rgba(5,20,16,.54)); }
.video-poster:hover img { filter: saturate(1.08); transform: scale(1.025); }
.video-play-icon { position: absolute; left: 50%; top: 50%; width: 84px; height: 84px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.75); border-radius: 50%; background: rgba(18,52,43,.76); box-shadow: 0 16px 42px rgba(0,0,0,.28); transform: translate(-50%, -50%); backdrop-filter: blur(8px); transition: background .2s ease, transform .2s ease; }
.video-play-icon i { width: 0; height: 0; margin-left: 6px; border-top: 10px solid transparent; border-bottom: 10px solid transparent; border-left: 16px solid #fff; }
.video-poster:hover .video-play-icon { background: var(--green); transform: translate(-50%, -50%) scale(1.06); }
.video-poster-caption { position: absolute; left: 28px; bottom: 24px; color: #fff; text-align: left; }
.video-poster-caption small, .video-poster-caption strong { display: block; }
.video-poster-caption small { margin-bottom: 6px; color: rgba(255,255,255,.68); font-size: .58rem; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.video-poster-caption strong { font-family: var(--serif); font-size: 1.15rem; font-weight: 500; }
.video-details { padding: clamp(42px, 5vw, 74px); display: flex; flex-direction: column; justify-content: center; background: linear-gradient(145deg, var(--green-dark), var(--river-deep)); }
.video-details .eyebrow { color: #e7c98f; }
.video-details h3 { margin: 0 0 24px; font-family: var(--serif); font-size: clamp(2.25rem, 3.5vw, 4rem); font-weight: 500; line-height: .98; letter-spacing: -.035em; }
.video-details > p:not(.eyebrow):not(.video-privacy-note) { margin-bottom: 30px; color: rgba(255,255,255,.75); font-family: var(--serif); font-size: 1.02rem; line-height: 1.62; }
.video-share-link { width: max-content; padding-bottom: 6px; display: inline-flex; align-items: center; gap: 9px; border-bottom: 1px solid rgba(255,255,255,.48); font-size: .76rem; font-weight: 750; }
.video-share-link:hover { color: #e7c98f; border-color: #e7c98f; }
.video-privacy-note { margin: 22px 0 0; color: rgba(255,255,255,.48); font-size: .58rem; line-height: 1.5; }
.video-noscript { position: absolute; inset: 0; margin: 0; display: grid; place-items: center; color: #fff; background: var(--green-dark); }
.video-noscript a { text-decoration: underline; text-underline-offset: 4px; }

.location-teaser { margin-block: 46px 100px; display: grid; grid-template-columns: .9fr 1.1fr; overflow: hidden; background: linear-gradient(125deg, rgba(247,243,235,.96), rgba(220,234,240,.96)); border: 1px solid rgba(40,77,90,.14); border-radius: 28px; box-shadow: var(--shadow-soft); }
.location-teaser-copy { padding: 72px; }
.location-teaser-copy h2 { margin-bottom: 24px; }
.location-teaser-copy > p:not(.eyebrow) { max-width: 520px; color: var(--ink-soft); font-family: var(--serif); font-size: 1.08rem; line-height: 1.62; }
.homepage-park-link { max-width: 540px; margin-top: 26px; padding: 17px 0; display: grid; grid-template-columns: 170px 1fr; gap: 20px; align-items: center; border-block: 1px solid rgba(40,77,90,.16); }
.homepage-park-link img { width: 100%; height: auto; display: block; }
.homepage-park-link span { color: var(--ink-soft); font-size: .61rem; line-height: 1.45; }
.homepage-park-link strong, .homepage-park-link small { display: block; }
.homepage-park-link strong { margin-bottom: 4px; color: var(--green-dark); font-size: .68rem; }
.homepage-park-link small { color: var(--ink-soft); font-size: .52rem; }
.teaser-times { margin: 34px 0; display: flex; gap: 26px; }
.teaser-times span { padding-left: 18px; color: var(--ink-soft); border-left: 1px solid rgba(40,77,90,.22); font-size: .62rem; }
.teaser-times span:first-child { padding-left: 0; border-left: 0; }
.teaser-times strong { display: block; margin-bottom: 5px; color: var(--green); font-family: var(--serif); font-size: 1.35rem; font-weight: 500; }
.location-teaser-map { position: relative; min-height: 610px; display: flex; align-items: center; justify-content: center; overflow: hidden; color: #fff; background: linear-gradient(145deg, var(--green-dark), var(--river-deep)); }
.location-teaser-map::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 76% 75%, rgba(199,166,114,.2), transparent 35%); }
.location-teaser-map svg { position: relative; z-index: 1; width: 92%; height: auto; }
.location-teaser-map > span { position: absolute; z-index: 2; left: 20px; right: 20px; bottom: 17px; color: rgba(255,255,255,.53); text-align: center; font-size: .57rem; }
.teaser-river, .teaser-channel { fill: none; stroke: rgba(126,171,186,.42); stroke-linecap: round; }
.teaser-river { stroke-width: 48; }
.teaser-channel { stroke-width: 27; }
.teaser-island-land { fill: rgba(101,127,109,.52); stroke: rgba(255,255,255,.16); stroke-width: 1.5; }
.teaser-route { fill: none; stroke: rgba(231,201,143,.58); stroke-width: 2.5; stroke-linecap: round; stroke-dasharray: 4 8; }
.teaser-water-label { fill: rgba(255,255,255,.48); font: italic 600 6px var(--serif); letter-spacing: .08em; }
.teaser-city circle { fill: #e7c98f; }
.teaser-city text:nth-of-type(1) { fill: #fff; font: 750 11px var(--sans); letter-spacing: .1em; }
.teaser-city text:nth-of-type(2) { fill: rgba(255,255,255,.55); font: 680 8px var(--sans); letter-spacing: .08em; }
.teaser-island circle { fill: var(--sand-pale); stroke: #fff; stroke-width: 2; }
.teaser-island path { fill: none; stroke: #173d34; stroke-width: 2.8; stroke-linecap: round; }
.teaser-island text { fill: #fff; font: 760 9px var(--sans); letter-spacing: .11em; }

.history-teaser { min-height: 690px; display: grid; grid-template-columns: 1.08fr .92fr; color: #fff; background: linear-gradient(140deg, #203b31, #244b57); }
.history-teaser-image { position: relative; min-height: 690px; overflow: hidden; }
.history-teaser-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 55%, rgba(32,59,49,.6)); }
.history-teaser-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; filter: saturate(.75) contrast(1.04); transition: transform .8s ease; }
.history-teaser-image:hover img { transform: scale(1.025); }
.history-teaser-image > span { position: absolute; z-index: 1; left: 28px; bottom: 24px; color: rgba(255,255,255,.58); font-size: .57rem; }
.history-teaser-copy { padding: clamp(65px, 8vw, 120px); display: flex; flex-direction: column; justify-content: center; }
.history-teaser-copy .eyebrow { color: #e7c98f; }
.history-teaser-copy h2 { max-width: 680px; margin-bottom: 28px; }
.history-teaser-copy > p:not(.eyebrow) { max-width: 640px; margin-bottom: 38px; color: rgba(255,255,255,.72); font-family: var(--serif); font-size: 1.08rem; line-height: 1.7; }
.history-teaser-copy .button { align-self: flex-start; }

.journal-home { margin-block: 110px; padding: 34px; display: grid; grid-template-columns: 180px minmax(0, 1fr) 430px; gap: 50px; align-items: center; background: linear-gradient(120deg, rgba(255,255,255,.9), rgba(220,234,240,.76)); border: 1px solid rgba(40,77,90,.14); border-radius: 27px; box-shadow: var(--shadow-soft); }
.journal-home-author { text-align: center; }
.journal-home-author img { width: 148px; aspect-ratio: 1; margin: 0 auto 14px; object-fit: cover; border-radius: 50%; box-shadow: 0 12px 35px rgba(23,33,29,.14); }
.journal-home-author strong, .journal-home-author small { display: block; }
.journal-home-author strong { font-family: var(--serif); font-size: 1.18rem; }
.journal-home-author small { margin-top: 4px; color: var(--ink-soft); font-size: .56rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.journal-home-copy h2 { margin-bottom: 20px; font-size: clamp(2.5rem, 4vw, 4.4rem); }
.journal-home-copy > p:not(.eyebrow) { max-width: 610px; color: var(--ink-soft); font-family: var(--serif); font-size: 1rem; line-height: 1.6; }
.journal-home-copy .button { margin-top: 8px; }
.journal-home-story { position: relative; min-height: 410px; overflow: hidden; color: #fff; border-radius: 18px; box-shadow: var(--shadow-soft); }
.journal-home-story::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(9,31,25,.86), rgba(9,31,25,.06) 67%); }
.journal-home-story > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.journal-home-story:hover > img { transform: scale(1.025); }
.journal-home-story > span { position: absolute; z-index: 1; left: 27px; right: 27px; bottom: 26px; }
.journal-home-story small, .journal-home-story strong, .journal-home-story i { display: block; }
.journal-home-story small { margin-bottom: 10px; color: rgba(255,255,255,.68); font-size: .58rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.journal-home-story strong { font-family: var(--serif); font-size: 2rem; font-weight: 500; line-height: 1.05; }
.journal-home-story i { margin-top: 16px; font-size: .65rem; font-style: normal; font-weight: 720; }

.tour-section { padding-block: 120px; color: #fff; background: var(--green-dark); }
.tour-grid { display: grid; grid-template-columns: .82fr 1.3fr; gap: 90px; align-items: center; }
.tour-copy h2 { margin-bottom: 28px; }
.tour-copy > p:not(.eyebrow) { color: rgba(255,255,255,.72); font-family: var(--serif); font-size: 1.17rem; line-height: 1.65; }
.tour-buttons { margin-top: 34px; display: flex; align-items: center; gap: 26px; }

.map-card { overflow: hidden; background: #f3eee3; border-radius: 18px; box-shadow: 0 30px 80px rgba(0,0,0,.28); transition: transform .35s ease, box-shadow .35s ease; }
.map-card.is-focused { transform: scale(1.025); box-shadow: 0 34px 100px rgba(0,0,0,.45), 0 0 0 4px rgba(255,255,255,.35); }
.map-topbar { padding: 18px 22px; display: flex; justify-content: space-between; color: var(--ink); border-bottom: 1px solid #d6cfbf; font-family: var(--serif); }
.map-scale { color: var(--ink-soft); font-family: var(--sans); font-size: .67rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.property-illustration { margin: 0; padding: 20px; display: grid; justify-items: center; gap: 14px; background: linear-gradient(145deg, #e7e1d4, #f7f1e6); }
.property-illustration a { display: block; width: min(100%, 540px); overflow: hidden; background: #f4ecdc; border-radius: 11px; box-shadow: 0 16px 38px rgba(23,33,29,.18); }
.property-illustration img { width: 100%; height: auto; transition: transform .35s ease, filter .35s ease; }
.property-illustration a:hover img { transform: scale(1.008); filter: contrast(1.02); }
.property-illustration figcaption { color: var(--ink-soft); text-align: center; font-size: .61rem; line-height: 1.45; }
.map-card.is-focused .property-illustration a { box-shadow: 0 18px 44px rgba(23,33,29,.25), 0 0 0 4px rgba(110,143,155,.38); }

.amenities { margin-block: 46px; padding: 92px 46px 100px; background: linear-gradient(135deg, rgba(248,239,217,.96), rgba(223,235,230,.92)); border: 1px solid rgba(155,111,52,.16); border-radius: 30px; }
.amenity-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.amenity-grid > div { min-height: 170px; padding: 28px; display: flex; flex-direction: column; background: rgba(255,255,255,.5); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.amenity-grid > div:nth-child(3n + 2) { background: rgba(220,234,240,.5); }
.amenity-grid > div:nth-child(3n) { background: rgba(241,226,200,.58); }
.amenity-grid span { margin-bottom: auto; color: var(--green); font-family: var(--serif); font-size: 2rem; }
.amenity-grid strong { margin-bottom: 6px; font-family: var(--serif); font-size: 1.08rem; }
.amenity-grid small { color: var(--ink-soft); font-size: .7rem; line-height: 1.45; }

.reviews-section { padding-block: 110px; color: #fff; background: var(--river-deep); }
.reviews-heading { margin-bottom: 55px; display: grid; grid-template-columns: 1fr 300px; gap: 70px; align-items: end; }
.reviews-heading h2 { max-width: 840px; margin-bottom: 0; }
.rating-lockup { padding-left: 35px; display: grid; grid-template-columns: auto 1fr; gap: 2px 12px; align-items: baseline; border-left: 1px solid rgba(255,255,255,.3); }
.rating-lockup strong { font-family: var(--serif); font-size: 2.15rem; font-weight: 500; }
.rating-lockup span { color: rgba(255,255,255,.7); font-size: .72rem; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-grid article { min-height: 315px; padding: 32px; display: flex; flex-direction: column; border: 1px solid rgba(255,255,255,.23); border-radius: 14px; }
.stars { color: #e7c98f; font-size: .72rem; letter-spacing: .18em; }
.review-card-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.review-card-top > strong { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; }
.review-source { min-height: 28px; padding: 0 10px; display: inline-flex; align-items: center; border-radius: 999px; font-size: .61rem; font-weight: 780; letter-spacing: .04em; }
.review-source-airbnb { color: #fff; background: #e24d5b; }
.review-source-vrbo { color: #153967; background: #dcecff; }
.review-grid blockquote { margin: auto 0; font-family: var(--serif); font-size: 1.35rem; line-height: 1.48; }
.review-grid article p { margin-bottom: 0; color: rgba(255,255,255,.63); font-size: .68rem; }
.review-grid .review-archive-card { background: linear-gradient(145deg, rgba(199,166,114,.34), rgba(255,255,255,.08)); border-color: rgba(231,201,143,.6); }
.review-grid .review-archive-card .eyebrow { margin-bottom: 20px; color: #f3dbad; }
.review-grid .review-archive-card blockquote { margin: 0 0 auto; font-size: 1.7rem; line-height: 1.25; }
.review-grid .review-archive-card .button { margin-top: 28px; align-self: flex-start; }
.review-footnote { margin: 25px 0 0; color: rgba(255,255,255,.55); font-size: .63rem; }

.newsletter-section { position: relative; margin-block: 86px 42px; padding: 68px 72px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 90px; overflow: hidden; color: #fff; background: linear-gradient(125deg, var(--green-dark) 0%, var(--river-deep) 66%, #6e7f67 100%); border-radius: 28px; box-shadow: 0 28px 75px rgba(21,53,44,.22); }
.newsletter-section::after { content: ""; position: absolute; width: 320px; height: 320px; right: -120px; top: -170px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; box-shadow: 0 0 0 52px rgba(255,255,255,.035), 0 0 0 105px rgba(255,255,255,.025); pointer-events: none; }
.newsletter-copy, .newsletter-form { position: relative; z-index: 1; }
.newsletter-copy h2 { max-width: 560px; margin-bottom: 22px; font-size: clamp(2.7rem, 4.5vw, 4.7rem); }
.newsletter-copy > p:last-child { max-width: 590px; margin-bottom: 0; color: rgba(255,255,255,.72); font-family: var(--serif); font-size: 1.08rem; line-height: 1.6; }
.newsletter-form > label { display: block; margin-bottom: 11px; font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.newsletter-fields { padding: 6px; display: flex; gap: 8px; background: #fff; border-radius: 999px; box-shadow: 0 16px 42px rgba(5,24,19,.24); }
.newsletter-fields input { min-width: 0; flex: 1; padding: 0 18px; color: var(--ink); background: transparent; border: 0; outline: 0; }
.newsletter-fields input::placeholder { color: #78827d; }
.newsletter-fields input:focus-visible { border-radius: 999px; box-shadow: inset 0 0 0 3px rgba(110,143,155,.48); }
.newsletter-fields .button { flex: 0 0 auto; min-height: 48px; color: var(--green-dark); background: var(--sand-pale); }
.newsletter-fields .button:hover { background: #f7dcae; box-shadow: none; }
.newsletter-form > p { max-width: 560px; margin: 13px 8px 0; color: rgba(255,255,255,.58); font-size: .64rem; line-height: 1.5; }

.final-cta { position: relative; height: 560px; margin-block: 100px; overflow: hidden; border-radius: 18px; }
.final-cta > img { width: 100%; height: 100%; object-fit: cover; }
.final-cta-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,31,26,.83), rgba(10,31,26,.1)); }
.final-cta-copy { position: absolute; left: 80px; top: 50%; max-width: 650px; color: #fff; transform: translateY(-50%); }
.final-cta-copy h2 { margin-bottom: 34px; font-size: clamp(3rem, 5.2vw, 5.7rem); }

.site-footer { padding: 70px 0 32px; color: #fff; background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 70px; }
.brand-footer { color: #fff; }
.brand-footer .brand-mark { color: #fff; }
.brand-footer small { color: rgba(255,255,255,.55); }
.footer-grid h3 { margin: 0 0 18px; color: rgba(255,255,255,.5); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid > div a, .footer-grid > div button { width: max-content; margin: 0 0 12px; padding: 0; display: block; color: rgba(255,255,255,.82); border: 0; background: transparent; font-size: .75rem; cursor: pointer; }
.footer-grid > div a:hover, .footer-grid > div button:hover { color: #fff; text-decoration: underline; }
.footer-bottom { margin-top: 60px; padding-top: 24px; display: flex; justify-content: space-between; color: rgba(255,255,255,.42); border-top: 1px solid rgba(255,255,255,.13); font-size: .63rem; }

.mobile-booking-bar { display: none; }

dialog { border: 0; padding: 0; }
dialog::backdrop { background: rgba(11,23,19,.66); backdrop-filter: blur(5px); }

.calendar-dialog { width: min(980px, calc(100vw - 36px)); max-height: min(870px, calc(100vh - 36px)); color: var(--ink); background: transparent; border-radius: 20px; }
.dialog-shell { padding: 34px; background: #fff; border-radius: 20px; box-shadow: var(--shadow); }
.dialog-header { display: flex; justify-content: space-between; align-items: start; gap: 30px; }
.dialog-header h2 { margin-bottom: 0; font-size: 2.8rem; }
.dialog-close, .gallery-close { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: #fff; font-size: 1.5rem; cursor: pointer; }

.calendar-warning { margin: 26px 0; padding: 16px 18px; display: grid; grid-template-columns: 26px 1fr; gap: 12px; color: #614c27; background: #f8efd9; border-radius: 10px; }
.calendar-warning > span { width: 22px; height: 22px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-family: var(--serif); font-style: italic; }
.calendar-warning strong { font-size: .72rem; }
.calendar-warning p { margin: 3px 0 0; font-size: .67rem; line-height: 1.48; }

.calendar-controls { margin-bottom: 20px; display: grid; grid-template-columns: 42px 1fr 42px; align-items: center; gap: 20px; }
.calendar-controls > button { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: #fff; cursor: pointer; }
.stay-summary { display: flex; justify-content: center; gap: 16px; font-family: var(--serif); font-size: 1rem; }
.stay-summary i { color: var(--ink-soft); font-family: var(--sans); font-style: normal; }

.calendar-months { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.month h3 { margin: 0 0 18px; text-align: center; font-family: var(--serif); font-size: 1.2rem; }
.weekdays, .days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.weekdays span { height: 25px; color: var(--ink-soft); text-align: center; font-size: .6rem; font-weight: 700; }
.day { position: relative; aspect-ratio: 1; display: grid; place-items: center; border: 0; border-radius: 50%; background: #fff; font-size: .73rem; cursor: pointer; }
.day:hover:not(:disabled) { background: var(--green-light); }
.day:disabled { color: #b9bbb8; cursor: not-allowed; text-decoration: line-through; }
.day.is-selected { color: #fff; background: var(--green); }
.day.is-in-range { color: var(--green-dark); background: var(--green-light); border-radius: 0; }
.day.is-range-start { color: #fff; background: var(--green); border-radius: 50% 0 0 50%; }
.day.is-range-end { color: #fff; background: var(--green); border-radius: 0 50% 50% 0; }
.day.is-range-start.is-range-end { border-radius: 50%; }
.day.is-today::after { content: ""; position: absolute; left: 50%; bottom: 5px; width: 3px; height: 3px; background: currentColor; border-radius: 50%; transform: translateX(-50%); }
.day.empty { visibility: hidden; }

.calendar-legend { margin-top: 23px; display: flex; justify-content: center; gap: 22px; color: var(--ink-soft); font-size: .64rem; }
.calendar-legend span { display: flex; align-items: center; gap: 7px; }
.calendar-legend i { width: 12px; height: 12px; display: inline-block; border-radius: 50%; }
.legend-available { border: 1px solid var(--line); }
.legend-selected { background: var(--green); }
.legend-unavailable { background: #eee; position: relative; }
.legend-unavailable::after { content: ""; position: absolute; left: 1px; right: 1px; top: 5px; height: 1px; background: #999; transform: rotate(-45deg); }
.calendar-footer { margin-top: 28px; padding-top: 22px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); }

.gallery-dialog { position: fixed; inset: 20px; width: calc(100vw - 40px); height: calc(100vh - 40px); max-width: none; max-height: none; overflow: hidden; color: #fff; background: rgba(9,18,15,.96); border-radius: 18px; }
.gallery-dialog figure { width: 100%; height: 100%; margin: 0; padding: 60px 85px; display: grid; grid-template-rows: 1fr auto; align-items: center; justify-items: center; }
.gallery-dialog figure img { max-width: 100%; max-height: calc(100vh - 150px); object-fit: contain; }
.gallery-dialog figcaption { min-height: 24px; padding-top: 13px; color: rgba(255,255,255,.65); font-size: .72rem; }
.gallery-close { position: absolute; z-index: 2; right: 24px; top: 24px; color: #fff; border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.08); }
.gallery-arrow { position: absolute; z-index: 2; top: 50%; width: 46px; height: 46px; color: #fff; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: rgba(255,255,255,.08); cursor: pointer; transform: translateY(-50%); }
.gallery-prev { left: 22px; }
.gallery-next { right: 22px; }

.toast { position: fixed; z-index: 100; left: 50%; bottom: -80px; padding: 13px 18px; color: #fff; background: var(--ink); border-radius: 999px; box-shadow: var(--shadow-soft); font-size: .72rem; opacity: 0; transform: translateX(-50%); transition: bottom .25s ease, opacity .25s ease; }
.toast.is-visible { bottom: 28px; opacity: 1; }

@media (max-width: 1080px) {
  :root { --shell: min(100% - 44px, 960px); }
  .site-header { padding-inline: 22px; grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .header-actions { display: none; }
  .menu-toggle { justify-self: end; width: 42px; height: 42px; display: grid; place-content: center; gap: 6px; border: 1px solid var(--line); border-radius: 50%; background: #fff; }
  .menu-toggle span { width: 17px; height: 1px; background: var(--ink); }
  .mobile-nav { position: fixed; z-index: 35; left: 0; right: 0; top: 86px; padding: 22px; display: grid; gap: 0; background: linear-gradient(120deg, #fbf6eb, #e8f2ef); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-soft); transform: translateY(-140%); transition: transform .3s ease; }
  .mobile-nav.is-open { transform: translateY(0); }
  .mobile-nav a { padding: 15px 2px; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.15rem; }
  .mobile-nav .button { margin-top: 18px; }
  .hero { min-height: 670px; }
  .photo-mosaic { height: 440px; }
  .property-layout { grid-template-columns: 1fr 350px; gap: 44px; }
  .trust-bar { grid-template-columns: 1fr; }
  .trust-bar > div { min-height: auto; padding: 14px 0; border-left: 0; border-top: 1px solid #d8d0c3; }
  .trust-bar > div:first-child { border-top: 0; }
  .experience-card { min-height: 430px; }
  .videos-heading { align-items: flex-start; flex-direction: column; gap: 22px; }
  .featured-video { grid-template-columns: 1fr; }
  .video-details { min-height: 400px; }
  .location-teaser { grid-template-columns: 1fr; }
  .location-teaser-map { min-height: 520px; }
  .history-teaser { grid-template-columns: 1fr; }
  .history-teaser-image { min-height: 520px; }
  .history-teaser-image::after { background: linear-gradient(0deg, rgba(32,59,49,.4), transparent 45%); }
  .journal-home { grid-template-columns: 150px 1fr; gap: 35px; }
  .journal-home-story { grid-column: 1 / -1; min-height: 480px; }
  .tour-grid { grid-template-columns: 1fr; gap: 60px; }
  .tour-copy { max-width: 760px; }
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-grid > div:last-child { display: none; }
  .hero-award { right: 28px; top: 58px; width: 180px; height: 180px; }
  .award-center strong { font-size: 1.3rem; }
  .hero-award > p { bottom: 22px; }
  .host-grid { grid-template-columns: .85fr 1.15fr; gap: 70px; }
  .host-medallion { right: -26px; width: 130px; height: 130px; }
}

@media (max-width: 760px) {
  :root { --shell: calc(100vw - 32px); }
  body { padding-bottom: 76px; }
  .site-header { height: 74px; padding-inline: 16px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand strong { font-size: .95rem; }
  .brand small { font-size: .52rem; }
  .mobile-nav { top: 74px; }
  .hero { min-height: 690px; padding: 92px 20px 34px; background-position: 62% 55%; }
  .hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,31,26,.12), rgba(10,31,26,.65)); }
  .hero h1 { font-size: clamp(3.2rem, 15vw, 5rem); }
  .hero-award { position: relative; right: auto; top: auto; width: 150px; height: 150px; margin: -48px 0 34px auto; }
  .award-center strong { font-size: 1.08rem; }
  .award-center span:last-child { font-size: .48rem; }
  .hero-award > p { bottom: 18px; font-size: .47rem; }
  .hero-lede { font-size: 1.08rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 17px; }
  .hero-facts { grid-template-columns: 1fr 1fr; gap: 14px 0; }
  .hero-facts span { padding-left: 14px; }
  .hero-facts span:nth-child(3) { padding-left: 0; border-left: 0; }
  .photo-mosaic { width: 100%; height: 410px; margin-top: 0; grid-template-columns: 1fr 1fr; grid-template-rows: 2fr 1fr; gap: 4px; border-radius: 0; }
  .photo-large { grid-row: 1; grid-column: 1 / 3; }
  .photo:nth-child(3), .photo:nth-child(4) { display: none; }
  .photo-with-label span { right: 12px; bottom: 12px; }
  .property-layout { margin-block: 24px; padding: 54px 20px 72px; grid-template-columns: 1fr; border-radius: 22px; }
  .title-row { flex-direction: column; }
  .title-actions { order: -1; align-self: flex-end; }
  .title-row h2 { font-size: 3.4rem; }
  .property-summary { font-size: 1.08rem; }
  .booking-card { position: relative; top: auto; order: -1; }
  .trust-bar { margin-top: 38px; }
  .story-block { padding-top: 52px; }
  .host-section { padding-block: 80px; }
  .host-grid { grid-template-columns: 1fr; gap: 60px; }
  .host-portrait-wrap { width: calc(100% - 28px); }
  .host-medallion { right: -28px; bottom: 28px; }
  .host-copy h2 { font-size: 4rem; }
  .direct-contact { grid-template-columns: 1fr; }
  .direct-contact a + a { border-left: 0; border-top: 1px solid #cfc8bb; }
  .host-credentials > div { padding-inline: 8px; }
  .contact-actions { align-items: stretch; flex-direction: column; }
  .contact-actions .button { width: 100%; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .experiences { margin-block: 24px; padding: 64px 20px 72px; border-radius: 22px; }
  .experience-grid { grid-template-columns: 1fr; }
  .experience-card { min-height: 500px; }
  .videos-section { margin-block: 70px; }
  .videos-heading { padding-inline: 6px; }
  .featured-video { width: 100vw; margin-left: calc((100vw - var(--shell)) / -2); border-inline: 0; border-radius: 0; }
  .video-player { aspect-ratio: 16 / 10; }
  .video-play-icon { width: 72px; height: 72px; }
  .video-poster-caption { left: 20px; bottom: 18px; }
  .video-details { min-height: 0; padding: 56px 22px 64px; }
  .video-details h3 { font-size: 3rem; }
  .location-teaser { width: 100%; margin-block: 0; border-radius: 0; }
  .location-teaser-copy { padding: 68px 22px; }
  .homepage-park-link { grid-template-columns: 140px 1fr; gap: 14px; }
  .teaser-times { gap: 14px; }
  .teaser-times span { padding-left: 12px; }
  .teaser-times strong { font-size: 1.1rem; }
  .location-teaser-map { min-height: 440px; }
  .history-teaser, .history-teaser-image { min-height: 0; }
  .history-teaser-image { height: 440px; }
  .history-teaser-copy { padding: 68px 22px 82px; }
  .journal-home { margin-block: 75px; padding: 42px 22px 22px; grid-template-columns: 1fr; gap: 30px; text-align: center; border-radius: 21px; }
  .journal-home-author img { width: 125px; }
  .journal-home-copy > p:not(.eyebrow) { margin-inline: auto; }
  .journal-home-story { grid-column: auto; min-height: 410px; text-align: left; }
  .tour-section { padding-block: 80px; }
  .tour-buttons { align-items: flex-start; flex-direction: column; }
  .map-topbar { align-items: flex-start; flex-direction: column; gap: 5px; }
  .property-illustration { padding: 10px 10px 14px; }
  .amenities { margin-block: 24px; padding: 64px 20px 72px; border-radius: 22px; }
  .amenity-grid { grid-template-columns: 1fr 1fr; }
  .amenity-grid > div { min-height: 145px; padding: 20px; }
  .reviews-section { padding-block: 80px; }
  .reviews-heading { grid-template-columns: 1fr; gap: 30px; }
  .rating-lockup { padding: 20px 0 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.3); }
  .review-grid { grid-template-columns: 1fr; }
  .review-grid article { min-height: 270px; }
  .newsletter-section { margin-block: 24px; padding: 58px 22px; grid-template-columns: 1fr; gap: 38px; border-radius: 22px; }
  .newsletter-fields { padding: 0; flex-direction: column; background: transparent; border-radius: 0; box-shadow: none; }
  .newsletter-fields input { min-height: 54px; padding: 0 18px; background: #fff; border-radius: 999px; }
  .newsletter-fields .button { width: 100%; }
  .final-cta { width: 100%; height: 590px; margin-block: 0; border-radius: 0; }
  .final-cta-overlay { background: linear-gradient(0deg, rgba(10,31,26,.86), rgba(10,31,26,.05)); }
  .final-cta-copy { left: 24px; right: 24px; top: auto; bottom: 52px; transform: none; }
  .final-cta-copy h2 { font-size: 3.3rem; }
  .site-footer { padding-top: 60px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 45px 25px; }
  .brand-footer { grid-column: 1 / -1; }
  .footer-grid > div:last-child { display: block; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
  .mobile-booking-bar { position: fixed; z-index: 30; left: 10px; right: 10px; bottom: 10px; min-height: 60px; padding: 9px 20px; display: flex; align-items: center; justify-content: space-between; color: #fff; border: 0; border-radius: 999px; background: var(--green); box-shadow: 0 12px 35px rgba(11,28,23,.35); }
  .mobile-booking-bar strong, .mobile-booking-bar small { display: block; text-align: left; }
  .mobile-booking-bar strong { font-size: .78rem; }
  .mobile-booking-bar small { margin-top: 3px; color: rgba(255,255,255,.7); font-size: .6rem; }
  .dialog-shell { padding: 24px 18px; }
  .dialog-header h2 { font-size: 2.2rem; }
  .calendar-warning { margin-block: 20px; }
  .calendar-months { grid-template-columns: 1fr; gap: 24px; }
  .calendar-months .month:nth-child(2) { display: none; }
  .calendar-legend { flex-wrap: wrap; }
  .calendar-footer { gap: 18px; }
  .calendar-footer .button { flex: 1; }
  .gallery-dialog { inset: 8px; width: calc(100vw - 16px); height: calc(100vh - 16px); }
  .gallery-dialog figure { padding: 65px 20px 55px; }
  .gallery-arrow { top: auto; bottom: 14px; transform: none; }
  .gallery-prev { left: 20px; }
  .gallery-next { right: 20px; }
}

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