/* ============================================================
   SKYONE — premium residences, Ravet, Pune
   Design tokens
   ============================================================ */
:root{
  --ink:        #15140F;
  --ink-soft:   #232019;
  --ivory:      #F7F4EC;
  --ivory-dim:  #EFEADB;
  --paper:      #FFFDF8;
  --gold:       #C89B4A;
  --gold-deep:  #8E6B2E;
  --gold-pale:  #E9D4A6;
  --stone:      #7C7565;
  --stone-dim:  #A39C8B;
  --hairline:   #E1DBC8;
  --hairline-dark: rgba(247,244,236,0.14);
  --whatsapp:   #2FB35B;

  --display: 'Fraunces', serif;
  --body: 'Inter', sans-serif;

  --container: 1240px;
  --edge: clamp(24px, 5vw, 72px);

  --ease: cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; }
}

body{
  margin:0;
  font-family:var(--body);
  background:var(--ivory);
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
  line-height:1.50;
  overflow-x:hidden;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }

.wrap{
  max-width:var(--container);
  margin:0 auto;
  padding-left:var(--edge);
  padding-right:var(--edge);
}

::selection{ background:var(--gold); color:var(--ink); }

.eyebrow-line{
  display:flex;
  align-items:center;
  gap:14px;
  color:var(--gold-deep);
  font-size:0.8rem;
  letter-spacing:0.02em;
  margin-bottom:18px;
  font-weight:600;
}
.eyebrow-line::before{
  content:"";
  width:28px;
  height:1px;
  background:var(--gold);
  display:block;
}

h1,h2,h3,h4{
  font-family:var(--display);
  font-weight:500;
  margin:0;
  color:var(--ink);
  letter-spacing:-0.01em;
}

.section-head{
  max-width:640px;
  margin-bottom:56px;
}
.section-head h2{
  font-size:clamp(2rem, 3.4vw, 2.85rem);
  line-height:1.15;
}
.section-head p{
  color:var(--stone);
  font-size:1.05rem;
  margin-top:18px;
  max-width:520px;
}
.section-head.center{
  margin-left:auto;
  margin-right:auto;
  text-align:center;
}
.section-head.center .eyebrow-line{ justify-content:center; }
.section-head.center .eyebrow-line::before{ display:none; }
.section-head.center p{ margin-left:auto; margin-right:auto; }

section{ position:relative; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:100;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:22px var(--edge);
  transition:padding .45s var(--ease), background .45s var(--ease), box-shadow .45s var(--ease);
  background:transparent;
}
.site-header.scrolled{
  padding:12px var(--edge);
  background:rgba(100, 100, 98, 0.92);
  backdrop-filter:blur(10px);
  box-shadow:0 8px 30px rgba(0,0,0,0.18);
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand img{ height:80px; width:auto; transition:height .45s var(--ease); }
.site-header.scrolled .brand img{ height:80px; }

.brand-word{
  font-family:var(--display);
  font-size:1.25rem;
  color:var(--paper);
  letter-spacing:0.02em;
}
.brand-word span{ color:var(--gold-deep); }

.main-nav{
  display:flex;
  align-items:center;
  gap:38px;
}
.main-nav a{
  color:var(--gold);
  font-size:0.92rem;
  opacity:0.86;
  position:relative;
  padding-bottom:4px;
  transition:opacity .3s;
}
.main-nav a:hover{ opacity:1; }
.main-nav a::after{
  content:"";
  position:absolute;
  left:0; bottom:0;
  width:0%;
  height:1px;
  background:var(--gold);
  transition:width .3s var(--ease);
}
.main-nav a:hover::after{ width:100%; }

.header-cta{
  border:1px solid var(--gold);
  color:var(--gold-pale);
  padding:15px 22px;
  border-radius:2px;
  font-size:0.88rem;
  letter-spacing:0.02em;
  transition:background .3s, color .3s;
}
.header-cta:hover{ background:var(--gold); color:var(--ink); }

.nav-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  padding:6px;
}
.nav-toggle span{
  width:24px; height:1.5px; background:var(--paper);
}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  min-height:100vh;
  display:flex;
  align-items:stretch;
  background:var(--ink);
  position:relative;
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr 1fr;
  width:100%;
}
.hero-media{
  position:relative;
  overflow:hidden;
}
.hero-media img{
  width:100%; height:100%;
  object-fit:cover;
  object-position:center 20%;
  transform:scale(1.08);
  transition:transform 8s var(--ease);
}
.hero.loaded .hero-media img{ transform:scale(1); }
.hero-media::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(90deg, transparent 60%, var(--ink) 100%),
             linear-gradient(0deg, rgba(21,20,15,0.55) 0%, transparent 32%);
}
.hero-media .tag{
  position:absolute;
  left:28px; bottom:28px;
  color:var(--paper);
  font-size:0.72rem;
  letter-spacing:0.08em;
  opacity:0.55;
  z-index:2;
}

.hero-copy{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:140px 56px 80px 64px;
  position:relative;
}
.hero-copy .eyebrow-line{ color:var(--gold); }
.hero-copy .eyebrow-line::before{ background:var(--gold); }

.hero-copy h1{
  color:var(--paper);
  font-size:clamp(2.4rem, 4vw, 3.6rem);
  line-height:1.08;
  font-weight:450;
}
.hero-copy h1 em{
  font-style:italic;
  color:var(--gold-pale);
}
.hero-copy .lede{
  color:var(--stone-dim);
  font-size:1.05rem;
  max-width:420px;
  margin-top:24px;
  line-height:1.7;
}

.hero-cta-row{
  display:flex;
  align-items:center;
  gap:28px;
  margin-top:44px;
  flex-wrap:wrap;
}
.btn-primary{
  background:var(--gold);
  color:var(--ink);
  padding:16px 32px;
  border-radius:2px;
  font-size:0.92rem;
  font-weight:600;
  letter-spacing:0.02em;
  display:inline-flex;
  align-items:center;
  gap:10px;
  transition:transform .35s var(--ease), background .35s;
  border:1px solid var(--gold);
}
.btn-primary:hover{ background:transparent; color:var(--gold-pale); transform:translateY(-2px); }

.btn-ghost-link{
  color:var(--paper);
  font-size:0.92rem;
  border-bottom:1px solid var(--hairline-dark);
  padding-bottom:3px;
  transition:border-color .3s, color .3s;
}
.btn-ghost-link:hover{ border-color:var(--gold); color:var(--gold-pale); }

.hero-stats{
  display:grid;
  grid-template-columns:repeat(4,auto);
  gap:40px;
  margin-top:72px;
  padding-top:32px;
  border-top:1px solid var(--hairline-dark);
}
.hero-stats .stat b{
  display:block;
  font-family:var(--display);
  font-size:1.65rem;
  color:var(--paper);
  font-weight:500;
}
.hero-stats .stat span{
  color:var(--stone-dim);
  font-size:0.78rem;
  letter-spacing:0.02em;
}

.scroll-cue{
  position:absolute;
  left:64px; bottom:36px;
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--stone-dim);
  font-size:0.72rem;
  letter-spacing:0.08em;
}
.scroll-cue .line{
  width:1px; height:34px;
  background:linear-gradient(var(--gold), transparent);
  position:relative;
  overflow:hidden;
}
.scroll-cue .line::after{
  content:"";
  position:absolute; top:-100%; left:0; width:100%; height:100%;
  background:var(--gold);
  animation:scrollcue 2.2s var(--ease) infinite;
}
@keyframes scrollcue{
  0%{ top:-100%; }
  60%{ top:100%; }
  100%{ top:100%; }
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip{
  background:var(--ink-soft);
  border-top:1px solid var(--hairline-dark);
  border-bottom:1px solid var(--hairline-dark);
  overflow:hidden;
  padding:18px 0;
}
.marquee-track{
  display:flex;
  gap:56px;
  white-space:nowrap;
  animation:marquee 34s linear infinite;
  width:max-content;
}
.marquee-track span{
  color:var(--stone-dim);
  font-size:0.85rem;
  letter-spacing:0.03em;
  display:inline-flex;
  align-items:center;
  gap:56px;
}
.marquee-track span em{
  color:var(--gold);
  font-style:normal;
  margin-right:56px;
}
@keyframes marquee{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

/* ============================================================
   INTRO / ABOUT
   ============================================================ */
.about{
  padding:130px 0 110px;
  background:var(--ivory);
}
.about-grid{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:80px;
  align-items:start;
}
.about-lead h2{
  font-size:clamp(2rem, 3.2vw, 2.7rem);
  line-height:1.2;
}
.about-copy p{
  color:var(--stone);
  font-size:1.02rem;
  margin:0 0 18px;
}
.about-copy{ padding-top:8px; }

.feature-list{
  margin-top:40px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--hairline);
  border:1px solid var(--hairline);
}
.feature-item{
  background:var(--ivory);
  padding:26px 22px;
  transition:background .35s var(--ease);
}
.feature-item:hover{ background:var(--paper); }
.feature-item svg{
  width:26px; height:26px;
  stroke:var(--gold-deep);
  margin-bottom:16px;
}
.feature-item b{
  display:block;
  font-family:var(--display);
  font-size:1.02rem;
  font-weight:500;
  margin-bottom:4px;
}
.feature-item span{
  color:var(--stone);
  font-size:0.86rem;
}

/* ============================================================
   AMENITIES — bento grid
   ============================================================ */
.amenities{
  background:var(--ink);
  padding:130px 0;
  color:var(--paper);
}
.amenities .section-head h2{ color:var(--paper); }
.amenities .section-head p{ color:var(--stone-dim); }
.amenities .eyebrow-line{ color:var(--gold); }
.amenities .eyebrow-line::before{ background:var(--gold); }

.bento{
  display:grid;
  grid-template-columns:repeat(6, 1fr);
  grid-auto-rows:130px;
  gap:14px;
}
.bento-card{
  position:relative;
  border-radius:4px;
  overflow:hidden;
  isolation:isolate;
}
.bento-card.b1{ grid-column:span 3; grid-row:span 4; }
.bento-card.b2{ grid-column:span 3; grid-row:span 2; }
.bento-card.b3{ grid-column:span 2; grid-row:span 2; }
.bento-card.b4{ grid-column:span 1; grid-row:span 2; }
.bento-card.b5{ grid-column:span 3; grid-row:span 3; }
.bento-card.b6{ grid-column:span 3; grid-row:span 3; }

.bento-card img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  transition:transform .8s var(--ease);
  filter:saturate(0.92) contrast(1.03);
}
.bento-card:hover img{ transform:scale(1.06); }
.bento-card::before{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(0deg, rgba(15,14,10,0.86) 0%, rgba(15,14,10,0.05) 55%);
  z-index:1;
}
.bento-card .label{
  position:absolute; left:20px; bottom:16px; z-index:2;
  font-family:var(--display);
  font-size:1.15rem;
  color:var(--paper);
}
.bento-card .label small{
  display:block;
  font-family:var(--body);
  color:var(--gold-pale);
  font-size:0.72rem;
  letter-spacing:0.06em;
  margin-top:4px;
}

.bento-tile{
  background:var(--ink-soft);
  border:1px solid var(--hairline-dark);
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  padding:18px 20px;
  gap:10px;
}
.bento-tile svg{ width:24px; height:24px; stroke:var(--gold); }
.bento-tile span{ font-size:0.84rem; color:var(--paper); opacity:0.9; }

@media (max-width:900px){
  .bento{ grid-template-columns:repeat(2,1fr); grid-auto-rows:150px; }
  .bento-card.b1{ grid-column:span 2; grid-row:span 3; }
  .bento-card.b2,.bento-card.b3,.bento-card.b5,.bento-card.b6{ grid-column:span 1; grid-row:span 2; }
  .bento-card.b4{ grid-column:span 1; grid-row:span 1; }
}

/* ============================================================
   CONNECTIVITY
   ============================================================ */
.connectivity{
  padding:130px 0;
  background:var(--ivory);
}
.conn-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--hairline);
  border:1px solid var(--hairline);
}
.conn-card{
  background:var(--ivory);
  padding:38px 34px;
  transition:background .4s var(--ease), transform .4s var(--ease);
}
.conn-card:hover{
  background:var(--paper);
  transform:translateY(-4px);
  box-shadow:0 20px 40px rgba(21,20,15,0.06);
  position:relative;
  z-index:2;
}
.conn-card svg{
  width:32px; height:32px;
  stroke:var(--gold-deep);
  margin-bottom:22px;
}
.conn-card h3{
  font-size:1.12rem;
  font-weight:500;
  margin-bottom:10px;
}
.conn-card p{
  color:var(--stone);
  font-size:0.92rem;
  margin:0;
}

/* =========================================================
   NEARBY LANDMARKS
   ========================================================= */

.landmarks-section {
  position: relative;

  padding: 100px 24px;

  background: #f7f4ed;

  overflow: hidden;
}


.landmarks-container {
  max-width: 1400px;
  margin: 0 auto;
}


/* ---------------------------------------------------------
   HEADER
   --------------------------------------------------------- */

.landmarks-header {
  display: flex;

  justify-content: space-between;
  align-items: flex-end;

  margin-bottom: 42px;
}


.section-eyebrow {
  display: block;

  margin-bottom: 12px;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 2.5px;

  color: #b38a3e;
}


.landmarks-header h2 {
  margin: 0;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(32px, 4vw, 48px);

  font-weight: 500;

  line-height: 1.05;

  color: #151515;
}


.landmarks-header p {
  margin: 0;

  color: #8d887e;

  font-size: 16px;

  letter-spacing: 0.2px;
}


/* ---------------------------------------------------------
   FILTERS
   --------------------------------------------------------- */

.landmark-filters {
  display: flex;

  flex-wrap: wrap;

  gap: 10px;

  margin-bottom: 34px;
}


.landmark-filter {
  position: relative;

  border: 1px solid #d9d1c1;

  background: transparent;

  padding: 12px 21px;

  border-radius: 50px;

  font-family: inherit;

  font-size: 13px;

  color: #5e5a52;

  cursor: pointer;

  transition:
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}


.landmark-filter:hover {
  border-color: #bd9345;

  color: #9c7229;

  transform: translateY(-2px);
}


.landmark-filter.active {
  background: #202342;

  border-color: #202342;

  color: #ffffff;

  box-shadow: 0 8px 20px rgba(32, 35, 66, 0.14);
}


/* ---------------------------------------------------------
   GRID
   --------------------------------------------------------- */

.landmarks-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 18px;
}


/* ---------------------------------------------------------
   CARD
   --------------------------------------------------------- */

.landmark-card {
  position: relative;

  min-height: 118px;

  display: flex;

  align-items: center;

  padding: 25px 45px 25px 40px;

  border: 1px solid #ded6c7;

  background: rgba(255, 253, 248, 0.8);

  box-sizing: border-box;

  overflow: hidden;

  cursor: default;

  transition:
    transform 0.4s cubic-bezier(.2, .8, .2, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease,
    opacity 0.3s ease;
}


/* Gold vertical reveal */

.landmark-card::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;

  width: 3px;
  height: 0;

  background: #bd9345;

  transition: height 0.4s ease;
}


.landmark-card:hover {
  transform: translateY(-5px);

  border-color: #cdbb9c;

  box-shadow:
    0 15px 35px rgba(47, 41, 31, 0.08);
}


.landmark-card:hover::before {
  height: 100%;
}


/* ---------------------------------------------------------
   DOT
   --------------------------------------------------------- */

.landmark-dot {
  position: absolute;

  left: 22px;

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #c7953d;
}


/* ---------------------------------------------------------
   CATEGORY
   --------------------------------------------------------- */

.landmark-category {
  width: 78px;

  flex-shrink: 0;

  margin-left: 0;

  font-size: 14px;

  font-weight: 600;

  color: #7a756c;
}


/* ---------------------------------------------------------
   LANDMARK NAME
   --------------------------------------------------------- */

.landmark-card h3 {
  margin: 0;

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 17px;

  font-weight: 400;

  line-height: 1.35;

  color: #151515;
}


/* ---------------------------------------------------------
   ARROW
   --------------------------------------------------------- */

.landmark-arrow {
  position: absolute;

  right: 18px;

  top: 50%;

  transform: translateY(-50%) translateX(8px);

  opacity: 0;

  font-size: 20px;

  color: #b78b3c;

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}


.landmark-card:hover .landmark-arrow {
  opacity: 1;

  transform:
    translateY(-50%) translateX(0);
}


/* ---------------------------------------------------------
   FILTER ANIMATION
   --------------------------------------------------------- */

.landmark-card.filter-hide {
  animation: landmarkHide 0.25s ease forwards;
}


.landmark-card.filter-show {
  animation: landmarkShow 0.45s cubic-bezier(.2, .8, .2, 1) forwards;
}


@keyframes landmarkHide {

  0% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(0.94);
  }

}


@keyframes landmarkShow {

  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

}


/* ---------------------------------------------------------
   SCROLL REVEAL
   --------------------------------------------------------- */

.landmarks-section .landmark-card {
  opacity: 0;
  transform: translateY(25px);
}


.landmarks-section.visible .landmark-card {
  animation: landmarkReveal 0.65s cubic-bezier(.2, .8, .2, 1) forwards;
}


.landmarks-section.visible .landmark-card:nth-child(1) {
  animation-delay: 0.05s;
}

.landmarks-section.visible .landmark-card:nth-child(2) {
  animation-delay: 0.10s;
}

.landmarks-section.visible .landmark-card:nth-child(3) {
  animation-delay: 0.15s;
}

.landmarks-section.visible .landmark-card:nth-child(4) {
  animation-delay: 0.20s;
}

.landmarks-section.visible .landmark-card:nth-child(5) {
  animation-delay: 0.25s;
}

.landmarks-section.visible .landmark-card:nth-child(6) {
  animation-delay: 0.30s;
}

.landmarks-section.visible .landmark-card:nth-child(7) {
  animation-delay: 0.35s;
}

.landmarks-section.visible .landmark-card:nth-child(8) {
  animation-delay: 0.40s;
}

.landmarks-section.visible .landmark-card:nth-child(9) {
  animation-delay: 0.45s;
}

.landmarks-section.visible .landmark-card:nth-child(10) {
  animation-delay: 0.50s;
}

.landmarks-section.visible .landmark-card:nth-child(11) {
  animation-delay: 0.55s;
}

.landmarks-section.visible .landmark-card:nth-child(12) {
  animation-delay: 0.60s;
}


@keyframes landmarkReveal {

  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}


/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 1050px) {

  .landmarks-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 650px) {

  .landmarks-section {
    padding: 70px 18px;
  }


  .landmarks-header {
    display: block;

    margin-bottom: 30px;
  }


  .landmarks-header p {
    margin-top: 15px;

    font-size: 14px;
  }


  .landmark-filters {
    flex-wrap: nowrap;

    overflow-x: auto;

    padding-bottom: 8px;

    margin-right: -18px;

    padding-right: 18px;

    scrollbar-width: none;
  }


  .landmark-filters::-webkit-scrollbar {
    display: none;
  }


  .landmark-filter {
    flex-shrink: 0;

    padding: 10px 17px;
  }


  .landmarks-grid {
    grid-template-columns: 1fr;

    gap: 12px;
  }


  .landmark-card {
    min-height: 95px;

    padding: 20px 40px 20px 38px;
  }


  .landmark-category {
    width: 72px;

    font-size: 12px;
  }


  .landmark-card h3 {
    font-size: 13px;
  }

}

/* ============================================================
   RESIDENCES / FLOOR PLAN
   ============================================================ */
.residences{
  padding:130px 0;
  background:var(--ink);
  color:var(--paper);
}
.residences .section-head h2{ color:var(--paper); }
.residences .section-head p{ color:var(--stone-dim); }
.residences .eyebrow-line{ color:var(--gold); }
.residences .eyebrow-line::before{ background:var(--gold); }

.plan-panel{
  display:grid;
  grid-template-columns:1.3fr 0.9fr;
  gap:50px;
  align-items:center;
}
.plan-image{
  border:1px solid var(--hairline-dark);
  padding:18px;
  background:var(--ink-soft);
  position:relative;
}
.plan-image img{ width:100%; }
.plan-image .frame-tag{
  position:absolute; top:-1px; right:-1px;
  background:var(--gold);
  color:var(--ink);
  font-size:0.72rem;
  padding:6px 14px;
  letter-spacing:0.03em;
}
.unit-table{
  width:100%;
  border-collapse:collapse;
  margin-top:8px;
}
.unit-table th{
  text-align:left;
  font-size:0.72rem;
  letter-spacing:0.06em;
  color:var(--stone-dim);
  font-weight:500;
  padding:0 0 14px;
  border-bottom:1px solid var(--hairline-dark);
}
.unit-table td{
  padding:16px 0;
  border-bottom:1px solid var(--hairline-dark);
  font-size:0.95rem;
}
.unit-table td.num{
  font-family:var(--display);
  color:var(--gold-pale);
  font-size:1.1rem;
  width:50px;
}
.unit-table td.area{
  text-align:right;
  color:var(--stone-dim);
}
.unit-note{
  margin-top:24px;
  color:var(--stone-dim);
  font-size:0.86rem;
  line-height:1.7;
}

/* ============================================================
   SPECIFICATIONS
   ============================================================ */
.specs{
  padding:130px 0;
  background:var(--ivory);
}
.specs-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:44px 40px;
}
.specs-item{
  border-top:2px solid var(--ink);
  padding-top:20px;
}
.specs-item h3{
  font-size:1rem;
  font-weight:600;
  letter-spacing:0.02em;
  margin-bottom:14px;
  display:flex;
  align-items:center;
  gap:10px;
}
.specs-item h3 svg{ width:20px; height:20px; stroke:var(--gold-deep); }
.specs-item ul li{
  color:var(--stone);
  font-size:0.9rem;
  padding:7px 0;
  border-bottom:1px dashed var(--hairline);
  padding-left:14px;
  position:relative;
}
.specs-item ul li::before{
  content:"";
  position:absolute; left:0; top:15px;
  width:5px; height:1px;
  background:var(--gold);
}
.specs-item ul li:last-child{ border-bottom:none; }

/* ============================================================
   LOCATION / MAP
   ============================================================ */
.location{
  padding:130px 0;
  background:var(--ink);
  color:var(--paper);
}
.location .section-head h2{ color:var(--paper); }
.location .section-head p{ color:var(--stone-dim); }
.location .eyebrow-line{ color:var(--gold); }
.location .eyebrow-line::before{ background:var(--gold); }

.location-panel{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:2px;
  background:var(--hairline-dark);
  border:1px solid var(--hairline-dark);
}
.map-embed{
  min-height:460px;
  position:relative;
  background:var(--ink-soft);
}
.map-embed iframe{
  width:100%; height:100%;
  min-height:460px;
  border:0;
  filter:grayscale(0.3) contrast(1.05);
}
.location-detail{
  background:var(--ink-soft);
  padding:48px 44px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.location-detail h3{
  font-size:1.5rem; font-weight:500; color:var(--paper);
  margin-bottom:18px;
}
.address-block{
  display:flex; gap:16px; margin-bottom:26px;
}
.address-block svg{ width:22px; height:22px; stroke:var(--gold); flex-shrink:0; margin-top:2px; }
.address-block p{ color:var(--stone-dim); font-size:0.96rem; margin:0; }
.contact-rows{ display:flex; flex-direction:column; gap:14px; margin-bottom:30px; }
.contact-rows a{
  display:flex; align-items:center; gap:14px;
  color:var(--paper); font-size:0.96rem;
  transition:color .3s;
}
.contact-rows a:hover{ color:var(--gold-pale); }
.contact-rows a svg{ width:20px; height:20px; stroke:var(--gold); }

.qr-pair{
  display:flex;
  flex-direction:column;
  gap:20px;
  border-top:1px solid var(--hairline-dark);
  padding-top:26px;
  margin-top:6px;
}
.rera-row{
  display:flex;
  align-items:center;
  gap:18px;
}
.rera-row img{
  width:64px; height:64px;
  border:1px solid var(--hairline-dark);
  padding:5px;
  background:var(--paper);
  flex-shrink:0;
}
.rera-row .rera-text b{
  display:block; color:var(--paper); font-size:0.82rem; letter-spacing:0.02em;
}
.rera-row .rera-text span{
  color:var(--stone-dim); font-size:0.78rem;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band{
  background:var(--gold);
  padding:70px 0;
  color:var(--ink);
}
.cta-band .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  flex-wrap:wrap;
}
.cta-band h2{
  font-size:clamp(1.6rem,2.6vw,2.2rem);
  max-width:520px;
  color:var(--ink);
}
.cta-band .btn-primary{
  background:var(--ink);
  border-color:var(--ink);
  color:var(--paper);
}
.cta-band .btn-primary:hover{
  background:transparent;
  color:var(--ink);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{
  background:var(--ink);
  color:var(--stone-dim);
  padding:90px 0 0;
}
.footer-top{
  display:grid;
  grid-template-columns:1.3fr 0.8fr 0.8fr 1fr;
  gap:50px;
  padding-bottom:60px;
  border-bottom:1px solid var(--hairline-dark);
}
.footer-brand img{ height:42px; margin-bottom:18px; }
.footer-brand p{
  font-size:0.9rem;
  line-height:1.75;
  max-width:280px;
  color:var(--stone-dim);
}
.footer-social{
  display:flex;
  gap:12px;
  margin-top:24px;
}
.footer-social a{
  width:38px; height:38px;
  border:1px solid var(--hairline-dark);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  transition:border-color .3s, background .3s;
}
.footer-social a svg{ width:16px; height:16px; stroke:var(--paper); }
.footer-social a:hover{ border-color:var(--gold); background:var(--gold); }
.footer-social a:hover svg{ stroke:var(--ink); }

.footer-col h4{
  color:var(--paper);
  font-size:0.85rem;
  letter-spacing:0.04em;
  margin-bottom:22px;
  font-weight:500;
  font-family:var(--body);
}
.footer-col ul li{ margin-bottom:13px; }
.footer-col ul li a{ font-size:0.9rem; transition:color .3s; }
.footer-col ul li a:hover{ color:var(--gold-pale); }

.footer-contact li{ display:flex; gap:10px; align-items:flex-start; font-size:0.88rem; }
.footer-contact li svg{ width:16px; height:16px; stroke:var(--gold); flex-shrink:0; margin-top:3px; }

.developer-strip{
  display:flex;
  align-items:center;
  gap:26px;
  flex-wrap:wrap;
  padding:36px 0;
  border-bottom:1px solid var(--hairline-dark);
}
.dev-label{
  color:var(--stone-dim);
  font-size:0.76rem;
  letter-spacing:0.04em;
  white-space:nowrap;
}
.dev-logos{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.dev-badge{
  background:var(--paper);
  padding:10px 20px;
  border-radius:3px;
  display:flex;
  align-items:center;
}
.dev-badge img{ height:26px; width:auto; }
.dev-divider{
  width:1px;
  height:28px;
  background:var(--hairline-dark);
}
@media (max-width:700px){
  .dev-divider{ display:none; }
  .developer-strip{ padding:28px 0; }
}

.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:22px 0;
  flex-wrap:wrap;
  gap:12px;
  font-size:0.8rem;
  color:var(--stone-dim);
}

/* ============================================================
   FLOATING ACTIONS
   ============================================================ */
.floating-actions{
  position:fixed;
  right:26px;
  bottom:26px;
  z-index:200;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.fab{
  width:58px; height:58px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 30px rgba(0,0,0,0.28);
  position:relative;
  transition:transform .3s var(--ease);
}
.fab:hover{ transform:scale(1.08); }
.fab svg{ width:26px; height:26px; }
.fab.call{ background:var(--gold); }
.fab.call svg{ stroke:var(--ink); }
.fab.whatsapp{ background:var(--whatsapp); }
.fab.whatsapp svg{ fill:var(--paper); stroke:none; }
.fab.whatsapp::after{
  content:"";
  position:absolute; inset:0;
  border-radius:50%;
  border:2px solid var(--whatsapp);
  animation:pulse 2.4s ease-out infinite;
}
@keyframes pulse{
  0%{ transform:scale(1); opacity:0.7; }
  100%{ transform:scale(1.7); opacity:0; }
}
.fab-tooltip{
  position:absolute;
  right:70px; top:50%; transform:translateY(-50%);
  background:var(--ink);
  color:var(--paper);
  padding:7px 14px;
  font-size:0.78rem;
  border-radius:3px;
  white-space:nowrap;
  opacity:0;
  pointer-events:none;
  transition:opacity .25s, right .25s;
}
.fab:hover .fab-tooltip{ opacity:1; right:74px; }

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal{
  opacity:0;
  transform:translateY(26px);
  transition:opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in{ opacity:1; transform:translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1080px){
  .about-grid{ grid-template-columns:1fr; gap:40px; }
  .feature-list{ grid-template-columns:repeat(3,1fr); }
  .plan-panel{ grid-template-columns:1fr; }
  .location-panel{ grid-template-columns:1fr; }
  .footer-top{ grid-template-columns:1fr 1fr; }
  .specs-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:880px){
  .main-nav{ display:none; }
  .nav-toggle{ display:flex; }
  .hero-grid{ grid-template-columns:1fr; }
  .hero-media{ min-height:52vh; }
  .hero-copy{ padding:60px 28px 60px; }
  .hero-stats{ grid-template-columns:repeat(2,1fr); }
  .conn-grid{ grid-template-columns:1fr; }
  .landmark-grid{ grid-template-columns:repeat(2,1fr); }
  .specs-grid{ grid-template-columns:1fr; }
  .footer-top{ grid-template-columns:1fr; gap:36px; }
  .cta-band .wrap{ flex-direction:column; align-items:flex-start; }
}
@media (max-width:560px){
  .hero-stats{ grid-template-columns:repeat(2,1fr); gap:24px; }
  .scroll-cue{ display:none; }
  .feature-list{ grid-template-columns:1fr; }
}

/* ============================================================
   ENQUIRY + RESOURCES + GALLERY ADDITIONS
   ============================================================ */
.hero-downloads{display:flex;gap:26px;flex-wrap:wrap;margin-top:22px}.resource-link{color:var(--gold-pale);font-size:.84rem;border-bottom:1px solid var(--hairline-dark);padding-bottom:4px;transition:.3s}.resource-link span{margin-left:7px;color:var(--gold)}.resource-link:hover{color:#fff;border-color:var(--gold)}
.cta-band-inner{display:flex;align-items:center;justify-content:space-between;gap:35px}.cta-band .eyebrow-line{color:var(--ink);margin-bottom:10px}.cta-band .eyebrow-line::before{background:var(--ink)}.cta-band p{margin-top:10px;color:#3f392d}.enquiry-trigger{cursor:pointer}
.gallery-section{background:var(--ivory);padding:130px 0}.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);grid-auto-rows:240px;gap:14px}.gallery-card{position:relative;border:0;padding:0;overflow:hidden;background:#222;cursor:pointer;text-align:left}.gallery-card.gallery-large{grid-row:span 2}.gallery-card.gallery-wide{grid-column:span 2}.gallery-card img{width:100%;height:100%;object-fit:cover;transition:transform .7s var(--ease),filter .5s}.gallery-card:hover img{transform:scale(1.06);filter:brightness(.78)}.gallery-card::after{content:"";position:absolute;inset:0;background:linear-gradient(0deg,rgba(21,20,15,.7),transparent 55%)}.gallery-card span{position:absolute;left:20px;bottom:16px;z-index:2;color:var(--paper);font-size:.72rem;letter-spacing:.08em;font-weight:600}.gallery-lightbox{position:fixed;inset:0;background:rgba(8,8,6,.95);z-index:500;display:none;align-items:center;justify-content:center;padding:50px}.gallery-lightbox.open{display:flex}.gallery-lightbox img{max-width:90vw;max-height:85vh;object-fit:contain}.lightbox-close,.lightbox-prev,.lightbox-next{position:absolute;border:0;background:rgba(255,255,255,.08);color:#fff;cursor:pointer;border-radius:50%;width:46px;height:46px;font-size:32px;line-height:1}.lightbox-close{right:25px;top:25px}.lightbox-prev{left:25px;top:50%;transform:translateY(-50%)}.lightbox-next{right:25px;top:50%;transform:translateY(-50%)}
.enquiry-modal{position:fixed;inset:0;z-index:600;display:none;align-items:center;justify-content:center;padding:25px}.enquiry-modal.open{display:flex}.enquiry-backdrop{position:absolute;inset:0;background:rgba(8,8,6,.75);backdrop-filter:blur(5px)}.enquiry-dialog{position:relative;z-index:2;background:var(--ivory);width:min(620px,100%);max-height:92vh;overflow:auto;padding:42px;box-shadow:0 30px 90px rgba(0,0,0,.35)}.enquiry-close{position:absolute;right:18px;top:14px;background:none;border:0;font-size:32px;color:var(--stone);cursor:pointer}.enquiry-dialog h2{font-family:var(--display);font-size:2.4rem;line-height:1.12;margin:12px 0}.enquiry-intro{font-size:.85rem;color:var(--stone);line-height:1.7;margin-bottom:20px}.enquiry-intro code{font-size:.75rem}.enquiry-form{display:grid;grid-template-columns:1fr 1fr;gap:15px 18px}.enquiry-form label{font-size:.72rem;color:var(--stone);font-weight:600;display:flex;flex-direction:column;gap:6px}.enquiry-form label:nth-of-type(5){grid-column:1/-1}.enquiry-form input,.enquiry-form select,.enquiry-form textarea{border:1px solid var(--hairline);background:var(--paper);padding:12px 13px;outline:none;color:var(--ink);border-radius:2px}.enquiry-form input:focus,.enquiry-form select:focus,.enquiry-form textarea:focus{border-color:var(--gold)}.enquiry-submit{grid-column:1/-1;justify-content:center;cursor:pointer}.form-note,.form-status{grid-column:1/-1;font-size:.7rem;color:var(--stone);margin:0}.form-status{color:var(--gold-deep);min-height:18px}
@media(max-width:880px){.gallery-grid{grid-template-columns:1fr 1fr}.gallery-card.gallery-large{grid-row:span 1}.gallery-card.gallery-wide{grid-column:1/-1}.cta-band-inner{align-items:flex-start;flex-direction:column}}
@media(max-width:560px){.hero-downloads{gap:16px}.gallery-grid{grid-template-columns:1fr}.gallery-card.gallery-wide{grid-column:auto}.enquiry-dialog{padding:30px 22px}.enquiry-form{grid-template-columns:1fr}.enquiry-form label:nth-of-type(5),.enquiry-submit,.form-note,.form-status{grid-column:auto}.lightbox-prev{left:10px}.lightbox-next{right:10px}}

/* =========================================================
   DEVELOPERS / FOUNDERS SECTION
   ========================================================= */

     /* =========================================
     DEVELOPERS SECTION
  ========================================= */
  
     .developers-section {
       position: relative;
       padding: 120px 7vw;
       background: #f6f9fc;
       overflow: hidden;
     }
  
     .developers-section::before {
       content: "SKYONE";
       position: absolute;
       top: 80px;
       right: -80px;
  
       font-family: "Playfair Display", serif;
       font-size: 220px;
       line-height: 1;
  
       color: rgba(23, 41, 77, 0.025);
  
       pointer-events: none;
     }
  
     .developers-container {
       position: relative;
       z-index: 2;
       max-width: 1200px;
       margin: auto;
     }
  
  
     /* -----------------------------------------
     HEADING
  ----------------------------------------- */
  
     .developers-heading {
       display: flex;
       align-items: flex-end;
       justify-content: space-between;
  
       gap: 60px;
  
       margin-bottom: 70px;
     }
  
     .developers-eyebrow {
       display: block;
  
       font-size: 9px;
       font-weight: 800;
  
       letter-spacing: 0.28em;
  
       color: #8994a8;
  
       margin-bottom: 18px;
     }
  
     .developers-heading h2 {
       font-family: "Playfair Display", serif;
       font-size: clamp(48px, 5.5vw, 78px);
       font-weight: 500;
       line-height: 1.02;
  
       letter-spacing: -0.04em;
     }
  
     .developers-heading h2 em {
       font-style: normal;
       color: #c9a35b;
     }
  
     .developers-heading>p {
       max-width: 390px;
  
       font-size: 13px;
       line-height: 1.8;
  
       color: #6b768b;
     }


.developers-section {
  width: 100%;
  padding: 110px 6%;
  background: #ffffff;
  overflow: hidden;
}

.developers-container {
  max-width: 800px;
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  gap: 38px;
}


/* ---------------------------------------------------------
   CARD
   --------------------------------------------------------- */

.developer-card {
  position: relative;
  width: 48%;
}


/* Create the staggered layout */

.developer-card-left {
  margin-top: 0;
}

.developer-card-right {
  margin-top: 75px;
}


/* ---------------------------------------------------------
   IMAGE
   --------------------------------------------------------- */

.developer-image-wrap {
  position: relative;
  width: 100%;
  height: 525px;

  border-radius: 0 34px 34px 34px;

  overflow: visible;
}


.developer-image {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  display: block;

  border-radius: 34px;
}


/* ---------------------------------------------------------
   ARROW CIRCLE
   --------------------------------------------------------- */

.developer-arrow {
  position: absolute;

  top: -1px;
  right: -1px;

  width: 64px;
  height: 64px;

  background: #202342;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;

  font-size: 29px;
  font-weight: 300;

  z-index: 5;

  /* Creates the white cut-out around circle */
  box-shadow: 0 0 0 12px #ffffff;

  transform: translate(0, 0);
}


/* ---------------------------------------------------------
   PROFILE INFO
   --------------------------------------------------------- */

.developer-info {
  position: relative;

  width: 78%;

  min-height: 112px;

  margin: -5px auto 0;

  padding: 24px 25px 20px;

  border-radius: 0 0 24px 24px;

  /* Frosted luxury gradient */
  background:
    linear-gradient(135deg,
      rgba(119, 91, 48, 0.62),
      rgba(225, 215, 193, 0.88) 55%,
      rgba(239, 241, 244, 0.96));

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  text-align: center;

  z-index: 10;

  box-sizing: border-box;
}


/* Second card slightly cooler */

.developer-card-right .developer-info {
  background:
    linear-gradient(135deg,
      rgba(55, 55, 55, 0.88),
      rgba(155, 159, 165, 0.85) 55%,
      rgba(222, 228, 233, 0.96));
}


/* ---------------------------------------------------------
   ROLE
   --------------------------------------------------------- */

.developer-role {
  display: block;

  margin-bottom: 8px;

  color: #ffffff;

  font-family: Arial, sans-serif;

  font-size: 14px;
  font-weight: 700;

  letter-spacing: 0.3px;
  text-transform: uppercase;
}


/* ---------------------------------------------------------
   NAME
   --------------------------------------------------------- */

.developer-info h3 {
  margin: 0;

  color: #ffffff;

  font-family: Arial, sans-serif;

  font-size: 32px;
  line-height: 1.1;

  font-weight: 700;

  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}


/* ---------------------------------------------------------
   HOVER EFFECT
   --------------------------------------------------------- */

.developer-card {
  transition: transform 0.4s ease;
}

.developer-card:hover {
  transform: translateY(-6px);
}

.developer-card:hover .developer-image {
  transform: scale(1.015);
}

.developer-image {
  transition: transform 0.5s ease;
}


/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 900px) {

  .developers-section {
    padding: 80px 5%;
  }

  .developers-container {
    gap: 25px;
  }

  .developer-card-right {
    margin-top: 45px;
  }

  .developer-image-wrap {
    height: 500px;
  }

  .developer-info {
    width: 82%;
  }

  .developer-info h3 {
    font-size: 25px;
  }

  .developer-role {
    font-size: 12px;
  }

}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 650px) {

  .developers-section {
    padding: 65px 20px;
  }

  .developers-container {
    flex-direction: column;
    gap: 70px;
  }

  .developer-card {
    width: 100%;
  }

  .developer-card-left,
  .developer-card-right {
    margin-top: 0;
  }

  .developer-image-wrap {
    height: 500px;
  }

  .developer-info {
    width: 82%;
    min-height: 105px;

    padding: 21px 15px 18px;
  }

  .developer-info h3 {
    font-size: 27px;
  }

  .developer-role {
    font-size: 12px;
  }

  .developer-arrow {
    width: 58px;
    height: 58px;

    font-size: 26px;

    box-shadow: 0 0 0 10px #ffffff;
  }

}


/* ---------------------------------------------------------
   SMALL MOBILE
   --------------------------------------------------------- */

@media (max-width: 400px) {

  .developer-image-wrap {
    height: 430px;
  }

  .developer-info {
    width: 88%;
  }

  .developer-info h3 {
    font-size: 23px;
  }

  .developer-role {
    font-size: 11px;
  }

}