:root {
  --ink: #17211d;
  --muted: #5c6862;
  --paper: #f7f3ea;
  --paper-strong: #fffaf0;
  --line: rgba(23, 33, 29, 0.14);
  --forest: #1f5b49;
  --forest-dark: #123e34;
  --lake: #277995;
  --sun: #e6a43b;
  --coral: #ce6954;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(16, 28, 25, 0.15);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

.skip-link:focus {
  z-index: 20;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: var(--white);
  border-radius: var(--radius);
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  padding: 14px 20px;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(247, 243, 234, 0.92);
  box-shadow: 0 10px 28px rgba(23, 33, 29, 0.12);
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}

.site-header.is-scrolled .brand {
  color: var(--ink);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  font-weight: 800;
}

.site-header.is-scrolled .brand-mark {
  border-color: var(--line);
  background: var(--white);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1.05;
}

.brand small {
  color: currentColor;
  opacity: 0.76;
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(10px);
}

.site-header.is-scrolled .nav-links {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.nav-links a {
  padding: 10px 12px;
  color: var(--white);
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-header.is-scrolled .nav-links a {
  color: var(--ink);
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.22);
}

.nav-links .nav-cta {
  background: var(--sun);
  color: #251c0a;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.site-header.is-scrolled .nav-toggle {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  padding: 132px 20px 72px;
  overflow: hidden;
  color: var(--white);
}

.hero-slides,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slides {
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1200ms ease, transform 6200ms ease;
}

.hero-image.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 28, 30, 0.82), rgba(8, 28, 30, 0.43) 52%, rgba(8, 28, 30, 0.28)),
    linear-gradient(0deg, rgba(8, 28, 30, 0.62), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd06c;
}

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

h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 10vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.2vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(31, 91, 73, 0.24);
}

.hero .button.primary {
  background: var(--sun);
  color: #211907;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.booking .button.secondary {
  border-color: var(--forest);
  color: var(--forest-dark);
  background: transparent;
}

.button.ghost {
  border-color: var(--line);
  color: var(--ink);
  background: var(--white);
}

.quick-strip {
  width: min(calc(100% - 40px), var(--max));
  margin: -36px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--line);
}

.quick-strip div {
  position: relative;
  padding: 24px 22px 22px;
  background: var(--white);
}

.quick-strip div::before {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--sun);
}

.quick-strip strong,
.quick-strip span {
  display: block;
}

.quick-strip strong {
  color: var(--forest-dark);
  font-size: 1.02rem;
}

.quick-strip span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 96px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading p,
.section-copy p,
.nearby-copy p,
.booking-card p {
  color: var(--muted);
  font-size: 1.05rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  align-items: center;
  gap: 54px;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.feature-list span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-strong);
  color: var(--forest-dark);
  font-weight: 800;
  font-size: 0.9rem;
}

.image-stack {
  display: grid;
  grid-template-columns: 0.84fr 1fr;
  align-items: end;
  gap: 14px;
}

.image-stack img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-stack img:first-child {
  height: 540px;
}

.band {
  width: 100%;
  max-width: none;
  padding: 94px max(20px, calc((100% - var(--max)) / 2));
  background: var(--forest-dark);
  color: var(--white);
}

.band .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -10px 0 24px;
}

.gallery-filters button {
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 850;
  cursor: pointer;
}

.gallery-filters button:hover,
.gallery-filters button.is-active {
  border-color: rgba(230, 164, 59, 0.7);
  background: var(--sun);
  color: #211907;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}

.lightbox-step {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  background: rgba(8, 20, 18, 0.68);
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 900;
  cursor: pointer;
}

.lightbox-step:hover {
  background: rgba(255, 255, 255, 0.18);
}

.gallery-grid.density-compact {
  grid-auto-rows: 170px;
  gap: 10px;
}

.gallery-grid.density-roomy {
  grid-auto-rows: 280px;
  gap: 18px;
}

.gallery-card {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #0f1e1a;
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(3, 12, 11, 0.16);
}

.gallery-card.wide {
  grid-column: span 2;
}

.gallery-card.tall {
  grid-row: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: transform 220ms ease, opacity 220ms ease;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(5, 14, 13, 0.68));
  pointer-events: none;
}

.gallery-card:hover img {
  transform: scale(1.035);
  opacity: 1;
}

.gallery-card:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
}

.gallery-card.is-active {
  border-color: rgba(230, 164, 59, 0.78);
}

.gallery-card span {
  position: absolute;
  z-index: 1;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(12, 25, 22, 0.76);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 800;
}

.resort {
  padding-bottom: 64px;
}

.amenity-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: stretch;
}

.amenity-layout > img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.amenity-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.amenity-groups article,
.rate-card,
.info-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.amenity-groups article:nth-child(2) {
  border-top-color: rgba(206, 105, 84, 0.55);
}

.amenity-groups article:nth-child(3) {
  border-top-color: rgba(39, 121, 149, 0.55);
}

.amenity-groups article:nth-child(4) {
  border-top-color: rgba(230, 164, 59, 0.65);
}

.amenity-groups p,
.rate-card span,
.info-grid p {
  color: var(--muted);
}

.resort-extras {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 18px;
  margin-top: 24px;
}

.resort-activity-panel,
.resort-photo-panel {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
}

.resort-extra-heading {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}

.resort-extra-heading .eyebrow {
  margin: 0;
}

.resort-extra-heading h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.12;
}

.resort-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.resort-highlights article {
  padding: 16px;
  border: 1px solid rgba(23, 33, 29, 0.1);
  border-radius: var(--radius);
  background: var(--white);
}

.resort-highlights h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.resort-highlights p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.resort-photo-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 156px;
  gap: 12px;
}

.resort-photo-card {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 33, 29, 0.1);
  border-radius: var(--radius);
  background: #0f1e1a;
  color: var(--white);
  cursor: pointer;
}

.resort-photo-card.large {
  grid-row: span 2;
}

.resort-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 220ms ease, opacity 220ms ease;
}

.resort-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(5, 14, 13, 0.72));
  pointer-events: none;
}

.resort-photo-card:hover img {
  transform: scale(1.035);
  opacity: 1;
}

.resort-photo-card:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
}

.resort-photo-card span {
  position: absolute;
  z-index: 1;
  left: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(12, 25, 22, 0.78);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
}

.experience {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 42px;
}

.experience-media {
  position: relative;
}

.experience-media::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -1;
  border-radius: var(--radius);
  background: rgba(39, 121, 149, 0.14);
}

.experience-media img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.experience-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.experience-steps {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.experience-steps article {
  position: relative;
  padding: 18px 18px 18px 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.experience-steps article::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 0 6px rgba(230, 164, 59, 0.16);
}

.experience-steps span {
  display: block;
  color: var(--lake);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.experience-steps h3 {
  margin: 2px 0 5px;
}

.experience-steps p {
  margin: 0;
  color: var(--muted);
}

.nearby {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 36px;
}

.nearby-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-auto-rows: 180px;
  gap: 14px;
}

.nearby-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.nearby-grid img:first-child {
  grid-row: span 2;
}

.nearby-grid img:nth-child(4) {
  grid-column: 1 / -1;
}

.rates {
  padding-top: 64px;
}

.rate-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.rate-card {
  padding: 0;
  overflow: hidden;
}

.rate-card-header {
  padding: 24px;
  background: var(--paper-strong);
  border-bottom: 1px solid var(--line);
}

.rate-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(39, 121, 149, 0.12);
  color: var(--lake) !important;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rate-card.featured .rate-card-header {
  background: var(--forest);
  color: var(--white);
}

.rate-card.featured .rate-card-header span {
  color: rgba(255, 255, 255, 0.72);
}

.rate-card.featured .rate-badge {
  background: rgba(255, 255, 255, 0.16);
  color: #ffd06c !important;
}

.rate-card dl {
  margin: 0;
  padding: 12px 24px 24px;
}

.rate-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.rate-card dl div:last-child {
  border-bottom: 0;
}

.rate-card dt {
  color: var(--muted);
}

.rate-card dd {
  margin: 0;
  font-weight: 900;
}

.booking {
  width: 100%;
  max-width: none;
  padding: 96px max(20px, calc((100% - var(--max)) / 2));
  background: #e7f0ec;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-bottom: 22px;
  border: 1px solid rgba(31, 91, 73, 0.14);
  border-radius: var(--radius);
  background: rgba(31, 91, 73, 0.14);
  box-shadow: 0 16px 36px rgba(16, 28, 25, 0.08);
}

.trust-strip div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--forest-dark);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-strip span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.95rem;
}

.availability-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 24px;
}

.availability-copy,
.availability-list article {
  border: 1px solid rgba(31, 91, 73, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.availability-copy {
  display: grid;
  align-content: center;
  padding: 24px;
}

.availability-copy h3 {
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.availability-copy p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
}

.availability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.availability-list article {
  padding: 18px;
}

.availability-list span,
.availability-list strong {
  display: block;
}

.availability-list span {
  width: fit-content;
  margin-bottom: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(206, 105, 84, 0.12);
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.availability-list strong {
  color: var(--forest-dark);
  font-size: 1.04rem;
}

.availability-list p {
  margin: 7px 0 0;
  color: var(--muted);
}

.availability-list .status-tentative span {
  background: rgba(230, 164, 59, 0.16);
  color: #8a5a05;
}

.availability-list .status-owner span,
.availability-list .status-maintenance span {
  background: rgba(39, 121, 149, 0.13);
  color: var(--lake);
}

.availability-empty span {
  background: rgba(31, 91, 73, 0.12);
  color: var(--forest-dark);
}

.booking-card {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  align-items: start;
  margin-bottom: 24px;
}

.booking-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.booking-proof div {
  padding: 13px 14px;
  border: 1px solid rgba(31, 91, 73, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
}

.booking-proof strong,
.booking-proof span {
  display: block;
}

.booking-proof strong {
  color: var(--forest-dark);
  font-size: 0.82rem;
}

.booking-proof span {
  color: var(--muted);
  font-size: 0.92rem;
}

.owner-note {
  margin: 18px 0 0;
  padding: 18px 20px;
  border-left: 4px solid var(--sun);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(255, 255, 255, 0.62);
  color: var(--forest-dark);
  font-weight: 750;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  scroll-margin-top: 104px;
  padding: 24px;
  border: 1px solid rgba(31, 91, 73, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-heading {
  margin-bottom: 2px;
}

.form-heading h3 {
  margin: 0 0 6px;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.form-heading p:not(.eyebrow) {
  margin-bottom: 4px;
  color: var(--muted);
}

.inquiry-form label,
.inquiry-form span {
  display: block;
}

.inquiry-form span {
  margin-bottom: 7px;
  color: var(--forest-dark);
  font-weight: 850;
  font-size: 0.88rem;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  background: #fbfaf6;
  color: var(--ink);
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  outline: 3px solid rgba(39, 121, 149, 0.22);
  border-color: var(--lake);
}

.full {
  grid-column: 1 / -1;
}

.stay-date-picker {
  display: grid;
  gap: 10px;
  position: relative;
}

.stay-date-trigger {
  width: 100%;
  border: 1px solid rgba(31, 91, 73, 0.18);
  border-radius: var(--radius);
  padding: 15px;
  background: #fbfaf6;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.stay-date-trigger:hover,
.stay-date-trigger:focus-visible {
  border-color: var(--lake);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(39, 121, 149, 0.16);
  outline: none;
}

.inquiry-form .stay-date-trigger span {
  display: block;
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.stay-date-overline {
  color: var(--forest-dark) !important;
  font-size: 0.78rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stay-date-values {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px !important;
}

.stay-date-value {
  padding: 12px 13px;
  border: 1px solid rgba(31, 91, 73, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.stay-date-value strong,
.stay-date-value small {
  display: block;
}

.stay-date-value strong {
  color: var(--forest-dark);
  font-size: 1.02rem;
  font-weight: 900;
}

.stay-date-value small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.82rem;
}

.stay-date-hint {
  margin-top: 10px !important;
  color: var(--lake) !important;
  font-size: 0.88rem !important;
  font-weight: 850 !important;
}

.stay-date-picker.has-dates .stay-date-hint {
  color: var(--forest-dark) !important;
}

.date-calendar {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(31, 91, 73, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(247, 243, 234, 0.74), rgba(255, 255, 255, 0.88));
  box-shadow: 0 16px 36px rgba(16, 28, 25, 0.1);
}

.date-calendar[hidden] {
  display: none;
}

.date-calendar-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.date-calendar-head .eyebrow {
  margin-bottom: 6px;
}

.date-calendar-head h3 {
  margin: 0;
  color: var(--forest-dark);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}

.date-calendar-actions {
  display: inline-flex;
  gap: 8px;
}

.date-calendar-actions button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(31, 91, 73, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--forest-dark);
  font-weight: 900;
  cursor: pointer;
}

.date-calendar-actions button:hover,
.date-calendar-actions button:focus-visible {
  border-color: rgba(31, 91, 73, 0.38);
  background: rgba(31, 91, 73, 0.08);
}

.date-calendar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.date-calendar.is-single-month .date-calendar-grid {
  grid-template-columns: minmax(0, 1fr);
}

.date-calendar-month {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(31, 91, 73, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
}

.date-calendar-month h4 {
  margin: 0 0 12px;
  color: var(--forest-dark);
  font-size: 0.98rem;
}

.date-calendar-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 5px;
}

.date-calendar-weekday,
.date-calendar-blank,
.date-day {
  min-width: 0;
  min-height: 34px;
}

.date-calendar-weekday {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.date-day {
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 850;
  cursor: pointer;
}

.date-day:hover,
.date-day:focus-visible {
  border-color: rgba(39, 121, 149, 0.34);
  background: rgba(39, 121, 149, 0.1);
  outline: none;
}

.date-day:disabled {
  cursor: not-allowed;
  opacity: 1;
}

.date-day.is-too-soon {
  color: rgba(92, 104, 98, 0.42);
  text-decoration: line-through;
}

.date-day.is-too-soon:hover,
.date-day.is-too-soon:focus-visible {
  border-color: transparent;
  background: transparent;
}

.date-day.is-in-range {
  background: rgba(39, 121, 149, 0.12);
  color: var(--forest-dark);
}

.date-day.is-start,
.date-day.is-end {
  border-color: var(--forest-dark);
  background: var(--forest-dark);
  color: var(--white);
}

.date-day.is-blocked {
  border-color: rgba(206, 105, 84, 0.3);
  background: rgba(206, 105, 84, 0.18);
  color: #7f2f22;
}

.date-day.is-blocked.is-start,
.date-day.is-blocked.is-end {
  border-color: #7f2f22;
  background: #7f2f22;
  color: var(--white);
}

.date-day.status-tentative {
  border-color: rgba(230, 164, 59, 0.34);
  background: rgba(230, 164, 59, 0.22);
  color: #72500b;
}

.date-day.status-owner,
.date-day.status-maintenance {
  border-color: rgba(39, 121, 149, 0.3);
  background: rgba(39, 121, 149, 0.16);
  color: #1f6479;
}

.date-calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--muted);
  font-size: 0.86rem;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 800;
}

.legend-item i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
}

.legend-item.status-tentative i {
  background: var(--sun);
}

.legend-item.status-owner i,
.legend-item.status-maintenance i {
  background: var(--lake);
}

.legend-note {
  color: var(--muted);
}

.form-note {
  grid-column: 1 / -1;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.availability-message {
  display: none;
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

.availability-message.is-error,
.availability-message.is-success,
.availability-message.is-note {
  display: block;
}

.availability-message.is-error {
  border: 1px solid rgba(206, 105, 84, 0.36);
  background: rgba(206, 105, 84, 0.12);
  color: #7f2f22;
}

.availability-message.is-success {
  border: 1px solid rgba(31, 91, 73, 0.24);
  background: rgba(31, 91, 73, 0.1);
  color: var(--forest-dark);
}

.availability-message.is-note {
  border: 1px solid rgba(39, 121, 149, 0.22);
  background: rgba(39, 121, 149, 0.1);
  color: var(--lake);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.info-grid a {
  color: var(--forest-dark);
  font-weight: 850;
}

.info-grid article {
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.info-grid article:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(16, 28, 25, 0.1);
}

.map-section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 60px 0 96px;
}

.map-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  align-items: stretch;
}

.map-copy {
  display: grid;
  align-content: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.map-copy h2 {
  font-size: clamp(1.9rem, 3vw, 3.2rem);
}

.map-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.02rem;
}

.map-context {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.map-context h3 {
  margin-bottom: 10px;
}

.map-context ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.map-context li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(23, 33, 29, 0.08);
}

.map-context li:last-child {
  border-bottom: 0;
}

.map-context span {
  color: var(--muted);
}

.map-context strong {
  color: var(--forest-dark);
  text-align: right;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.map-actions .button.secondary {
  border-color: var(--forest);
  color: var(--forest-dark);
  background: transparent;
}

.map-frame-wrap {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #e7f0ec;
  box-shadow: var(--shadow);
}

.map-frame-wrap iframe,
.map-frame-wrap img {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-frame-wrap iframe {
  position: absolute;
  inset: 0;
}

.map-frame-wrap img {
  object-fit: cover;
}

.custom-section {
  display: grid;
  gap: 28px;
  align-items: center;
}

.custom-section.custom-text {
  max-width: 900px;
}

.custom-section.custom-image-left,
.custom-section.custom-image-right {
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
}

.custom-section.custom-image-right {
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
}

.custom-section.band {
  width: 100%;
  max-width: none;
  padding: 84px max(20px, calc((100% - var(--max)) / 2));
  background: var(--forest-dark);
  color: var(--white);
}

.custom-section img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.custom-copy {
  max-width: 760px;
}

.custom-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.custom-section.band .custom-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.custom-copy .button {
  margin-top: 10px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px max(20px, calc((100% - var(--max)) / 2));
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
}

.site-footer strong,
.site-footer a,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--white);
}

.site-footer a {
  text-align: right;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--sun);
}

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

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(6, 13, 12, 0.88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox figure {
  width: min(100%, 1080px);
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox figcaption {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
  color: var(--white);
  font-weight: 800;
  text-align: center;
}

.lightbox figcaption span {
  color: rgba(255, 255, 255, 0.7);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-step {
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-step-prev {
  left: 18px;
}

.lightbox-step-next {
  right: 18px;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: rgba(247, 243, 234, 0.98);
    border-color: var(--line);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a,
  .site-header .nav-links a,
  .site-header.is-scrolled .nav-links a {
    color: var(--ink);
  }

  .split,
  .amenity-layout,
  .resort-extras,
  .experience,
  .nearby,
  .availability-panel,
  .booking-card,
  .map-card,
  .custom-section.custom-image-left,
  .custom-section.custom-image-right {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 78px;
  }

  .site-header {
    padding: 10px 14px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 84vh;
    padding: 110px 18px 58px;
  }

  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .quick-strip,
  .rate-grid,
  .info-grid,
  .trust-strip,
  .availability-list,
  .amenity-groups,
  .resort-highlights,
  .booking-proof,
  .inquiry-form,
  .date-calendar-grid {
    grid-template-columns: 1fr;
  }

  .date-calendar {
    padding: 14px;
  }

  .date-calendar-head {
    align-items: stretch;
  }

  .date-calendar-actions button {
    width: 36px;
    height: 36px;
  }

  .quick-strip {
    width: calc(100% - 28px);
    margin-top: -22px;
  }

  .section {
    width: calc(100% - 28px);
    padding: 68px 0;
  }

  .band,
  .booking,
  .custom-section.band {
    padding: 68px 14px;
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-stack img,
  .image-stack img:first-child,
  .amenity-layout > img,
  .experience-media img {
    height: 360px;
    min-height: 0;
  }

  .experience-media::before {
    inset: 12px -10px -10px 10px;
  }

  .experience-steps article {
    padding-left: 46px;
  }

  .gallery-filters {
    flex-wrap: nowrap;
    margin-right: -14px;
    padding-right: 14px;
    overflow-x: auto;
  }

  .gallery-filters button {
    flex: 0 0 auto;
  }

  .resort-activity-panel,
  .resort-photo-panel {
    padding: 18px;
  }

  .resort-photo-strip {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .resort-photo-card.large {
    grid-row: auto;
  }

  .gallery-grid,
  .gallery-grid.density-compact,
  .gallery-grid.density-roomy {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .lightbox-step {
    width: 42px;
    height: 42px;
  }

  .lightbox {
    padding: 14px;
  }

  .lightbox-step {
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .gallery-card.wide,
  .gallery-card.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .nearby-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 210px;
  }

  .map-frame-wrap {
    min-height: 330px;
  }

  .nearby-grid img:first-child {
    grid-row: auto;
  }

  .nearby-grid img:nth-child(4) {
    grid-column: auto;
  }

  .site-footer {
    display: block;
  }

  .site-footer a {
    margin-top: 8px;
    text-align: left;
  }

  .mobile-booking-bar {
    position: fixed;
    z-index: 25;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(23, 33, 29, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 250, 240, 0.94);
    box-shadow: 0 16px 42px rgba(16, 28, 25, 0.2);
    backdrop-filter: blur(12px);
  }

  .mobile-booking-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 900;
  }

  .mobile-booking-call {
    background: var(--forest);
    color: var(--white);
  }

  .mobile-booking-secondary {
    background: var(--sun);
    color: #211907;
  }
}
