: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;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fdfcf9 0%, var(--sand) 45%, #ffffff 100%);
  overflow-x: hidden;
}

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;
}

.direct-book-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  background: linear-gradient(120deg, #083a5e 0%, #0e5d8f 100%);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
}

.direct-book-banner a {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.direct-book-banner-refined {
  max-width: 1380px;
  margin: -10px auto 0;
  padding: 12px 24px 18px;
  justify-content: center;
  gap: 14px;
  background: transparent;
  color: var(--ink);
  border-bottom: 1px solid rgba(10, 61, 98, 0.09);
}

.direct-book-banner-label {
  display: inline-flex;
  align-items: center;
  padding: 6px 11px;
  border: 1px solid rgba(10, 61, 98, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: rgba(10, 61, 98, 0.9);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.direct-book-banner-refined p {
  margin: 0;
  max-width: 900px;
  color: rgba(11, 31, 42, 0.8);
  font-size: 0.98rem;
  line-height: 1.55;
}

.direct-book-banner-refined a {
  color: var(--ocean);
  border-color: rgba(10, 61, 98, 0.18);
  background: rgba(255, 255, 255, 0.88);
}

.direct-book-banner-refined a:hover {
  background: rgba(10, 61, 98, 0.06);
}

.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: 1320px;
  margin: 0 auto;
  padding: 16px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--ocean);
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  gap: 22px;
  align-items: center;
  font-weight: 500;
  margin-left: auto;
  margin-right: auto;
}

.nav-menu a {
  position: relative;
  white-space: nowrap;
}

.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;
  white-space: nowrap;
  margin-left: 18px;
}

.nav-phone {
  font-weight: 700;
  color: var(--ocean);
  white-space: nowrap;
}

.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));
}

.booking-form-card select.is-placeholder {
  color: rgba(10, 61, 98, 0.6);
  font-weight: 500;
}

.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-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(11, 31, 42, 0.6);
  margin-left: 6px;
  text-decoration: none;
  border-bottom: 1px solid rgba(11, 31, 42, 0.28);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.rate-link:hover,
.rate-link:focus-visible {
  color: var(--ocean);
  border-bottom-color: var(--ocean);
}

.rate-card ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(11, 31, 42, 0.75);
  display: grid;
  gap: 8px;
}

.rate-subline {
  margin: -8px 0 0;
  color: rgba(11, 31, 42, 0.72);
  font-size: 0.98rem;
}

.rate-link {
  color: var(--ocean-light);
  font-weight: 600;
}

.rate-link:hover,
.rate-link:focus {
  text-decoration: underline;
}

.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: linear-gradient(160deg, rgba(248, 252, 255, 0.95) 0%, rgba(237, 246, 252, 0.9) 100%);
  border: 1px solid rgba(10, 61, 98, 0.12);
  border-radius: var(--radius-md);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  padding: 16px;
  display: grid;
  gap: 10px;
}

.quote-summary div {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
}

.payment-breakdown {
  margin-top: -4px;
  background: linear-gradient(165deg, rgba(248, 252, 255, 0.94) 0%, rgba(237, 246, 252, 0.88) 100%);
  border: 1px solid rgba(10, 61, 98, 0.14);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
  padding: 14px 16px;
  display: grid;
  gap: 8px;
}

.payment-breakdown-title {
  margin: 0 0 2px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(10, 61, 98, 0.78);
  font-weight: 700;
}

.payment-breakdown div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.94rem;
}

.payment-breakdown-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(10, 61, 98, 0.05), rgba(10, 61, 98, 0.22), rgba(10, 61, 98, 0.05));
  margin: 2px 0;
}

.payment-breakdown strong {
  color: var(--ocean);
}

.payment-breakdown-subtitle {
  margin: 6px 0 4px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(10, 61, 98, 0.72);
}

.payment-schedule-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.payment-schedule-list li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.9rem;
}

.payment-schedule-list li span em {
  margin-left: 6px;
  font-style: normal;
  color: rgba(10, 61, 98, 0.62);
  font-size: 0.8rem;
}

.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;
}

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

.local-link-card,
.local-info-card,
.local-condo-card,
.local-feature-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 61, 89, 0.12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.local-link-card {
  padding: 22px;
  display: grid;
  gap: 10px;
}

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

.local-link-card p,
.local-info-card p,
.local-condo-card p,
.local-feature-card p {
  margin: 0;
  color: rgba(11, 31, 42, 0.72);
  line-height: 1.7;
}

.local-link-card a,
.local-info-card a {
  color: var(--ocean);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.local-hero {
  max-width: 1360px;
  margin: 26px auto 0;
  min-height: 430px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: clamp(24px, 5vw, 56px);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  position: relative;
}

.local-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 42, 67, 0.78), rgba(5, 42, 67, 0.22));
}

.local-hero-panel {
  position: relative;
  max-width: 720px;
  color: #fff;
}

.local-hero-panel h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 0.98;
  margin: 10px 0 18px;
}

.local-hero-panel p {
  max-width: 660px;
  line-height: 1.7;
  font-size: 1.05rem;
}

.local-hero-panel .eyebrow {
  color: rgba(255, 255, 255, 0.84);
}

.local-hero-nmb {
  background-image: url("../images/beachwalk-main-photo.jpg");
}

.local-hero-cherry {
  background-image: url("../images/beachwalk-main-photo.jpg");
}

.local-hero-windy {
  background-image: url("../images/windy-hill-dunes-view.webp");
}

.local-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.local-guide,
.local-condo-compare {
  padding: 70px 24px 0;
}

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

.local-info-card {
  padding: 24px;
  display: grid;
  gap: 12px;
}

.local-condo-card,
.local-feature-card {
  overflow: hidden;
}

.local-condo-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.local-condo-card > div {
  padding: 24px;
  display: grid;
  gap: 14px;
}

.local-feature-card {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 1.05fr);
  align-items: stretch;
}

.local-feature-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.local-feature-card > div {
  padding: clamp(28px, 5vw, 56px);
  display: grid;
  align-content: center;
  gap: 14px;
}

@media (max-width: 760px) {
  .local-hero {
    margin-top: 0;
    border-radius: 0;
    min-height: 520px;
  }

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

  .local-feature-card img {
    min-height: 260px;
  }
}

.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;
}

.condos .map-section {
  width: min(100%, 1100px);
  margin: 30px auto 0;
  padding: 0;
}

.condos .map-frame {
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.condos .map-frame iframe {
  min-height: 0;
  height: 100%;
}

@media (max-width: 900px) {
  .condos .map-frame {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 640px) {
  .condos .map-frame {
    aspect-ratio: auto;
    min-height: 360px;
  }

  .condos .map-frame iframe {
    min-height: 360px;
  }
}

.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 .contact-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.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;
}

.message-owner .contact-info p {
  margin: 0;
}

.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-links a {
  white-space: nowrap;
}

.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;
  left: 24px;
  right: auto;
  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) {
  .nav-phone,
  .quick-booking {
    display: none !important;
  }

  .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) {
  .direct-book-banner {
    flex-direction: column;
    gap: 6px;
    font-size: 0.8rem;
    padding: 10px 12px;
  }

  .direct-book-banner-refined {
    margin-top: -6px;
    padding: 10px 16px 16px;
    align-items: flex-start;
    gap: 8px;
  }

  .direct-book-banner-refined p {
    font-size: 0.92rem;
  }

  .nav {
    width: 100%;
    padding: 12px 14px;
    gap: 8px;
  }

  .logo {
    font-size: clamp(0.94rem, 7.2vw, 1.6rem);
    line-height: 1.05;
    max-width: calc(100vw - 84px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-toggle {
    flex: 0 0 auto;
    margin-left: auto;
  }

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

  .hero-slide {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }

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

  .hero-content {
    padding: 105px 14px 88px;
    max-width: min(96vw, 440px);
  }
  .hero {
    min-height: 80vh;
  }

  .hero-content h1 {
    font-size: clamp(1.75rem, 8.2vw, 2.45rem);
    line-height: 1.05;
    margin: 8px 0 8px;
  }

  .hero-subtitle {
    font-size: clamp(1rem, 5.2vw, 1.18rem);
    line-height: 1.28;
    margin-bottom: 22px;
  }

  .hero-indicators {
    bottom: 18px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .btn {
    width: min(100%, 390px);
  }

  section {
    padding: 70px 20px;
  }
}

.booking-hero {
  padding: 90px 24px 30px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(120deg, rgba(10, 61, 98, 0.16) 0%, rgba(255, 255, 255, 0.28) 45%, rgba(255, 207, 140, 0.2) 100%);
}

.booking-hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.booking-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  opacity: 0.58;
  transform: scale(1.03);
  transition: opacity 0.45s ease, transform 0.45s ease, filter 0.45s ease;
  filter: saturate(1.05);
}

.booking-hero .section-heading {
  position: relative;
  z-index: 2;
}

.booking-hero .section-heading p,
.booking-hero .section-heading .eyebrow {
  color: rgba(11, 31, 42, 0.92);
}

.booking-hero::before,
.booking-hero::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 999px;
  opacity: 0.28;
  pointer-events: none;
  filter: blur(22px);
  animation: bookingFloat 10s ease-in-out infinite;
  z-index: 1;
}

.booking-hero::before {
  top: -90px;
  left: -120px;
  background: rgba(30, 111, 146, 0.48);
}

.booking-hero::after {
  top: -110px;
  right: -90px;
  background: rgba(255, 207, 140, 0.54);
  animation-delay: 1.7s;
}

.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;
}

.booking-hero-badges {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.booking-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(10, 61, 98, 0.18);
  background: rgba(255, 255, 255, 0.74);
  color: rgba(10, 61, 98, 0.9);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(10, 61, 98, 0.09);
}

.booking-hero-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(145deg, #1e6f92 0%, #0a3d62 100%);
  box-shadow: 0 0 0 2px rgba(30, 111, 146, 0.2);
}

@media (prefers-reduced-motion: reduce) {
  .hero-slider {
    opacity: 1;
  }

  .booking-hero::before,
  .booking-hero::after,
  .booking-card-elevated {
    animation: none !important;
  }

  .booking-card-elevated:hover {
    transform: none;
  }
}

.booking {
  padding: 40px 24px 90px;
}

.booking-layout {
  max-width: min(1480px, 96vw);
  margin: 0 auto;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(760px, 1.75fr) minmax(360px, 0.85fr);
}

.calendar-card,
.booking-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px;
}

.booking-card-elevated {
  position: relative;
  transform: translateY(0);
  transition: transform 0.34s ease, box-shadow 0.34s ease;
  animation: bookingLiftIn 0.7s ease both;
}

.booking-card-elevated:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px rgba(10, 61, 98, 0.17);
}

.booking-experience-divider {
  width: 100%;
  height: 1px;
  margin: 16px 0 18px;
  background: linear-gradient(
    90deg,
    rgba(10, 61, 98, 0) 0%,
    rgba(10, 61, 98, 0.26) 20%,
    rgba(10, 61, 98, 0.26) 80%,
    rgba(10, 61, 98, 0) 100%
  );
}

.booking-experience-gallery {
  width: 100%;
  margin: 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(255, 219, 163, 0.2) 0%, rgba(255, 219, 163, 0) 54%),
    radial-gradient(140% 100% at 0% 100%, rgba(111, 181, 214, 0.16) 0%, rgba(111, 181, 214, 0) 62%),
    linear-gradient(170deg, rgba(255, 255, 255, 0.99) 0%, rgba(241, 248, 253, 0.96) 100%);
  border-radius: 26px;
  border: 1px solid rgba(10, 61, 98, 0.14);
  box-shadow: 0 24px 52px rgba(10, 61, 98, 0.16);
  padding: 26px;
}

.booking-experience-gallery::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(30, 111, 146, 0.2) 0%, rgba(30, 111, 146, 0) 70%);
  pointer-events: none;
}

.booking-experience-heading {
  position: relative;
  z-index: 1;
}

.booking-experience-heading .eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(10, 61, 98, 0.15);
  background: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.22em;
}

.booking-experience-heading h2 {
  margin: 10px 0 8px;
  font-size: clamp(1.85rem, 2.45vw, 2.55rem);
  letter-spacing: -0.01em;
  color: var(--ocean);
}

.booking-experience-heading p {
  margin: 0;
  max-width: 760px;
  color: rgba(11, 31, 42, 0.76);
  font-size: 1.04rem;
}

.booking-gallery-stage {
  margin-top: 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.booking-gallery-figure {
  margin: 0;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(10, 61, 98, 0.18);
  box-shadow: 0 26px 48px rgba(10, 61, 98, 0.24);
  min-height: 380px;
  background: #dbe8f2;
}

.booking-gallery-figure img {
  width: 100%;
  height: clamp(320px, 40vw, 520px);
  object-fit: cover;
  display: block;
  filter: saturate(1.02);
  transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.36s ease;
}

.booking-gallery-figure:hover img {
  transform: scale(1.022);
  filter: saturate(1.1);
}

.booking-gallery-figure figcaption {
  position: absolute;
  left: 18px;
  right: auto;
  bottom: 18px;
  max-width: min(72%, 520px);
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(130deg, rgba(8, 43, 76, 0.58) 0%, rgba(10, 61, 98, 0.38) 100%);
  color: rgba(255, 255, 255, 0.96);
  font-family: "Playfair Display", serif;
  font-size: clamp(0.9rem, 1.22vw, 1.02rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  backdrop-filter: blur(4px);
  box-shadow: 0 8px 18px rgba(3, 20, 36, 0.2);
  text-shadow: 0 2px 10px rgba(6, 24, 44, 0.45);
}

.booking-gallery-nav {
  border: 1px solid rgba(10, 61, 98, 0.28);
  background: rgba(255, 255, 255, 0.94);
  color: rgba(10, 61, 98, 0.92);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  font-size: 1.72rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 22px rgba(10, 61, 98, 0.16);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.booking-gallery-nav:hover,
.booking-gallery-nav:focus {
  background: rgba(10, 61, 98, 0.1);
  border-color: rgba(10, 61, 98, 0.46);
  box-shadow: 0 16px 28px rgba(10, 61, 98, 0.22);
  transform: translateY(-1px);
}

.booking-gallery-dots {
  margin-top: 16px;
  display: flex;
  gap: 9px;
  justify-content: center;
  flex-wrap: wrap;
}

.booking-gallery-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 0;
  background: rgba(10, 61, 98, 0.26);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.booking-gallery-dot.is-active {
  background: rgba(10, 61, 98, 0.9);
  transform: scale(1.24);
}

.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);
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.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: 48px;
  font-size: 0.98rem;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 12px;
}

.booking-form-card #booking-payment-option {
  min-height: 50px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 12px;
  border: 1px solid rgba(10, 61, 98, 0.26) !important;
  background:
    linear-gradient(180deg, #ffffff 0%, #f5faff 100%),
    linear-gradient(90deg, rgba(10, 61, 98, 0.06), rgba(10, 61, 98, 0));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 6px 14px rgba(10, 61, 98, 0.08);
}

.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-field-attention {
  animation: bookingAttentionPulse 1.35s ease;
}

@keyframes bookingAttentionPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(194, 132, 48, 0.35);
    border-color: rgba(194, 132, 48, 0.45);
  }
  45% {
    box-shadow: 0 0 0 10px rgba(194, 132, 48, 0);
    border-color: rgba(194, 132, 48, 0.78);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(194, 132, 48, 0);
    border-color: inherit;
  }
}

.booking-form-card .btn {
  width: 100%;
}

.field-inline-status {
  margin: -2px 0 8px;
  min-height: 1.1em;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
  text-transform: none;
  color: rgba(10, 61, 98, 0.62);
}

.field-inline-status[data-tone="ok"] {
  color: #0f766e;
}

.field-inline-status[data-tone="warn"] {
  color: #b45309;
}

.field-inline-status[data-tone="neutral"] {
  color: rgba(10, 61, 98, 0.62);
}

.booking-trust-strip {
  margin: 2px 0 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.booking-trust-strip span {
  border: 1px solid rgba(30, 111, 146, 0.24);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(10, 61, 98, 0.86);
  background: rgba(236, 247, 255, 0.8);
}

.booking-mobile-actionbar {
  display: none;
}

.guest-breakdown {
  border: 1px solid rgba(10, 61, 98, 0.18);
  border-radius: 14px;
  padding: 12px 14px;
  margin: 0;
  display: grid;
  gap: 10px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 251, 255, 0.9) 100%);
}

.guest-breakdown .field-label {
  font-size: 0.78rem;
}

.guest-breakdown > label {
  display: grid;
  gap: 6px;
}

.guest-breakdown select {
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(10, 61, 98, 0.24);
  background:
    linear-gradient(180deg, #ffffff 0%, #f6fbff 100%),
    linear-gradient(180deg, rgba(10, 61, 98, 0.12) 0%, rgba(10, 61, 98, 0.28) 100%);
  font-weight: 500;
  color: var(--ocean);
}

.guest-under22-field {
  background: linear-gradient(160deg, rgba(233, 244, 255, 0.85) 0%, rgba(245, 250, 255, 0.92) 100%);
  border: 1px solid rgba(30, 111, 146, 0.22);
  border-radius: 14px;
  padding: 10px 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.guest-breakdown > label.guest-under22-field {
  margin: 0;
}

.guest-breakdown > label.guest-under22-field:first-of-type {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.guest-breakdown > label.guest-under22-field + label.guest-under22-field {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.guest-count-combined {
  background: linear-gradient(160deg, rgba(233, 244, 255, 0.85) 0%, rgba(245, 250, 255, 0.92) 100%);
  border: 1px solid rgba(30, 111, 146, 0.22);
  border-radius: 14px;
  padding: 10px 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  display: grid;
  gap: 0;
}

.guest-count-row {
  display: grid;
  gap: 6px;
  margin: 0;
}

.guest-count-row + .guest-count-row {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(30, 111, 146, 0.22);
}

.guest-under22-select {
  min-height: 48px !important;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.guest-under22-hint {
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  text-transform: none;
  color: rgba(10, 61, 98, 0.66);
}

.guest-breakdown-note {
  margin: 0;
  font-size: 0.82rem;
  text-transform: none;
  letter-spacing: normal;
  color: rgba(10, 61, 98, 0.72);
}

.guest-total {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ocean);
  text-transform: none;
  letter-spacing: normal;
}

.itex-account-field {
  background: linear-gradient(160deg, rgba(233, 244, 255, 0.75) 0%, rgba(245, 250, 255, 0.9) 100%);
  border: 1px solid rgba(30, 111, 146, 0.2);
  border-radius: 14px;
  padding: 10px 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.itex-account-field[hidden] {
  display: none !important;
}

.itex-account-hint {
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(10, 61, 98, 0.68);
}

.booking-form-card .btn.primary {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.04em;
}

.mobile-condo-picker {
  display: none;
  margin: 0 0 14px;
}

.mobile-condo-picker .mobile-condo-label {
  display: grid;
  gap: 8px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(10, 61, 98, 0.78);
}

.mobile-condo-picker select {
  min-height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(10, 61, 98, 0.24);
  background: rgba(255, 255, 255, 0.98);
  color: var(--ocean);
  font-size: 0.98rem;
  font-weight: 600;
}

@media (min-width: 981px) {
  .mobile-condo-picker {
    display: none !important;
  }

  .form-condo-label {
    display: grid !important;
  }
}

@media (max-width: 980px) {
  .booking-mobile-actionbar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    z-index: 25;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px;
    border-radius: 14px;
    border: 1px solid rgba(10, 61, 98, 0.16);
    background: rgba(246, 251, 255, 0.96);
    box-shadow: 0 10px 28px rgba(11, 31, 42, 0.2);
    backdrop-filter: blur(8px);
  }

  .booking-mobile-actionbar .btn {
    min-height: 40px;
    padding: 10px 12px;
    font-size: 0.82rem;
    letter-spacing: 0.03em;
  }

  .booking {
    padding-bottom: 92px;
  }
}
.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);
}

.legend-dot-turnover {
  background: rgba(10, 61, 98, 0.62);
}

.calendar-season-note {
  margin: 10px 0 0;
  font-size: 0.84rem;
  color: rgba(10, 61, 98, 0.9);
}

.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;
}

.booking-map-desktop {
  margin-top: 18px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(10, 61, 98, 0.16);
  box-shadow: 0 12px 28px rgba(10, 61, 98, 0.12);
  min-height: 460px;
  display: flex;
}

.booking-map-desktop iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
  display: block;
  flex: 1 1 auto;
}

.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-turnover-locked {
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(10, 61, 98, 0.2) 0 6px,
      rgba(10, 61, 98, 0.1) 6px 12px
    );
  color: rgba(10, 61, 98, 0.92);
  text-decoration: none;
}

.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;
}

.booking-policy-note {
  margin: 10px 2px 0;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(10, 61, 98, 0.2);
  background: rgba(236, 245, 252, 0.85);
  color: rgba(11, 31, 42, 0.84);
  font-size: 0.86rem;
  line-height: 1.5;
}

.booking-deposit-note {
  margin: 8px 2px 0;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(151, 113, 75, 0.28);
  background: rgba(255, 247, 234, 0.86);
  color: rgba(79, 47, 15, 0.9);
  font-size: 0.86rem;
  line-height: 1.52;
}

.processing-fee-options,
.terms-consent {
  border: 1px solid rgba(10, 61, 98, 0.18);
  border-radius: 14px;
  padding: 12px 14px;
  margin: 0;
  display: grid;
  gap: 10px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 251, 255, 0.9) 100%);
}

.processing-fee-note,
.terms-consent-copy {
  margin: 0;
  font-size: 0.82rem;
  text-transform: none;
  letter-spacing: normal;
  color: rgba(10, 61, 98, 0.72);
}

.checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.86rem;
  letter-spacing: normal;
  text-transform: none;
  color: var(--ink);
}

.checkbox-line input[type="checkbox"] {
  width: 17px;
  height: 17px;
  margin-top: 2px;
}

.terms-consent-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.terms-consent-links a {
  color: var(--ocean);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.checkbox-row {
  display: grid;
  grid-template-columns: 24px auto;
  grid-template-areas:
    "check link"
    "desc desc";
  align-items: center;
  column-gap: 10px;
  row-gap: 6px;
}

.checkbox-row .checkbox-line {
  grid-area: check;
  margin: 0;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkbox-row .checkbox-line input[type="checkbox"] {
  margin: 0;
}

.checkbox-inline-link {
  grid-area: link;
  justify-self: start;
  color: var(--ocean);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  line-height: 1.2;
}

.checkbox-inline-link:hover,
.checkbox-inline-link:focus-visible {
  color: #0f5e95;
}

.checkbox-description {
  grid-area: desc;
  margin: 0;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(10, 61, 98, 0.85);
}

@media (max-width: 640px) {
  .checkbox-row {
    grid-template-columns: 24px 1fr;
    grid-template-areas:
      "check link"
      "desc desc";
  }

  .checkbox-inline-link {
    white-space: normal;
  }
}

.terms-contract {
  max-width: 1100px;
  margin: 0 auto;
}

.contract-line {
  margin: 0 0 9px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(11, 31, 42, 0.94);
}

.contract-signature-card {
  margin-top: 18px;
  border: 1px solid rgba(10, 61, 98, 0.2);
  border-radius: 14px;
  padding: 14px 16px;
  background: rgba(236, 245, 252, 0.8);
}

.contract-signature-card h4 {
  margin: 0 0 10px;
  color: var(--ocean);
  font-family: "Playfair Display", serif;
}

.contract-signature-card p {
  margin: 0 0 8px;
}

.contract-signature-note {
  font-size: 0.85rem;
  color: rgba(10, 61, 98, 0.74);
}

/* Final premium select overrides */
.quote-form select,
.booking-form-card select {
  font-weight: 600;
  color: #123d5f;
  border-radius: 14px;
  border: 1px solid rgba(10, 61, 98, 0.32) !important;
  min-height: 52px;
  padding-right: 52px;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(243, 249, 254, 0.98) 100%),
    radial-gradient(circle at 15% 10%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 46%),
    linear-gradient(180deg, rgba(179, 145, 88, 0.26) 0%, rgba(10, 61, 98, 0.24) 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='%23123d5f' 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, no-repeat !important;
  background-size: 100% 100%, 100% 100%, 1px 62%, 14px 14px !important;
  background-position: 0 0, 0 0, calc(100% - 34px) 50%, calc(100% - 12px) 50% !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -1px 0 rgba(10, 61, 98, 0.06),
    0 8px 18px rgba(10, 61, 98, 0.11) !important;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.booking-form-card select:hover {
  border-color: rgba(10, 61, 98, 0.52) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(10, 61, 98, 0.08),
    0 12px 26px rgba(10, 61, 98, 0.16) !important;
  transform: translateY(-1px);
}

.booking-form-card select:focus,
.booking-form-card select:focus-visible {
  outline: none !important;
  border-color: rgba(24, 107, 145, 0.78) !important;
  box-shadow:
    0 0 0 3px rgba(179, 145, 88, 0.24),
    0 12px 28px rgba(10, 61, 98, 0.17) !important;
  transform: translateY(-1px);
}

.booking-form-card select:disabled {
  cursor: not-allowed;
  color: rgba(18, 61, 95, 0.56);
  border-color: rgba(10, 61, 98, 0.2) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
}

.booking-form-card select.is-placeholder {
  color: rgba(18, 61, 95, 0.74);
}

.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-hero,
  .booking,
  .booking-layout {
    max-width: 100%;
    overflow-x: visible;
  }

  .booking-hero {
    padding: 68px 12px 20px;
  }

  .booking-hero-media {
    background: linear-gradient(130deg, rgba(10, 61, 98, 0.24), rgba(255, 255, 255, 0.16));
  }

  .booking-hero-media img {
    object-fit: cover;
    object-position: center center;
    transform: scale(1.01);
    opacity: 0.54;
  }

  .booking-layout {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    gap: 16px;
  }

  .calendar-card,
  .booking-form-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 16px;
    border-radius: 18px;
  }

  .booking-form-card .contact-form input,
  .booking-form-card .contact-form select,
  .booking-form-card .contact-form textarea {
    font-size: 16px;
  }

  .calendar-card {
    order: 1 !important;
  }

  .booking-form-card {
    order: 2 !important;
  }

  .mobile-condo-picker {
    display: block;
    margin-bottom: 18px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95) 0%, rgba(241, 248, 254, 0.92) 100%);
    border: 1px solid rgba(10, 61, 98, 0.14);
    border-radius: 14px;
    padding: 12px;
    box-shadow: 0 10px 24px rgba(10, 61, 98, 0.08);
  }

  .form-condo-label {
    display: none !important;
  }

  .mobile-condo-picker .mobile-condo-label {
    gap: 10px;
  }

  .mobile-condo-picker .field-label {
    font-size: 0.76rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(10, 61, 98, 0.82);
  }

  .mobile-condo-picker select {
    min-height: 50px;
    border-radius: 12px;
    border: 1px solid rgba(10, 61, 98, 0.2);
    background: linear-gradient(180deg, #ffffff 0%, #f4f9fd 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 8px 18px rgba(10, 61, 98, 0.09);
  }

  .booking-map-desktop {
    display: none;
  }

  .booking-experience-divider {
    width: calc(100% - 24px);
    margin: 14px auto 12px;
  }

  .booking-experience-gallery {
    width: calc(100% - 24px);
    margin: 0 auto;
    padding: 14px;
    border-radius: 18px;
  }

  .booking-gallery-stage {
    position: relative;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .booking-gallery-figure figcaption {
    left: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
    white-space: normal;
    font-size: 0.88rem;
    line-height: 1.2;
  }

  .booking-gallery-nav {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 18px rgba(10, 61, 98, 0.16);
  }

  .booking-gallery-nav.prev {
    left: 10px;
  }

  .booking-gallery-nav.next {
    right: 10px;
    margin-top: 0;
  }
}

@media (min-width: 980px) {
  .calendar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Premium booking calendar upgrade */

.calendar-month {
  border: 1px solid rgba(10, 61, 98, 0.14);
  border-radius: 18px;
  padding: 16px 14px 14px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 251, 255, 0.94) 100%);
  overflow: hidden;
}

.calendar-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 7px;
}

.calendar-empty {
  height: 52px;
}

.calendar-day {
  min-height: 52px;
  min-width: 0;
  border-radius: 12px;
  padding: 5px 4px 4px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 2px;
  border: 1px solid transparent;
  background: rgba(30, 111, 146, 0.08);
  overflow: hidden;
}

.calendar-day-number {
  font-size: 0.92rem;
  line-height: 1;
  font-weight: 700;
}

.calendar-day-price {
  font-size: 0.62rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: rgba(10, 61, 98, 0.86);
  max-width: 100%;
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
}

.calendar-day.is-disabled .calendar-day-price {
  color: rgba(11, 31, 42, 0.34);
}

.calendar-day.is-booked .calendar-day-price {
  color: rgba(109, 48, 3, 0.88);
}

.calendar-day.is-turnover-locked .calendar-day-price {
  color: rgba(10, 61, 98, 0.9);
}

.calendar-day.is-selected,
.calendar-day.is-start,
.calendar-day.is-end {
  background: linear-gradient(145deg, #0a3d62 0%, #114f7a 100%);
  color: var(--white);
  border-color: rgba(10, 61, 98, 0.72);
}

.calendar-day.is-selected .calendar-day-price,
.calendar-day.is-start .calendar-day-price,
.calendar-day.is-end .calendar-day-price {
  color: rgba(255, 255, 255, 0.9);
}

.calendar-day.is-in-range {
  background: linear-gradient(145deg, rgba(30, 111, 146, 0.26) 0%, rgba(30, 111, 146, 0.34) 100%);
  border-color: rgba(30, 111, 146, 0.36);
  color: #08324f;
}

.calendar-day.is-in-range .calendar-day-price {
  color: rgba(8, 50, 79, 0.82);
}

.calendar-day:hover,
.calendar-day:focus {
  transform: none;
}

.calendar-selection-summary {
  margin-top: 18px;
  border: 1px solid rgba(10, 61, 98, 0.14);
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(244, 251, 255, 0.92));
  padding: 16px;
}

.calendar-selection-summary h3 {
  margin: 0 0 6px;
  color: var(--ocean);
  font-family: "Playfair Display", serif;
}

.calendar-selection-summary p {
  margin: 0;
  color: rgba(11, 31, 42, 0.72);
  font-size: 0.92rem;
}

.selection-nightly-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  max-height: 180px;
  overflow: auto;
}

.selection-nightly-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 10px;
  border-radius: 10px;
  background: rgba(30, 111, 146, 0.08);
  color: var(--ink);
  font-size: 0.9rem;
}

.selection-nightly-total {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed rgba(10, 61, 98, 0.24);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--ocean);
}

.house-ops {
  padding: 34px 24px 20px;
}

.house-ops-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.house-ops-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(244, 251, 255, 0.95));
  border: 1px solid rgba(10, 61, 98, 0.14);
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(10, 61, 98, 0.09);
  padding: 20px 20px 18px;
}

.house-ops-card h3 {
  margin: 0 0 10px;
  color: var(--ocean);
  font-family: "Playfair Display", serif;
}

.house-ops-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: rgba(11, 31, 42, 0.92);
}

.house-ops-card-wide {
  grid-column: 1 / -1;
}

.house-ops-note {
  margin: 12px 0 0;
  font-size: 0.92rem;
  color: rgba(11, 31, 42, 0.76);
  border-top: 1px dashed rgba(10, 61, 98, 0.22);
  padding-top: 10px;
}

@media (max-width: 980px) {
  .house-ops-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .booking {
    padding: 22px 10px 56px;
  }

  .booking-hero {
    padding: 62px 10px 14px;
  }

  .booking-hero .section-heading {
    margin-bottom: 12px;
  }

  .booking-hero .section-heading h1 {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
    line-height: 1.12;
  }

  .booking-hero .section-heading p {
    font-size: 0.96rem;
    line-height: 1.35;
  }

  .booking-hero-badges {
    gap: 8px;
  }

  .booking-hero-badge {
    font-size: 0.7rem;
    padding: 6px 11px;
  }

  .booking-gallery-figure {
    border-radius: 16px;
  }

  .booking-gallery-figure img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .terms-consent,
  .guest-breakdown,
  .itex-account-field {
    padding: 10px 10px;
    border-radius: 12px;
  }

  .checkbox-inline-link {
    font-size: 0.98rem;
  }

  .checkbox-description {
    font-size: 0.82rem;
    line-height: 1.35;
    letter-spacing: 0.03em;
  }

  .calendar-month {
    padding: 12px 10px 10px;
  }

  .calendar-weekdays {
    margin-bottom: 6px;
    font-size: 0.78rem;
  }

  .calendar-grid {
    gap: 4px;
  }

  .calendar-empty {
    height: 46px;
  }

  .calendar-day {
    min-height: 50px;
    padding: 4px 2px 4px;
    gap: 1px;
    border-radius: 10px;
  }

  .calendar-day-number {
    font-size: 0.9rem;
  }

  .calendar-day-price {
    font-size: 0.68rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: 0;
    width: auto;
    max-width: 100%;
    text-align: center;
    display: block;
    white-space: nowrap;
    overflow: visible;
  }
}






.booking-plan-link {
  margin: -8px 0 12px;
}

.booking-plan-link a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(10, 61, 98, 0.95);
  font-weight: 700;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(10, 61, 98, 0.08);
  border: 1px solid rgba(10, 61, 98, 0.14);
  transition: transform 0.24s ease, background 0.24s ease;
}

.booking-plan-link a::after {
  content: ">";
  font-weight: 700;
}

.booking-plan-link a:hover {
  transform: translateY(-1px);
  background: rgba(10, 61, 98, 0.12);
}

@keyframes bookingLiftIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bookingFloat {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(8px) translateX(3px);
  }
}

.payment-plan-page {
  padding-bottom: 70px;
}

.guest-auth-wrap {
  min-height: calc(100vh - 260px);
  display: grid;
  place-items: center;
  padding: 36px 24px 70px;
}

.guest-auth-card {
  width: min(560px, 100%);
  max-width: 560px;
  margin: 0 auto;
}

.guest-auth-card .contact-form {
  max-width: 480px;
  margin: 0 auto;
}

.guest-auth-card .section-heading {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.payment-plan-hero {
  padding-bottom: 24px;
}

.guest-portal-hero {
  max-width: var(--max-width);
  margin: 18px auto 24px;
  border-radius: 28px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 28px 58px rgba(10, 61, 98, 0.26);
}

.guest-portal-hero-overlay {
  padding: 54px 34px;
  background: linear-gradient(120deg, rgba(8, 31, 51, 0.44) 0%, rgba(8, 31, 51, 0.22) 60%, rgba(8, 31, 51, 0.16) 100%);
  position: relative;
}

.guest-portal-hero .section-heading {
  margin: 0;
  text-align: left;
  color: #fff;
}

.guest-portal-hero .eyebrow,
.guest-portal-hero p,
.guest-portal-hero h1 {
  color: #fff;
}

.guest-portal-hero .eyebrow {
  letter-spacing: 0.2em;
  font-weight: 700;
}

.guest-hero-dots {
  position: absolute;
  right: 20px;
  bottom: 16px;
  display: flex;
  gap: 8px;
}

.guest-hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease;
}

.guest-hero-dot.is-active {
  background: #fff;
  transform: scale(1.22);
}

.guest-portal-layout {
  align-items: stretch;
}

.guest-portal-access {
  display: grid;
  align-content: start;
  gap: 14px;
}

.guest-portal-copy {
  margin: 0;
  color: rgba(11, 31, 42, 0.72);
}

.guest-portal-help {
  border-top: 1px solid rgba(10, 61, 98, 0.1);
  padding-top: 12px;
  display: grid;
  gap: 4px;
}

.guest-portal-help p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(11, 31, 42, 0.75);
}

.guest-portal-help a {
  color: var(--ocean);
  font-weight: 700;
  font-size: 0.93rem;
}

.guest-portal-results {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 14px;
}

.guest-portal-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.guest-portal-topline h2 {
  margin: 0;
}

.guest-portal-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.guest-tab {
  border: 1px solid rgba(10, 61, 98, 0.18);
  background: #f7fbff;
  color: #1a4768;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  cursor: pointer;
}

.guest-tab.is-active {
  background: linear-gradient(130deg, #184f7e 0%, #123f67 52%, #0e324f 100%);
  color: #fff;
  border-color: rgba(18, 63, 103, 0.35);
}

.guest-tab-panel {
  display: none;
}

.guest-tab-panel.is-active {
  display: block;
}

.guest-messages-shell {
  display: grid;
  gap: 12px;
}

.guest-messages-history {
  border: 1px solid rgba(10, 61, 98, 0.16);
  border-radius: 14px;
  background: #fcfeff;
  min-height: 280px;
  max-height: 420px;
  overflow: auto;
  padding: 12px;
  display: grid;
  gap: 10px;
}

.guest-message-empty {
  margin: 0;
  color: rgba(11, 31, 42, 0.66);
}

.guest-message-bubble {
  border-radius: 14px;
  padding: 10px 12px;
  max-width: min(88%, 620px);
}

.guest-message-bubble p {
  margin: 4px 0 0;
  line-height: 1.45;
}

.guest-message-bubble.guest {
  margin-left: auto;
  background: #173f62;
  color: #fff;
}

.guest-message-bubble.owner {
  margin-right: auto;
  background: #eef4fa;
  color: #153754;
}

.guest-message-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.78rem;
}

.guest-message-form {
  display: grid;
  gap: 10px;
}

.guest-message-form label {
  font-weight: 700;
  color: #173f62;
}

.guest-message-form textarea {
  width: 100%;
  border: 1px solid rgba(10, 61, 98, 0.2);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 1rem;
  font-family: inherit;
}

.guest-message-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.payment-plan-section {
  padding-top: 0;
}

.payment-plan-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 380px) 1fr;
  gap: 22px;
  align-items: start;
}

.payment-plan-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 24px;
}

.payment-plan-card h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-family: "Playfair Display", serif;
  color: var(--ocean);
}

.plan-header-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.plan-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(10, 61, 98, 0.1);
  color: var(--ocean);
  font-weight: 700;
}

.plan-pill[hidden] {
  display: none !important;
}

.plan-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 10px;
  margin: 10px 0 16px;
}

.plan-summary-grid div {
  background: rgba(30, 111, 146, 0.08);
  border-radius: 12px;
  padding: 10px;
  display: grid;
  gap: 4px;
}

.plan-summary-grid span {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(10, 61, 98, 0.72);
}

.plan-summary-grid strong {
  color: #103657;
}

.plan-timeline-wrap h3 {
  margin: 0 0 10px;
}

.plan-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.plan-row {
  border: 1px solid rgba(10, 61, 98, 0.16);
  border-radius: 14px;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.plan-row.is-paid {
  background: rgba(68, 153, 117, 0.09);
}

.plan-row.is-overdue {
  background: rgba(191, 82, 43, 0.1);
  border-color: rgba(191, 82, 43, 0.35);
}

.plan-row-title {
  margin: 0;
  font-weight: 700;
}

.plan-row-meta {
  margin: 4px 0 0;
  font-size: 0.84rem;
  color: rgba(11, 31, 42, 0.7);
}

.plan-row-right {
  text-align: right;
  display: grid;
  gap: 3px;
}

.plan-row-right span {
  font-size: 0.8rem;
  text-transform: capitalize;
  color: rgba(11, 31, 42, 0.72);
}

.plan-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.guest-portal-shell {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.guest-portal-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 2px;
}

.guest-portal-nav a {
  border: 1px solid rgba(10, 61, 98, 0.18);
  background: #f8fbff;
  color: #1a4768;
  border-radius: 999px;
  padding: 9px 16px;
  font-weight: 700;
  text-decoration: none;
}

.guest-portal-nav a.is-active {
  background: linear-gradient(130deg, #184f7e 0%, #123f67 52%, #0e324f 100%);
  color: #fff;
  border-color: rgba(18, 63, 103, 0.35);
}

.guest-portal-message-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 16px;
}

.guest-message-sidecard .plan-summary-grid {
  margin-top: 2px;
}

.guest-summary-tight {
  grid-template-columns: repeat(2, minmax(120px, 1fr));
}

@media (max-width: 980px) {
  .guest-portal-hero {
    margin-left: 24px;
    margin-right: 24px;
  }

  .guest-portal-hero-overlay {
    padding: 38px 24px;
  }

  .payment-plan-layout {
    grid-template-columns: 1fr;
  }

  .guest-portal-message-grid {
    grid-template-columns: 1fr;
  }

  .plan-summary-grid {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }
}

@media (max-width: 600px) {
  .guest-portal-hero {
    margin-left: 16px;
    margin-right: 16px;
    border-radius: 20px;
  }

  .guest-portal-hero-overlay {
    padding: 26px 18px;
  }

  .plan-summary-grid {
    grid-template-columns: 1fr;
  }

  .plan-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .plan-row-right {
    text-align: left;
  }

  .guest-message-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

.photo-credits-page {
  padding: 62px 28px 110px;
}

.photo-credits-page .section {
  max-width: 1240px;
  margin: 0 auto;
}

.photo-credits-page .section-heading {
  margin-bottom: 26px;
}

.photo-credits-page .section-heading h1 {
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  letter-spacing: 0.01em;
}

.photo-credits-page .section-heading p {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.photo-credits-card {
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(255, 215, 153, 0.14) 0%, rgba(255, 215, 153, 0) 56%),
    linear-gradient(168deg, rgba(255, 255, 255, 0.995) 0%, rgba(243, 250, 255, 0.965) 100%);
  border: 1px solid rgba(10, 61, 98, 0.16);
  border-radius: 24px;
  box-shadow: 0 26px 56px rgba(10, 61, 98, 0.14);
  padding: 34px;
}

.photo-credits-note {
  margin-top: 0;
  margin-bottom: 14px;
  color: rgba(11, 31, 42, 0.76);
  font-size: 1rem;
  line-height: 1.7;
}

.photo-credits-table-wrap {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid rgba(10, 61, 98, 0.14);
  background: #fff;
  margin-top: 18px;
}

.photo-credits-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 980px;
}

.photo-credits-table th,
.photo-credits-table td {
  text-align: left;
  vertical-align: top;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(10, 61, 98, 0.1);
  font-size: 0.95rem;
  line-height: 1.6;
}

.photo-credits-table th {
  background: rgba(10, 61, 98, 0.055);
  color: rgba(10, 61, 98, 0.95);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.photo-credits-table tbody tr:nth-child(even) td {
  background: rgba(247, 251, 255, 0.76);
}

.photo-credits-table tbody tr:last-child td {
  border-bottom: 0;
}

.photo-credits-table code {
  color: #0a3d62;
  font-size: 0.86rem;
  background: rgba(10, 61, 98, 0.06);
  border-radius: 8px;
  padding: 2px 6px;
  display: inline-block;
}

.photo-credits-footnote {
  margin: 20px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(10, 61, 98, 0.12);
  font-size: 0.9rem;
  color: rgba(11, 31, 42, 0.69);
}

@media (max-width: 700px) {
  .photo-credits-page {
    padding: 46px 16px 90px;
  }

  .photo-credits-card {
    padding: 20px;
    border-radius: 18px;
  }

  .photo-credits-note {
    font-size: 0.94rem;
  }
}

.booking-direct-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 8px;
}

.booking-direct-benefits span {
  display: inline-flex;
  align-items: center;
  border: 1px solid #c8d9ea;
  background: #f5f9ff;
  color: #123f67;
  border-radius: 999px;
  padding: 6px 10px;
  font: 600 0.78rem/1.2 "Manrope", "Segoe UI", sans-serif;
}

.booking-urgency-banner {
  margin: 8px 0 10px;
  border: 1px solid #bdd3e7;
  border-radius: 12px;
  background: linear-gradient(130deg, #f3f8ff 0%, #e9f2fb 100%);
  color: #184f7e;
  font: 600 0.85rem/1.35 "Manrope", "Segoe UI", sans-serif;
  padding: 10px 12px;
}

.booking-urgency-banner.is-tight {
  border-color: #e4be78;
  background: linear-gradient(130deg, #fff6e7 0%, #fbeed6 100%);
  color: #8b5b12;
}

.booking-urgency-banner.is-critical {
  border-color: #d99aa8;
  background: linear-gradient(130deg, #fff1f4 0%, #ffe7ec 100%);
  color: #962c45;
}

.booking-instant-quote {
  margin: 0 0 12px;
  border: 1px solid #cbdced;
  border-radius: 14px;
  padding: 10px 12px;
  background: #f6fafe;
}

.booking-instant-quote-title {
  font: 700 0.78rem/1 "Manrope", "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #3b6388;
  margin-bottom: 8px;
}

.booking-instant-quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.booking-instant-quote-grid span {
  display: block;
  font: 600 0.74rem/1 "Manrope", "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #5c7690;
  margin-bottom: 4px;
}

.booking-instant-quote-grid strong {
  color: #123f67;
  font: 700 0.98rem/1.2 "Manrope", "Segoe UI", sans-serif;
}

.booking-upsell-card {
  margin: 10px 0 12px;
  border: 1px solid #d2dfed;
  border-radius: 12px;
  background: #f9fcff;
  padding: 10px 12px;
}

.booking-upsell-title {
  margin: 0 0 8px;
  color: #184f7e;
  font: 700 0.86rem/1.2 "Manrope", "Segoe UI", sans-serif;
}

.booking-upsell-grid {
  display: grid;
  gap: 6px;
}

.booking-upsell-grid label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #24435f;
  font: 500 0.86rem/1.25 "Manrope", "Segoe UI", sans-serif;
}

@media (max-width: 680px) {
  .booking-instant-quote-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* Homepage luxury pass */
.hero {
  min-height: calc(100vh - 140px);
  align-items: stretch;
  cursor: default;
}

.hero-slider,
.hero-slide {
  cursor: default;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 23, 35, 0.82) 0%, rgba(7, 23, 35, 0.54) 42%, rgba(7, 23, 35, 0.16) 70%, rgba(7, 23, 35, 0.55) 100%);
}

.hero-content {
  width: min(1400px, calc(100% - 48px));
  margin: 0 auto;
  padding: 154px 0 92px;
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  text-align: left;
}

.hero-shell {
  width: min(720px, 100%);
}

.hero-shell .eyebrow {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 16px;
}

.hero-content h1 {
  font-size: clamp(3.25rem, 6vw, 5.75rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin: 0 0 18px;
  max-width: 10.5ch;
}

.hero-subtitle {
  font-size: 1.12rem;
  line-height: 1.75;
  max-width: 58ch;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  justify-content: flex-start;
  align-items: center;
  gap: 18px;
  margin-bottom: 34px;
}

.hero-actions .btn.primary {
  border-radius: 16px;
  padding: 15px 24px;
  box-shadow: 0 14px 30px rgba(8, 28, 44, 0.18);
}

.btn.link-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.btn.link-light::after {
  content: "\2192";
  font-size: 0.95rem;
}

.btn.link-light:hover,
.btn.link-light:focus {
  transform: none;
  box-shadow: none;
  color: #ffffff;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.hero-fact {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}

.hero-indicators {
  left: 50%;
  width: min(1400px, calc(100% - 48px));
  transform: translateX(-50%);
  justify-content: flex-start;
  bottom: 34px;
}

.direct-book-editorial {
  padding: 26px 24px 12px;
}

.direct-book-editorial-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 28px;
  border-radius: 24px;
  border: 1px solid rgba(10, 61, 98, 0.08);
  background:
    radial-gradient(140% 120% at 0% 0%, rgba(255, 219, 163, 0.14) 0%, rgba(255, 219, 163, 0) 46%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 254, 0.96) 100%);
  box-shadow: 0 18px 36px rgba(8, 28, 44, 0.07);
  display: grid;
  grid-template-columns: minmax(320px, 1.15fr) minmax(280px, 0.85fr);
  gap: 22px 32px;
  align-items: center;
}

.direct-book-editorial-copy h2 {
  margin: 8px 0 12px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ocean);
}

.direct-book-editorial-copy p:not(.eyebrow) {
  margin: 0;
  line-height: 1.75;
  color: rgba(11, 31, 42, 0.78);
}

.direct-book-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}

.direct-book-benefits span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(10, 61, 98, 0.12);
  background: rgba(244, 249, 252, 0.9);
  color: rgba(10, 61, 98, 0.82);
  font-size: 0.88rem;
  font-weight: 600;
}

.welcome-editorial {
  padding: 108px 24px 88px;
}

.welcome-editorial-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(420px, 1.05fr);
  gap: 42px;
  align-items: center;
}

.welcome-editorial-media {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #e8eef3;
}

.welcome-editorial-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.welcome-editorial-copy h2 {
  margin: 10px 0 20px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 12ch;
}

.welcome-editorial-copy > p {
  max-width: 62ch;
  line-height: 1.8;
  color: rgba(11, 31, 42, 0.85);
}

.welcome-editorial-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.welcome-note {
  padding-top: 18px;
  border-top: 1px solid rgba(10, 61, 98, 0.12);
}

.welcome-note-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(10, 61, 98, 0.62);
}

.welcome-note p {
  margin: 0;
  line-height: 1.65;
  color: rgba(11, 31, 42, 0.82);
}

.section-heading-split {
  max-width: 1400px;
  margin: 0 auto 42px;
  text-align: left;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 0.8fr);
  gap: 24px 48px;
  align-items: end;
}

.section-heading-split h2 {
  margin-bottom: 0;
}

.section-heading-split > p {
  margin: 0;
  line-height: 1.75;
  color: rgba(11, 31, 42, 0.78);
}

.condo-grid {
  max-width: 1400px;
  gap: 28px;
}

.condo-card {
  border-radius: 24px;
  box-shadow: 0 20px 42px rgba(8, 28, 44, 0.08);
  border: 1px solid rgba(10, 61, 98, 0.08);
}

.condo-card > a {
  display: block;
}

.condo-card > a img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.condo-body {
  padding: 30px 30px 14px;
}

.condo-kicker {
  margin: 0 0 10px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(10, 61, 98, 0.55);
  font-weight: 700;
}

.condo-body p {
  line-height: 1.7;
  color: rgba(11, 31, 42, 0.8);
}

.condo-summary {
  margin-bottom: 0;
}

.condo-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}

.condo-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(10, 61, 98, 0.12);
  background: rgba(244, 249, 252, 0.88);
  color: rgba(10, 61, 98, 0.82);
  font-size: 0.88rem;
  font-weight: 600;
}

.condo-note {
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(10, 61, 98, 0.1);
  color: rgba(11, 31, 42, 0.68);
  font-size: 0.95rem;
}

.section-heading-locations {
  margin-bottom: 34px;
}

.location-layout-editorial {
  gap: 28px;
}

.location-column-editorial {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(10, 61, 98, 0.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 42px rgba(8, 28, 44, 0.08);
  display: grid;
}

.location-card-large {
  min-height: 340px;
  box-shadow: none;
  border-radius: 0;
}

.location-card-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-section-condensed {
  margin-top: 24px;
}

.location-copy {
  padding: 28px 28px 30px;
}

.location-summary {
  margin: 0 0 18px;
  line-height: 1.72;
  color: rgba(11, 31, 42, 0.78);
}

.location-address-label {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(10, 61, 98, 0.52);
}

.condo-actions {
  padding: 0 30px 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.condo-actions .btn {
  border-radius: 16px;
}

.rates-layout {
  max-width: 1400px;
  gap: 30px;
  grid-template-columns: minmax(320px, 0.86fr) minmax(360px, 1.14fr);
}

.rates-grid {
  gap: 24px;
}

.rate-card {
  border-radius: 24px;
  border: 1px solid rgba(10, 61, 98, 0.08);
  box-shadow: 0 20px 42px rgba(8, 28, 44, 0.08);
  padding: 28px;
}

.rate-card .rate-value {
  margin: 2px 0 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 2.8vw, 2.6rem);
  line-height: 1;
}

.rate-subline {
  margin: 6px 0 0;
  line-height: 1.72;
  color: rgba(11, 31, 42, 0.76);
}

.rate-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.rate-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(10, 61, 98, 0.12);
  background: rgba(244, 249, 252, 0.88);
  color: rgba(10, 61, 98, 0.82);
  font-size: 0.88rem;
  font-weight: 600;
}

.rate-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.rate-actions .btn {
  border-radius: 16px;
}

.rate-actions .rate-link {
  margin-left: 0;
}

.quote-card {
  border-radius: 28px;
  border: 1px solid rgba(10, 61, 98, 0.08);
  box-shadow: 0 24px 48px rgba(8, 28, 44, 0.1);
  padding: 30px;
  background:
    radial-gradient(140% 120% at 100% 0%, rgba(255, 219, 163, 0.16) 0%, rgba(255, 219, 163, 0) 48%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 251, 255, 0.94) 100%);
}

.quote-card h3 {
  margin: 2px 0 0;
  font-size: clamp(2rem, 2.8vw, 2.9rem);
  line-height: 1.02;
  font-family: "Playfair Display", serif;
  color: var(--ocean);
}

.quote-card > p:not(.condo-kicker) {
  margin: 0;
  line-height: 1.75;
  color: rgba(11, 31, 42, 0.78);
}

.quote-form {
  margin-top: 6px;
  gap: 16px;
}

.quote-summary {
  border-radius: 18px;
  padding: 18px;
}

.quote-summary div {
  font-size: 0.96rem;
}

.quote-total {
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(10, 61, 98, 0.1);
}

.quote-total strong {
  font-size: 1.12rem;
}

.quote-note {
  margin: 2px 0 0;
  color: rgba(11, 31, 42, 0.62);
  font-size: 0.92rem;
  line-height: 1.6;
}

.reviews-editorial-layout {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(420px, 1.08fr);
  gap: 28px;
  align-items: stretch;
}

.review-feature {
  border-radius: 28px;
  border: 1px solid rgba(10, 61, 98, 0.08);
  box-shadow: 0 24px 48px rgba(8, 28, 44, 0.1);
  padding: 34px 34px 32px;
  background:
    radial-gradient(140% 120% at 0% 0%, rgba(255, 219, 163, 0.16) 0%, rgba(255, 219, 163, 0) 48%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.99) 0%, rgba(245, 251, 255, 0.96) 100%);
  display: grid;
  gap: 18px;
}

.review-feature-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.review-feature-quote {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ocean);
}

.review-feature-meta {
  display: grid;
  gap: 4px;
}

.review-feature-meta strong {
  color: var(--ocean);
  font-size: 1rem;
}

.review-feature-meta span,
.review-feature-note {
  color: rgba(11, 31, 42, 0.72);
  line-height: 1.72;
}

.review-residence-grid {
  display: grid;
  gap: 24px;
}

.review-residence-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(10, 61, 98, 0.08);
  border-radius: 24px;
  box-shadow: 0 20px 42px rgba(8, 28, 44, 0.08);
  padding: 28px 28px 26px;
  display: grid;
  gap: 12px;
}

.review-residence-card h3,
.review-residence-card h4 {
  margin: 0;
}

.review-residence-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  color: var(--ocean);
}

.review-residence-card h4 {
  font-size: 1.06rem;
  color: rgba(11, 31, 42, 0.92);
}

.review-residence-card p {
  margin: 0;
  line-height: 1.72;
  color: rgba(11, 31, 42, 0.78);
}

.review-residence-card .review-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(10, 61, 98, 0.1);
  background: rgba(244, 249, 252, 0.88);
  color: rgba(10, 61, 98, 0.82);
  font-size: 0.84rem;
  font-weight: 600;
}

.things-editorial-layout {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(420px, 1.08fr);
  gap: 28px;
  align-items: start;
}

.things-feature-card {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(10, 61, 98, 0.08);
  box-shadow: 0 24px 48px rgba(8, 28, 44, 0.1);
  background: rgba(255, 255, 255, 0.98);
  display: grid;
  align-self: start;
}

.things-feature-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.things-feature-copy {
  padding: 28px 28px 30px;
  display: grid;
  gap: 14px;
}

.things-feature-copy h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 2.8vw, 2.7rem);
  line-height: 1.08;
  color: var(--ocean);
}

.things-feature-copy p {
  margin: 0;
  line-height: 1.75;
  color: rgba(11, 31, 42, 0.78);
}

.things-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.things-feature-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(10, 61, 98, 0.12);
  background: rgba(244, 249, 252, 0.88);
  color: rgba(10, 61, 98, 0.82);
  font-size: 0.88rem;
  font-weight: 600;
}

.things-grid-editorial {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.things-grid-editorial .thing-card {
  border-radius: 24px;
  border: 1px solid rgba(10, 61, 98, 0.08);
  box-shadow: 0 20px 42px rgba(8, 28, 44, 0.08);
  padding: 24px 24px 26px;
}

.things-grid-editorial .thing-card img {
  height: 220px;
  border-radius: 18px;
}

.things-grid-editorial .thing-card h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
  color: var(--ocean);
}

.things-grid-editorial .thing-card p {
  margin: 0;
  line-height: 1.72;
  color: rgba(11, 31, 42, 0.78);
}

.contact-grid-editorial {
  max-width: 1400px;
  grid-template-columns: minmax(340px, 0.9fr) minmax(420px, 1.1fr);
  gap: 28px;
}

.contact-info-editorial,
.contact-form-editorial {
  border-radius: 28px;
  border: 1px solid rgba(10, 61, 98, 0.08);
  box-shadow: 0 24px 48px rgba(8, 28, 44, 0.1);
}

.contact-info-editorial {
  padding: 34px 34px 32px;
  background:
    radial-gradient(140% 120% at 0% 0%, rgba(255, 219, 163, 0.16) 0%, rgba(255, 219, 163, 0) 48%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.99) 0%, rgba(245, 251, 255, 0.96) 100%);
}

.contact-info-editorial h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 2.9vw, 3rem);
  line-height: 1.08;
  color: var(--ocean);
}

.contact-intro {
  margin: 0;
  line-height: 1.78;
  color: rgba(11, 31, 42, 0.78);
}

.contact-detail-list {
  display: grid;
  gap: 14px;
}

.contact-detail-list div {
  display: grid;
  gap: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(10, 61, 98, 0.1);
}

.contact-detail-list span {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(10, 61, 98, 0.55);
}

.contact-detail-list a,
.contact-detail-list strong {
  font-size: 1.02rem;
  color: var(--ocean);
}

.contact-form-editorial {
  padding: 32px;
}

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

.contact-form-editorial input,
.contact-form-editorial textarea {
  border-radius: 16px;
  border: 1px solid rgba(10, 61, 98, 0.16);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  padding: 14px 16px;
}

.contact-form-editorial textarea {
  min-height: 140px;
}

.contact-form-editorial .btn {
  border-radius: 16px;
}

.contact-form-note {
  margin: 0;
  line-height: 1.65;
  font-size: 0.92rem;
  color: rgba(11, 31, 42, 0.64);
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding: 124px 0 88px;
  }

  .hero-content h1 {
    max-width: none;
    font-size: clamp(2.85rem, 8vw, 4.4rem);
  }

  .hero-subtitle {
    max-width: none;
  }

  .hero-indicators {
    width: calc(100% - 32px);
  }

  .welcome-editorial {
    padding: 84px 24px 72px;
  }

  .direct-book-editorial-inner {
    grid-template-columns: 1fr;
  }

  .welcome-editorial-inner,
  .section-heading-split {
    grid-template-columns: 1fr;
  }

  .rates-layout {
    grid-template-columns: 1fr;
  }

  .location-card-large {
    min-height: 280px;
  }

  .welcome-editorial-copy h2 {
    max-width: none;
  }

  .welcome-editorial-notes {
    grid-template-columns: 1fr;
  }

  .reviews-editorial-layout {
    grid-template-columns: 1fr;
  }

  .things-editorial-layout,
  .contact-grid-editorial {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 680px) {
  .hero-content {
    text-align: left;
    padding: 112px 0 78px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .btn.primary {
    width: 100%;
  }

  .hero-facts {
    gap: 8px;
  }

  .hero-fact {
    width: 100%;
    justify-content: flex-start;
  }

  .direct-book-editorial {
    padding: 22px 16px 8px;
  }

  .direct-book-editorial-inner {
    padding: 22px 20px;
  }

  .condo-body,
  .location-copy,
  .rate-card,
  .quote-card,
  .review-feature,
  .review-residence-card,
  .things-feature-copy,
  .things-grid-editorial .thing-card,
  .contact-info-editorial,
  .contact-form-editorial {
    padding: 24px 22px 24px;
  }

  .condo-actions {
    padding: 0 22px 24px;
  }

  .condo-facts {
    gap: 8px;
  }

  .rate-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .things-grid-editorial {
    grid-template-columns: 1fr;
  }
}








