:root {
  --brand-primary: #0d2f3f;
  --brand-secondary: #f2b544;
  --accent: #f7efe5;
  --text-color: #1b1b1b;
  --muted: #6b6b6b;
  --border-radius: 18px;
  --container-width: min(1100px, 90vw);
  --shadow: 0 20px 35px -25px rgba(0, 0, 0, 0.4);
  font-size: clamp(15px, 1vw + 12px, 16px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-color);
  background: #fff;
}

img {
  max-width: 100%;
  display: block;
}

video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: var(--container-width);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 47, 63, 0.85);
  backdrop-filter: blur(18px);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand--header,
.brand--footer {
  display: inline-flex;
  align-items: center;
}

.brand--header {
  line-height: 0;
}

.brand--footer {
  line-height: 0;
}

.brand-logo {
  display: block;
  width: auto;
  object-fit: contain;
}

.brand-logo--header {
  max-height: 40px;
  max-width: min(290px, 34vw);
}

.brand-logo--footer {
  width: 118px;
  height: 118px;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.18));
}

.nav {
  display: flex;
  gap: clamp(14px, 1.2vw, 26px);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: inherit;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin: 0;
}

.nav--open {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 72px;
  right: 24px;
  background: rgba(13, 47, 63, 0.95);
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.nav a {
  position: relative;
  padding-bottom: 4px;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.2s ease;
}

.nav a:hover::after {
  width: 100%;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--brand-secondary);
  color: #0c1d22;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -20px rgba(0, 0, 0, 0.5);
}

.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid currentColor;
  color: inherit;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.ghost-button:hover {
  background: rgba(255, 255, 255, 0.14);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: #fff;
}

.menu-toggle--open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle--open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle--open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(120deg, rgba(13, 47, 63, 0.72), rgba(13, 47, 63, 0.28)),
    url('../images/property/story/pool-sea-view.jpg') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 140px 0 120px;
  text-align: left;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 14px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  max-width: 14ch;
  margin-bottom: 18px;
}

.hero p {
  max-width: 45ch;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-highlights {
  display: flex;
  gap: 40px;
}

.hero-highlights strong {
  display: block;
  font-size: 2rem;
  font-weight: 700;
}

.section {
  padding: clamp(72px, 8vw, 110px) 0;
}

.section.accent {
  background: var(--accent);
}

.section-intro {
  text-align: center;
  max-width: 70ch;
}

.section-intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 18px;
}

.section-intro p {
  color: var(--muted);
  line-height: 1.7;
}

.cards-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.card {
  background: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card-image {
  padding-top: 66%;
  background: #ccd;
  background-size: cover;
  background-position: center;
}

.room-card-image {
  position: relative;
  padding-top: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e9e2d6;
}

.room-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-card-image,
.room-thumbs img {
  cursor: pointer;
}

.room-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(12, 29, 34, 0.8);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card-content {
  padding: 24px 24px 30px;
}

.card-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.card-content p {
  color: var(--muted);
  line-height: 1.6;
}

.card-content ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.room-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(74px, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.room-thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 12px 24px -20px rgba(0, 0, 0, 0.45);
}

.section-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: center;
}

#location .section-split {
  align-items: stretch;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
  gap: 40px;
  align-items: start;
}

.story-copy h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin: 0 0 18px;
}

.story-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.story-points {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}

.story-points li {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.66);
  border-radius: 16px;
  box-shadow: 0 16px 35px -30px rgba(0, 0, 0, 0.45);
}

.story-media {
  display: grid;
  gap: 22px;
}

.story-feature,
.story-card {
  background: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.story-feature {
  margin: 0;
}

.story-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #0b1c23;
}

.story-feature figcaption {
  padding: 16px 20px 20px;
  color: var(--muted);
  line-height: 1.6;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.story-card img,
.story-card video {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #0b1c23;
}

.story-card-copy {
  padding: 18px 20px 22px;
}

.story-card-copy h3 {
  margin: 0 0 8px;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
}

.story-card-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.story-card--moments {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(180px, 0.9fr);
  gap: 0;
  align-items: stretch;
}

.moments-inline-copy {
  padding: 24px;
  display: grid;
  align-content: center;
  gap: 14px;
}

.moments-inline-copy h3 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
}

.moments-inline-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.moments-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.moments-chip {
  padding: 12px 16px;
  border: 1px solid rgba(13, 47, 63, 0.14);
  border-radius: 999px;
  background: rgba(247, 239, 229, 0.9);
  color: #0d2f3f;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.moments-chip.is-active {
  background: #0d2f3f;
  border-color: #0d2f3f;
  color: #fff;
}

.moments-inline-stage {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  padding: 24px;
  background: linear-gradient(180deg, #efe4d6 0%, #f7efe5 100%);
}

.moments-inline-stage video {
  width: min(240px, 100%);
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  object-fit: cover;
  background: #0b1c23;
  box-shadow: 0 22px 40px -30px rgba(0, 0, 0, 0.55);
}

.moments-inline-caption {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.arrival-intro {
  max-width: 44rem;
}

.arrival-reel {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.arrival-stage {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--border-radius) + 4px);
  box-shadow: var(--shadow);
  background: #e7ddcf;
}

.arrival-stage img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.review-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 30px;
}

.review-intro {
  max-width: 54rem;
}

.review-viewport {
  overflow: hidden;
  border-radius: calc(var(--border-radius) + 6px);
  padding: clamp(16px, 3vw, 30px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 234, 217, 0.92));
  box-shadow: var(--shadow);
}

.review-track {
  display: flex;
  transition: transform 0.35s ease;
  will-change: transform;
}

.review-slide {
  min-width: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.review-slide img {
  width: auto;
  max-width: min(100%, 760px);
  max-height: min(78vh, 980px);
  height: auto;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 26px 46px -34px rgba(0, 0, 0, 0.48);
}

.carousel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #0d2f3f;
  color: #fff;
  font-size: 1.35rem;
  cursor: pointer;
  box-shadow: 0 18px 30px -24px rgba(0, 0, 0, 0.65);
  transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-button:hover {
  transform: translateY(-2px);
  background: #123f54;
}

.carousel-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(13, 47, 63, 0.22);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-dot.is-active {
  background: #0d2f3f;
  transform: scale(1.15);
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.bullet-list li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
}

.bullet-list li::before {
  content: '\2726';
  position: absolute;
  left: 0;
  color: var(--brand-secondary);
}

.map-placeholder {
  background: #f7f0e4;
}

.map-placeholder iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
  background: #f7f0e4;
}

.map-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #f7f0e4;
}

.map-card img {
  display: block;
  width: 100%;
  height: auto;
}

.map-caption {
  display: none;
}

.contact {
  background: var(--accent);
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  font-weight: 600;
}

.contact-details p {
  margin: 4px 0 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}

.contact-details a:hover {
  color: var(--brand-secondary);
}

.contact-form {
  display: grid;
  gap: 18px;
  background: #fff;
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fffdf8;
  font: inherit;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand-secondary);
  box-shadow: 0 0 0 4px rgba(242, 181, 68, 0.15);
}

.contact-form select {
  appearance: none;
  cursor: pointer;
  padding-right: 44px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--brand-secondary) 50%),
    linear-gradient(135deg, var(--brand-secondary) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 3px),
    calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  padding: 3vh 3vw;
}

.lightbox.is-open {
  display: block;
}

.lightbox[aria-hidden='true'] {
  display: none;
}

.lightbox[aria-hidden='false'] {
  display: block;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 17, 22, 0.82);
  backdrop-filter: blur(10px);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 1180px);
  min-height: min(82vh, 860px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.lightbox-stage {
  display: grid;
  gap: 16px;
  justify-items: center;
  padding: clamp(18px, 3vw, 28px);
  border-radius: 28px;
  background: rgba(255, 252, 247, 0.96);
  box-shadow: 0 30px 70px -40px rgba(0, 0, 0, 0.75);
}

#lightbox-image {
  width: auto;
  max-width: 100%;
  max-height: min(68vh, 760px);
  height: auto;
  object-fit: contain;
  border-radius: 20px;
}

.lightbox-caption {
  text-align: center;
  color: #314247;
  font-weight: 600;
}

.lightbox-close,
.lightbox-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(13, 47, 63, 0.92);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 18px 32px -26px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: rgba(12, 29, 34, 0.78);
  font-size: 1.45rem;
}

.lightbox-nav {
  font-size: 1.4rem;
}

.site-footer {
  background: #0b1c23;
  color: rgba(255, 255, 255, 0.85);
  padding: 44px 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
}

.footer-content .brand {
  color: #fff;
}

.brand--footer {
  min-height: 118px;
}

.social {
  display: flex;
  gap: 16px;
}

.social a {
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Responsive */
@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .site-header .container {
    justify-content: space-between;
  }

  .brand-logo--header {
    max-height: 34px;
    max-width: 220px;
  }

  .hero {
    text-align: left;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-highlights {
    gap: 24px;
  }

  .nav--open .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .contact-form {
    padding: 24px;
  }

  .story-layout,
  .section-split {
    grid-template-columns: 1fr;
  }

  .review-carousel {
    grid-template-columns: 1fr;
  }

  .carousel-button {
    display: none;
  }

  .lightbox-dialog {
    width: min(94vw, 760px);
    grid-template-columns: 1fr;
    margin: 4vh auto;
  }

  .lightbox-nav {
    display: none;
  }

  .story-card--moments {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 80vh;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-highlights {
    flex-direction: column;
    align-items: flex-start;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .review-viewport {
    padding: 14px;
  }

  .review-slide img {
    max-height: none;
    border-radius: 18px;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-logo--footer {
    width: 104px;
    height: 104px;
  }
}
