:root {
  --ink: #12333a;
  --muted: #64767b;
  --paper: #ffffff;
  --sand: #f6f1e8;
  --line: #d7e2e4;
  --teal: #07979a;
  --teal-dark: #056a70;
  --sun: #f8bd2a;
  --coral: #ef6f5e;
  --sky: #dff5f6;
  --shadow: 0 18px 42px rgba(18, 51, 58, .14);
  --site-header-offset: 52px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--site-header-offset) + 8px);
}

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

body.site-home {
  padding-top: 0;
}

#inicio {
  scroll-margin-top: calc(var(--site-header-offset) + 8px);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 60px;
  padding: 10px clamp(14px, 3vw, 36px);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(215, 228, 231, 0.88);
  backdrop-filter: blur(14px);
}

.header-shell {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 40px;
  position: relative;
}

.brand img {
  width: 120px;
  height: 34px;
  object-fit: contain;
  object-position: left center;
}

.brand,
.brand-spacer {
  width: 120px;
}

.nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  margin-left: auto;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 700;
}

.site-mobile-menu {
  display: none;
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav a {
  display: inline-flex;
  align-items: center;
  margin: 0;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  line-height: 1;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 800;
  white-space: nowrap;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav a:hover,
.nav a.is-active {
  color: var(--teal-dark);
  background: rgba(232, 246, 244, 0.98);
}

.site-nav-head,
.site-nav-backdrop,
.site-nav-close {
  display: none;
}

body.site-nav-open {
  overflow: hidden;
}

.menu-toggle {
  display: none;
}

.header-action,
.primary-button,
.secondary-button,
.property-button,
.search-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.header-action,
.primary-button,
.search-form button {
  color: #fff;
  background: var(--teal-dark);
}

.secondary-button,
.property-button {
  color: var(--teal-dark);
  background: var(--sky);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--site-header-offset));
  display: grid;
  align-items: start;
  padding: clamp(34px, 6vw, 72px) clamp(18px, 5vw, 64px) clamp(42px, 8vw, 90px);
  background: #12333a;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(8, 55, 61, .76), rgba(8, 55, 61, .38) 46%, rgba(8, 55, 61, .06));
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-position: center;
  background-size: cover;
  transition: opacity 1200ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(690px, 100%);
  color: #fff;
}

.hero-logo {
  width: min(560px, 62vw);
  max-height: 230px;
  margin-bottom: 12px;
  border-radius: 8px;
  object-fit: contain;
  object-position: left center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--sun);
}

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

h1 {
  font-size: clamp(2.45rem, 7vw, 5.4rem);
  line-height: .96;
  letter-spacing: 0;
  max-width: 720px;
}

.hero-copy {
  max-width: 610px;
  margin-top: 34px;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.6;
}

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

.hero-promo {
  display: grid;
  gap: 10px;
  width: min(560px, 100%);
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  box-shadow: 0 18px 48px rgba(7, 24, 28, 0.24);
  backdrop-filter: blur(8px);
}

.hero-promo-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #08373d;
  background: #ffe08a;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-promo strong {
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  line-height: 1.2;
}

.hero-promo p {
  color: rgba(255, 255, 255, 0.92);
  font-size: .98rem;
  line-height: 1.65;
}

.hero-promo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: #08373d;
  background: #fff;
  font-weight: 900;
  text-decoration: none;
}

.hero .secondary-button {
  background: rgba(255, 255, 255, .92);
}

.search-band {
  padding: 18px clamp(18px, 5vw, 64px);
  background: var(--sand);
  border-bottom: 1px solid var(--line);
}

.search-form {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 12px;
  align-items: end;
}

.search-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
}

.search-form select {
  width: 100%;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.section,
.calendar-section,
.region,
.contact {
  padding: clamp(48px, 7vw, 82px) clamp(18px, 5vw, 64px);
}

.section-heading {
  width: min(1120px, 100%);
  margin: 0 auto 22px;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.property-grid {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.property-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.property-card[hidden] {
  display: none;
}

.property-media {
  position: relative;
  background: #e8f2f3;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.property-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  opacity: 1;
  transition: opacity 300ms ease-in-out;
}

.property-card:nth-child(2) .property-media img {
  object-position: 70% center;
}

.property-card:nth-child(3) .property-media img {
  object-position: right center;
}

.property-photo-button {
  position: absolute;
  top: 50%;
  width: 34px;
  height: 42px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: rgba(18, 51, 58, .72);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
}

.property-photo-button.prev {
  left: 10px;
}

.property-photo-button.next {
  right: 10px;
}

.property-photo-count {
  position: absolute;
  right: 10px;
  bottom: 10px;
  border-radius: 999px;
  padding: 5px 9px;
  color: #fff;
  background: rgba(18, 51, 58, .76);
  font-size: .78rem;
  font-weight: 850;
}

.property-media-badge {
  position: absolute;
  left: 10px;
  bottom: 10px;
  border-radius: 999px;
  padding: 5px 9px;
  color: #fff;
  background: rgba(210, 45, 32, .88);
  font-size: .78rem;
  font-weight: 850;
}

.property-body {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.property-location {
  color: var(--coral);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}

h3 {
  margin-top: 4px;
  font-size: 1.25rem;
  line-height: 1.15;
}

.property-desc {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.5;
}

.property-desc.is-plain-text {
  white-space: pre-wrap;
}

.property-desc.is-html,
.property-desc.is-html * {
  color: inherit !important;
  font-family: inherit !important;
  font-size: inherit !important;
  font-style: normal !important;
  font-weight: inherit !important;
  letter-spacing: normal !important;
  text-transform: none !important;
  line-height: inherit !important;
  text-align: inherit !important;
  background: transparent !important;
}

.property-desc.is-html h1,
.property-desc.is-html h2,
.property-desc.is-html h3,
.property-desc.is-html h4,
.property-desc.is-html h5,
.property-desc.is-html h6,
.property-desc.is-html p,
.property-desc.is-html ul,
.property-desc.is-html ol {
  margin: 0 0 0.6rem !important;
}

.property-desc.is-html ul,
.property-desc.is-html ol {
  padding-left: 1.15rem !important;
}

.property-desc.is-html li + li {
  margin-top: 0.2rem !important;
}

.property-desc.is-html strong,
.property-desc.is-html b {
  font-weight: 800 !important;
}

.property-desc.is-html em,
.property-desc.is-html i {
  font-style: italic !important;
}

.property-desc.is-html u {
  text-decoration: underline !important;
}

.property-desc-wrap {
  display: grid;
  gap: 8px;
}

.property-desc-preview .property-desc {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
}

.property-desc-preview .property-desc > *:first-child {
  margin-top: 0;
}

.property-desc-preview .property-desc > *:last-child {
  margin-bottom: 0;
}

.property-desc-preview.is-expanded .property-desc {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
  line-clamp: unset;
}

.property-desc-toggle {
  justify-self: start;
  border: 0;
  padding: 0;
  color: var(--teal);
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.property-meta {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: center;
}

.property-meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--sky);
  font-size: .82rem;
  font-weight: 800;
  white-space: nowrap;
  flex: 0 0 auto;
}

.property-meta .pet-status {
  min-width: 34px;
  padding: 4px 8px;
  gap: 6px;
}

.property-meta .wifi-status {
  min-width: 34px;
  padding: 4px 8px;
}

.wifi-status svg {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wifi-status svg circle {
  fill: currentColor;
  stroke: none;
}

.pet-status img {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
}

.pet-status small {
  display: block;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
}

.pet-status.is-yes {
  color: var(--teal-dark);
  background: var(--sky);
}

.pet-status.is-no {
  color: #d26d6d;
  background: #fde8e8;
}

.pet-status.is-yes img {
  filter: hue-rotate(118deg) saturate(0.42) brightness(0.86);
}

.property-button {
  width: 100%;
}

.booking-form {
  display: grid;
  gap: 11px;
  grid-area: form;
  padding: 18px;
  justify-items: center;
  text-align: center;
}

.booking-form h3 {
  margin: 0 0 2px;
}

.date-selection-hint {
  width: 100%;
  margin: 0;
  padding: 10px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #f8fafc;
  font-size: .9rem;
  font-weight: 750;
  line-height: 1.35;
  text-align: left;
}

.payment-method-note {
  display: grid;
  justify-items: center;
  gap: 6px;
  text-align: center;
}

.payment-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
}

.payment-brand img {
  display: block;
  width: 210px;
  height: auto;
  max-height: 68px;
  object-fit: contain;
}

.booking-form label {
  display: grid;
  gap: 7px;
  width: 100%;
  justify-items: center;
}

.guest-stepper > span {
  font-size: .85rem;
  line-height: 1.2;
}

.booking-form input,
.booking-form select {
  width: 100%;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 11px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.guest-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}

.coupon-toggle {
  width: 100%;
  border-top: 1px solid var(--line);
  padding-top: 8px;
  text-align: left;
}

.coupon-toggle summary {
  color: var(--teal-dark);
  cursor: pointer;
  font-size: .82rem;
  font-weight: 850;
  list-style-position: inside;
}

.coupon-toggle label {
  margin-top: 9px;
}

.stepper-control {
  height: 42px;
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.stepper-control input {
  height: 40px;
  border: 0;
  border-inline: 1px solid var(--line);
  border-radius: 0;
  padding: 0;
  text-align: center;
  font-weight: 900;
  -moz-appearance: textfield;
}

.stepper-control input::-webkit-outer-spin-button,
.stepper-control input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.stepper-control button {
  min-height: 40px;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: var(--teal-dark);
  background: #f4fbfa;
  font-size: 1.3rem;
  font-weight: 900;
}

.booking-form button,
.booking-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  color: #fff;
  background: var(--teal-dark);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.booking-whatsapp {
  background: #128c7e;
}

.booking-result {
  min-height: 22px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 750;
  line-height: 1.35;
  text-align: center;
}

.booking-result.is-ok {
  color: var(--teal-dark);
}

.booking-result.is-blocked {
  color: #a11b1b;
}

.package-merge-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 20px;
}

.package-merge-modal[hidden] {
  display: none;
}

.package-merge-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(8, 26, 31, .58);
  cursor: pointer;
}

.package-merge-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  width: min(430px, 100%);
  padding: 26px 22px;
  border: 2px solid #0f766e;
  border-radius: 14px;
  color: var(--teal-dark);
  background: #fff;
  box-shadow: 0 24px 70px rgba(8, 26, 31, .28);
  font-size: 1.05rem;
  text-align: center;
}

body.has-package-merge-modal {
  overflow: hidden;
}

.package-merge-actions {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.package-merge-actions button {
  min-width: 72px;
  border: 1px solid var(--teal-dark);
  border-radius: 7px;
  padding: 7px 12px;
  color: #fff;
  background: var(--teal-dark);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.package-merge-actions button[data-package-merge="no"] {
  color: var(--teal-dark);
  background: #fff;
}

.price-summary {
  display: grid;
  gap: 5px;
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  background: var(--sand);
  color: var(--ink);
  font-size: .9rem;
  text-align: center;
}

.price-summary strong,
.price-summary-total {
  font-weight: 900;
}

.price-summary-detail {
  justify-self: stretch;
  text-align: left;
}

.price-summary-package {
  display: grid;
  gap: 2px;
  justify-self: stretch;
  padding: 6px 0;
  border-bottom: 1px solid rgba(148, 163, 184, .35);
  text-align: left;
}

.price-summary-package:last-child {
  border-bottom: 0;
}

.price-summary-selection-type {
  justify-self: center;
  color: var(--teal-dark);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-align: center;
}

.price-summary-selection-period {
  justify-self: center;
  font-size: .92rem;
  font-weight: 850;
  text-align: center;
}

.price-summary-date {
  color: var(--coral);
  font-weight: 950;
}

.price-summary-total {
  justify-self: center;
  text-align: center;
}

@media (min-width: 721px) {
  .price-summary {
    text-align: left;
  }

  .price-summary-detail,
  .price-summary-total {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 720px) {
  .price-summary {
    text-align: center;
  }

  .price-summary-detail {
    text-align: center;
  }
}

.confirm-button {
  background: var(--coral) !important;
}

.client-auth-box {
  display: grid;
  gap: 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #f8fbfb;
}

.client-auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.client-auth-tabs button {
  min-height: 38px;
  color: var(--teal-dark);
  background: var(--sky);
}

.client-auth-tabs button.is-active {
  color: #fff;
  background: var(--teal-dark);
}

.client-auth-panel {
  display: grid;
  gap: 9px;
}

.client-auth-message {
  min-height: 18px;
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 800;
}

.client-auth-message.is-error {
  color: #a11b1b;
}

.empty-state {
  display: none;
  width: min(1120px, 100%);
  margin: 18px auto 0;
  color: var(--muted);
  font-weight: 800;
}

.empty-state.is-visible {
  display: block;
}

.section-intro {
  max-width: 720px;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.payment-recovery-callout {
  margin-top: 16px;
  text-align: center;
}

.payment-recovery-link {
  color: #16833d;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.payment-recovery-link:hover,
.payment-recovery-link:focus-visible {
  color: #0f6330;
}

.calendar-section {
  background: #f7fbfb;
  border-top: 1px solid var(--line);
}

.calendar-shell {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  grid-template-areas:
    "panel calendar"
    "form calendar";
  gap: 18px;
  align-items: start;
}

.calendar-panel,
.calendar-card,
.booking-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.calendar-panel {
  grid-area: panel;
  display: grid;
  gap: 18px;
  padding: 18px;
  justify-items: center;
  text-align: center;
}

.calendar-panel-title {
  margin: 0;
  color: var(--ink);
  font-size: .95rem;
  line-height: 1.5;
}

.calendar-panel-title-name {
  display: block;
  margin-top: 4px;
  text-align: center;
}

.minimum-stay-hint {
  margin: 0;
  padding: 10px 11px;
  border: 2px solid #dc2626;
  border-radius: 8px;
  color: #991b1b;
  background: #fee2e2;
  font-size: .88rem;
  font-weight: 800;
  line-height: 1.35;
}

.legal-page {
  max-width: 980px;
  margin: 0 auto;
  padding: 34px 18px 54px;
}

.legal-document {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 42px);
  background: #fff;
  box-shadow: var(--shadow);
}

.legal-document h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 5vw, 3.6rem);
}

.legal-document-content {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.75;
  white-space: normal;
}

.wizard-check a {
  color: var(--teal-dark);
  font-weight: 900;
}

.calendar-summary {
  display: grid;
  gap: 10px;
}

.calendar-summary div {
  padding: 14px;
  border-radius: 8px;
  background: var(--sand);
}

.calendar-summary strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.calendar-summary span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 750;
}

.calendar-legend {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 10px 0 0;
  padding: 12px 12px 10px;
  border: 1px solid #111;
  border-radius: 8px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 750;
}

.calendar-legend legend {
  padding: 0 8px;
  color: var(--ink);
  font-size: .82rem;
  font-weight: 800;
}

.calendar-legend-group {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.calendar-legend span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: #fff;
  border: 2px solid var(--line);
}

.legend-dot.free {
  background: #e8f7ec;
  border-color: #b7dfc1;
}

.legend-dot.reserved {
  background: #f9dddd;
  border-color: #e7b3b3;
}

.legend-dot.blocked {
  background: #eef1f4;
  border-color: #d7dde2;
}

.legend-dot.reserving {
  background: #e8f7f4;
  border-color: #a7d8d1;
}

.legend-dot.processing {
  background: #fbe4a4;
  border-color: #f0cc67;
}

.calendar-card {
  grid-area: calendar;
  padding: 18px;
}

@media (max-width: 640px) {
  .calendar-legend {
    grid-template-columns: 1fr;
  }
}

.calendar-toolbar {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.calendar-toolbar strong {
  text-align: center;
  font-size: 1.18rem;
  text-transform: capitalize;
}

.calendar-toolbar button {
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--teal-dark);
  background: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.calendar-weekdays {
  gap: 8px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.calendar-grid {
  gap: 8px;
}

.calendar-day {
  min-height: 78px;
  display: grid;
  align-content: start;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
  background: #fff;
}

.calendar-day.is-free {
  border-color: #b7dfc1;
  background: #e8f7ec;
  cursor: pointer;
}

.calendar-day.is-free.has-package-rate {
  border: 2px solid #0f766e;
  box-shadow: inset 0 0 0 1px rgba(15, 118, 110, .18);
}

.calendar-day.is-adjacent-month {
  opacity: .78;
}

.calendar-day.is-adjacent-month.is-selected-start,
.calendar-day.is-adjacent-month.is-selected-range,
.calendar-day.is-adjacent-month.is-selected-end {
  opacity: 1;
}

.calendar-day.is-free span {
  color: var(--teal-dark);
}

.calendar-day.is-free:hover {
  border-color: var(--teal-dark);
  box-shadow: 0 8px 18px rgba(18, 112, 102, .12);
}

.calendar-day.is-no-rate {
  border-color: #d7dde2;
  background: #eef1f4;
  color: var(--muted);
}

.calendar-day.is-no-rate,
.calendar-day.is-no-rate.manual,
.calendar-day.is-no-rate.site,
.calendar-day.is-no-rate.is-booked {
  border-color: #d7dde2;
  background: #eef1f4;
  color: var(--muted);
}

.calendar-day.is-free:focus-visible {
  outline: 3px solid rgba(18, 112, 102, .22);
  outline-offset: 2px;
}

.calendar-day.is-muted {
  opacity: .35;
  background: #f8fafc;
}

.calendar-day.is-booked {
  color: var(--muted);
  border-color: #e7b3b3;
  background: #f9dddd;
}

.calendar-day.manual {
  color: var(--muted);
  background: #f9dddd;
}

.calendar-day.site {
  color: var(--muted);
  background: #f9dddd;
}

.calendar-day.is-past-date,
.calendar-day.is-past-date.manual,
.calendar-day.is-past-date.is-booked {
  color: #6b7280;
  border-color: #cbd5e1;
  background: #e5e7eb;
}

.calendar-day.is-past-date span,
.calendar-day.is-past-date small {
  color: #6b7280;
}

.calendar-day.processing {
  color: var(--ink);
  border-color: #f0cc67;
  background: #fbe4a4;
}

.calendar-day.is-selected-range {
  color: var(--teal-dark);
  border: 2px solid #0f766e;
  background: #e8f7f4;
}

.calendar-day.is-selected-start,
.calendar-day.is-selected-end {
  color: #fff;
  border: 2px solid var(--teal-dark);
  background: var(--teal-dark);
}

.calendar-day.is-selected-start span,
.calendar-day.is-selected-end span {
  color: #fff;
}

.calendar-day.is-selected-range span {
  color: var(--teal-dark);
}

.calendar-day.is-no-rate.is-booked.is-selected-end.is-package-checkout {
  color: #fff;
  border: 2px solid #0f766e;
  background: var(--teal-dark);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
}

.calendar-day.is-no-rate.is-booked.is-selected-end.is-package-checkout span,
.calendar-day.is-no-rate.is-booked.is-selected-end.is-package-checkout strong {
  color: #fff;
}

.calendar-day strong {
  font-size: .96rem;
}

.calendar-day span {
  min-height: 16px;
  font-size: .72rem;
  font-weight: 850;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.package-selection-title,
.package-selection-line {
  display: block;
}

.package-selection-title {
  margin-bottom: 6px;
  color: var(--teal-dark);
}

.package-selection-line + .package-selection-line {
  margin-top: 4px;
}

.package-selection-date {
  color: #dc2626;
}

.calendar-day small {
  min-height: 14px;
  font-size: .68rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--muted);
}

.calendar-day.is-free small {
  color: var(--teal-dark);
}

.calendar-day.is-selected-start small,
.calendar-day.is-selected-end small {
  color: rgba(255, 255, 255, .92);
}

.calendar-day.is-selected-range small {
  color: var(--teal-dark);
}

.reservation-board {
  width: min(1120px, 100%);
  margin: 18px auto 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.reservation-board-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.reservation-board-heading button,
.reservation-board-heading a {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--teal-dark);
  background: #fff;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.reservation-list {
  display: grid;
  gap: 8px;
}

.reservation-list p {
  color: var(--muted);
}

.reservation-item {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr .8fr;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-radius: 8px;
  background: #f7fbfb;
  color: var(--muted);
  font-size: .9rem;
}

.reservation-item strong {
  color: var(--ink);
}

.region {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(22px, 5vw, 62px);
  align-items: start;
  background: var(--sand);
}

.region-copy,
.feature-list {
  width: min(560px, 100%);
}

.region-copy p:last-child {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.05rem;
}

.feature-list {
  display: grid;
  gap: 12px;
  justify-self: end;
}

.feature-list div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(18, 51, 58, .16);
}

.feature-list strong {
  color: var(--teal-dark);
  font-size: 1.05rem;
}

.feature-list span {
  color: var(--muted);
  line-height: 1.5;
}

.faq-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  justify-items: center;
  align-items: start;
  background: var(--sand);
}

.faq-copy,
.faq-list {
  width: min(860px, 100%);
}

.faq-copy {
  justify-self: center;
  text-align: center;
}

.faq-copy p:last-child {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.05rem;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  justify-self: center;
  text-align: center;
}

.faq-item.is-pinned {
  border-color: #bdd7db;
  box-shadow: 0 14px 28px rgba(18, 51, 58, 0.07);
}

.faq-item {
  width: 100%;
  border: 1px solid rgba(196, 222, 224, 0.92);
  border-radius: 12px;
  background: #f8fbfb;
  box-shadow: 0 10px 24px rgba(18, 51, 58, 0.04);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  min-height: 58px;
  padding: 14px 18px;
  border: 0;
  color: var(--teal-dark);
  background: #f8fbfb;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--teal-dark);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}

.faq-item[open] summary {
  background: #edf7f7;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item summary:hover,
.faq-item summary:focus-visible {
  background: #edf7f7;
  outline: none;
}

.faq-answer {
  padding: 0 18px 16px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  text-align: center;
}

.faq-pagination {
  width: min(860px, 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.faq-page-link,
.faq-page-current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 800;
}

.faq-page-link {
  border: 1px solid rgba(196, 222, 224, 0.92);
  color: var(--teal-dark);
  background: #f8fbfb;
  text-decoration: none;
}

.faq-page-link:hover,
.faq-page-link:focus-visible {
  background: #edf7f7;
  outline: none;
}

.faq-page-current {
  color: var(--muted);
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: #fff;
  background: var(--teal-dark);
}

.contact .eyebrow {
  color: var(--sun);
}

.contact h2 {
  max-width: 760px;
}

.contact .primary-button {
  color: var(--teal-dark);
  background: #fff;
  white-space: nowrap;
}

.footer {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 22px clamp(18px, 5vw, 64px);
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--line);
}

.footer img {
  width: 138px;
  height: 44px;
  object-fit: contain;
  object-position: center;
}

.footer-copy {
  display: grid;
  gap: 4px;
  justify-items: center;
  text-align: center;
}

.footer-copy a {
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: none;
}

.footer-copy a:hover,
.footer-copy a:focus-visible {
  text-decoration: underline;
}

.gallery-modal,
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: block;
  padding: 28px;
  background: rgba(5, 18, 22, .92);
}

.gallery-modal[hidden],
.video-modal[hidden] {
  display: none;
}

.gallery-stage,
.video-stage {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: min(1100px, 88vw);
  max-width: 88vw;
  display: grid;
  place-items: center;
}

.gallery-modal img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 82vh;
  margin: 0 auto;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
}

.video-stage {
  width: min(1400px, 96vw);
  max-width: 96vw;
}

.video-modal iframe {
  display: block;
  width: 100%;
  height: min(88vh, calc(96vw * 0.5625));
  aspect-ratio: 16 / 9;
  max-height: 88vh;
  margin: 0 auto;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
  background: #000;
}

.gallery-close,
.gallery-nav {
  position: fixed;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, .16);
  cursor: pointer;
}

.gallery-close {
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  line-height: 1;
}

.gallery-nav {
  top: 50%;
  width: 52px;
  height: 64px;
  transform: translateY(-50%);
  font-size: 2.5rem;
  line-height: 1;
}

.gallery-nav.prev {
  left: 18px;
}

.gallery-nav.next {
  right: 18px;
}

.gallery-caption {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  color: #fff;
  font-weight: 850;
}

@media (max-width: 760px) {
  .date-selection-hint {
    text-align: center;
  }

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

  .header-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .site-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 44;
    display: block;
  }

  .site-mobile-menu[hidden] {
    display: none;
  }

  .site-mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    border: 0;
    padding: 0;
    background: rgba(10, 20, 24, 0.48);
    cursor: pointer;
    opacity: 0;
    transition: opacity 240ms ease;
  }

  .nav {
    display: none;
  }

  .site-mobile-menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 45;
    width: min(88vw, 360px);
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 20px 16px 18px;
    overflow: auto;
    border-left: 1px solid rgba(215, 228, 231, 0.9);
    border-radius: 24px 0 0 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(246, 251, 252, 0.98) 100%);
    box-shadow: 0 24px 60px rgba(18, 51, 58, 0.18);
    transform: translateX(100%);
    transition: transform 240ms ease;
  }

  .site-mobile-menu.is-open .site-mobile-menu-backdrop {
    opacity: 1;
  }

  .site-mobile-menu.is-open .site-mobile-menu-panel {
    transform: translateX(0);
  }

  .site-mobile-menu-links {
    display: grid;
    gap: 10px;
    align-items: stretch;
  }

  .brand,
  .brand-spacer {
    width: auto;
    flex: 0 0 auto;
  }

  .site-mobile-menu-links a {
    display: inline-flex;
    align-items: center;
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid rgba(220, 232, 234, 0.95);
    border-radius: 14px;
    background: #fff;
    color: var(--muted);
    font-size: .96rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(18, 51, 58, 0.04);
  }

  .site-mobile-menu-links a:hover,
  .site-mobile-menu-links a.is-active {
    background: rgba(232, 246, 244, 0.98);
    color: var(--teal-dark);
    border-color: rgba(15, 118, 110, 0.16);
  }

  .menu-toggle {
    width: 48px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border: 1px solid rgba(214, 227, 230, 0.95);
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
    position: relative;
    z-index: 46;
    touch-action: manipulation;
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    margin-left: auto;
    flex: 0 0 auto;
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: var(--teal-dark);
  }

  .site-mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 44px;
    margin-bottom: 0;
    position: sticky;
    top: 0;
    padding-bottom: 8px;
    background: rgba(255, 255, 255, 0.98);
    z-index: 1;
  }

  .site-mobile-menu-head strong {
    color: var(--ink);
    font-size: 1.02rem;
    font-weight: 900;
  }

  .site-mobile-menu-label {
    margin: 0;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .site-mobile-menu-close {
    position: relative;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(214, 227, 230, 0.95);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
  }

  .site-mobile-menu-close span {
    position: absolute;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--teal-dark);
  }

  .site-mobile-menu-close span:first-child {
    transform: rotate(45deg);
  }

  .site-mobile-menu-close span:last-child {
    transform: rotate(-45deg);
  }

  .search-form,
  .property-grid,
  .calendar-shell,
  .reservation-item,
  .region,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .calendar-shell {
    grid-template-areas:
      "panel"
      "calendar"
      "form";
  }

  .feature-list {
    justify-self: start;
  }

  .faq-list {
    justify-self: start;
  }

  .faq-item summary {
    min-height: 56px;
    padding: 14px 16px;
    font-size: 0.96rem;
  }

  .faq-answer {
    padding: 0 16px 15px;
  }
}

@media (max-width: 620px) {
  :root {
    --site-header-offset: 60px;
  }

  .site-header {
    gap: 12px;
    min-height: 52px;
    padding: 8px 14px;
    border-bottom: 1px solid rgba(215, 228, 231, 0.88);
  }

  .brand img {
    width: 112px;
    height: 32px;
  }

  .header-shell {
    gap: 10px;
  }

  .header-action {
    display: none !important;
    min-height: 40px;
    padding-inline: 12px;
    font-size: .9rem;
  }

  .hero {
    min-height: calc(100vh - var(--site-header-offset));
    padding: 18px 16px 42px;
  }

  .hero-logo {
    width: min(430px, 92vw);
    margin: 0 auto 10px;
    object-position: center;
  }

  .search-band,
  .section,
  .calendar-section,
  .region,
  .faq-section,
  .contact {
    padding-inline: 16px;
  }

  .faq-copy p:last-child {
    font-size: 0.98rem;
  }

  .faq-list {
    gap: 10px;
  }

  .faq-item {
    border-radius: 10px;
  }

  .faq-item summary {
    min-height: 52px;
    padding: 13px 14px;
    font-size: 0.92rem;
    line-height: 1.4;
  }

  .faq-item summary::after {
    font-size: 1.2rem;
  }

  .faq-answer {
    padding: 0 14px 14px;
  }

  .faq-answer p {
    font-size: 0.93rem;
    line-height: 1.6;
  }

  .calendar-card,
  .calendar-panel {
    padding: 14px;
  }

  .calendar-grid,
  .calendar-weekdays {
    gap: 5px;
  }

  .calendar-day {
    min-height: 58px;
    padding: 6px;
  }

  .calendar-day span {
    font-size: .65rem;
  }

  .reservation-board-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .feature-list div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .contact,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-copy {
    justify-items: center;
    text-align: center;
  }

  .contact .primary-button {
    width: 100%;
    white-space: normal;
  }
}

@media (min-width: 1024px) {
  :root {
    --site-header-offset: 64px;
  }

  .site-header {
    min-height: var(--site-header-offset);
  }

  .header-shell {
    width: min(1280px, 100%);
    margin: 0 auto;
  }

  .hero {
    min-height: min(760px, calc(100vh - var(--site-header-offset)));
    align-items: center;
    padding-block: clamp(54px, 6vw, 88px);
  }

  .hero-content {
    width: min(620px, 48vw);
    margin-left: max(0px, calc((100vw - 1280px) / 2));
  }

  .hero-logo {
    width: min(460px, 34vw);
    max-height: 180px;
  }

  .hero-copy {
    max-width: 560px;
    margin-top: 24px;
  }

  .hero-promo {
    width: min(520px, 100%);
  }

  .section,
  .calendar-section,
  .region,
  .contact {
    padding-inline: clamp(32px, 4vw, 72px);
  }

  .section-heading,
  .search-form,
  .calendar-shell {
    width: min(1180px, 100%);
  }

  .property-grid {
    width: min(1180px, 100%);
    gap: 22px;
  }

  .property-card {
    display: grid;
    grid-template-rows: auto 1fr;
  }

  .property-body {
    align-content: start;
    min-height: 360px;
  }

  .calendar-shell {
    grid-template-columns: minmax(300px, 340px) minmax(0, 1fr);
    gap: 22px;
  }
}

@media (min-width: 1180px) {
  .property-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .calendar-card {
    min-width: 0;
  }
}

@media (min-width: 1024px) and (max-width: 1179px) {
  .property-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1440px) {
  .hero {
    min-height: 720px;
  }

  .section-heading,
  .search-form,
  .calendar-shell,
  .property-grid {
    width: min(1240px, 100%);
  }
}
