﻿:root {
  color-scheme: light;
  --sand: #f6efe3;
  --ocean: #0a3d62;
  --ocean-light: #1e6f92;
  --seafoam: #cfe8e5;
  --sun: #ffcf8c;
  --white: #ffffff;
  --ink: #0b1f2a;
  --shadow: 0 20px 45px rgba(10, 61, 98, 0.18);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fdfcf9 0%, var(--sand) 45%, #ffffff 100%);
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-md);
}

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

button {
  font-family: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(10, 61, 98, 0.08);
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--ocean);
}

.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
  font-weight: 500;
  margin-left: auto;
  margin-right: 8px;
}

.nav-menu a {
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 0;
  background: var(--ocean-light);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a:focus::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--ocean);
  color: var(--white);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
}

.nav-toggle-line {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--ocean);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.quick-booking {
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(10, 61, 98, 0.05);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.6s ease, opacity 0.45s ease;
}

.quick-booking.is-visible {
  transform: translateY(6px);
  opacity: 1;
  pointer-events: auto;
}
.quick-booking-form {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5px 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr)) auto;
  gap: 10px;
  align-items: center;
}

.quick-field {
  display: grid;
  gap: 2px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(10, 61, 98, 0.16);
  border-radius: 999px;
  padding: 4px 12px 3px;
  min-height: 38px;
  box-shadow: 0 10px 22px rgba(10, 61, 98, 0.08);
}

.quick-label {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(10, 61, 98, 0.8);
}

.quick-booking input,
.quick-booking select {
  height: 20px;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--ink);
  outline: none;
}

.quick-booking select,
.quote-form select,
.booking-form-card select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 34px;
  border-color: rgba(10, 61, 98, 0.24);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(246, 251, 255, 1) 100%),
    linear-gradient(180deg, rgba(10, 61, 98, 0.1) 0%, rgba(10, 61, 98, 0.22) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230a3d62' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: 100% 100%, 1px 58%, 14px 14px;
  background-position: 0 0, calc(100% - 28px) 50%, calc(100% - 9px) 50%;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 1px 2px rgba(10, 61, 98, 0.08);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.quick-booking select:hover,
.quote-form select:hover,
.booking-form-card select:hover {
  border-color: rgba(10, 61, 98, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 3px 10px rgba(10, 61, 98, 0.12);
}

.quick-booking select:focus,
.quote-form select:focus,
.booking-form-card select:focus {
  outline: none;
  border-color: rgba(30, 111, 146, 0.8);
  box-shadow:
    0 0 0 3px rgba(30, 111, 146, 0.15),
    0 6px 18px rgba(10, 61, 98, 0.14);
}

.quick-booking select {
  padding-right: 28px;
  background-size: 100% 100%, 1px 50%, 12px 12px;
  background-position: 0 0, calc(100% - 22px) 50%, calc(100% - 7px) 50%;
}

.quick-booking .btn {
  min-height: 38px;
  padding: 0 16px;
  font-size: 0.84rem;
  border-radius: 999px;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.03em;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  cursor: grab;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: grab;
  background: #0b1f2a;
}

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


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

.hero-slide.slide-up {
  background-position: center 25%;
}

.hero.is-dragging,
.hero-slider.is-dragging {
  cursor: grabbing;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(8, 30, 45, 0.75) 0%, rgba(8, 30, 45, 0.2) 60%, rgba(8, 30, 45, 0.65) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  text-align: center;
  color: var(--white);
  padding: 140px 24px 120px;
  max-width: 760px;
  z-index: 3;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.7rem, 4vw, 4.4rem);
  margin: 10px 0 10px;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 32px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 26px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.btn.primary {
  background: var(--sun);
  color: var(--ocean);
  box-shadow: var(--shadow);
}

.btn.secondary {
  background: var(--white);
  color: var(--ocean);
  border-color: rgba(10, 61, 98, 0.2);
}

.btn.ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(10, 61, 98, 0.18);
}

.hero-indicators {
  position: absolute;
  bottom: 32px;
  display: flex;
  gap: 10px;
  z-index: 3;
}

.hero-indicators button {
  width: 52px;
  height: 20px;
  padding: 0;
  border-radius: 999px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
}

.hero-indicators button::before {
  content: "";
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero-indicators button.active::before,
.hero-indicators button:hover::before,
.hero-indicators button:focus-visible::before {
  background: var(--sun);
  transform: scaleX(1.05);
}

.hero-indicators button:focus-visible {
  outline: 2px solid rgba(255, 207, 140, 0.9);
  outline-offset: 2px;
}

section {
  padding: 90px 24px;
}

.section-heading {
  max-width: var(--max-width);
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  margin: 12px 0 12px;
}

.property-details {
  padding-top: 24px;
}

.details-accordion {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.detail-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 18px 20px;
}

.detail-card summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ocean);
  list-style: none;
}

.detail-card summary::-webkit-details-marker {
  display: none;
}

.detail-card summary::after {
  content: "+";
  float: right;
  font-weight: 700;
}

.detail-card[open] summary::after {
  content: "-";
}

.detail-card p {
  margin: 12px 0 0;
  line-height: 1.6;
  color: rgba(11, 31, 42, 0.88);
}

.about-grid,
.condo-grid,
.map-grid,
.contact-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.about-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.about-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.about-media {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.about-slider {
  position: relative;
  width: 100%;
  height: 200px;
  cursor: grab;
}

.about-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease;
}

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

.about-slider.is-dragging {
  cursor: grabbing;
}

.condo-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.condo-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.condo-card img {
  transform-origin: center;
  backface-visibility: hidden;
  --amenity-scale: 1;
  width: 100%;
}

.condo-card img.amenity-contain {
  object-fit: contain;
  background: #fdf6ea;
  padding: 18px;
  display: block;
  margin: 0 auto;
}

.condo-card img.amenity-tiny {
  transform: scale(var(--amenity-scale));
}

.condo-body {
  padding: 26px 26px 10px;
}

.condo-body h3 {
  margin-top: 0;
}

.amenities {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ocean);
}

.amenities li {
  background: var(--seafoam);
  padding: 8px 12px;
  border-radius: 999px;
  text-align: center;
  color: var(--ocean);
  font-weight: 500;
}

.amenity-tag {
  width: 100%;
  background: var(--seafoam);
  padding: 8px 12px;
  border-radius: 999px;
  border: none;
  font: inherit;
  color: var(--ocean);
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.amenity-tag:hover,
.amenity-tag:focus {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(10, 61, 98, 0.12);
  background: #bfe1dd;
}

.amenity-tag-static {
  display: block;
  width: 100%;
  background: var(--seafoam);
  padding: 8px 12px;
  border-radius: 999px;
  text-align: center;
  color: var(--ocean);
  font-weight: 500;
}

.condo-actions {
  padding: 18px 24px 26px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.rates-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.rates-grid {
  display: grid;
  gap: 22px;
}

.rate-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}

.rate-card h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  color: var(--ocean);
}

.rate-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ocean);
  margin: 0;
}

.rate-value span {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(11, 31, 42, 0.6);
  margin-left: 6px;
}

.rate-card ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(11, 31, 42, 0.75);
  display: grid;
  gap: 8px;
}

.quote-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.quote-form {
  display: grid;
  gap: 14px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.quote-form input,
.quote-form select {
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(10, 61, 98, 0.2);
  font-family: inherit;
  font-size: 0.95rem;
}

.quote-form label {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(10, 61, 98, 0.82);
}

.quote-form label input,
.quote-form label select {
  margin-top: 4px;
  font-size: 0.97rem;
  letter-spacing: 0.01em;
  text-transform: none;
}

.quote-select {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  border: 1px solid rgba(10, 61, 98, 0.26);
  border-radius: 14px;
  padding: 12px 44px 12px 14px;
  box-shadow: 0 10px 18px rgba(10, 61, 98, 0.08);
  background-image:
    linear-gradient(45deg, transparent 50%, #0a3d62 50%),
    linear-gradient(135deg, #0a3d62 50%, transparent 50%),
    linear-gradient(to right, rgba(10, 61, 98, 0.08), rgba(10, 61, 98, 0.08));
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 12px) calc(50% - 2px),
    calc(100% - 36px) 50%;
  background-size: 6px 6px, 6px 6px, 1px 60%;
  background-repeat: no-repeat;
}

.quote-select:focus {
  outline: 2px solid rgba(30, 111, 146, 0.25);
  outline-offset: 2px;
  border-color: rgba(30, 111, 146, 0.65);
}

.quote-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.date-trigger {
  position: relative;
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(10, 61, 98, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 253, 0.98));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 8px 20px rgba(10, 61, 98, 0.06);
  color: rgba(10, 34, 56, 0.78);
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.date-trigger:hover,
.date-trigger:focus-visible {
  border-color: rgba(30, 111, 146, 0.42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.95), 0 10px 24px rgba(10, 61, 98, 0.1);
  outline: none;
}

.date-trigger.has-value {
  color: #0a2238;
}

.date-trigger::after {
  content: "";
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  opacity: 0.85;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a3d62' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4.5' width='18' height='16' rx='2.5'/%3E%3Cpath d='M16 2.75v4M8 2.75v4M3 9.5h18'/%3E%3C/svg%3E");
}

.date-trigger-text {
  font-size: 0.97rem;
  letter-spacing: 0.01em;
  text-transform: none;
}

.quick-booking .date-trigger {
  min-height: 20px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--ink);
}

.quick-booking .date-trigger::after {
  flex-basis: 16px;
  width: 16px;
  height: 16px;
}

.quick-booking .date-trigger:hover,
.quick-booking .date-trigger:focus-visible {
  border: none;
  box-shadow: none;
  transform: none;
}

.date-popover {
  position: absolute;
  z-index: 140;
  width: min(320px, calc(100vw - 32px));
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.date-popover.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.date-popover-card {
  border-radius: 24px;
  border: 1px solid rgba(10, 61, 98, 0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.99), rgba(246,250,253,0.98));
  box-shadow: 0 30px 70px rgba(8, 28, 44, 0.22);
  padding: 18px;
  backdrop-filter: blur(18px);
}

.date-popover-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.date-popover-title {
  margin: 0;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: var(--ink);
}

.date-popover-nav {
  border: 1px solid rgba(10, 61, 98, 0.14);
  background: rgba(255,255,255,0.9);
  color: var(--ocean);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.date-popover-weekdays,
.date-popover-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.date-popover-weekdays {
  margin-bottom: 10px;
}

.date-popover-weekdays span {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(10, 61, 98, 0.55);
}

.date-popover-empty,
.date-popover-day {
  aspect-ratio: 1;
}

.date-popover-day {
  border: none;
  border-radius: 14px;
  background: rgba(30, 111, 146, 0.08);
  color: var(--ocean);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.date-popover-day:hover,
.date-popover-day:focus-visible {
  background: rgba(30, 111, 146, 0.18);
  transform: translateY(-1px);
  outline: none;
}

.date-popover-day.is-selected {
  background: linear-gradient(135deg, #0a3d62, #1e6f92);
  color: #fff;
  box-shadow: 0 10px 18px rgba(10, 61, 98, 0.22);
}

.date-popover-day.is-disabled {
  background: rgba(11, 31, 42, 0.05);
  color: rgba(11, 31, 42, 0.28);
  cursor: not-allowed;
  transform: none;
}
.quote-summary {
  background: rgba(30, 111, 146, 0.08);
  border-radius: var(--radius-md);
  padding: 16px;
  display: grid;
  gap: 10px;
}

.quote-summary div {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
}

.quote-total {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ocean);
}

.quote-note {
  font-size: 0.85rem;
  color: rgba(11, 31, 42, 0.6);
  margin: 0;
}
.reviews-group {
  max-width: var(--max-width);
  margin: 0 auto;
}

.reviews-columns {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.reviews-columns .reviews-group {
  margin: 0;
}

.reviews-group h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  margin: 0 0 18px;
  color: var(--ocean);
}

.review-list {
  display: grid;
  gap: 22px;
}

.review-card {
  background: var(--white);
  padding: 22px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
}

.review-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--ocean);
}

.review-stars {
  letter-spacing: 0.08em;
  color: #d4a017;
  text-shadow: 0 1px 0 rgba(120, 79, 18, 0.25);
  font-size: 1.02rem;
}

.review-score {
  font-size: 0.97rem;
  letter-spacing: 0.01em;
  color: #0a3d62;
}

.review-liked {
  font-size: 0.9rem;
  color: rgba(11, 31, 42, 0.7);
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 0.85rem;
  color: rgba(11, 31, 42, 0.6);
}

.review-flag {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(11, 31, 42, 0.7);
}

.review-response {
  background: rgba(30, 111, 146, 0.08);
  border-left: 3px solid rgba(30, 111, 146, 0.35);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: rgba(11, 31, 42, 0.8);
}

.review-response strong {
  display: block;
  margin-top: 6px;
}

.reviews-cta {
  max-width: var(--max-width);
  margin: 28px auto 0;
  display: flex;
  justify-content: center;
}

.location-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.location-column h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  margin: 0 0 10px;
  color: var(--ocean);
  text-align: center;
}

.location-photos {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.location-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 240px;
}

.location-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.location-card:hover img,
.location-card:focus-within img {
  transform: scale(1.04);
}

.location-address {
  margin: 10px auto 10px;
  background: var(--white);
  padding: 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
  text-align: center;
}

.location-map {
  max-width: var(--max-width);
  margin: 12px auto 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 480px;
}

.map-section {
  padding: 0 24px 30px;
}

.locations {
  padding-top: 36px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 480px;
}

.map-grid {
  grid-template-columns: minmax(260px, 1.2fr) minmax(260px, 0.8fr);
  align-items: stretch;
}

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 320px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 320px;
}

.map-details {
  display: grid;
  gap: 18px;
}

.map-card {
  background: var(--white);
  padding: 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.map-note {
  font-size: 0.85rem;
  color: rgba(11, 31, 42, 0.6);
}

.things-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.things-inline .things-grid {
  max-width: 100%;
  grid-auto-flow: column;
  grid-auto-columns: minmax(160px, 1fr);
  grid-template-columns: none;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
}

.things-inline .thing-card {
  scroll-snap-align: start;
}

.things-inline .thing-card {
  padding: 18px;
}

.things-inline .thing-card img {
  height: 140px;
}

.thing-card {
  background: var(--white);
  padding: 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.thing-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.things-preview .things-preview-wrap {
  position: relative;
  max-height: 420px;
  overflow: hidden;
}

.things-preview .things-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(253, 252, 249, 0) 0%, rgba(246, 239, 227, 0.85) 60%, #ffffff 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 16px;
}

.gallery-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.gallery-item {
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.gallery-item:hover,
.gallery-item:focus {
  transform: translateY(-4px);
}

.gallery-preview .gallery-preview-wrap {
  position: relative;
  max-height: 686px;
  overflow: hidden;
}

.gallery-preview .gallery-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(253, 252, 249, 0) 0%, rgba(246, 239, 227, 0.8) 55%, #ffffff 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 16px;
}

.contact {
  background: linear-gradient(140deg, rgba(30, 111, 146, 0.12), rgba(255, 255, 255, 0.9));
}

.contact-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.contact-info {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: grid;
  gap: 22px;
}

.contact-info a {
  font-weight: 600;
  color: var(--ocean);
}

.contact-cta {
  margin-top: 10px;
}

.contact-form {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(10, 61, 98, 0.2);
  font-size: 1rem;
  font-family: inherit;
}

.form-status {
  margin: 0;
  min-height: 20px;
  font-size: 0.95rem;
}

.footer {
  padding: 40px 24px 60px;
  background: var(--ocean);
  color: var(--white);
  text-align: center;
  display: grid;
  gap: 16px;
}

.footer-links,
.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: grid;
  place-items: center;
}

.floating-call {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: linear-gradient(135deg, #0a3d62 0%, #1e6f92 100%);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 999px;
  box-shadow: 0 14px 26px rgba(10, 61, 98, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-family: "Playfair Display", serif;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  z-index: 150;
  backdrop-filter: blur(6px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.floating-book {
  position: fixed;
  right: 24px;
  bottom: 90px;
  background: var(--sun);
  color: var(--ocean);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 700;
  z-index: 150;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.floating-book.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.floating-call:hover,
.floating-call:focus {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(10, 61, 98, 0.34);
  filter: brightness(1.05);
}

.floating-book:hover,
.floating-book:focus {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(10, 61, 98, 0.25);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(7, 18, 26, 0.85);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 200;
}

.lightbox img {
  max-width: min(90vw, 900px);
  max-height: 80vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  cursor: grab;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox.is-dragging img {
  cursor: grabbing;
}

.lightbox-close {
  position: absolute;
  top: 32px;
  right: 32px;
  background: var(--white);
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.92);
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.lightbox-prev {
  left: 32px;
}

.lightbox-next {
  right: 32px;
}

.hidden-iframe {
  width: 0;
  height: 0;
  border: 0;
  visibility: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .quick-booking-form {
    grid-template-columns: 1fr 1fr;
  }

  .quick-booking-form .btn {
    grid-column: span 2;
  }

  .nav-cta {
    display: none;
  }

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

  .nav-menu {
    position: absolute;
    top: 70px;
    right: 24px;
    flex-direction: column;
    background: var(--white);
    padding: 18px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .map-grid {
    grid-template-columns: 1fr;
  }
}

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

  .hero-content {
    padding: 120px 20px 90px;
  }
  .hero {
    min-height: 68vh;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .hero-indicators {
    bottom: 18px;
  }

  .hero-actions {
    flex-direction: column;
  }

  section {
    padding: 70px 20px;
  }
}

.booking-hero {
  padding: 90px 24px 30px;
}

.booking-hero .section-heading h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.3vw, 3.1rem);
  letter-spacing: 0.01em;
  color: var(--ocean);
}

.booking-hero .section-heading p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slider {
    opacity: 1;
  }
}

.booking {
  padding: 40px 24px 90px;
}

.booking-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(320px, 1.4fr) minmax(280px, 0.9fr);
}

.calendar-card,
.booking-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px;
}

.booking-form-card {
  border: 1px solid rgba(10, 61, 98, 0.12);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 251, 255, 0.92) 100%);
}

.booking-form-card h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.55rem, 2vw, 2rem);
  letter-spacing: 0.02em;
  color: var(--ocean);
}

.booking-form-card .contact-form {
  padding: 0;
  margin-top: 12px;
  background: transparent;
  box-shadow: none;
}

.booking-form-card .contact-form label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(10, 61, 98, 0.78);
}

.required-asterisk {
  color: #c1121f;
  font-weight: 700;
  margin-left: 2px;
  display: inline-block;
  line-height: 1;
}

.field-label {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  white-space: nowrap;
}

.booking-form-card .contact-form input,
.booking-form-card .contact-form select,
.booking-form-card .contact-form textarea {
  border-radius: 14px;
  border: 1px solid rgba(10, 61, 98, 0.22);
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  font-size: 0.96rem;
  letter-spacing: 0.01em;
}

.booking-form-card #booking-condo {
  min-height: 52px;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 14px;
}

.booking-form-card .contact-form input:focus,
.booking-form-card .contact-form select:focus,
.booking-form-card .contact-form textarea:focus {
  outline: 2px solid rgba(30, 111, 146, 0.25);
  outline-offset: 1px;
  border-color: rgba(30, 111, 146, 0.6);
}

.booking-form-card .btn {
  width: 100%;
}

.booking-form-card .btn.primary {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.04em;
}

.calendar-header {
  margin-bottom: 20px;
}

.calendar-sync-status {
  margin: 8px 0 0;
  font-size: 0.86rem;
  color: rgba(11, 31, 42, 0.62);
}

.calendar-legend {
  margin-top: 10px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(11, 31, 42, 0.72);
}

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

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.legend-dot-available {
  background: rgba(30, 111, 146, 0.38);
}

.legend-dot-booked {
  background: rgba(179, 83, 9, 0.65);
}

.calendar-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.calendar-nav-btn {
  border: 1px solid rgba(10, 61, 98, 0.22);
  border-radius: 999px;
  background: var(--white);
  color: var(--ocean);
  padding: 8px 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.calendar-nav-btn:hover,
.calendar-nav-btn:focus {
  background: rgba(10, 61, 98, 0.08);
  border-color: rgba(10, 61, 98, 0.4);
  transform: translateY(-1px);
}

.calendar-nav-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.calendar-nav-label {
  margin: 0;
  text-align: center;
  font-weight: 700;
  color: var(--ocean);
}

.calendar {
  display: grid;
  gap: 24px;
}

.calendar-month {
  border: 1px solid rgba(10, 61, 98, 0.12);
  border-radius: var(--radius-md);
  padding: 18px;
  background: rgba(255, 255, 255, 0.85);
}

.calendar-month-header {
  font-weight: 700;
  color: var(--ocean);
  margin-bottom: 12px;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(11, 31, 42, 0.6);
  margin-bottom: 8px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.calendar-empty {
  height: 36px;
}

.calendar-day {
  border: none;
  border-radius: 10px;
  padding: 8px 0;
  background: rgba(30, 111, 146, 0.08);
  color: var(--ocean);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.calendar-day:hover,
.calendar-day:focus {
  background: rgba(30, 111, 146, 0.2);
  transform: translateY(-1px);
}

.calendar-day.is-disabled {
  background: rgba(11, 31, 42, 0.06);
  color: rgba(11, 31, 42, 0.3);
  cursor: not-allowed;
  transform: none;
}

.calendar-day.is-booked {
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(179, 83, 9, 0.24) 0 6px,
      rgba(179, 83, 9, 0.12) 6px 12px
    );
  color: rgba(92, 34, 8, 0.95);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(92, 34, 8, 0.85);
}

.calendar-day.is-selected,
.calendar-day.is-start,
.calendar-day.is-end {
  background: var(--ocean);
  color: var(--white);
}

.calendar-day.is-in-range {
  background: rgba(30, 111, 146, 0.35);
  color: var(--white);
}

.booking-note {
  color: rgba(11, 31, 42, 0.7);
  margin-top: 2px;
  margin-bottom: 18px;
  font-size: 0.94rem;
}

/* Final premium select overrides */
.quote-form select,
.booking-form-card select {
  font-weight: 600;
  color: var(--ocean);
  border-radius: 14px;
  border: 1px solid rgba(10, 61, 98, 0.28) !important;
  background-image:
    linear-gradient(180deg, #ffffff 0%, #f6fbff 100%),
    linear-gradient(180deg, rgba(10, 61, 98, 0.12) 0%, rgba(10, 61, 98, 0.28) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230a3d62' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat, no-repeat, no-repeat !important;
  background-size: 100% 100%, 1px 62%, 14px 14px !important;
  background-position: 0 0, calc(100% - 30px) 50%, calc(100% - 10px) 50% !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 8px 18px rgba(10, 61, 98, 0.11) !important;
}

.quick-booking select {
  appearance: auto;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  background: transparent;
  background-image: none !important;
  background-size: auto;
  background-position: initial;
  background-repeat: repeat;
  border: none;
  box-shadow: none;
  color: var(--ocean);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.2;
  min-height: 20px;
  padding-right: 2px;
}

.quick-booking select:focus,
.quick-booking select:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

.quick-booking select option,
.quote-form select option,
.booking-form-card select option {
  background: #ffffff;
  color: var(--ocean);
  font-weight: 600;
}

@media (max-width: 980px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 980px) {
  .calendar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}




