/* ─────────────────────────────────────────
   ROOT & RESET
───────────────────────────────────────── */
:root {
  --deep: #fafafa;
  --gold: #d29f51;
  --gold-l: #e8be7a;
  --gold-pale: #f5e4c0;
  --cream: #faf5ec;
  --teal: #1a6b5e;
  --teal-d: #0d4d44;
  --teal-l: #2a9485;
  --rose: #c8998a;
  --dark: #080f0d;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #0a1a16;
  color: var(--cream);
  font-family: "Jost", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ─────────────────────────────────────────
   CANVAS BG
───────────────────────────────────────── */
#wc {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
#wo {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    ellipse 130% 80% at 50% 0%,
    rgba(8, 15, 13, 0.45),
    rgba(8, 15, 13, 0.84)
  );
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}
nav,
footer {
  position: relative;
  z-index: 2;
}
main {
  position: relative;
  z-index: 2;
}
/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
/* ================= NAVBAR ================= */

.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(6, 12, 10, 0.96), transparent);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid rgba(210, 159, 81, 0.05);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1300px;
  margin: auto;
  padding: 18px 1%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  font-size: 24px;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  font-family: "Cinzel";
}

/* Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 35px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  transition: 0.3s;
  font-family: "Cinzel";
}

.nav-links a:hover {
  color: var(--gold-l);
}

/* CTA Button */
.nav-cta {
  padding: 20px 40px;
  border: none;
  background: rgba(0, 38, 31, 0.8);
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: 0.3s;
}

.nav-cta:hover {
  background: var(--gold-l);
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
}

/* ================= MOBILE ================= */

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

  .nav-links {
    position: fixed;
    top: 104px;
    right: 0;
    width: 260px;
    height: 100vh;
    background: linear-gradient(180deg, rgba(6, 12, 10, 0.96), transparent);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 40px 30px;
    gap: 25px;
    transform: translateX(100%);
    transition: 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.05);
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-cta {
    display: none;
  }
}
@media (max-width: 728px) {
  .navbar {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(110, 110, 110, 0.85));
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-left: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
  }
  .hero-photo {
    aspect-ratio: 5/10;
    background: url(images/320x640\ copy.jpg.jpeg) center/cover no-repeat !important;
  }
  .hero {
    min-height: 100vh !important;
  }
  .details {
    background: none !important;
  }
  @media (max-width: 1025px) {
    .nav-cta {
      margin-left: 40px;
    }
  }
}
@media (min-width: 320px) {
  .hero {
    margin-top: 44% !important;
    height: 100vh;
  }
}
@media (min-width: 375px) {
  .hero {
    margin-top: 28% !important;
    height: 120vh;
  }
}
@media (min-width: 425px) {
  .hero {
    margin-top: 25% !important;
    height: 135vh;
  }
}
@media (min-width: 768px) {
  .hero {
    margin-top: 9% !important;
    height: 80vh !important;
  }
}
@media (min-width: 1024px) {
  .hero {
    min-height: 100vh !important;
  }
}
@media (min-width: 1440px) {
  .hero {
    min-height: 140vh !important;
    margin-top: 4% !important;
  }
}
/* ────────────────────────────────────────
   SHARED BUTTONS
───────────────────────────────────────── */
.btn-gold {
  font-family: "Cinzel", serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--deep);
  background: #00261f;
  border: none;
  padding: 1.1rem 3rem;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  clip-path: polygon(
    0 0,
    calc(100% - 10px) 0,
    100% 10px,
    100% 100%,
    10px 100%,
    0 calc(100% - 10px)
  );
}
.btn-gold:hover {
  background: var(--gold-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(210, 159, 81, 0.4);
}
.btn-outline {
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  border: 1px solid rgba(210, 159, 81, 0.45);
  padding: 1.1rem 3rem;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(210, 159, 81, 0.08);
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  position: relative;
  /* min-height: 135vh; */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 9%;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background: url("images/1800x1164\ copy.jpg.jpeg") center/cover no-repeat;
  animation: hzoom 18s ease-out forwards;
}
@keyframes hzoom {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}
.hero-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.28;
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem;
  max-width: 860px;
  animation: fadeUp 1.2s ease-out 0.4s both;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 6.5vw, 5.8rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 1.2rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--cream);
  opacity: 0.7;
  margin-bottom: 0.8rem;
}
.hero-sub {
  font-family: "Cinzel", serif;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  color: var(--gold-pale);
  margin-bottom: 2.5rem;
  opacity: 0.88;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
  opacity: 0.35;
}
.scroll-hint span {
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}
.scroll-line {
  width: 1px;
  height: 38px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: sp 2s ease-in-out infinite;
}
@keyframes sp {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

/* ─────────────────────────────────────────
   WAVE DIVIDERS
───────────────────────────────────────── */
.wd {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  position: relative;
  z-index: 3;
}
.wd svg {
  display: block;
  width: 100%;
}

/* ─────────────────────────────────────────
   SECTIONS COMMON
───────────────────────────────────────── */
section {
  padding: 6rem 4rem;
  position: relative;
  z-index: 3;
}
.sec-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.sec-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.18;
  color: var(--cream);
  margin-bottom: 1.4rem;
}
.sec-title em {
  font-style: italic;
  color: var(--gold);
}
.sec-body {
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--cream);
  opacity: 0.65;
  max-width: 680px;
}
.gold-div {
  width: 52px;
  height: 1px;
  background: var(--gold);
  margin: 1.8rem 0;
}

/* ─────────────────────────────────────────
   SECTION 1 – INTRO (not another gated)
───────────────────────────────────────── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.intro-visual {
  position: relative;
}
.intro-img {
  width: 100%;
  aspect-ratio: 5/5;
  background: url("images//800x1067.jpg.jpeg") center/cover;
}
.intro-imgg {
  width: 100%;
  aspect-ratio: 5/5;
  background: url("images/about.png") center/cover;
}
.stat-float {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 130px;
  height: 130px;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.stat-float-n {
  font-family: "Cinzel";
  font-size: 3em;
  font-weight: 900;
  color: var(--teal-d);
  line-height: 1;
}
.stat-float-l {
  font-size: 0.7em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-d);
}

/* ─────────────────────────────────────────
   SECTION 2 – LOCATION (Why Kukatpally)
───────────────────────────────────────── */
.why-section {
  background: rgba(13, 77, 68, 0.07);
  border-top: 1px solid rgba(42, 148, 133, 0.1);
  border-bottom: 1px solid rgba(42, 148, 133, 0.1);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.bullets {
  list-style: none;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--cream);
  opacity: 0.78;
}
.bullets li::before {
  content: "◆";
  color: var(--gold);
  font-size: 0.45rem;
  margin-top: 0.45rem;
  flex-shrink: 0;
}
.dist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.dist-card {
  padding: 1.2rem 1.4rem;
  border: 1px solid rgba(210, 159, 81, 0.13);
  background: rgba(13, 77, 68, 0.1);
  transition: all 0.3s;
}
.dist-card:hover {
  border-color: rgba(210, 159, 81, 0.35);
  background: rgba(42, 148, 133, 0.08);
}
.dist-time {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--gold);
}
.dist-place {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.55;
  margin-top: 0.2rem;
}

/* ─────────────────────────────────────────
   SECTION 3 – SCALE (when scale becomes)
───────────────────────────────────────── */
.scale-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin: 2.5rem 0;
}
.scale-card {
  padding: 2rem 1.5rem;
  border: 1px solid rgba(210, 159, 81, 0.12);
  background: #1a6b5e;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.scale-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s;
}
.scale-card:hover::before {
  transform: scaleX(1);
}
.scale-card:hover {
  border-color: rgba(210, 159, 81, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}
.highlight {
  font-size: 0.6em;
  color: var(--gold);
  font-weight: 500;
}
.scale-num {
  font-family: "Cinzel";
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.scale-label {
  font-size: 0.72rem;
  line-height: 1.6;
  color: var(--cream);
  opacity: 0.65;
}
.scale-note {
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  color: var(--gold-pale);
  margin-top: 2rem;
  line-height: 1.7;
  opacity: 0.88;
}

/* ─────────────────────────────────────────
   SECTION 4 – FOR THOSE WHO PREFER
───────────────────────────────────────── */
.prefer-section {
  background: rgba(8, 15, 13, 0.7);
}
.prefer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.prefer-innerr {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 5rem;
  align-items: center;
}
.prefer-img {
  width: 100%;
  aspect-ratio: 3/4;
  background:
    linear-gradient(180deg, rgba(13, 77, 68, 0.2), rgba(8, 15, 13, 0.45)),
    url("images/kp.png") center/cover;
  position: relative;
}
.prefer-imgg {
  width: 100%;
  aspect-ratio: 3/4;
  background:
    linear-gradient(180deg, rgba(13, 77, 68, 0.2), rgba(8, 15, 13, 0.45)),
    url("images/swimmingpool.jpeg") center/cover;
  position: relative;
}
.prefer-frame {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  right: -1.5rem;
  bottom: -1.5rem;
  border: 1px solid rgba(210, 159, 81, 0.2);
  z-index: -1;
}
.prefer-vals {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}
.pval {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem;
  border: 1px solid rgba(210, 159, 81, 0.1);
  transition: all 0.3s;
}
.pval:hover {
  border-color: rgba(210, 159, 81, 0.3);
  background: rgba(42, 148, 133, 0.06);
}
.pval-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 0.45rem;
  flex-shrink: 0;
}
.pval-text {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--cream);
  opacity: 0.75;
}
.statement {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1.5;
  margin-top: 1.5rem;
}

/* ─────────────────────────────────────────
   SECTION 5 – PRE-LAUNCH BENEFITS
───────────────────────────────────────── */
.eoi-section {
  background: rgba(13, 77, 68, 0.08);
  border-top: 1px solid rgba(42, 148, 133, 0.1);
}
.eoi-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.eoi-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}
.eoi-b {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(210, 159, 81, 0.1);
  transition: all 0.3s;
}
.eoi-b:hover {
  border-color: rgba(210, 159, 81, 0.3);
  background: rgba(42, 148, 133, 0.06);
}
.eoi-b-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  width: 40px;
  flex-shrink: 0;
}
.eoi-b-text {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--cream);
  opacity: 0.72;
}
.eoi-urgency {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(210, 159, 81, 0.08);
  border-left: 3px solid var(--gold);
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--cream);
  opacity: 0.8;
}
.eoi-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.eoi-img {
  width: 100%;
  aspect-ratio: 1;
  background:
    linear-gradient(180deg, rgba(13, 77, 68, 0.25), rgba(8, 15, 13, 0.5)),
    url("images/preluanch.jpeg") center/cover;
}

/* ─────────────────────────────────────────
   CONTACT FORM SECTION (last)
───────────────────────────────────────── */
.contact-section {
  position: relative;
  padding: 8rem 4rem;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(13, 77, 68, 0.65),
    rgba(8, 15, 13, 0.92) 55%,
    rgba(54, 36, 59, 0.95)
  );
}
.contact-wave {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  opacity: 0.12;
}
.contact-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.contact-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.contact-sub {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--cream);
  opacity: 0.6;
  margin-bottom: 3rem;
}

/* ─────────────────────────────────────────
   INLINE FORM (contact section)
───────────────────────────────────────── */
.inline-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 520px;
  margin: 0 auto;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.finput {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(210, 159, 81, 0.25);
  padding: 1rem 1.4rem;
  color: var(--cream);
  font-family: "Jost", sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}
.finput::placeholder {
  color: rgba(250, 245, 236, 0.28);
}
.finput:focus {
  border-color: var(--gold);
}
.fsubmit {
  background: linear-gradient(90deg, #00261f, #0d4d44);
  border: none;
  padding: 1.2rem;
  font-family: "Cinzel", serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fafafa;
  cursor: pointer;
  transition: all 0.3s ease;
}

.fsubmit:hover {
  background: linear-gradient(180deg, #0d4d44, #1a6b5e);
  color: var(--gold);
  box-shadow: 0 8px 30px rgba(210, 159, 81, 0.5);
}
.form-note {
  font-size: 0.68rem;
  opacity: 0.38;
  letter-spacing: 0.08em;
  margin-top: 0.5rem;
}
.form-success {
  display: none;
  padding: 1.5rem;
  background: rgba(42, 148, 133, 0.15);
  border: 1px solid rgba(42, 148, 133, 0.4);
  color: var(--gold-pale);
  font-size: 0.88rem;
  line-height: 1.7;
}
@keyframes popIn {
  0% {
    transform: scale(0.85) translateY(40px);
    opacity: 0;
  }
  60% {
    transform: scale(1.03) translateY(-5px);
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.modal-overlay.open .modal {
  animation: popIn 0.6s ease forwards;
}
/* ─────────────────────────────────────────
   CLOSING STRIP
───────────────────────────────────────── */
.closing {
  background: #040a08;
  padding: 5rem 4rem;
  text-align: center;
  position: relative;
  z-index: 3;
}
.closing-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 1rem;
}
.closing-body {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--cream);
  opacity: 0.58;
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  background: #020705;
  padding: 2.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  border-top: 1px solid rgba(42, 148, 133, 0.1);
  position: relative;
  z-index: 3;
}
.fl {
  font-family: "Cinzel", serif;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  color: var(--gold);
}
.fc {
  font-size: 0.65rem;
  color: var(--cream);
  opacity: 0.22;
  letter-spacing: 0.1em;
}

/* ─────────────────────────────────────────
   POPUP MODAL
───────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.75); /* darker for better focus */
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  position: relative;
  width: 92%;
  max-width: 520px;
  background: var(--gold-l);
  border: 1px solid rgba(210, 159, 81, 0.35);
  padding: 3rem 2.5rem;
  transform: scale(0.92) translateY(20px);
  transition: all 0.45s ease;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.55),
    inset 0 0 80px rgba(210, 159, 81, 0.08);
}

.modal-overlay.open .modal {
  transform: scale(1) translateY(0);
}
.checkbox-group,
.checkbox-field {
  margin-top: 8px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--teal);
}

.checkbox-label span {
  font-size: 12px;
  line-height: 1.6;
  color: var(--teal-d);
  font-weight: 500;
}
/* Teal wave accent inside modal */
.modal-wave {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  opacity: 0.2;
  overflow: hidden;
}
.modal-wave svg {
  display: block;
  width: 100%;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: none;
  color: var(--cream);
  opacity: 0.45;
  font-size: 1.4rem;
  cursor: pointer;
  transition:
    opacity 0.2s,
    transform 0.2s;
  line-height: 1;
}
.modal-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.modal-eyebrow {
  font-size: 1rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--teal-d);
  margin-bottom: 0.8rem;
  font-weight: bolder;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.modal-eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--teal-d);
}
.modal-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 0.4rem;
  line-height: 1.25;
}
.modal-title em {
  font-style: italic;
  color: var(--teal-d);
}
.modal-sub {
  font-size: 0.9rem;
  font-weight: bolder;
  color: var(--teal-l);
  opacity: 0.55;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.mform {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.mform .finput {
  background: rgb(15 45 36);
  border: 1px solid rgba(210, 159, 81, 0.45);
}

.mform .finput:focus {
  border-color: #d29f51;
  box-shadow: 0 0 0 2px rgba(210, 159, 81, 0.25);
}
.modal-success {
  display: none;
  padding: 1.2rem;
  background: rgba(42, 148, 133, 0.12);
  border: 1px solid rgba(42, 148, 133, 0.35);
  color: var(--gold-pale);
  font-size: 0.85rem;
  line-height: 1.7;
  text-align: center;
}
.modal-note {
  font-size: 0.7em;
  opacity: 1;
  letter-spacing: 0.08em;
  text-align: center;
  margin-top: 0.5rem;
  color: var(--teal-d);
}

/* Gold bar at modal top */
.modal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-l), var(--gold), var(--teal-l));
}

/* ─────────────────────────────────────────
   REVEAL ANIMATIONS
───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.85s ease,
    transform 0.85s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
  nav {
    padding: 1.2rem 1.5rem;
  }
  section {
    padding: 4rem 1.5rem;
  }
  .intro-grid,
  .why-grid,
  .prefer-inner,
  .eoi-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .scale-grid {
    grid-template-columns: 1fr 1fr;
  }
  .dist-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  footer {
    flex-direction: column;
    text-align: center;
  }
  .modal {
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 600px) {
  .scale-grid {
    grid-template-columns: 1fr;
  }
}
*
  ─────────────────────────────────────────
  AMENITIES
  SECTION
  ─────────────────────────────────────────
  */
  .amenities-section {
  background: linear-gradient(
    135deg,
    rgba(8, 20, 16, 0.96) 0%,
    rgba(13, 30, 24, 0.98) 50%,
    rgba(18, 12, 24, 0.97) 100%
  );
  border-top: 1px solid rgba(42, 148, 133, 0.12);
  border-bottom: 1px solid rgba(42, 148, 133, 0.12);
  overflow: hidden;
}
.amenities-header {
  max-width: 1200px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

/* Category tabs */
.am-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin: 2rem 0 3rem;
}
.am-tab {
  font-family: "Cinzel", serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.55rem 1.2rem;
  border: 1px solid rgba(210, 159, 81, 0.25);
  color: var(--cream);
  opacity: 0.6;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}
.am-tab:hover,
.am-tab.active {
  border-color: var(--gold);
  color: var(--gold);
  opacity: 1;
  background: rgba(210, 159, 81, 0.06);
}

/* Grid panels – one per category */
.am-panel {
  display: none;
}
.am-panel.active {
  display: grid;
}

/* 4-col amenity card grid */
.am-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.am-card {
  position: relative;
  padding: 1.6rem 1.4rem;
  border: 1px solid rgba(210, 159, 81, 0.1);
  background: rgba(13, 77, 68, 0.07);
  transition: all 0.35s;
  overflow: hidden;
}
.am-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.35s;
}
.am-card:hover {
  border-color: rgba(210, 159, 81, 0.38);
  transform: translateY(-4px);
  background: rgba(42, 148, 133, 0.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
.am-card:hover::before {
  transform: scaleX(1);
}

.am-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
  color: rgba(210, 159, 81, 0.25);
  position: absolute;
  top: 1rem;
  right: 1.2rem;
}
.am-icon {
  font-size: 1.6rem;
  margin-bottom: 0.7rem;
  display: block;
}
.am-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.35;
}
.am-name em {
  font-style: italic;
  color: var(--gold-pale);
}
.am-tag {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-l);
  opacity: 0.7;
}

/* Count badge row */
.am-count-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}
.am-count-badge::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

/* All-amenities flat list (view all) */
.am-all-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
.am-list-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(210, 159, 81, 0.09);
  background: rgba(13, 77, 68, 0.06);
  transition: all 0.3s;
}
.am-list-item:hover {
  border-color: rgba(210, 159, 81, 0.28);
  background: rgba(42, 148, 133, 0.08);
}
.am-list-n {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: var(--gold);
  opacity: 0.6;
  min-width: 28px;
}
.am-list-name {
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--cream);
  opacity: 0.8;
}

/* Stats strip inside amenities */
.am-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin: 3.5rem 0 0;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(210, 159, 81, 0.12);
}
.am-stat {
  text-align: center;
}
.am-stat-n {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.am-stat-l {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.5;
  margin-top: 0.3rem;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
  nav {
    padding: 1.2rem 1.5rem;
  }
  section {
    padding: 4rem 1.5rem;
  }
  .intro-grid,
  .why-grid,
  .prefer-inner,
  .eoi-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .scale-grid {
    grid-template-columns: 1fr 1fr;
  }
  .dist-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  footer {
    flex-direction: column;
    text-align: center;
  }
  .modal {
    padding: 2rem 1.5rem;
  }
  .am-grid,
  .am-all-grid {
    grid-template-columns: 1fr 1fr;
  }
  .am-tabs {
    gap: 0.4rem;
  }
}
@media (max-width: 600px) {
  .scale-grid {
    grid-template-columns: 1fr;
  }
  .am-grid,
  .am-all-grid {
    grid-template-columns: 1fr;
  }
  .am-stats {
    gap: 2rem;
  }
}
/* ── OUTDOOR SECTION ── */
.os-section {
  position: relative;
  z-index: 3;
  overflow: hidden;
  background: linear-gradient(
    155deg,
    rgba(5, 15, 11, 0.99) 0%,
    rgba(10, 26, 20, 0.98) 40%,
    rgba(13, 9, 18, 0.98) 100%
  );
  border-top: 1px solid rgba(42, 148, 133, 0.1);
  border-bottom: 1px solid rgba(42, 148, 133, 0.1);
}

/* Large ambient orbs */
.os-section .os-orb1 {
  position: absolute;
  top: -15%;
  left: -8%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(26, 107, 94, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.os-section .os-orb2 {
  position: absolute;
  bottom: -20%;
  right: -8%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(210, 159, 81, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.os-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 4rem;
  position: relative;
  z-index: 2;
}

/* ── TOP: HEADING + INTRO ── */
.os-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 5.5rem;
}
.os-kicker {
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.os-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.os-h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1.6rem;
}
.os-h1 em {
  font-style: italic;
  color: var(--gold);
}

.os-divider {
  width: 52px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 2rem;
}

/* 72% pill */
.os-pill-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.os-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.6rem;
  border: 1px solid rgba(210, 159, 81, 0.15);
  background: rgba(13, 77, 68, 0.08);
  transition:
    border-color 0.3s,
    background 0.3s;
  min-width: 100px;
}
.os-pill:hover {
  border-color: rgba(210, 159, 81, 0.38);
  background: rgba(42, 148, 133, 0.08);
}
.os-pill-n {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.os-pill-l {
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.48;
  margin-top: 0.3rem;
}

/* Right copy */
.os-body {
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--cream);
  opacity: 0.65;
}
.os-body + .os-body {
  margin-top: 1rem;
}

.os-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.22rem;
  font-style: italic;
  color: var(--gold-pale);
  line-height: 1.7;
  opacity: 0.9;
  margin-top: 1.8rem;
  padding-left: 1.2rem;
  border-left: 2px solid var(--gold);
}

/* ── SECTION DIVIDER LABEL ── */
.os-label {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.2rem;
}
.os-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.os-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(210, 159, 81, 0.14);
}

/* ── ZONES GRID ── */
.os-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.os-card {
  position: relative;
  padding: 2rem 1.5rem 1.8rem;
  border: 1px solid rgba(210, 159, 81, 0.09);
  background: rgba(13, 77, 68, 0.07);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  cursor: default;
}

/* Top gold reveal line */
.os-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-l), var(--gold), var(--teal-l));
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
/* Bottom teal glow */
.os-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(to top, rgba(26, 107, 94, 0.09), transparent);
  pointer-events: none;
}
.os-card:hover {
  border-color: rgba(210, 159, 81, 0.35);
  background: rgba(42, 148, 133, 0.11);
  transform: translateY(-5px);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(26, 107, 94, 0.08);
}
.os-card:hover::before {
  transform: scaleX(1);
}

/* Ghost number watermark */
.os-card-num {
  position: absolute;
  top: 0.6rem;
  right: 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  color: rgba(210, 159, 81, 0.1);
  line-height: 1;
  transition: color 0.4s;
  pointer-events: none;
}
.os-card:hover .os-card-num {
  color: rgba(210, 159, 81, 0.18);
}

.os-card-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  filter: drop-shadow(0 0 6px rgba(210, 159, 81, 0.15));
}
.os-card:hover .os-card-icon {
  transform: scale(1.1) translateY(-2px);
}

.os-card-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.38;
}

.os-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  padding: 0.28rem 0.75rem;
  border: 1px solid rgba(210, 159, 81, 0.15);
  font-size: 0.54rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  transition:
    opacity 0.3s,
    border-color 0.3s;
}
.os-card-tag::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}
.os-card:hover .os-card-tag {
  opacity: 1;
  border-color: rgba(210, 159, 81, 0.38);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .os-inner {
    padding: 4rem 1.5rem;
  }
  .os-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .os-grid {
    grid-template-columns: 1fr 1fr;
  }
  .os-pill-row {
    gap: 0.8rem;
  }
}
@media (max-width: 600px) {
  .os-grid {
    grid-template-columns: 1fr;
  }
}
.details {
  background:
    radial-gradient(ellipse 130% 80% at 50% 0%, rgba(8, 15, 13, 0.45), rgba(8, 15, 13, 0.84)),
    url(images/bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  backdrop-filter: blur(18px);
}
