@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --blue-strong: #0b4bd6;
  --blue-deep: #001e74;
  --blue-soft: #dce8ff;
  --orange: #ff7b2c;
  --sand: #fff5ea;
  --surface: #ffffff;
  --surface-alt: #f5f8ff;
  --ink: #13203a;
  --muted: #62708a;
  --border: rgba(19, 32, 58, 0.08);
  --shadow: 0 24px 60px rgba(12, 52, 153, 0.16);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", "Avenir Next", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 123, 44, 0.16), transparent 28%),
    linear-gradient(180deg, #eef4ff 0%, #f8fbff 38%, #ffffff 100%);
}

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

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

.site-shell {
  width: min(1200px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 20px 0 48px;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  margin-bottom: 22px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 45px rgba(16, 35, 88, 0.08);
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand-mark strong {
  display: block;
  font-size: 1rem;
}

.brand-mark small {
  display: block;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
}

.site-nav a.is-active {
  color: var(--blue-deep);
  background: var(--blue-soft);
}

.site-nav .nav-cta {
  margin-left: auto;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #ff9554);
}

.hero {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
}

.hero-copy,
.hero-card,
.section,
.site-footer {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 38px;
}

.hero-card {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card img {
  border-radius: 22px;
  min-height: 280px;
  object-fit: cover;
}

.hero-card-top p,
.eyebrow {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
}

.hero-copy h1,
.section-head h2,
.info-panel h2,
.sidebar-panel h2 {
  margin: 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  line-height: 0.98;
  color: var(--blue-deep);
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  max-width: 11ch;
}

.hero-intro,
.hero-card strong,
.hero-card ul,
.property-body p,
.highlight-card p,
.info-panel p,
.site-footer p,
.common-card p,
.sidebar-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions,
.hero-tags,
.pill-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions {
  margin: 28px 0 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-strong), #3a79ff);
}

.button-secondary {
  color: var(--blue-deep);
  background: var(--sand);
  border-color: rgba(255, 123, 44, 0.15);
}

.button-block {
  width: 100%;
}

.hero-tags span,
.pill-row span,
.badge,
.amenity-card,
.text-link {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
}

.hero-tags span,
.pill-row span {
  padding: 10px 14px;
  background: var(--surface-alt);
  color: var(--blue-deep);
  font-weight: 700;
}

.badge {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 9px 13px;
  background: rgba(0, 30, 116, 0.82);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
}

.section {
  margin-bottom: 24px;
  padding: 30px;
}

.immersive-layout,
.property-story-grid {
  display: grid;
  gap: 22px;
}

.immersive-layout {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
}

.immersive-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.8;
}

.immersive-badges,
.meta-highlight-row,
.status-pill-row,
.mini-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.immersive-badges span,
.meta-highlight-row span,
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 800;
}

.immersive-badges span {
  background: linear-gradient(135deg, rgba(0, 75, 214, 0.08), rgba(255, 123, 44, 0.08));
  color: var(--blue-deep);
}

.immersive-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 130px;
  gap: 12px;
}

.immersive-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  min-height: 100%;
}

.immersive-frame:nth-child(1) {
  grid-column: span 3;
  grid-row: span 2;
}

.immersive-frame:nth-child(2),
.immersive-frame:nth-child(3),
.immersive-frame:nth-child(4),
.immersive-frame:nth-child(5) {
  grid-column: span 3;
}

.immersive-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.immersive-frame figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0, 30, 116, 0.72);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.section-head h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.text-link {
  padding: 10px 14px;
  background: var(--sand);
  color: var(--orange);
  font-weight: 800;
}

.property-grid,
.highlight-grid,
.common-grid,
.amenities-grid,
.quick-link-grid,
.video-grid,
.trust-grid,
.contact-grid,
.tour-card-grid,
.tourism-gallery,
.legal-grid,
.award-grid,
.location-grid {
  display: grid;
  gap: 18px;
}

.property-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quick-link-grid,
.video-grid,
.trust-grid,
.tour-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-grid,
.location-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tourism-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.property-card,
.highlight-card,
.common-card,
.amenity-card,
.info-panel,
.sidebar-panel,
.quick-link-card,
.video-card,
.trust-card,
.award-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.property-card {
  overflow: hidden;
}

.quick-link-card,
.video-card,
.trust-card {
  overflow: hidden;
}

.property-image {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #dfe8ff, #f9fbff);
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-link-image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.quick-link-image-static {
  cursor: default;
}

.quick-link-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-link-body,
.video-card-body,
.trust-card-body {
  padding: 22px;
}

.image-fallback {
  display: grid;
  height: 100%;
  place-items: center;
  padding: 24px;
  color: var(--muted);
  text-align: center;
}

.property-body {
  padding: 20px;
}

.property-meta-line {
  margin: -2px 0 12px;
  color: var(--blue-deep);
  font-size: 0.94rem;
  font-weight: 800;
}

.property-pill-row {
  margin-bottom: 16px;
}

.property-card-footer {
  display: grid;
  gap: 14px;
}

.mini-feature-list span,
.common-meta {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(0, 30, 116, 0.05);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.property-city {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
}

.property-body h3,
.highlight-card h3,
.common-card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  line-height: 1.25;
}

.highlight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.highlight-card,
.common-card,
.info-panel,
.award-card {
  padding: 24px;
}

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

.common-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  align-items: center;
}

.common-card img {
  width: 180px;
  height: 130px;
  border-radius: 16px;
  object-fit: cover;
}

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  background: #000;
}

.trust-card-media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #e7efff, #fffaf3);
  display: grid;
  place-items: center;
  padding: 16px;
}

.trust-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mini-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  font-weight: 800;
}

.property-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  align-items: start;
  gap: 28px;
}

.property-gallery {
  min-width: 0;
}

.gallery-main {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  background: linear-gradient(135deg, #eef8f5, #fff9ef);
  box-shadow: 0 18px 46px rgba(6, 56, 68, 0.12);
}

.gallery-main img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  border-radius: 0;
}

.meta-highlight-row {
  margin: 16px 0 0;
}

.meta-highlight-row span {
  background: rgba(255, 123, 44, 0.1);
  color: var(--orange);
}

.gallery-strip {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  padding: 4px 2px 12px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-color: rgba(11, 75, 214, 0.35) rgba(0, 30, 116, 0.08);
}

.gallery-thumb {
  appearance: none;
  flex: 0 0 96px;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 1px solid rgba(6, 56, 68, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  scroll-snap-align: start;
  box-shadow: 0 0 0 2px transparent;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.gallery-thumb.is-active {
  box-shadow: 0 0 0 2px rgba(11, 75, 214, 0.35);
}

.gallery-thumb:hover {
  transform: translateY(-2px);
}

.gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats-list,
.info-list,
.hero-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.stats-list li,
.info-list li,
.hero-card li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.stats-list li:last-child,
.info-list li:last-child,
.hero-card li:last-child {
  border-bottom: 0;
}

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

.amenity-card {
  padding: 16px 18px;
  color: var(--blue-deep);
  font-weight: 700;
}

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

.info-panel.contrast {
  color: #fff;
  background: linear-gradient(145deg, var(--blue-deep), #184cca);
}

.info-panel.contrast p,
.info-panel.contrast h2 {
  color: #fff;
}

.contact-list,
.stack-copy {
  display: grid;
  gap: 14px;
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  gap: 6px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.contact-list li:last-child {
  border-bottom: 0;
}

.contact-list a {
  color: var(--blue-deep);
  font-weight: 800;
}

.lead-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.bullet-stack {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.bullet-stack p {
  margin: 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
}

.stack-copy p {
  margin: 0;
}

.award-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 14px;
}

.award-card {
  display: grid;
  gap: 12px;
  text-align: center;
  background: var(--surface-alt);
}

.award-card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
}

.map-preview {
  margin-top: 18px;
  overflow: hidden;
  border-radius: 20px;
}

.map-preview img {
  width: 100%;
  object-fit: cover;
}

.embed-shell {
  overflow: hidden;
  border-radius: 24px;
  min-height: 100%;
  background: linear-gradient(135deg, #dfe8ff, #f8fbff);
}

.embed-shell iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.tourism-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 1;
}

.tourism-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
}

.site-footer div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

  .site-nav {
    display: none;
  }

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

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .hero,
  .immersive-layout,
  .property-showcase,
  .property-story-grid,
  .info-columns,
  .common-grid,
  .highlight-grid,
  .property-grid,
  .amenities-grid,
  .quick-link-grid,
  .video-grid,
  .trust-grid,
  .contact-grid,
  .tour-card-grid,
  .tourism-gallery,
  .legal-grid,
  .award-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .immersive-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 150px;
  }

  .immersive-frame:nth-child(1),
  .immersive-frame:nth-child(2),
  .immersive-frame:nth-child(3),
  .immersive-frame:nth-child(4),
  .immersive-frame:nth-child(5) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .site-footer,
  .section-head,
  .common-card {
    grid-template-columns: 1fr;
    display: grid;
  }

  .common-card {
    grid-template-columns: 1fr;
  }

  .common-card img {
    width: 100%;
    height: 220px;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(100vw - 20px, 100%);
  }

  .hero-copy,
  .hero-card,
  .section {
    padding: 22px;
  }

  .hero-copy h1,
  .section-head h2 {
    line-height: 1.02;
  }

  .site-footer {
    padding: 20px;
  }

  .immersive-gallery {
    grid-template-columns: 1fr;
  }
}

.flash-stack {
  display: grid;
  gap: 12px;
  margin: 0 0 20px;
}

.flash-card {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 32px rgba(11, 75, 214, 0.1);
}

.flash-card strong {
  display: block;
  margin-bottom: 4px;
}

.flash-card p {
  margin: 0;
  color: var(--muted);
}

.flash-success {
  border-color: rgba(38, 170, 92, 0.28);
  background: linear-gradient(135deg, rgba(38, 170, 92, 0.12), rgba(255, 255, 255, 0.92));
}

.flash-error {
  border-color: rgba(214, 54, 62, 0.28);
  background: linear-gradient(135deg, rgba(214, 54, 62, 0.08), rgba(255, 255, 255, 0.92));
}

.section-tight {
  padding: 18px 24px;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.calendar-nav,
.availability-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.availability-summary,
.availability-month-grid {
  display: grid;
  gap: 16px;
}

.availability-summary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 18px;
}

.availability-summary article {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(245,248,255,0.98));
}

.availability-summary span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.84rem;
}

.availability-summary strong {
  color: var(--blue-deep);
  font-size: 1.12rem;
}

.availability-legend {
  margin-bottom: 18px;
}

.legend-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 700;
  background: rgba(0, 30, 116, 0.04);
}

.legend-chip i {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  display: inline-block;
}

.availability-month-grid {
  grid-template-columns: 1fr;
}

.availability-month-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 0;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(11, 75, 214, 0.06);
}

.availability-month-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(244, 248, 255, 0.96), rgba(255, 255, 255, 0.99));
}

.availability-month-card header strong {
  font-size: 1.08rem;
  color: var(--blue-deep);
}

.availability-month-card header small {
  color: var(--muted);
  font-size: 0.84rem;
  text-align: right;
}

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

.availability-weekdays {
  padding: 0 14px;
  background: rgba(11, 75, 214, 0.03);
  border-bottom: 1px solid var(--border);
}

.availability-weekdays span {
  text-align: center;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 12px 4px;
}

.availability-day {
  appearance: none;
  min-height: 72px;
  border: 0;
  border-right: 1px solid rgba(19, 32, 58, 0.06);
  border-bottom: 1px solid rgba(19, 32, 58, 0.06);
  border-radius: 0;
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  background: #fff;
  color: var(--blue-deep);
  padding: 10px;
  cursor: default;
  position: relative;
}

.availability-day strong {
  font-size: 0.95rem;
  line-height: 1;
}

.availability-day.is-available {
  cursor: pointer;
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(242,252,245,1));
}

.availability-day.is-available:hover {
  background: linear-gradient(180deg, rgba(248,255,250,1), rgba(232,248,236,1));
}

.availability-day:disabled {
  opacity: 1;
}

.availability-day.is-blank {
  min-height: 72px;
  border-right: 1px solid rgba(19, 32, 58, 0.04);
  border-bottom: 1px solid rgba(19, 32, 58, 0.04);
  background: #fafcff;
}

.availability-helper {
  margin: 16px 0 0;
  color: var(--muted);
}

.availability-days {
  padding: 0 14px 14px;
}

.availability-days .availability-day:nth-child(7n) {
  border-right: 0;
}

.availability-day.tone-free,
.availability-day.tone-occupied,
.availability-day.tone-checkin,
.availability-day.tone-checkout,
.availability-day.tone-turnover,
.availability-day.tone-blocked,
.availability-day.tone-past {
  color: inherit;
}

.availability-day.tone-free::after,
.availability-day.tone-occupied::after,
.availability-day.tone-checkin::after,
.availability-day.tone-checkout::after,
.availability-day.tone-turnover::after,
.availability-day.tone-blocked::after,
.availability-day.tone-past::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.availability-day.tone-free {
  color: #18663b;
}

.legend-chip.tone-free i,
.availability-day.tone-free::after {
  background: #4caf6b;
}

.availability-day.tone-occupied,
.availability-day.tone-checkin,
.availability-day.tone-checkout,
.availability-day.tone-turnover {
  background: linear-gradient(180deg, rgba(255,245,246,1), rgba(255,236,238,1));
  color: #8f2027;
}

.legend-chip.tone-occupied i,
.availability-day.tone-occupied::after,
.availability-day.tone-checkin::after,
.availability-day.tone-checkout::after,
.availability-day.tone-turnover::after {
  background: #d6363e;
}

.availability-day.tone-blocked {
  background: linear-gradient(180deg, rgba(255,248,242,1), rgba(255,239,224,1));
  color: #9e4a15;
}

.legend-chip.tone-blocked i,
.availability-day.tone-blocked::after {
  background: #ff7b2c;
}

.availability-day.tone-past {
  background: #f5f7fb;
  color: #7b8498;
}

.legend-chip.tone-past i,
.availability-day.tone-past::after {
  background: #b0b8c8;
}

.stat-chip {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(240,246,255,0.98));
}

.stat-chip span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.85rem;
}

.stat-chip strong {
  font-size: 1.05rem;
  color: var(--blue-deep);
}

.booking-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--blue-deep);
  font-weight: 700;
}

.booking-form label span {
  font-size: 0.9rem;
}

.booking-form .form-helper {
  margin: -2px 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

.booking-form input,
.booking-form textarea,
.booking-form select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(19, 32, 58, 0.12);
  background: #f9fbff;
  color: var(--ink);
  font: inherit;
}

.booking-form textarea {
  min-height: 110px;
  resize: vertical;
}

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

.booking-notes {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 16px;
  border-radius: 16px;
  background: var(--surface-alt);
}

.booking-live-card {
  display: grid;
  gap: 6px;
  margin: 18px 0 0;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(11, 75, 214, 0.08), rgba(255, 123, 44, 0.08));
  border: 1px solid rgba(11, 75, 214, 0.08);
}

.booking-live-card strong {
  color: var(--blue-deep);
}

.booking-live-card p {
  margin: 0;
  color: var(--muted);
}

.booking-policy-card {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(11, 75, 214, 0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(245,248,255,0.98));
}

.booking-policy-card strong {
  color: var(--blue-deep);
}

.booking-policy-card p,
.booking-policy-card ul {
  margin: 0;
  color: var(--muted);
}

.booking-policy-card ul {
  padding-left: 18px;
}

.booking-policy-note {
  font-size: 0.9rem;
}

.booking-notes p {
  margin: 0;
  color: var(--muted);
}

.process-grid,
.checkout-money-grid {
  display: grid;
  gap: 16px;
}

.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #ffffff, #f6f9ff);
}

.process-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  font-size: 1.15rem;
}

.process-card h3 {
  margin: 16px 0 8px;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.checkout-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.checkout-summary-card,
.checkout-actions-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(245,248,255,0.98));
}

.status-pill-row {
  margin: 18px 0 10px;
}

.status-pill {
  background: rgba(11, 75, 214, 0.08);
  color: var(--blue-deep);
}

.checkout-money-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 18px 0;
}

.checkout-money-grid article {
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border);
}

.checkout-money-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.85rem;
}

.checkout-money-grid strong {
  color: var(--blue-deep);
}

.checkout-note-card {
  margin-top: 18px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(11, 75, 214, 0.12);
  background: rgba(11, 75, 214, 0.04);
}

.checkout-note-card strong,
.checkout-payment-history h3 {
  color: var(--blue-deep);
}

.checkout-note-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.checkout-status-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.checkout-status-strip article,
.checkout-payment-history-grid article {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
}

.checkout-status-strip span,
.checkout-payment-history-grid small {
  display: block;
  color: var(--muted);
}

.checkout-status-strip span {
  margin-bottom: 6px;
  font-size: 0.84rem;
}

.checkout-status-strip strong {
  color: var(--blue-deep);
}

.checkout-payment-history {
  margin-top: 24px;
}

.checkout-payment-history h3 {
  margin: 0 0 14px;
}

.checkout-payment-history-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.checkout-payment-history-grid article {
  display: grid;
  gap: 6px;
}

@media (max-width: 1024px) {
  .stats-strip,
  .availability-summary,
  .availability-month-grid,
  .checkout-board,
  .process-grid,
  .checkout-status-strip,
  .checkout-payment-history-grid {
    grid-template-columns: 1fr;
  }

  .availability-month-card header {
    display: grid;
  }
}

@media (max-width: 720px) {
  .booking-grid,
  .checkout-money-grid {
    grid-template-columns: 1fr;
  }

  .availability-weekdays span {
    font-size: 0.7rem;
    padding: 10px 2px;
  }

  .availability-day,
  .availability-day.is-blank {
    min-height: 56px;
    padding: 8px;
  }
}

/* 2026 visual refresh inspired by the production base site. */
:root {
  --ocean: #0b6474;
  --ocean-deep: #073d4d;
  --foam: #f1faf6;
  --cream: #fff8ef;
  --coral: #f26a3d;
  --gold: #d9a441;
  --ink: #132421;
  --muted: #63716f;
  --border: rgba(7, 61, 77, 0.12);
  --shadow: 0 22px 54px rgba(7, 61, 77, 0.14);
  --radius-xl: 8px;
  --radius-lg: 8px;
  --radius-md: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f7fbf7;
  color: var(--ink);
}

.site-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 0 48px;
  overflow: hidden;
}

.site-header {
  position: fixed;
  inset: 16px 16px auto;
  z-index: 50;
  width: auto;
  margin: 0;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(7, 61, 77, 0.72);
  color: #fff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.brand-row {
  gap: 24px;
}

.brand-mark img {
  width: 44px;
  height: 44px;
  padding: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
}

.brand-mark strong {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.28rem;
  font-weight: 400;
  line-height: 1;
}

.brand-mark small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  margin-top: 0;
  gap: 6px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.78);
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 0.86rem;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.site-nav .nav-cta {
  color: #073d4d;
  background: #fff;
}

.nav-toggle {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  min-height: 92vh;
  margin: 0;
  padding: 144px 16px 128px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 61, 77, 0.84) 0%, rgba(7, 61, 77, 0.45) 52%, rgba(7, 61, 77, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 61, 77, 0.66), rgba(7, 61, 77, 0.08) 48%),
    url("/assets/images/hero-cabanas-covenas.webp") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 34%;
  background: linear-gradient(0deg, rgba(7, 61, 77, 0.58), transparent);
}

.hero-copy {
  width: min(760px, calc(100vw - 32px));
  margin-left: clamp(0px, 4vw, 64px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-copy h1 {
  max-width: 10ch;
  color: #fff;
  font-size: 5.7rem;
  line-height: 0.94;
  text-wrap: balance;
}

.hero-intro {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
}

.hero-card {
  display: none;
}

.is-property-page .hero {
  min-height: 78vh;
}

.is-property-page .hero-card {
  display: grid;
  width: min(420px, calc(100vw - 32px));
  margin: 0 clamp(0px, 4vw, 64px) 0 auto;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.eyebrow,
.hero-card-top p {
  color: var(--coral);
  letter-spacing: 0.1em;
}

.hero .eyebrow {
  color: #ffd089;
}

.hero-actions {
  margin: 30px 0 20px;
}

.button {
  min-height: 48px;
  border-radius: 999px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: #073d4d;
  background: #fff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.1);
}

.section .button-primary,
.property-card .button-primary,
.booking-panel .button-primary,
.info-panel .button-primary,
.sidebar-panel .button-primary {
  color: #fff;
  background: var(--ocean);
  box-shadow: none;
}

.section .button-secondary,
.property-card .button-secondary,
.booking-panel .button-secondary,
.info-panel .button-secondary,
.sidebar-panel .button-secondary {
  color: var(--ocean-deep);
  border-color: rgba(7, 61, 77, 0.16);
  background: #fff;
}

.hero-tags span {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.section,
.site-footer {
  width: min(1200px, calc(100vw - 32px));
  margin: 0 auto 28px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.section {
  padding: 70px 0;
}

.section-tight {
  position: relative;
  z-index: 3;
  padding: 0;
  margin-top: -76px;
}

.stats-strip {
  overflow: hidden;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.stat-chip {
  border: 0;
  border-right: 1px solid rgba(7, 61, 77, 0.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.stat-chip:last-child {
  border-right: 0;
}

.stat-chip span {
  color: var(--muted);
}

.stat-chip strong {
  color: var(--ocean-deep);
}

.immersive-layout {
  align-items: center;
}

.immersive-copy h2,
.section-head h2,
.info-panel h2,
.sidebar-panel h2 {
  color: var(--ocean-deep);
}

.immersive-copy h2,
.section-head h2 {
  font-size: 3.7rem;
  line-height: 0.98;
  text-wrap: balance;
}

.immersive-copy p,
.section-head p,
.property-body p,
.highlight-card p,
.common-card p,
.trust-card p,
.video-card p {
  color: var(--muted);
}

.immersive-frame,
.quick-link-card,
.property-card,
.video-card,
.trust-card,
.highlight-card,
.common-card,
.info-card,
.sidebar-panel,
.booking-panel,
.availability-card,
.checkout-summary-card,
.checkout-actions-card,
.process-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(7, 61, 77, 0.08);
}

.quick-link-card:hover,
.property-card:hover,
.common-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(7, 61, 77, 0.13);
}

.quick-link-card,
.property-card,
.common-card {
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.property-grid {
  gap: 18px;
}

.property-image {
  aspect-ratio: 16 / 11;
}

.property-image img,
.quick-link-card img,
.common-card img,
.trust-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-body {
  padding: 22px;
}

.property-city,
.property-body h3 a,
.common-card h3,
.trust-card h3,
.video-card h3 {
  color: var(--ocean-deep);
}

.property-body h3 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.04;
}

.pill-row span {
  color: var(--ocean-deep);
  background: var(--cream);
}

.highlight-card {
  border-left: 4px solid var(--coral);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  margin-top: 34px;
  padding: 42px;
  color: rgba(255, 255, 255, 0.75);
  background: #073d4d;
  border-radius: 8px;
}

.site-footer strong,
.site-footer a {
  color: #fff;
}

.footer-booking-award {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  max-width: 100%;
  margin-top: 18px;
  padding: 11px 12px 11px 14px;
  color: var(--ocean-deep);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #fff;
}

.footer-booking-copy {
  display: grid;
  gap: 1px;
}

.footer-booking-brand {
  color: #003b95;
  font-size: 0.74rem;
  font-weight: 900;
}

.footer-booking-award .footer-booking-copy strong {
  color: var(--ocean-deep);
  font-size: 0.94rem;
}

.footer-booking-award small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.footer-booking-score {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  min-height: 42px;
  padding: 0 8px;
  color: #fff;
  border-radius: 8px 8px 8px 0;
  background: #003b95;
  font-size: 1rem;
  font-weight: 900;
}

.footer-booking-award:hover {
  background: #f6f9ff;
}

@media (max-width: 1024px) {
  .hero-copy h1 {
    font-size: 4.3rem;
  }

  .immersive-copy h2,
  .section-head h2 {
    font-size: 3rem;
  }
}

@media (max-width: 720px) {
  .site-header {
    inset: 10px 10px auto;
    padding: 10px;
    display: block;
  }

  .brand-mark strong {
    font-size: 1rem;
  }

  .brand-mark small {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero {
    min-height: 88vh;
    padding: 132px 16px 96px;
  }

  .hero-copy {
    width: 100%;
    margin-left: 0;
  }

  .hero-copy h1 {
    font-size: 3.2rem;
  }

  .hero-intro {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 48px 0;
  }

  .section-tight {
    margin-top: -48px;
  }

  .stats-strip,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .stat-chip {
    border-right: 0;
    border-bottom: 1px solid rgba(7, 61, 77, 0.12);
  }

  .stat-chip:last-child {
    border-bottom: 0;
  }

  .immersive-copy h2,
  .section-head h2 {
    font-size: 2.45rem;
  }

  .site-footer {
    padding: 28px;
  }
}

/* 2026-07-16 refinement: cleaner copy, lighter navigation, warmer modern palette. */
:root {
  --ocean-deep: #063844;
  --ocean: #087985;
  --aqua: #25b8a6;
  --foam: #f3fbf8;
  --sand: #fff0d1;
  --cream: #fff9ef;
  --coral: #ff6f4d;
  --ink: #102927;
  --muted: #627371;
  --border: rgba(6, 56, 68, 0.13);
  --shadow: 0 22px 52px rgba(6, 56, 68, 0.16);
}

body {
  background: linear-gradient(180deg, #f7fbf8 0%, #fffaf2 58%, #ffffff 100%);
}

.site-header {
  inset: 18px 22px auto;
  display: grid;
  grid-template-columns: minmax(260px, auto) 1fr;
  align-items: center;
  gap: 18px;
  padding: 10px 14px;
  color: var(--ocean-deep);
  border-color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 42px rgba(4, 35, 43, 0.16);
}

.brand-row {
  justify-content: flex-start;
  min-width: 0;
}

.brand-mark {
  min-width: 0;
}

.brand-home-link,
.brand-title-link,
.brand-whatsapp-link {
  color: inherit;
  text-decoration: none;
}

.brand-home-link {
  display: inline-flex;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 42px;
  height: 42px;
  background: #fffaf1;
  box-shadow: inset 0 0 0 1px rgba(6, 56, 68, 0.08);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.brand-mark strong {
  color: var(--ocean-deep);
  font-size: 1.18rem;
}

.brand-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: max-content;
  max-width: 100%;
  color: #0a8f5c;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-whatsapp-link:hover {
  color: #05724a;
}

.brand-whatsapp-link img {
  width: 15px;
  height: 15px;
  background: transparent;
  box-shadow: none;
}

.brand-whatsapp-link span {
  min-width: 0;
}

.site-nav {
  justify-content: flex-end;
  gap: 4px;
  flex-wrap: nowrap;
}

.site-nav a {
  color: rgba(6, 56, 68, 0.72);
  padding: 9px 11px;
  border-radius: 8px;
  font-size: 0.84rem;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--ocean-deep);
  background: rgba(8, 121, 133, 0.1);
}

.site-nav .nav-cta {
  margin-left: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--ocean), var(--aqua));
  box-shadow: 0 10px 22px rgba(8, 121, 133, 0.22);
}

.hero {
  min-height: 90vh;
  padding: 142px 16px 118px;
  background:
    linear-gradient(90deg, rgba(6, 36, 42, 0.72) 0%, rgba(6, 36, 42, 0.46) 36%, rgba(6, 36, 42, 0.18) 68%, rgba(6, 36, 42, 0.08) 100%),
    linear-gradient(0deg, rgba(6, 56, 68, 0.68), rgba(6, 56, 68, 0.06) 48%),
    url("/assets/images/hero-cabanas-covenas.webp") center / cover no-repeat;
}

.hero-copy {
  width: min(780px, calc(100vw - 32px));
  margin-left: clamp(8px, 4.2vw, 72px);
}

.hero .eyebrow {
  color: #ffd089;
  font-size: 0.76rem;
  letter-spacing: 0.11em;
}

.hero-copy h1 {
  max-width: 13ch;
  color: #fff;
  font-size: clamp(3.55rem, 5.55vw, 5.4rem);
  line-height: 0.93;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.hero-intro {
  max-width: 590px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.18vw, 1.22rem);
  line-height: 1.65;
}

.hero-actions {
  gap: 12px;
  margin: 30px 0 18px;
}

.hero .button {
  min-height: 50px;
  padding: 0 22px;
}

.hero .button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--coral), #ff9c5f);
  box-shadow: 0 18px 42px rgba(255, 111, 77, 0.28);
}

.hero .button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero-tags {
  max-width: 660px;
}

.hero-tags span {
  padding: 9px 13px;
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.11);
  font-size: 0.87rem;
}

.section-tight {
  margin-top: -58px;
}

.stats-strip {
  width: min(980px, calc(100vw - 32px));
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 46px rgba(6, 56, 68, 0.15);
}

.stat-chip {
  padding: 18px 22px;
}

.stat-chip strong {
  color: var(--ocean-deep);
  font-size: 1rem;
}

.section-head h2,
.immersive-copy h2 {
  color: var(--ocean-deep);
  font-size: clamp(2.6rem, 4.2vw, 4.45rem);
}

.section-head {
  align-items: end;
}

.quick-link-card,
.property-card,
.video-card,
.trust-card,
.highlight-card,
.common-card,
.info-card {
  border-color: rgba(6, 56, 68, 0.1);
  box-shadow: 0 16px 40px rgba(6, 56, 68, 0.08);
}

.property-body h3 {
  font-size: 1.72rem;
}

.property-city,
.eyebrow,
.common-card h3,
.trust-card h3,
.video-card h3 {
  color: var(--ocean);
}

.pill-row span {
  color: var(--ocean-deep);
  background: #eef8f5;
}

.section .button-primary,
.property-card .button-primary,
.booking-panel .button-primary,
.info-panel .button-primary,
.sidebar-panel .button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--ocean), var(--aqua));
}

.highlight-card {
  border-left-color: var(--coral);
}

.site-footer {
  background: linear-gradient(135deg, #063844, #0b6670);
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .site-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    display: block;
    inset: 10px 10px auto;
    background: rgba(255, 255, 255, 0.92);
  }

  .nav-toggle {
    color: var(--ocean-deep);
    border-color: rgba(6, 56, 68, 0.12);
    background: rgba(6, 56, 68, 0.06);
  }

  .site-nav {
    border-top-color: rgba(6, 56, 68, 0.1);
  }

  .site-nav a {
    color: var(--ocean-deep);
  }

  .hero {
    min-height: 88vh;
    padding: 126px 16px 90px;
  }

  .hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(3rem, 14vw, 4rem);
  }

  .hero-tags span {
    font-size: 0.8rem;
  }

  .section-tight {
    margin-top: -42px;
  }
}

/* Keep the navigation compact on tablet and narrow desktop widths. */
@media (max-width: 1120px) {
  .site-header {
    display: block;
    inset: 12px 12px auto;
    padding: 10px;
  }

  .brand-row {
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    color: var(--ocean-deep);
    border-color: rgba(6, 56, 68, 0.14);
    background: rgba(6, 56, 68, 0.06);
  }

  .site-nav {
    display: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    max-height: min(48vh, 360px);
    margin-top: 12px;
    padding-top: 12px;
    overflow-y: auto;
    border-top: 1px solid rgba(6, 56, 68, 0.1);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 9px 10px;
    text-align: center;
    white-space: normal;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }
}

@media (max-width: 720px) {
  .site-nav {
    grid-template-columns: 1fr;
    max-height: min(56vh, 420px);
  }
}

/* Hard stop for the collapsed menu: the closed header must never cover the page. */
@media (max-width: 1120px) {
  .site-header {
    height: auto !important;
    min-height: 0 !important;
    max-height: calc(100vh - 24px);
    bottom: auto !important;
    overflow: visible;
  }

  .site-nav {
    display: grid !important;
    height: 0 !important;
    max-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .site-nav.is-open {
    height: auto !important;
    max-height: min(52vh, 380px) !important;
    margin-top: 12px !important;
    padding-top: 12px !important;
    overflow-y: auto !important;
    border-top: 1px solid rgba(6, 56, 68, 0.1) !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav:not(.is-open) a {
    min-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}

@media (max-width: 720px) {
  .site-nav.is-open {
    max-height: min(58vh, 420px) !important;
  }
}

/* Property quote refresh. */
.is-property-page .hero-card {
  display: none !important;
}

.is-property-page .hero {
  align-items: center;
  min-height: 76vh;
}

.is-property-page .hero-copy {
  width: min(780px, calc(100vw - 48px));
}

.property-showcase {
  width: min(1500px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 560px);
  gap: 34px;
  align-items: start;
  padding-left: 0;
  padding-right: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.property-showcase .property-gallery {
  min-width: 0;
}

.property-showcase .gallery-main {
  aspect-ratio: 16 / 9;
}

.property-sidebar {
  min-width: 0;
}

.property-sidebar .sidebar-panel {
  padding: 28px;
  overflow: visible;
}

.property-sidebar .sidebar-panel h2 {
  font-size: clamp(2.05rem, 2.4vw, 2.9rem);
}

.property-sidebar .stats-list li {
  display: grid;
  grid-template-columns: minmax(118px, 0.42fr) minmax(0, 0.58fr);
  align-items: start;
}

.property-sidebar .stats-list span {
  min-width: 0;
  text-align: right;
  overflow-wrap: anywhere;
}

.booking-form [hidden] {
  display: none !important;
}

.whatsapp-quote-form .booking-grid {
  grid-template-columns: repeat(2, minmax(170px, 1fr));
}

.whatsapp-quote-form input,
.whatsapp-quote-form select {
  border-radius: 8px;
}

.floating-whatsapp-help {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: calc(100vw - 32px);
  min-height: 58px;
  padding: 10px 18px 10px 12px;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #0ba86e, #18c37e);
  box-shadow: 0 18px 38px rgba(5, 114, 74, 0.28);
}

.floating-whatsapp-help:hover {
  color: #fff;
  transform: translateY(-1px);
}

.floating-whatsapp-help img {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.floating-whatsapp-help strong,
.floating-whatsapp-help small {
  display: block;
  line-height: 1.1;
}

.floating-whatsapp-help strong {
  font-size: 0.92rem;
}

.floating-whatsapp-help small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.76rem;
  font-weight: 700;
}

@media (max-width: 1180px) {
  .property-showcase {
    grid-template-columns: 1fr;
    width: min(980px, calc(100vw - 32px));
  }
}

@media (max-width: 720px) {
  .is-property-page .hero {
    min-height: 72vh;
  }

  .is-property-page .hero-copy {
    width: 100%;
  }

  .property-showcase {
    width: calc(100vw - 24px);
  }

  .property-sidebar .sidebar-panel {
    padding: 20px;
  }

  .property-sidebar .stats-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .property-sidebar .stats-list span {
    text-align: left;
  }

  .whatsapp-quote-form .booking-grid {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp-help {
    left: 14px;
    right: 14px;
    bottom: 14px;
    justify-content: center;
  }
}

/* Common areas gallery. */
body.is-modal-open {
  overflow: hidden;
}

.common-card-clickable {
  position: relative;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.common-card-clickable:hover,
.common-card-clickable:focus-visible {
  border-color: rgba(8, 121, 133, 0.3);
  box-shadow: 0 22px 54px rgba(7, 61, 77, 0.15);
  outline: none;
  transform: translateY(-2px);
}

.common-card-action {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 32px;
  margin-left: 8px;
  padding: 0 12px;
  color: #fff;
  border-radius: 999px;
  background: var(--ocean);
  font-size: 0.82rem;
  font-weight: 800;
}

.common-gallery-modal[hidden] {
  display: none !important;
}

.common-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
}

.common-gallery-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 36, 42, 0.74);
  backdrop-filter: blur(8px);
}

.common-gallery-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  width: min(1040px, calc(100vw - 36px));
  max-height: calc(100vh - 48px);
  padding: 18px;
  overflow: auto;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.32);
}

.common-gallery-dialog header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.common-gallery-dialog h3 {
  margin: 0;
  color: var(--ocean-deep);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.common-gallery-close {
  appearance: none;
  min-height: 40px;
  padding: 0 14px;
  color: var(--ocean-deep);
  border: 1px solid rgba(6, 56, 68, 0.14);
  border-radius: 999px;
  background: rgba(6, 56, 68, 0.06);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.common-gallery-stage {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: #eef8f5;
}

.common-gallery-stage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.common-gallery-thumbs {
  display: flex;
  gap: 10px;
  padding-bottom: 6px;
  overflow-x: auto;
}

.common-gallery-thumb {
  appearance: none;
  flex: 0 0 96px;
  aspect-ratio: 1 / 1;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(6, 56, 68, 0.12);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 0 0 2px transparent;
}

.common-gallery-thumb.is-active {
  box-shadow: 0 0 0 2px rgba(8, 121, 133, 0.42);
}

.common-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 720px) {
  .common-card-action {
    margin: 8px 0 0;
  }

  .common-gallery-modal {
    padding: 12px;
  }

  .common-gallery-dialog {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
    padding: 14px;
  }

  .common-gallery-dialog header {
    display: grid;
  }

  .common-gallery-stage {
    aspect-ratio: 4 / 3;
  }
}
