:root {
  --sand: #f5edd6;
  --deep: #0a1628;
  --deep-2: #0d1e32;
  --ocean: #1a5c7a;
  --turquoise: #2ab3c0;
  --gold: #c9a84c;
  --gold-soft: rgba(201, 168, 76, 0.16);
  --nav-border: rgba(255, 255, 255, 0.08);
  --text-soft: rgba(245, 237, 214, 0.7);
  --text-muted: rgba(245, 237, 214, 0.5);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: var(--deep);
  color: var(--sand);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

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

.site-header {
  transition: background-color 0.25s ease, backdrop-filter 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(10, 22, 40, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--nav-border);
}

.navbar {
  background: linear-gradient(to bottom, rgba(10, 22, 40, 0.72), rgba(10, 22, 40, 0.08));
  padding: 1rem 0;
}

.navbar-brand,
.nav-link,
.btn-outline-gold {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 500;
}

.navbar-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  letter-spacing: 0.16em;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.7);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--sand);
}

.btn-outline-gold {
  border: 1px solid var(--gold);
  color: var(--sand);
  border-radius: 999px;
  padding: 0.7rem 1rem;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--deep);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-img {
  background: url("../images/sababi-island-hero.jpg") center center / cover no-repeat;
  filter: brightness(0.72);
  transform: scale(1.02);
}

.hero-overlay {
  background: linear-gradient(to bottom, rgba(10, 22, 40, 0.12) 0%, rgba(10, 22, 40, 0.28) 45%, rgba(10, 22, 40, 0.92) 100%);
}

.hero-content {
  max-width: 58rem;
  padding: 8rem 0 4rem;
}

.hero-eyebrow,
.section-label,
.pricing-card-label,
.title-item-label,
.spec-label,
.photo-caption,
.area-map-caption,
.area-photo-label,
.contact-title {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero-eyebrow,
.section-label {
  color: var(--turquoise);
}

.hero-title,
.section-title,
.price-main,
.spec-value,
.title-item-value,
.pricing-amount,
.contact-name,
.island-name {
  font-family: "Cormorant Garamond", serif;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 0.98;
  margin: 0 0 1rem;
  color: #fff;
}

.hero-title em {
  font-style: italic;
  color: var(--sand);
}

.hero-subtitle {
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 237, 214, 0.84);
  margin-bottom: 2.5rem;
}

.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem 1.6rem;
  background: var(--gold-soft);
  border: 1px solid var(--gold);
  backdrop-filter: blur(10px);
  flex-wrap: wrap;
}

.price-main {
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

.price-sub {
  margin-top: 0.35rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 237, 214, 0.72);
}

.price-divider {
  width: 1px;
  align-self: stretch;
  min-height: 2.75rem;
  background: rgba(201, 168, 76, 0.4);
}

.specs-bar {
  background: var(--ocean);
}

.spec-item {
  padding: 1.45rem 1.25rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-item:last-child {
  border-right: 0;
}

.spec-value {
  display: block;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
}

.spec-label {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.6);
}

.description-section,
.title-section,
.area-section,
.contact-section,
.site-footer {
  background: var(--deep);
}

.desc-image {
  min-height: 34rem;
  background: url("../images/sababi-beach.jpg") center center / cover no-repeat;
}

.desc-text,
.location-text {
  padding: 4.5rem clamp(1.5rem, 4vw, 4rem);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  margin: 0 0 1.5rem;
}

.title-intro,
.region-intro {
  max-width: 44rem;
}

.section-body,
.development-potential-text,
.pricing-details,
.loc-text,
.title-item-sub,
.contact-row,
.disclaimer {
  color: var(--text-soft);
  font-weight: 300;
}

.section-body {
  font-size: 0.92rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.development-potential {
  margin: 0.5rem 0 1.75rem;
  padding: 1.2rem 1.25rem;
  border: 1px solid rgba(201, 168, 76, 0.28);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(42, 179, 192, 0.05) 100%);
}

.development-potential-title {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.development-potential-text,
.loc-text,
.pricing-details {
  font-size: 0.9rem;
  line-height: 1.75;
}

.features-list,
.location-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: rgba(245, 237, 214, 0.88);
  margin-bottom: 0.7rem;
}

.features-list li::before {
  content: "—";
  color: var(--gold);
}

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

.photo-strip-item,
.area-photo-item {
  position: relative;
  overflow: hidden;
}

.photo-strip-item img {
  width: 100%;
  min-height: 20rem;
  object-fit: cover;
  display: block;
}

.photo-caption,
.area-map-caption,
.area-photo-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(10, 22, 40, 0.56);
  padding: 0.45rem 0.8rem;
  backdrop-filter: blur(4px);
}

.location-section,
.pricing-section {
  background: var(--deep-2);
}

.location-map {
  min-height: 32rem;
  background: url("../images/sababi-satellite-wide.jpg") center center / cover no-repeat;
  position: relative;
}

.map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.36) 0%, rgba(10, 22, 40, 0) 100%);
}

.location-points {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.location-points li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.loc-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--turquoise);
  margin-top: 0.55rem;
  flex-shrink: 0;
}

.loc-text strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--sand);
  font-size: 0.82rem;
  font-weight: 500;
}

.title-section,
.pricing-section,
.area-section,
.contact-section,
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.title-section,
.pricing-section,
.area-section,
.contact-section {
  padding: 4.25rem 0;
}

.title-item,
.pricing-card {
  padding: 1.6rem;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: rgba(201, 168, 76, 0.03);
}

.title-item-value {
  font-size: 1.55rem;
  color: var(--sand);
  line-height: 1.2;
}

.title-item-sub {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  line-height: 1.6;
}

.pricing-card {
  border-color: rgba(42, 179, 192, 0.28);
  background: transparent;
}

.pricing-card.featured {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

.pricing-card.featured .pricing-card-label {
  color: var(--gold);
}

.pricing-amount {
  font-size: clamp(2.25rem, 4vw, 3rem);
  color: #fff;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.pricing-usd {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.area-map {
  position: relative;
  margin-bottom: 1rem;
}

.area-map img {
  display: block;
  width: 100%;
}

.area-photo-item img {
  display: block;
  width: 100%;
  height: 16rem;
  object-fit: cover;
}

.contact-name {
  font-size: 2.4rem;
  margin-bottom: 0.25rem;
}

.contact-title {
  color: var(--text-muted);
  margin-bottom: 1.6rem;
}

.contact-details {
  display: grid;
  gap: 0.85rem;
}

.contact-row {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.94rem;
}

.contact-row[href]:hover span {
  color: #fff;
}

.contact-icon {
  width: 2.15rem;
  height: 2.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(42, 179, 192, 0.3);
  color: var(--turquoise);
  flex-shrink: 0;
}

.contact-right {
  text-align: right;
}

.island-name {
  font-size: clamp(3.25rem, 8vw, 5.5rem);
  font-style: italic;
  font-weight: 300;
  line-height: 0.95;
  color: rgba(245, 237, 214, 0.14);
}

.footer-panel {
  padding: 1.5rem 0 2rem;
}

.disclaimer {
  font-size: 0.72rem;
  line-height: 1.75;
  color: rgba(245, 237, 214, 0.36);
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 0.85rem;
    padding: 1rem;
    border: 1px solid var(--nav-border);
    background: rgba(10, 22, 40, 0.56);
    backdrop-filter: blur(18px);
  }

  .price-badge {
    display: grid;
    gap: 1rem;
  }

  .price-divider {
    display: none;
  }

  .spec-item:nth-child(2n) {
    border-right: 0;
  }

  .desc-image,
  .location-map {
    min-height: 26rem;
  }

  .contact-right {
    text-align: left;
  }
}

@media (max-width: 767.98px) {
  .navbar {
    padding: 0.85rem 0;
  }

  .hero {
    min-height: 68vh;
  }

  .hero-content {
    padding: 7rem 0 2rem;
  }

  .hero-title {
    font-size: clamp(2.75rem, 13vw, 4rem);
    line-height: 0.94;
  }

  .hero-subtitle,
  .section-body,
  .loc-text,
  .pricing-details,
  .title-item-sub {
    font-size: 0.94rem;
    line-height: 1.7;
  }

  .spec-item {
    padding: 1.2rem 0.9rem;
  }

  .spec-value {
    font-size: 1.55rem;
  }

  .desc-text,
  .location-text,
  .title-section,
  .pricing-section,
  .area-section,
  .contact-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .photo-strip {
    grid-template-columns: 1fr;
  }

  .photo-strip-item img {
    min-height: 14rem;
  }

  .area-photo-item img {
    height: 14rem;
  }

  .island-name {
    text-align: left;
  }
}

@media print {
  body {
    background: #fff;
    color: #000;
  }

  .site-header {
    display: none;
  }

  .hero {
    min-height: 80vh;
  }
}
