/* Loons Landing public experience — intentionally isolated from owner/cancel pages. */
.home-page {
  --pine: #1d3c27;
  --pine-deep: #132d1d;
  --pine-soft: #365842;
  --paper: #f7f5f2;
  --paper-warm: #f1eee9;
  --white: #fffefa;
  --ink: #171a17;
  --muted: #686b67;
  --line: #dfddd8;
  --gold: #d4a34f;
  --selected: #dfe9dd;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  margin: 0;
  padding: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

.home-page .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.home-page *,
.home-page *::before,
.home-page *::after {
  box-sizing: border-box;
}

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

.home-page main {
  width: 100%;
  max-width: none;
  display: block;
  position: static;
  z-index: auto;
  margin: 0;
  padding: 0;
}

.home-page a {
  color: inherit;
}

.home-page button,
.home-page input,
.home-page textarea {
  font: inherit;
}

.home-page button {
  cursor: pointer;
  background-image: none;
}

.home-page figure::before {
  display: none;
}

.home-page .hidden {
  display: none !important;
}

.home-page .material-symbols-outlined {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Material Symbols Outlined";
  font-style: normal;
  font-weight: normal;
  font-feature-settings: "liga";
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 40;
  line-height: 1;
  text-rendering: optimizeLegibility;
}

.home-page .landing-header {
  position: relative;
  z-index: 50;
  width: 100%;
  height: 100px;
  display: grid;
  grid-template-columns: minmax(310px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 0 36px;
  background: var(--white);
}

.home-page .brand-lockup {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--pine);
  text-decoration: none;
}

.home-page .brand-mark {
  position: relative;
  width: 68px;
  height: 48px;
  flex: 0 0 68px;
  overflow: hidden;
}

.home-page .brand-mark img {
  position: absolute;
  top: -18px;
  left: -32px;
  width: 132px;
  height: auto;
  max-width: none;
  object-fit: contain;
}

.home-page .brand-words {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  white-space: nowrap;
}

.home-page .brand-words strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.home-page .brand-words small {
  margin-top: 5px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.42em;
  transform: translateX(0.2em);
}

.home-page .primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  transform: translateX(70px);
}

.home-page .primary-nav a {
  position: relative;
  color: var(--pine-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-page .primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.home-page .primary-nav a:hover::after,
.home-page .primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.home-page .button,
.home-page .hero-booking-button,
.home-page .header-booking-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--pine);
  border-radius: 6px;
  padding: 0 27px;
  background: transparent;
  box-shadow: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.home-page .button-primary,
.home-page .hero-booking-button,
.home-page .header-booking-button {
  border-color: var(--pine);
  background: var(--pine) !important;
  background-image: none !important;
  color: #fff !important;
}

.home-page .button:hover,
.home-page .button:focus-visible,
.home-page .hero-booking-button:hover,
.home-page .hero-booking-button:focus-visible,
.home-page .header-booking-button:hover,
.home-page .header-booking-button:focus-visible {
  filter: none;
  transform: translateY(-1px);
}

.home-page .button-primary:hover,
.home-page .button-primary:focus-visible,
.home-page .hero-booking-button:hover,
.home-page .header-booking-button:hover {
  background: var(--pine-deep);
}

.home-page .header-booking-button {
  width: 171px;
  justify-self: end;
}

.home-page .menu-toggle {
  display: none;
}

.home-page .hero-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  background: var(--pine-deep);
  touch-action: pan-y;
}

.home-page .hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-page .hero-gallery-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: saturate(1.30) contrast(1.035) brightness(1.01);
  transform: scale(1.002);
  transition: opacity 180ms ease;
  user-select: none;
  pointer-events: none;
}

.home-page .hero-gallery-image.is-changing {
  opacity: 0.58;
}

.home-page .hero-section::after {
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(6, 25, 15, 0.68) 0%,
    rgba(6, 25, 15, 0.42) 34%,
    rgba(6, 25, 15, 0.12) 62%,
    rgba(6, 25, 15, 0.02) 100%
  );
}

.home-page .hero-content {
  position: relative;
  z-index: 2;
  width: min(1290px, 84%);
  margin: 0 auto;
  padding-top: 2px;
  color: #fff;
  transform: translateY(18px);
}

.home-page .hero-content h1 {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(54px, 4vw, 59px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.08;
  text-shadow:
    0 2px 24px rgba(0, 0, 0, 0.5),
    0 1px 3px rgba(0, 0, 0, 0.55);
}

.home-page .hero-content p {
  max-width: 560px;
  margin: 20px 0 33px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
  text-shadow:
    0 2px 14px rgba(0, 0, 0, 0.58),
    0 1px 2px rgba(0, 0, 0, 0.6);
}

.home-page .hero-gallery-controls {
  position: absolute;
  z-index: 3;
  right: 8%;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.home-page .hero-gallery-button,
.home-page .hero-gallery-count {
  border: 1px solid rgba(255, 255, 255, 0.68);
  color: #fff;
  background: rgba(8, 31, 19, 0.68);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
}

.home-page .hero-gallery-button {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(24, 67, 42, 0.18);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff !important;
  background-image: none !important;
  color: var(--pine) !important;
  box-shadow: 0 3px 14px rgba(8, 31, 19, 0.14);
  backdrop-filter: none;
  cursor: pointer;
  transition:
    color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.home-page .hero-gallery-button:hover {
  background: var(--pine) !important;
  color: #fff !important;
  box-shadow: 0 5px 18px rgba(8, 31, 19, 0.24);
  transform: translateY(-1px);
}

.home-page .hero-gallery-button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.home-page .hero-gallery-button .material-symbols-outlined {
  font-size: 22px;
}

.home-page .hero-gallery-count {
  min-width: 58px;
  padding: 9px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.06em;
}

.home-page .hero-booking-button {
  width: 186px;
  min-height: 54px;
}

.home-page .section-shell {
  width: 100%;
  padding-right: max(32px, calc((100vw - 1240px) / 2));
  padding-left: max(32px, calc((100vw - 1240px) / 2));
}

.home-page .section-intro {
  max-width: 670px;
  margin: 0 auto;
  text-align: center;
}

.home-page .section-intro h2,
.home-page .cottage-section h2,
.home-page .gallery h2,
.home-page .location-section h2,
.home-page .contact-card h2 {
  margin: 0;
  color: var(--pine);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.015em;
  line-height: 1.1;
  text-transform: uppercase;
}

.home-page .section-intro > p:last-child {
  margin: 17px auto 0;
  font-size: 14px;
  line-height: 1.55;
}

.home-page .section-intro.compact {
  margin-bottom: 40px;
}

.home-page .section-eyebrow {
  margin: 0 0 8px;
  color: var(--pine-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-page .gold-rule {
  width: 45px;
  height: 2px;
  display: block;
  margin: 14px auto 0;
  background: var(--gold);
}

.home-page .welcome-section {
  min-height: 324px;
  padding-top: 33px;
  padding-bottom: 32px;
  background: var(--paper);
}

.home-page .amenity-grid {
  width: min(900px, 100%);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin: 38px auto 0;
}

.home-page .amenity-item {
  min-height: 94px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border-left: 1px solid var(--line);
  color: var(--pine);
  text-align: center;
}

.home-page .amenity-item:first-child {
  border-left: 0;
}

.home-page .amenity-item > .material-symbols-outlined,
.home-page .season-icons {
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
}

.home-page .season-icons {
  gap: 1px;
}

.home-page .season-icons .material-symbols-outlined {
  font-size: 32px;
}

.home-page .amenity-item p {
  margin: 7px 0 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.6;
  text-transform: uppercase;
}

.home-page .cottage-section {
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
  padding-top: 78px;
  padding-bottom: 78px;
  background: var(--white);
}

.home-page .cottage-copy .gold-rule,
.home-page .location-section .gold-rule {
  margin-left: 0;
}

.home-page .cottage-copy .description-body {
  display: -webkit-box;
  max-width: 52ch;
  margin: 24px 0 27px;
  overflow: hidden;
  color: #30332f;
  font-size: 15px;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
}

.home-page .cottage-image {
  min-width: 0;
  margin: 0;
}

.home-page .cottage-image img {
  width: 100%;
  aspect-ratio: 1.48 / 1;
  border-radius: 9px;
  object-fit: cover;
}

.home-page .amenities-detail-section {
  padding-top: 72px;
  padding-bottom: 72px;
  background: var(--paper-warm);
}

.home-page .feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px 36px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.home-page .feature-list li {
  position: relative;
  padding: 0 0 0 25px;
  color: #2f352f;
  font-size: 13px;
  line-height: 1.55;
}

.home-page .feature-list li::before {
  content: "check";
  position: absolute;
  top: 1px;
  left: 0;
  color: var(--pine);
  font-family: "Material Symbols Outlined";
  font-feature-settings: "liga";
  font-size: 18px;
}

.home-page .amenities-mobile-toggle {
  display: none;
  width: max-content !important;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin: 25px auto 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  padding: 0 4px 3px;
  background: transparent !important;
  background-image: none !important;
  box-shadow: none;
  color: var(--pine) !important;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
}

.home-page .amenities-mobile-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}

.home-page .gallery {
  padding-top: 76px;
  padding-bottom: 84px;
  background: var(--white);
}

.home-page .gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.home-page .gallery-link,
.home-page .mobile-section-toggle {
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  padding: 0 0 2px;
  background: transparent;
  box-shadow: none;
  color: var(--pine);
  font-size: 13px;
  font-weight: 600;
}

.home-page .mobile-section-toggle {
  display: none;
}

.home-page .photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.home-page .photo-grid figure,
.home-page .photo-grid figure:first-child {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  box-shadow: none;
}

.home-page .photo-grid figure:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.home-page .photo-grid img,
.home-page .photo-grid figure:first-child img {
  width: 100%;
  height: 230px;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  transition: transform 220ms ease;
}

.home-page .photo-grid figure:first-child img {
  height: 100%;
  min-height: 478px;
}

.home-page .photo-grid figure:hover img {
  transform: scale(1.015);
}

.home-page .photo-grid figcaption {
  position: absolute;
  right: 12px;
  bottom: 10px;
  left: 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-shadow: 0 1px 9px rgba(0, 0, 0, 0.7);
}

.home-page .gallery-extra {
  display: none;
}

.home-page .gallery.is-expanded .gallery-extra {
  display: block;
}

.home-page .photo-carousel-meta {
  display: none;
}

.home-page .things-section {
  padding-top: 76px;
  padding-bottom: 84px;
  background: var(--paper);
}

.home-page .experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.home-page .experience-grid article {
  min-height: 225px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.home-page .experience-grid .material-symbols-outlined {
  color: var(--pine);
  font-size: 41px;
}

.home-page .experience-grid h3 {
  margin: 20px 0 8px;
  color: var(--pine);
  font-family: var(--serif);
  font-size: 25px;
}

.home-page .experience-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.home-page .location-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
  padding-top: 82px;
  padding-bottom: 82px;
  background: var(--white);
}

.home-page .location-section figure {
  margin: 0;
}

.home-page .location-section img {
  width: 100%;
  border-radius: 8px;
}

.home-page .location-section p:last-child {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.home-page .reviews-section {
  padding-top: 76px;
  padding-bottom: 84px;
  background: var(--paper-warm);
}

.home-page .review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 940px;
  margin: 0 auto;
}

.home-page .review-grid blockquote {
  margin: 0;
  padding: 33px 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.home-page .review-grid blockquote p {
  margin: 0 0 16px;
  color: var(--pine);
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.35;
}

.home-page .review-grid cite {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Booking experience */
.home-page .booking-view {
  width: 100%;
  display: block;
  padding: 82px max(32px, calc((100vw - 1160px) / 2)) 92px;
  background: var(--paper);
  scroll-margin-top: 20px;
}

.home-page .booking-mobile-mast {
  display: none;
}

.home-page .booking-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.home-page .booking-heading {
  margin-bottom: 34px;
  text-align: center;
}

.home-page .booking-heading h2 {
  margin: 0;
  color: var(--pine);
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.home-page .booking-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 26px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.home-page .booking-progress li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
}

.home-page .booking-progress li + li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -14px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #b6b6b2;
}

.home-page .booking-progress li span {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ebeae7;
  color: #333;
  font-size: 12px;
}

.home-page .booking-progress li.is-active,
.home-page .booking-progress li.is-complete {
  color: var(--pine);
}

.home-page .booking-progress li.is-active span,
.home-page .booking-progress li.is-complete span {
  background: var(--pine);
  color: #fff;
}

.home-page .booking-form-anchor {
  height: 0;
  margin: 0;
  overflow: hidden;
}

.home-page .booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: start;
  gap: 24px;
}

.home-page .calendar-shell,
.home-page .stay-details-panel,
.home-page .estimate-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(25, 39, 28, 0.07);
}

.home-page .calendar-shell {
  width: auto;
  margin: 0;
  padding: 30px 34px 28px;
}

.home-page .panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0;
}

.home-page .panel-heading h3,
.home-page .stay-details-panel h3,
.home-page .estimate-card h3 {
  margin: 0;
  color: var(--pine);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 1.25;
  text-transform: uppercase;
}

.home-page .calendar-help {
  margin: 7px 0 17px;
  color: var(--muted);
  font-size: 12px;
}

.home-page .calendar-toolbar {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 36px;
  align-items: center;
  gap: 10px;
  margin: 4px 0 13px;
}

.home-page .calendar-button {
  width: 36px;
  height: 36px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d5dfd7;
  border-radius: 50%;
  padding: 0;
  background: #fffdfa;
  box-shadow: none;
  color: var(--pine);
}

.home-page .calendar-button:hover:not(:disabled) {
  border-color: #aebfb2;
  background: #f1f6f2;
}

.home-page .calendar-button:disabled {
  cursor: default;
  opacity: 0.25;
}

.home-page .calendar-range-label {
  margin: 0;
  color: var(--pine);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-align: center;
}

.home-page .calendar-months {
  display: block;
  margin: 0;
}

.home-page .month-card {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-page .month-card > h3 {
  display: none;
}

.home-page .day-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.home-page .day-name,
.home-page .day {
  min-width: 0;
  min-height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-page .day-name {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.055em;
}

.home-page .calendar-day {
  position: relative;
  width: 100%;
  height: 50px;
  min-height: 50px;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
  border: 1px solid #dfe4df;
  border-radius: 10px;
  padding: 6px 3px 5px;
  background: #fffefb;
  box-shadow: none;
  color: #21382a;
  font-size: 14px;
  font-weight: 650;
}

.home-page .calendar-day:hover:not(:disabled) {
  border-color: #a9bcae;
  background: #f5f8f5;
  color: #173f29;
}

.home-page .calendar-day.in-range {
  border-color: #b7d1bd;
  background: #eaf4ec;
  color: #1c4a2f;
}

.home-page .calendar-day.selected-start,
.home-page .calendar-day.selected-end,
.home-page .calendar-day.selected-start:hover:not(:disabled),
.home-page .calendar-day.selected-end:hover:not(:disabled) {
  width: 100%;
  min-height: 50px;
  border: 1px solid #214d34;
  border-radius: 10px;
  background: #214f35;
  color: #fff;
  box-shadow: 0 3px 8px rgba(25, 66, 42, 0.16);
}

.home-page .calendar-day.unavailable,
.home-page .calendar-day.unavailable:disabled,
.home-page .calendar-day.is-booked,
.home-page .calendar-day.is-booked:disabled,
.home-page .calendar-day.is-blocked,
.home-page .calendar-day.is-blocked:disabled,
.home-page .calendar-day.is-requested,
.home-page .calendar-day.is-requested:disabled,
.home-page .calendar-day.is-range-conflict,
.home-page .calendar-day.is-range-conflict:disabled {
  border-color: #ead8d2;
  background: #f5e9e5;
  color: #8b4a3e;
  opacity: 1;
}

.home-page .calendar-day.is-past,
.home-page .calendar-day.is-past:disabled,
.home-page .calendar-day.is-closed,
.home-page .calendar-day.is-closed:disabled {
  border-color: #e8ebe8;
  background: #f0f2ef;
  color: #969d97;
  opacity: 1;
}

.home-page .calendar-day.is-checkout-boundary,
.home-page .calendar-day.is-checkout-boundary:disabled {
  border: 1px solid #c2d0c5;
  background: #fbfdfb;
  color: #214b31;
  box-shadow: inset 0 -2px 0 #779980;
  opacity: 1;
  -webkit-text-fill-color: currentColor;
}

.home-page .calendar-day.is-checkout-boundary:hover:not(:disabled) {
  border-color: #9bb2a0;
  background: #f1f7f2;
  color: #173f29;
}

.home-page .calendar-day.is-checkout-boundary.selected-end,
.home-page .calendar-day.is-checkout-boundary.selected-end:hover:not(:disabled) {
  border: 1px solid #214d34;
  background: #214f35;
  color: #fff;
  box-shadow: 0 3px 8px rgba(25, 66, 42, 0.16);
}

.home-page .calendar-day-marker {
  width: 15px;
  height: 3px;
  flex: 0 0 3px;
  border-radius: 999px;
  background: #779980;
}

.home-page .calendar-day-state {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.5rem;
  font-weight: 750;
  letter-spacing: 0.035em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-page .calendar-day.is-checkin::before,
.home-page .calendar-day.is-checkout::after {
  display: none;
}

.home-page .calendar-legend {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 15px;
  margin: 14px 0 20px;
  color: #4f5d53;
  font-size: 12px;
}

.home-page .calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.home-page .legend-dot {
  width: 15px;
  height: 15px;
  display: inline-block;
  flex: 0 0 15px;
  border: 1px solid #dfe4df;
  border-radius: 4px;
  background: #fffefb;
}

.home-page .legend-dot.selected {
  border-color: #214d34;
  background: #214f35;
}

.home-page .legend-dot.unavailable {
  border-color: #e8ebe8;
  background: #f0f2ef;
}

.home-page .legend-dot.available {
  border-color: #dfe4df;
  background: #fffefb;
}

.home-page .legend-dot.checkout {
  border: 1px solid #c2d0c5;
  background: #fbfdfb;
  box-shadow: inset 0 -2px 0 #779980;
}

.home-page .calendar-selection-controls {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
}

.home-page .calendar-selection-control {
  min-height: 84px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  padding: 12px 17px;
  background: transparent;
  box-shadow: none;
  color: var(--ink);
  text-align: left;
}

.home-page .calendar-selection-control:disabled {
  color: var(--muted);
  opacity: 1;
}

.home-page .calendar-selection-control span,
.home-page .summary-date-control span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.home-page .calendar-selection-control strong {
  font-size: 14px;
}

.home-page .calendar-clear-button {
  border: 0;
  border-radius: 0;
  padding: 0 15px;
  background: transparent;
  box-shadow: none;
  color: var(--pine);
  font-size: 11px;
  font-weight: 600;
}

.home-page .booking-continue-button,
.home-page .estimate-request-button,
.home-page .mobile-calendar-done {
  width: 100%;
  min-height: 58px;
  margin-top: 18px;
  border: 0;
  border-radius: 6px;
  background: var(--pine) !important;
  background-image: none !important;
  box-shadow: none;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.home-page .secure-booking {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.home-page .secure-booking .material-symbols-outlined {
  font-size: 16px;
}

.home-page .mobile-calendar-backdrop,
.home-page .mobile-calendar-modal-head,
.home-page .mobile-calendar-modal-actions {
  display: none !important;
}

.home-page .booking-summary-column {
  display: grid;
  gap: 18px;
}

.home-page .stay-details-panel,
.home-page .estimate-card {
  padding: 24px;
}

.home-page .booking-cottage-summary {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 17px;
}

.home-page .booking-cottage-summary img {
  width: 132px;
  height: 96px;
  border-radius: 7px;
  object-fit: cover;
}

.home-page .booking-cottage-summary p {
  margin: 0 0 3px;
  font-size: 12px;
  line-height: 1.5;
}

.home-page .booking-cottage-summary a,
.home-page .estimate-card a {
  color: var(--pine);
  font-size: 12px;
  font-weight: 600;
}

.home-page .stay-detail-list {
  display: grid;
  margin: 20px 0 0;
}

.home-page .stay-detail-list div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.home-page .stay-detail-list div::before {
  display: none;
}

.home-page .stay-detail-list dt,
.home-page .stay-detail-list dd {
  margin: 0;
  font-size: 11px;
  line-height: 1.4;
}

.home-page .stay-detail-list dt {
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.home-page .estimate-card-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.home-page .estimate-card-heading h3 {
  grid-column: 1 / -1;
  margin-bottom: 14px;
}

.home-page .summary-date-control {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-height: 64px;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 10px 12px;
  background: #fff !important;
  background-image: none !important;
  box-shadow: none;
  color: var(--ink) !important;
  text-align: left;
}

.home-page .summary-date-control:first-of-type {
  border-radius: 6px 0 0 6px;
}

.home-page .summary-date-control:last-of-type {
  border-left: 0;
  border-radius: 0 6px 6px 0;
}

.home-page .summary-date-control strong {
  font-size: 11px;
}

.home-page .estimate-empty {
  display: flex;
  align-items: center;
  min-height: 62px;
  margin-top: 14px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
}

.home-page .estimate-empty p {
  margin: 0;
  font-size: 12px;
}

.home-page .estimate-empty.hidden {
  display: none !important;
}

.home-page .quote-panel {
  margin: 16px 0 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-page .quote-panel-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 15px;
}

.home-page .quote-panel-title {
  margin: 0;
  color: var(--pine);
  font-size: 12px;
  text-transform: uppercase;
}

.home-page .quote-meta {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.home-page .quote-breakdown-toggle {
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  color: var(--pine);
  font-size: 10px;
}

.home-page .quote-nightly-lines,
.home-page .quote-summary {
  display: grid;
  gap: 0;
  margin-top: 13px;
}

.home-page .quote-nightly-line,
.home-page .quote-summary-row,
.home-page .quote-compact-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 8px 0;
  color: #30332f;
  font-size: 11px;
}

.home-page .quote-nightly-meta {
  display: flex;
  flex-direction: column;
}

.home-page .quote-summary-row-total,
.home-page .quote-compact-summary {
  margin-top: 8px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 15px;
}

.home-page .quote-summary-row-total small,
.home-page .quote-compact-summary small {
  font-size: 10px;
}

.home-page .quote-deposit-row {
  color: var(--muted);
}

.home-page .booking-flow-status {
  margin: 15px 0 0;
  border-radius: 6px;
  padding: 11px 13px;
  background: #f0efec;
  color: var(--ink);
  font-size: 11px;
}

.home-page .booking-flow-status.available {
  background: #e7efe4;
  color: var(--pine);
}

.home-page .booking-flow-status.unavailable {
  background: #f3e7e3;
  color: #7b332a;
}

.home-page .booking-guest-step {
  margin-top: 18px;
}

.home-page .booking-guest-fields,
.home-page .request-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.home-page .booking-guest-fields label,
.home-page .contact-form label {
  display: grid;
  gap: 6px;
  color: #30332f;
  font-size: 11px;
  font-weight: 600;
}

.home-page .booking-guest-fields .field-wide,
.home-page .contact-form .field-wide {
  grid-column: 1 / -1;
}

.home-page .booking-guest-fields input,
.home-page .booking-guest-fields textarea,
.home-page .contact-form input,
.home-page .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 11px;
  background: #fff;
  box-shadow: none;
  color: var(--ink);
}

.home-page .estimate-request-button.hidden {
  display: none !important;
}

.home-page .contact-card {
  padding-top: 78px;
  padding-bottom: 88px;
  background: var(--white);
}

.home-page .contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.home-page .contact-copy {
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.home-page .contact-copy h3 {
  margin: 0 0 12px;
  color: var(--pine);
  font-family: var(--serif);
  font-size: 27px;
}

.home-page .contact-copy p {
  color: var(--muted);
  font-size: 14px;
}

.home-page .contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.home-page .contact-form button {
  width: max-content;
  margin-top: 3px;
}

.home-page .result {
  margin-top: 16px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
}

.home-page .guest-chat {
  position: fixed;
  right: 24px;
  bottom: 22px;
  z-index: 1400;
  display: grid;
  justify-items: end;
  gap: 10px;
  pointer-events: none;
}

.home-page .guest-chat > * {
  pointer-events: auto;
}

.home-page .guest-chat-toggle {
  width: auto !important;
  min-width: 0;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 0 18px 0 12px;
  background: var(--pine) !important;
  background-image: none !important;
  box-shadow: 0 10px 26px rgba(16, 36, 23, 0.22) !important;
  color: #fff !important;
  font-size: 12px;
  font-weight: 700;
  transition:
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.home-page .guest-chat-toggle:hover {
  background: var(--pine-soft) !important;
  box-shadow: 0 13px 30px rgba(16, 36, 23, 0.28) !important;
  transform: translateY(-2px);
}

.home-page .guest-chat-toggle .material-symbols-outlined {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  font-size: 17px;
}

.home-page .guest-chat-panel {
  position: absolute;
  right: 0;
  bottom: 62px;
  width: min(390px, calc(100vw - 36px));
  max-height: min(650px, calc(100dvh - 96px));
  display: grid;
  grid-template-rows: auto minmax(190px, 1fr) auto auto auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  background-image: none;
  box-shadow: 0 24px 60px rgba(14, 33, 20, 0.22);
  backdrop-filter: none;
}

.home-page .guest-chat-panel.hidden {
  display: none;
}

.home-page .guest-chat.is-open .guest-chat-toggle {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.home-page .guest-chat-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.home-page .guest-chat-brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-page .guest-chat-mark {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: #edf2eb;
}

.home-page .guest-chat-mark img {
  position: relative;
  top: -12px;
  left: -22px;
  width: 89px;
  height: auto;
  max-width: none;
  object-fit: contain;
}

.home-page .guest-chat-eyebrow {
  margin: 0 0 2px;
  color: var(--pine);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-page .guest-chat-head h2 {
  margin: 0;
  color: var(--pine);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.05;
}

.home-page .guest-chat-availability {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.3;
}

.home-page .guest-chat-availability span {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: #668e5a;
}

.home-page .guest-chat-close {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper-warm) !important;
  background-image: none !important;
  box-shadow: none !important;
  color: var(--pine) !important;
  transition:
    background 150ms ease,
    transform 150ms ease;
}

.home-page .guest-chat-close:hover {
  background: #e6e1da !important;
  transform: rotate(4deg);
}

.home-page .guest-chat-messages {
  display: grid;
  align-content: start;
  gap: 12px;
  overflow-y: auto;
  padding: 18px;
  background: var(--paper);
}

.home-page .guest-chat-message {
  max-width: 94%;
}

.home-page .guest-chat-message.assistant {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 8px;
  justify-self: start;
}

.home-page .guest-chat-message.assistant::before {
  content: "forum";
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--pine);
  color: #fff;
  font-family: "Material Symbols Outlined";
  font-feature-settings: "liga";
  font-size: 14px;
}

.home-page .guest-chat-bubble {
  border: 1px solid var(--line);
  border-radius: 14px 14px 14px 4px;
  padding: 11px 13px;
  background: #fff;
  color: #30342f;
  box-shadow: 0 3px 10px rgba(18, 45, 29, 0.04);
  font-size: 13px;
  line-height: 1.55;
}

.home-page .guest-chat-message.user {
  display: block;
  justify-self: end;
  max-width: 86%;
}

.home-page .guest-chat-message.user .guest-chat-bubble {
  border-color: var(--pine);
  border-radius: 14px 14px 4px 14px;
  background: var(--pine);
  color: #fff;
}

.home-page .guest-chat-message.is-pending .guest-chat-bubble {
  color: var(--muted);
  font-style: normal;
}

.home-page .guest-chat-source {
  grid-column: 2;
  margin: 0 0 0 4px;
  color: var(--muted);
  font-size: 10px;
}

.home-page .guest-chat-prompts {
  padding: 0 18px 15px;
  background: var(--paper);
}

.home-page .guest-chat-prompts > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.home-page .guest-chat-prompts > div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.home-page .guest-chat-prompt {
  width: auto !important;
  min-height: 32px;
  border: 1px solid rgba(29, 60, 39, 0.24);
  border-radius: 999px;
  padding: 0 11px;
  background: #fff !important;
  background-image: none !important;
  box-shadow: none !important;
  color: var(--pine) !important;
  font-size: 10px;
  font-weight: 600;
}

.home-page .guest-chat-prompt:hover {
  border-color: var(--pine);
  background: #edf2eb !important;
}

.home-page .guest-chat.has-conversation .guest-chat-prompts {
  display: none;
}

.home-page .guest-chat-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px;
  gap: 8px;
  align-items: center;
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.home-page .guest-chat-form input[type="text"] {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line) !important;
  border-radius: 8px;
  padding: 0 13px;
  background: #fff !important;
  color: var(--ink) !important;
  box-shadow: none;
  font-size: 12px;
}

.home-page .guest-chat-form input[type="text"]:focus {
  border-color: var(--pine) !important;
  outline: 2px solid rgba(29, 60, 39, 0.12);
  outline-offset: 0;
}

.home-page .guest-chat-send {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: var(--pine) !important;
  background-image: none !important;
  box-shadow: none !important;
  color: #fff !important;
  transition:
    background 150ms ease,
    transform 150ms ease;
}

.home-page .guest-chat-send:hover:not(:disabled) {
  background: var(--pine-soft) !important;
  transform: translateX(1px);
}

.home-page .guest-chat-status {
  min-height: 0;
  margin: 0;
  padding: 0 16px 12px;
  background: var(--white);
  color: var(--muted);
  font-size: 10px;
}

.home-page .guest-chat-status:empty {
  display: none;
}

.home-page .mobile-booking-bar {
  display: none !important;
}

.home-page .landing-footer {
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 36px max(32px, calc((100vw - 1240px) / 2));
  background: var(--pine-deep);
  color: #fff;
}

.home-page .landing-footer .brand-lockup {
  color: #fff;
}

.home-page .landing-footer .brand-mark img {
  filter: brightness(0) invert(1);
}

.home-page .landing-footer p {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1240px) {
  .home-page .landing-header {
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    padding: 0 28px;
  }

  .home-page .brand-words strong {
    font-size: 25px;
  }

  .home-page .brand-words small {
    font-size: 9px;
  }

  .home-page .primary-nav {
    gap: 18px;
    transform: none;
  }

  .home-page .primary-nav a {
    font-size: 11px;
  }

  .home-page .header-booking-button {
    width: 152px;
  }
}

@media (max-width: 1000px) {
  .home-page .landing-header {
    grid-template-columns: auto 1fr auto;
  }

  .home-page .header-booking-button {
    display: none;
  }

  .home-page .primary-nav {
    justify-self: end;
  }

  .home-page .booking-layout {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .home-page .landing-header {
    grid-template-columns: 1fr auto;
  }

  .home-page .header-booking-button {
    display: none;
  }

  .home-page .menu-toggle {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    border: 0;
    border-radius: 50%;
    padding: 0;
    background: transparent !important;
    background-image: none !important;
    box-shadow: none;
    color: var(--ink) !important;
  }

  .home-page .menu-toggle .material-symbols-outlined {
    font-size: 31px;
  }

  .home-page .primary-nav {
    position: absolute;
    top: 78px;
    right: 28px;
    width: 250px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 10px;
    background: #fff;
    box-shadow: 0 18px 38px rgba(23, 33, 25, 0.18);
    transform: none;
  }

  .home-page.menu-open .primary-nav {
    display: flex;
  }

  .home-page .primary-nav a {
    padding: 12px 14px;
    border-radius: 8px;
  }

  .home-page .primary-nav a:hover,
  .home-page .primary-nav a:focus-visible {
    background: var(--paper);
  }

  .home-page .primary-nav a::after {
    display: none;
  }
}

@media (max-width: 900px) {
  .home-page {
    background: var(--paper);
  }

  .home-page.menu-open,
  .home-page.booking-view-open {
    overflow: hidden;
  }

  .home-page .desktop-only {
    display: none;
  }

  .home-page .landing-header {
    width: 100%;
    height: 84px;
    grid-template-columns: 1fr auto;
    gap: 12px;
    margin: 0;
    padding: 0 25px;
    border-radius: 0;
    box-shadow: none;
  }

  .home-page .brand-lockup {
    gap: 8px;
  }

  .home-page .brand-mark {
    width: 58px;
    height: 42px;
    flex-basis: 58px;
  }

  .home-page .brand-mark img {
    top: -16px;
    left: -28px;
    width: 114px;
  }

  .home-page .brand-words strong {
    font-size: clamp(21px, 6.8vw, 27px);
  }

  .home-page .brand-words small {
    margin-top: 4px;
    font-size: clamp(7px, 2.2vw, 9px);
    letter-spacing: 0.38em;
  }

  .home-page .menu-toggle,
  .home-page .booking-view-close {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    padding: 0;
    background: transparent !important;
    background-image: none !important;
    box-shadow: none;
    color: var(--ink) !important;
  }

  .home-page .menu-toggle .material-symbols-outlined,
  .home-page .booking-view-close .material-symbols-outlined {
    font-size: 31px;
  }

  .home-page .primary-nav {
    position: absolute;
    top: 70px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 10px;
    background: #fff;
    box-shadow: 0 18px 38px rgba(23, 33, 25, 0.18);
  }

  .home-page.menu-open .primary-nav {
    display: flex;
  }

  .home-page .primary-nav a {
    padding: 13px 14px;
    border-radius: 8px;
    font-size: 12px;
  }

  .home-page .primary-nav a:hover,
  .home-page .primary-nav a:focus-visible {
    background: var(--paper);
  }

  .home-page .primary-nav a::after {
    display: none;
  }

  .home-page .hero-section {
    width: 100%;
    height: 510px;
    margin: 0;
    background-image: none;
  }

  .home-page .hero-gallery-image {
    object-position: 28% center;
  }

  .home-page .hero-section::after {
    background: linear-gradient(
      90deg,
      rgba(6, 26, 16, 0.7) 0%,
      rgba(6, 26, 16, 0.5) 66%,
      rgba(6, 26, 16, 0.2) 100%
    );
  }

  .home-page .hero-content {
    width: 100%;
    padding: 2px 20px 0 49px;
    transform: none;
  }

  .home-page .hero-content h1 {
    max-width: 320px;
    font-size: 40px;
    line-height: 1.04;
  }

  .home-page .hero-content p {
    max-width: 295px;
    margin: 17px 0 26px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.55;
  }

  .home-page .hero-gallery-controls {
    right: 20px;
    bottom: 18px;
  }

  .home-page .hero-gallery-button {
    display: none;
  }

  .home-page .hero-gallery-count {
    min-width: 0;
    padding: 8px 11px;
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(8, 31, 19, 0.5);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
    font-size: 10px;
  }

  .home-page .hero-gallery-count::before {
    content: "Swipe · ";
    font-weight: 600;
    letter-spacing: 0.04em;
  }

  .home-page .hero-booking-button {
    width: 160px !important;
    min-height: 44px;
    padding: 0 17px;
    font-size: 11px;
  }

  .home-page .section-shell {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    padding-right: 31px;
    padding-left: 31px;
  }

  .home-page .welcome-section {
    min-height: 624px;
    padding-top: 43px;
    padding-bottom: 49px;
    background: var(--white);
  }

  .home-page .section-intro h2,
  .home-page .cottage-section h2,
  .home-page .gallery h2,
  .home-page .location-section h2,
  .home-page .contact-card h2 {
    font-size: 27px;
    line-height: 1.14;
  }

  .home-page .welcome-section .section-intro h2 {
    max-width: 270px;
    margin: 0 auto;
  }

  .home-page .section-intro > p:last-child {
    max-width: 275px;
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.7;
  }

  .home-page .gold-rule {
    width: 42px;
    margin-top: 15px;
  }

  .home-page .amenity-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 42px 10px;
    margin-top: 43px;
  }

  .home-page .amenity-item {
    min-height: 110px;
    border-left: 0;
  }

  .home-page .amenity-item > .material-symbols-outlined,
  .home-page .season-icons {
    height: 49px;
    font-size: 44px;
  }

  .home-page .season-icons .material-symbols-outlined {
    font-size: 31px;
  }

  .home-page .amenity-item p {
    margin-top: 8px;
    font-size: 10px;
    line-height: 1.7;
  }

  .home-page .cottage-section {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 38px;
    padding-bottom: 49px;
    border-top: 1px solid var(--line);
    background: var(--white);
  }

  .home-page .cottage-copy {
    display: contents;
  }

  .home-page .cottage-copy .section-eyebrow {
    display: none;
  }

  .home-page .cottage-section h2 {
    order: 1;
    justify-self: start;
  }

  .home-page .cottage-copy .gold-rule {
    display: none;
  }

  .home-page .cottage-image {
    order: 2;
    margin-top: 19px;
  }

  .home-page .cottage-image img {
    aspect-ratio: 1.52 / 1;
  }

  .home-page .cottage-copy .description-body {
    order: 3;
    margin: 21px 0 25px;
    font-size: 14px;
    line-height: 1.65;
    -webkit-line-clamp: 5;
  }

  .home-page .cottage-copy .button {
    order: 4;
    width: max-content;
    min-height: 43px;
    justify-self: start;
    padding: 0 25px;
    font-size: 11px;
  }

  .home-page .amenities-detail-section,
  .home-page .gallery,
  .home-page .things-section,
  .home-page .location-section,
  .home-page .reviews-section,
  .home-page .contact-card {
    padding-top: 52px;
    padding-bottom: 56px;
  }

  .home-page .feature-list {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .home-page .feature-list li {
    font-size: 12px;
  }

  .home-page .feature-list:not(.is-expanded-mobile) li:nth-child(n + 6) {
    display: none;
  }

  .home-page .amenities-mobile-toggle {
    display: flex;
  }

  .home-page .gallery-heading {
    align-items: center;
    margin-bottom: 23px;
  }

  .home-page .gallery-link {
    display: none;
  }

  .home-page .photo-grid {
    display: flex;
    gap: 12px;
    margin-right: -31px;
    margin-left: -31px;
    padding: 0 31px 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-padding-inline: 31px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }

  .home-page .photo-grid::-webkit-scrollbar {
    display: none;
  }

  .home-page .photo-grid:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 5px;
  }

  .home-page .photo-grid figure,
  .home-page .photo-grid figure:first-child {
    flex: 0 0 84%;
    border-radius: 9px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .home-page .photo-grid figure:first-child {
    grid-column: auto;
    grid-row: auto;
  }

  .home-page .photo-grid img,
  .home-page .photo-grid figure:first-child img {
    min-height: 0;
    height: auto;
    aspect-ratio: 1.36 / 1;
  }

  .home-page .photo-grid .gallery-extra,
  .home-page .gallery.is-expanded .gallery-extra {
    display: block;
  }

  .home-page .photo-carousel-meta {
    display: grid;
    grid-template-columns: auto minmax(70px, 1fr) auto;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
    color: #59605a;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .home-page .photo-carousel-progress {
    height: 2px;
    overflow: hidden;
    background: rgba(24, 67, 42, 0.14);
  }

  .home-page .photo-carousel-progress span {
    display: block;
    width: calc(100% / 12);
    height: 100%;
    background: var(--pine);
    transform-origin: left center;
    transition: width 180ms ease;
  }

  .home-page .experience-grid,
  .home-page .review-grid,
  .home-page .location-section,
  .home-page .contact-layout {
    grid-template-columns: 1fr;
  }

  .home-page .experience-grid {
    gap: 13px;
  }

  .home-page .experience-grid article {
    min-height: 0;
    padding: 24px;
  }

  .home-page .location-section {
    gap: 28px;
  }

  .home-page .location-section > div {
    order: -1;
  }

  .home-page .review-grid {
    gap: 13px;
  }

  .home-page .review-grid blockquote {
    padding: 24px;
  }

  /* Mobile booking is a dedicated, scrollable screen matching the supplied flow. */
  .home-page .booking-view {
    position: fixed !important;
    inset: 0;
    z-index: 2000;
    width: 100%;
    height: 100%;
    display: none !important;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 10px;
    background: #efede9;
  }

  .home-page.booking-view-open .booking-view {
    display: block !important;
  }

  .home-page .booking-mobile-mast,
  .home-page .booking-inner {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
  }

  .home-page .booking-mobile-mast {
    display: block;
    overflow: hidden;
    border-radius: 30px 30px 0 0;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(26, 30, 26, 0.12);
  }

  .home-page .booking-mobile-header {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 24px;
    background: var(--white);
  }

  .home-page .booking-mobile-mast > img {
    width: 100%;
    height: 284px;
    object-fit: cover;
    object-position: center 55%;
  }

  .home-page .booking-inner {
    border-radius: 0 0 30px 30px;
    padding: 33px 18px 24px;
    background: var(--white);
    box-shadow: 0 17px 30px rgba(26, 30, 26, 0.12);
  }

  .home-page .booking-heading {
    margin-bottom: 24px;
  }

  .home-page .booking-heading .section-eyebrow {
    display: none;
  }

  .home-page .booking-heading h2 {
    font-size: 27px;
  }

  .home-page .booking-progress {
    justify-content: space-between;
    gap: 3px;
    margin-top: 21px;
  }

  .home-page .booking-progress li {
    gap: 5px;
    font-size: 10px;
  }

  .home-page .booking-progress li + li::before {
    left: -7px;
    width: 3px;
    height: 3px;
  }

  .home-page .booking-progress li span {
    width: 27px;
    height: 27px;
    font-size: 11px;
  }

  .home-page .booking-layout {
    display: block;
    padding-top: 28px;
    border-top: 1px solid var(--line);
  }

  .home-page .calendar-shell,
  .home-page .stay-details-panel,
  .home-page .estimate-card {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .home-page .calendar-shell {
    position: static !important;
    inset: auto !important;
    width: 100%;
    max-width: none;
    max-height: none;
    margin: 0;
    overflow: visible;
    padding: 0 0 24px;
    transform: none !important;
    display: block !important;
  }

  .home-page.mobile-calendar-open .calendar-shell {
    display: block;
  }

  .home-page .panel-heading h3 {
    font-size: 16px;
  }

  .home-page .calendar-shell .section-eyebrow {
    display: none;
  }

  .home-page .calendar-help {
    display: none;
  }

  .home-page .calendar-toolbar {
    margin-top: 20px;
    margin-bottom: 12px;
  }

  .home-page .day-grid {
    gap: 4px;
  }

  .home-page .day-name {
    min-height: 36px;
    font-size: 10px;
  }

  .home-page .calendar-day {
    height: 44px;
    min-height: 44px;
    border-radius: 9px;
    padding: 5px 2px 4px;
    font-size: 13px;
  }

  .home-page .calendar-day.selected-start,
  .home-page .calendar-day.selected-end {
    min-height: 44px;
    border-radius: 9px;
  }

  .home-page .calendar-day-marker {
    width: 12px;
    height: 2px;
    flex-basis: 2px;
  }

  .home-page .calendar-day-state {
    font-size: 0.43rem;
    letter-spacing: 0.02em;
  }

  .home-page .calendar-legend {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    gap: 8px 14px;
    margin: 21px 0 27px;
  }

  .home-page .calendar-legend .legend-extra {
    display: none;
  }

  .home-page .calendar-selection-controls {
    grid-template-columns: 1fr 1fr;
  }

  .home-page .calendar-selection-control {
    min-height: 112px;
    padding: 17px 16px;
  }

  .home-page .calendar-selection-control:nth-child(2) {
    border-right: 0;
  }

  .home-page .calendar-selection-control strong {
    font-size: 14px;
  }

  .home-page .calendar-clear-button {
    display: none;
  }

  .home-page .booking-continue-button {
    min-height: 60px;
    margin-top: 18px;
    font-size: 15px;
  }

  .home-page .secure-booking {
    margin-top: 15px;
  }

  .home-page .booking-summary-column {
    display: grid;
    gap: 0;
    margin: 0 -18px -24px;
    padding: 18px 0 0;
    background: #efede9;
  }

  .home-page .booking-summary-column > .stay-details-panel {
    order: 0 !important;
  }

  .home-page .booking-summary-column > .estimate-card {
    order: 1 !important;
  }

  .home-page .stay-details-panel,
  .home-page .estimate-card {
    padding: 24px 18px;
    background: var(--white);
    box-shadow: none;
  }

  .home-page .stay-details-panel {
    border-radius: 28px 28px 0 0;
    padding-bottom: 22px;
    box-shadow: 0 -4px 24px rgba(26, 30, 26, 0.07);
  }

  .home-page .estimate-card {
    border-radius: 0 0 28px 28px;
    padding-top: 3px;
    box-shadow: 0 12px 28px rgba(26, 30, 26, 0.10);
  }

  .home-page .booking-cottage-summary {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 17px;
  }

  .home-page .booking-cottage-summary img {
    width: 150px;
    height: 109px;
  }

  .home-page .booking-cottage-summary p {
    font-size: 11px;
    line-height: 1.6;
  }

  .home-page .stay-detail-list {
    display: none;
  }

  .home-page .estimate-card-heading h3 {
    font-size: 17px;
  }

  .home-page .estimate-card-heading {
    grid-template-columns: 1fr;
    border-top: 1px solid var(--line);
    padding-top: 21px;
  }

  .home-page .summary-date-control {
    min-height: 43px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border: 0;
    border-radius: 0 !important;
    padding: 7px 0;
    background: #fff !important;
    background-image: none !important;
    color: var(--ink) !important;
  }

  .home-page .summary-date-control:last-of-type {
    border-left: 0;
  }

  .home-page .quote-compact-label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .home-page .quote-compact-label small {
    color: var(--muted);
    font-size: 10px;
    font-weight: 400;
  }

  .home-page .estimate-request-button {
    min-height: 54px;
  }

  .home-page .contact-layout {
    gap: 30px;
  }

  .home-page .contact-form {
    grid-template-columns: 1fr;
  }

  .home-page .contact-form .field-wide {
    grid-column: auto;
  }

  .home-page .guest-chat {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    display: block;
  }

  .home-page.guest-chat-open {
    overflow: hidden;
  }

  .home-page .guest-chat.is-open {
    inset: 0;
    width: 100%;
    height: 100dvh;
    display: flex;
    align-items: flex-end;
    padding-top: 16px;
    background: rgba(10, 26, 16, 0.34);
    pointer-events: auto;
  }

  .home-page .guest-chat-toggle {
    width: auto;
  }

  .home-page .guest-chat-toggle span:not([aria-hidden="true"]) {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
  }

  .home-page .guest-chat-panel {
    width: min(360px, calc(100vw - 24px));
    max-height: min(620px, calc(100vh - 92px - env(safe-area-inset-bottom, 0px)));
  }

  .home-page .guest-chat.is-open .guest-chat-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-height: calc(100dvh - 16px);
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 18px 18px 0 0;
  }

  .home-page .landing-footer {
    width: 100%;
    min-height: 190px;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    border-radius: 0;
    padding: 38px 24px;
    text-align: center;
  }
}

@media (max-width: 430px) {
  .home-page .landing-header {
    padding: 0 19px;
  }

  .home-page .brand-mark {
    width: 50px;
    flex-basis: 50px;
  }

  .home-page .brand-mark img {
    left: -29px;
  }

  .home-page .brand-words strong {
    font-size: 22px;
  }

  .home-page .brand-words small {
    font-size: 7px;
  }

  .home-page .hero-content {
    padding-right: 39px;
    padding-left: 39px;
  }

  .home-page .hero-content p {
    font-size: 13px;
  }

  .home-page .amenity-grid {
    column-gap: 4px;
  }

  .home-page .booking-mobile-header {
    padding: 0 18px;
  }

  .home-page .booking-progress li strong {
    font-size: 9px;
  }

  .home-page .booking-cottage-summary {
    grid-template-columns: 42% 1fr;
  }

  .home-page .booking-cottage-summary img {
    width: 100%;
  }
}

/* Persistent booking action shown after the hero CTA scrolls away. */
.home-page .mobile-booking-bar {
  position: fixed;
  right: auto;
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  left: 50%;
  z-index: 1300;
  display: flex !important;
  width: min(590px, calc(100vw - 40px));
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 11px 10px 18px;
  border: 1px solid rgba(37, 76, 51, 0.2);
  border-radius: 16px;
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 16px 38px rgba(24, 49, 32, 0.2);
  opacity: 1;
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
  transition:
    opacity 180ms ease,
    transform 220ms ease;
}

.home-page .mobile-booking-bar.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, calc(100% + 36px));
}

.home-page .mobile-booking-bar-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.home-page .mobile-booking-bar-label {
  color: #6f796f;
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-page #mobile-booking-summary {
  overflow: hidden;
  color: #1f3929;
  font-size: 0.9rem;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-page .mobile-booking-button {
  width: auto !important;
  min-width: 150px;
  min-height: 46px;
  flex: 0 0 auto;
  border: 1px solid #19462d;
  border-radius: 11px;
  padding: 0 20px;
  background: #194b2f !important;
  box-shadow: none !important;
  color: #fff !important;
  font-size: 0.82rem;
  font-weight: 750;
}

.home-page .mobile-booking-button:hover:not(:disabled) {
  border-color: #123a24;
  background: #123f27 !important;
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .home-page .mobile-booking-bar {
    right: 16px;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    left: 16px;
    width: auto;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    transform: none;
  }

  .home-page .mobile-booking-bar.is-hidden {
    transform: translateY(calc(100% + 28px));
  }

  .home-page .mobile-booking-bar-copy {
    display: none;
  }

  .home-page .mobile-booking-button {
    width: 100% !important;
    min-width: 0;
    min-height: 56px;
    border-radius: 14px;
    padding-inline: 20px;
    box-shadow: 0 12px 28px rgba(18, 55, 34, 0.24) !important;
    font-size: 0.88rem;
  }

  .home-page.has-floating-booking-cta .guest-chat:not(.is-open) {
    bottom: calc(84px + env(safe-area-inset-bottom, 0px));
  }

  .home-page.has-floating-booking-cta .guest-chat-toggle,
  .home-page.booking-view-inline .guest-chat-toggle {
    width: 50px !important;
    height: 50px;
    min-height: 50px;
    border-radius: 50%;
    padding: 0;
  }

  .home-page.has-floating-booking-cta .guest-chat-toggle span:not([aria-hidden="true"]),
  .home-page.booking-view-inline .guest-chat-toggle span:not([aria-hidden="true"]) {
    display: none;
  }

  .home-page.booking-view-inline,
  .home-page.booking-view-inline.booking-view-open {
    overflow: visible;
  }

  .home-page.booking-view-inline .booking-view {
    position: relative !important;
    inset: auto;
    z-index: auto;
    width: 100%;
    height: auto;
    display: block !important;
    overflow: visible;
    padding: 54px 12px 64px;
    scroll-margin-top: 12px;
  }

  .home-page.booking-view-inline .booking-mobile-mast {
    display: none;
  }

  .home-page.booking-view-inline .booking-inner {
    border-radius: 26px;
  }

  .home-page.booking-planner-visible .guest-chat:not(.is-open) {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }
}

@media (max-width: 430px) {
  .home-page .mobile-booking-bar-copy {
    gap: 1px;
  }

  .home-page .mobile-booking-bar-label {
    font-size: 0.58rem;
  }

  .home-page .mobile-booking-button {
    padding-inline: 12px;
  }
}

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