:root {
  --sky-1: #e9f8ff;
  --sky-2: #dff2ff;
  --sky-3: #ccecff;
  --ink: #17324a;
  --ink-soft: #527086;
  --white: #ffffff;
  --accent: #4db5ec;
  --accent-2: #7fd5ff;
  --line: rgba(23, 50, 74, 0.09);
  --shadow: 0 20px 60px rgba(64, 137, 180, 0.16);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.95), transparent 32%),
    radial-gradient(circle at top right, rgba(166, 232, 255, 0.36), transparent 24%),
    linear-gradient(180deg, var(--sky-1) 0%, var(--sky-2) 52%, #f4fbff 100%);
  overflow-x: hidden;
}

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

p {
  color: var(--ink-soft);
  line-height: 1.82;
  font-size: 1rem;
}

a {
  color: var(--ink);
  text-decoration: none;
}

a:hover {
  color: #0d88cc;
}

h1, h2, h3, h4 {
  margin-top: 0;
  color: var(--ink);
}

h1, h2 {
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.03em;
}

.site-shell {
  position: relative;
}

.section-pad {
  padding: 100px 0;
}

nav {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(18px);
  background: rgba(233, 248, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

nav.scrolled {
  box-shadow: 0 10px 30px rgba(53, 114, 149, 0.14);
  background: rgba(242, 251, 255, 0.9);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 12px;
}

.brand-mark {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.35rem;
  white-space: nowrap;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
}

nav li {
  margin: 0;
  padding: 0;
}

nav li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink);
  font-weight: 500;
  transition: all 0.25s ease;
}

nav li a:hover,
nav li a.active {
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 8px 25px rgba(72, 148, 191, 0.15);
  color: #0a7dbe;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: rgba(255,255,255,0.7);
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 0 auto;
}

.hero-section {
  padding: 84px 0 80px;
  position: relative;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0e8ac9;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 1;
  margin-bottom: 22px;
}

.hero-copy {
  font-size: 1.03rem;
  max-width: 700px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 34px 0;
}

.btn {
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 600;
  border: 0;
}

.btn-oasis {
  background: linear-gradient(135deg, var(--accent), #30a3df);
  color: #fff;
  box-shadow: 0 14px 35px rgba(57, 161, 214, 0.3);
}

.btn-oasis:hover {
  color: #fff;
  transform: translateY(-1px);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 14px 30px rgba(108, 162, 191, 0.14);
}

.hero-stats .stat-card,
.story-card,
.property-tile,
.destination-card,
.contact-card,
.quote-card,
.editorial-panel,
.intro-band,
.hero-visual,
.stack-img,
.gallery-large,
.gallery-small-grid img {
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow);
}

.stat-card {
  border-radius: 22px;
  padding: 20px;
  height: 100%;
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-card span {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  padding: 18px;
  border-radius: 36px;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  border-radius: 28px;
}

.floating-card {
  position: absolute;
  z-index: 2;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 20px 40px rgba(73, 147, 186, 0.17);
  border-radius: 16px;
  padding: 14px 18px;
  font-weight: 600;
  color: var(--ink);
  backdrop-filter: blur(15px);
}

.floating-a {
  top: 28px;
  left: 28px;
}

.floating-b {
  right: 28px;
  bottom: 32px;
}

.intro-band {
  padding: 40px;
  border-radius: var(--radius-xl);
}

.image-stack {
  position: relative;
  min-height: 530px;
}

.stack-img {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  padding: 14px;
}

.stack-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.stack-img.small {
  width: 52%;
  height: 240px;
  top: 0;
  left: 0;
  z-index: 2;
}

.stack-img.large {
  width: 74%;
  height: 360px;
  right: 0;
  bottom: 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 54px;
}

.section-heading.left-align {
  margin-bottom: 28px;
}

.section-heading h2,
.intro-band h2,
.contact-strip h2,
.horizon-panel h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 18px;
}

.destination-card {
  overflow: hidden;
  border-radius: 28px;
  height: 100%;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

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

.card-body-copy {
  padding: 26px;
}

.card-body-copy h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.card-body-copy a,
.property-tile a,
.text-link {
  color: #0b87c8;
  font-weight: 700;
}

.soft-wave {
  position: relative;
}

.soft-wave::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.28), rgba(255,255,255,0.08));
  pointer-events: none;
}

.feature-list {
  display: grid;
  gap: 20px;
  margin-top: 34px;
}

.feature-list div {
  padding: 22px 24px;
  border-left: 4px solid var(--accent);
  background: rgba(255,255,255,0.52);
  border-radius: 0 22px 22px 0;
}

.feature-list h4 {
  font-size: 1.12rem;
  margin-bottom: 8px;
}

.lifestyle-gallery {
  display: grid;
  gap: 18px;
}

.gallery-large {
  padding: 14px;
  border-radius: 28px;
}

.gallery-large img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 20px;
}

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

.gallery-small-grid img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 22px;
  padding: 10px;
}

.property-tile,
.story-card {
  border-radius: 26px;
  padding: 18px;
  height: 100%;
}

.property-tile img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 18px;
}

.property-tile h3,
.story-card h3 {
  font-size: 1.28rem;
  margin-bottom: 12px;
}

.editorial-panel {
  padding: 22px;
  border-radius: 34px;
}

.editorial-panel img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 24px;
}

.horizon-panel {
  position: relative;
}

.testimonial-wrap {
  background: linear-gradient(180deg, rgba(255,255,255,0.28), rgba(255,255,255,0.12));
}

.testimonial-stage {
  position: relative;
  min-height: 260px;
}

.quote-card {
  position: absolute;
  inset: 0;
  border-radius: 30px;
  padding: 40px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.quote-card.active {
  opacity: 1;
  transform: translateY(0);
}

.quote-card p {
  font-size: 1.25rem;
  color: var(--ink);
  line-height: 1.8;
  margin-bottom: 24px;
}

.quote-card span {
  color: #0d88cc;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  background: rgba(17, 89, 131, 0.18);
}

.dot.active {
  width: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #30a3df);
}

.contact-strip {
  padding-bottom: 120px;
}

.contact-card {
  padding: 28px;
  border-radius: 30px;
}

.form-control,
.form-select {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.78);
  color: var(--ink);
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(77,181,236,0.5);
  box-shadow: 0 0 0 0.25rem rgba(77,181,236,0.15);
}

footer {
  background: linear-gradient(180deg, rgba(15, 58, 89, 0.96), rgba(10, 41, 62, 0.98));
  color: rgba(255,255,255,0.86);
  padding: 70px 0 24px;
}

footer p,
footer a,
footer h4,
footer span {
  color: rgba(255,255,255,0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer-brand {
  color: #fff;
  display: inline-block;
  margin-bottom: 18px;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer li + li {
  margin-top: 12px;
}

footer a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.reveal-card,
.tilt-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.6s ease;
}

.reveal-card.is-hidden {
  opacity: 0;
  transform: translateY(28px);
}

.reveal-card.is-visible,
.destination-card:hover,
.property-tile:hover,
.story-card:hover {
  opacity: 1;
  transform: translateY(0);
}

.destination-card:hover,
.property-tile:hover,
.story-card:hover,
.editorial-panel:hover {
  box-shadow: 0 28px 70px rgba(64, 137, 180, 0.21);
}

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

  nav ul {
    position: absolute;
    top: 100%;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    border-radius: 22px;
    background: rgba(244, 251, 255, 0.96);
    box-shadow: 0 20px 40px rgba(57, 119, 156, 0.14);
  }

  nav ul.open {
    display: flex;
  }

  nav li a {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-visual img {
    height: 500px;
  }

  .image-stack {
    min-height: 430px;
  }

  .stack-img.small {
    width: 58%;
    height: 200px;
  }

  .stack-img.large {
    width: 76%;
    height: 290px;
  }

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

@media (max-width: 767.98px) {
  .section-pad {
    padding: 78px 0;
  }

  .hero-section {
    padding-top: 52px;
  }

  .intro-band,
  .contact-card,
  .quote-card,
  .editorial-panel,
  .hero-visual {
    border-radius: 24px;
  }

  .hero-visual img {
    height: 420px;
  }

  .floating-a,
  .floating-b {
    position: static;
    display: inline-block;
    margin: 0 0 12px;
  }

  .image-stack {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .stack-img,
  .stack-img.small,
  .stack-img.large {
    position: relative;
    width: 100%;
    height: auto;
  }

  .stack-img img {
    height: 260px;
  }

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

  .gallery-small-grid img {
    height: 140px;
  }

  .quote-card {
    padding: 28px;
  }

  .quote-card p {
    font-size: 1.08rem;
  }

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