/* =========================
   GLOBAL
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:#f7f5f1;
  color:#111;
  overflow-x:hidden;
}


img{
    width:100%;
}


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

section{
  padding:70px 7%;
}

/* =========================
   HERO
========================= */

/* HERO */

/* Pages with the standard white navbar */
body:not(.transparent-navbar) {
    padding-top: 82px; /* Adjust if needed */
}

.hero{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.18);
}

/* =========================
   INTRO
========================= */

.intro{
  padding-top:140px;
  padding-bottom:140px;
}

.intro-line{
  width:100%;
  height:1px;
  background:rgba(0,0,0,0.08);
  margin-bottom:70px;
}

.intro-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:90px;
  align-items:start;
}

.intro-left span{
  font-size:0.78rem;
  text-transform:uppercase;
  letter-spacing:4px;
  color:#b08a57;
  display:block;
  margin-bottom:24px;
}

.intro-left h1{
  font-family:'Cormorant Garamond', serif;
  font-size:5.4rem;
  line-height:0.94;
  font-weight:600;
  color:#111;
}

.intro-right p{
  font-size:1.05rem;
  line-height:2;
  color:#555;
  margin-bottom:28px;
}

/* =========================
   SECTION HEADINGS
========================= */

.section-heading{
  max-width:850px;
  margin-bottom:70px;
}

.section-heading span{
  font-size:0.8rem;
  letter-spacing:4px;
  text-transform:uppercase;
  color:#b08a57;
  display:block;
  margin-bottom:20px;
}

.section-heading h2{
  font-family:'Cormorant Garamond', serif;
  font-size:4.2rem;
  line-height:1;
  font-weight:600;
  margin-bottom:24px;
}

.section-heading p{
  color:#666;
  line-height:1.9;
  max-width:700px;
}

/* =========================
   CARDS
========================= */

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:30px;
}

.card{
  background:#fff;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 10px 40px rgba(0,0,0,0.04);
  transition:0.4s ease;
}

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

.card img{
  height:340px;
  object-fit:cover;
}

.card-content{
  padding:36px;
}

.card-content h3{
  font-family:'Cormorant Garamond', serif;
  font-size:2rem;
  margin-bottom:16px;
  font-weight:600;
}

.card-content p{
  color:#666;
  line-height:1.9;
}

/* =========================
   FEATURE SECTION
========================= */

.feature{
  background:#111;
  border-radius:40px;
  overflow:hidden;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
}

.feature-image img{
  height:100%;
  object-fit:cover;
}

.feature-content{
  padding:90px;
  color:#fff;
}

.feature-content h2{
  font-family:'Cormorant Garamond', serif;
  font-size:4rem;
  line-height:1;
  margin-bottom:30px;
  font-weight:600;
}

.feature-content p{
  color:rgba(255,255,255,0.75);
  line-height:2;
  margin-bottom:24px;
}

/* =========================
   EDITORIAL SECTION
========================= */

.editorial{
  max-width:1100px;
}

.editorial h2{
  font-family:'Cormorant Garamond', serif;
  font-size:4rem;
  margin-bottom:30px;
  line-height:1;
  font-weight:600;
}

.editorial p{
  font-size:1.05rem;
  line-height:2;
  color:#555;
  margin-bottom:28px;
}

/* =========================
   TESTIMONIALS
========================= */

.testimonials{
  background:#f1ede6;
}

.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:30px;
  margin-top:60px;
}

.testimonial{
  background:#fff;
  padding:42px;
  border-radius:28px;
}

.testimonial p{
  line-height:2;
  color:#555;
  margin-bottom:24px;
  font-size:1rem;
}

.testimonial h4{
  font-weight:600;
  color:#111;
}

/* =========================
   CTA
========================= */

.cta{
  background:#111;
  color:#fff;
  border-radius:40px;
  text-align:center;
  padding:110px 60px;
}

.cta h2{
  font-family:'Cormorant Garamond', serif;
  font-size:4.4rem;
  line-height:1;
  margin-bottom:26px;
  font-weight:600;
}

.cta p{
  max-width:780px;
  margin:auto;
  line-height:2;
  color:rgba(255,255,255,0.75);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

  .intro-grid,
  .feature{
    grid-template-columns:1fr;
  }

  .intro-left h1{
    font-size:4rem;
  }

}

@media(max-width:768px){

  section{
    padding:90px 6%;
  }

  .intro{
    padding-top:100px;
    padding-bottom:100px;
  }

  .intro-left h1,
  .section-heading h2,
  .feature-content h2,
  .editorial h2,
  .cta h2{
    font-size:2.8rem;
    line-height:1.05;
  }

  .feature-content{
    padding:50px 32px;
  }

  .cta{
    padding:80px 30px;
  }

}

/* =========================
   COMPLETED PROJECTS
========================= */

.completed-intro{
  max-width:1100px;
}

.completed-projects-section{
  background:#f3efe9;
}

.completed-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(360px,1fr));
  gap:36px;
}

.completed-card{
  background:#fff;
  border-radius:32px;
  overflow:hidden;
  box-shadow:0 10px 40px rgba(0,0,0,0.04);
  transition:0.4s ease;
}

.completed-card:hover{
  transform:translateY(-10px);
}

.completed-card-image{
  width:100%;
  background:#f7f5f1;
  padding:24px 24px 0;
}

.completed-card-image img{
  width:100%;
  height:auto;
  max-height:320px;
  object-fit:contain;
  border-radius:24px;
  display:block;
}

.completed-card-content{
  padding:42px;
}

.completed-card-content h3{
  font-family:'Cormorant Garamond', serif;
  font-size:2.4rem;
  line-height:1;
  margin-bottom:18px;
  font-weight:600;
}

.completed-card-content p{
  color:#666;
  line-height:1.9;
  margin-bottom:28px;
}

.completed-meta{
  display:flex;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  margin-bottom:28px;
}

.completed-meta span{
  font-size:0.9rem;
  color:#b08a57;
}

.completed-card-content a{
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-weight:600;
  transition:0.3s ease;
}

.completed-card-content a:hover{
  color:#b08a57;
}

.featured-villa{
  background:#111;
}

.featured-villa .completed-card-content h3{
  color:#fff;
}

.featured-villa .completed-card-content p{
  color:rgba(255,255,255,0.72);
}

.featured-villa .completed-card-content a{
  color:#fff;
}

@media(max-width:768px){

  .completed-card-content{
    padding:32px;
  }

  .completed-card-content h3{
    font-size:2rem;
  }

}

/* =========================
   UPCOMING PROJECTS
========================= */

.upcoming-intro{
  max-width:1100px;
}

/* FEATURED */

.upcoming-feature-section{
  background:#111;
  color:#fff;
}

.upcoming-feature-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.upcoming-feature-image img{
  width:100%;
  border-radius:36px;
  display:block;
}

.upcoming-feature-content span{
  font-size:0.8rem;
  letter-spacing:4px;
  text-transform:uppercase;
  color:#b08a57;
  display:block;
  margin-bottom:24px;
}

.upcoming-feature-content h2{
  font-family:'Cormorant Garamond', serif;
  font-size:5rem;
  line-height:1;
  margin-bottom:28px;
  font-weight:600;
}

.upcoming-feature-content p{
  line-height:2;
  color:rgba(255,255,255,0.74);
  margin-bottom:24px;
}

.upcoming-meta{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:42px;
}

.upcoming-meta div{
  padding:28px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,0.08);
  background:rgba(255,255,255,0.03);
}

.upcoming-meta h4{
  color:#b08a57;
  margin-bottom:12px;
  font-size:0.9rem;
}

.upcoming-meta p{
  margin:0;
  color:#fff;
}

/* RESORTS */

.resort-section{
  background:#f3efe9;
}

.resort-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.resort-image{
  background:#fff;
  border-radius:36px;
  overflow:hidden;
  padding:24px;
}

.resort-image img{
  width:100%;
  height:auto;
  display:block;
  border-radius:24px;
}

.resort-content span{
  font-size:0.8rem;
  letter-spacing:4px;
  text-transform:uppercase;
  color:#b08a57;
  display:block;
  margin-bottom:24px;
}

.resort-content h2{
  font-family:'Cormorant Garamond', serif;
  font-size:4.5rem;
  line-height:1;
  margin-bottom:28px;
  font-weight:600;
}

.resort-content p{
  line-height:2;
  color:#555;
  margin-bottom:24px;
}

/* FUTURE VISION */

.future-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:32px;
}

.future-card{
  background:#fff;
  padding:48px;
  border-radius:32px;
  box-shadow:0 10px 40px rgba(0,0,0,0.04);
  transition:0.4s ease;
}

.future-card:hover{
  transform:translateY(-10px);
}

.future-card i{
  font-size:2rem;
  color:#b08a57;
  margin-bottom:28px;
}

.future-card h3{
  font-family:'Cormorant Garamond', serif;
  font-size:2.2rem;
  margin-bottom:18px;
}

.future-card p{
  color:#666;
  line-height:1.9;
}

/* RESPONSIVE */

@media(max-width:1100px){

  .upcoming-feature-grid,
  .resort-wrapper{
    grid-template-columns:1fr;
  }

  .upcoming-meta{
    grid-template-columns:1fr;
  }

}

@media(max-width:768px){

  .upcoming-feature-content h2,
  .resort-content h2{
    font-size:3rem;
  }

  .future-card{
    padding:36px;
  }

}

/* =========================
   PROJECTS HERO
========================= */

.projects-hero{
  width:100%;
  height:100vh;
  position:relative;
  overflow:hidden;
}

.projects-hero img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.projects-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
}

.projects-hero-content{
  position:absolute;
  inset:0;
  z-index:2;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:0 6%;
  color:#fff;
}

.projects-hero-content span{
  font-size:0.8rem;
  letter-spacing:4px;
  text-transform:uppercase;
  color:#d6b27a;
  margin-bottom:24px;
}

.projects-hero-content h1{
  font-family:'Cormorant Garamond', serif;
  font-size:6.5rem;
  line-height:0.95;
  font-weight:600;
  margin-bottom:24px;
}

.projects-hero-content p{
  max-width:720px;
  line-height:2;
  color:rgba(255,255,255,0.8);
}

/* =========================
   FEATURE PROJECT
========================= */

.dark-project{
  background:#111;
  color:#fff;
}

.project-feature{
  padding:140px 7%;
}

.project-feature-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.project-image img{
  width:100%;
  height:760px;
  object-fit:cover;
  border-radius:36px;
}

.project-content span{
  font-size:0.8rem;
  letter-spacing:4px;
  text-transform:uppercase;
  color:#b08a57;
  display:block;
  margin-bottom:24px;
}

.project-content h2{
  font-family:'Cormorant Garamond', serif;
  font-size:5rem;
  line-height:1;
  margin-bottom:28px;
  font-weight:600;
}

.project-content p{
  line-height:2;
  color:rgba(255,255,255,0.74);
  margin-bottom:24px;
}

.project-meta{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:42px;
}

.project-meta div{
  border:1px solid rgba(255,255,255,0.08);
  padding:30px;
  border-radius:24px;
  background:rgba(255,255,255,0.03);
  backdrop-filter:blur(10px);
}

.project-meta h4{
  margin-bottom:12px;
  color:#b08a57;
  font-size:0.9rem;
}

.project-meta p{
  margin:0;
  color:#fff;
}

/* =========================
   VILLA LAYOUTS
========================= */

.villa-layouts{
  background:#f3efe9;
}

.villa-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:30px;
}

.villa-card{
  background:#fff;
  padding:44px;
  border-radius:30px;
  box-shadow:0 10px 40px rgba(0,0,0,0.04);
  transition:0.4s ease;
}

.villa-card:hover{
  transform:translateY(-10px);
}

.villa-card h3{
  font-family:'Cormorant Garamond', serif;
  font-size:2.5rem;
  margin-bottom:28px;
  font-weight:600;
}

.villa-card ul{
  list-style:none;
}

.villa-card li{
  padding:16px 0;
  border-bottom:1px solid rgba(0,0,0,0.08);
  color:#555;
  line-height:1.7;
}

/* =========================
   PROJECTS GRID
========================= */

.projects-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(360px,1fr));
  gap:36px;
}

.project-card{
  background:#fff;
  border-radius:32px;
  overflow:hidden;
  box-shadow:0 10px 40px rgba(0,0,0,0.04);
  transition:0.4s ease;
}

.project-card:hover{
  transform:translateY(-10px);
}

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

.project-card-content{
  padding:42px;
}

.project-card-content h3{
  font-family:'Cormorant Garamond', serif;
  font-size:2.5rem;
  margin-bottom:18px;
  font-weight:600;
}

.project-card-content p{
  color:#666;
  line-height:1.9;
  margin-bottom:30px;
}

.project-info{
  display:flex;
  justify-content:space-between;
  gap:20px;
  margin-bottom:30px;
  color:#b08a57;
  font-size:0.92rem;
  flex-wrap:wrap;
}

.project-card-content a{
  display:inline-flex;
  align-items:center;
  gap:12px;
  color:#111;
  font-weight:600;
  transition:0.3s ease;
}

.project-card-content a:hover{
  color:#b08a57;
}

/* =========================
   MAP SECTION
========================= */

.map-section{
  background:#111;
  color:#fff;
}

.map-section .section-heading h2{
  color:#fff;
}

.map-section .section-heading span{
  color:#b08a57;
}

.map-wrapper{
  position:relative;
  height:720px;
  overflow:hidden;
  border-radius:36px;
}

.map-wrapper iframe{
  width:100%;
  height:100%;
  border:0;
}

.map-overlay-card{
  position:absolute;
  left:50px;
  bottom:50px;
  max-width:420px;
  background:rgba(255,255,255,0.85);
  backdrop-filter:blur(18px);
  border-radius:30px;
  padding:40px;
  box-shadow:0 10px 40px rgba(0,0,0,0.2);
}

.map-overlay-card h3{
  font-family:'Cormorant Garamond', serif;
  font-size:2.5rem;
  margin-bottom:18px;
  color:#111;
}

.map-overlay-card p{
  color:#555;
  line-height:1.9;
  margin-bottom:28px;
}

.map-locations{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.map-locations span{
  padding:10px 18px;
  border-radius:999px;
  background:#111;
  color:#fff;
  font-size:0.84rem;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

  .project-feature-grid{
    grid-template-columns:1fr;
  }

  .project-meta{
    grid-template-columns:1fr;
  }

}

@media(max-width:768px){

  .projects-hero-content h1{
    font-size:3.8rem;
  }

  .project-content h2{
    font-size:3.2rem;
  }

  .project-image img{
    height:480px;
  }

  .map-wrapper{
    height:auto;
  }

  .map-wrapper iframe{
    height:500px;
  }

  .map-overlay-card{
    position:relative;
    left:auto;
    bottom:auto;
    margin:24px;
  }

}

/* =========================
   CASABLANCA SLIDER
========================= */

.casablanca-gallery-section{
  background:#f7f5f1;
  overflow:hidden;
}

.casablanca-slider{
  position:relative;
  overflow:hidden;
  border-radius:36px;
}

.casablanca-track{
  display:flex;
  transition:transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}

.casablanca-slide{
  min-width:100%;
  position:relative;
  background:#111;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px;
}

.casablanca-slide img{
  width:100%;
  height:auto;
  max-height:780px;
  object-fit:contain;
  display:block;
  border-radius:24px;
}

/* OVERLAY */

.casablanca-slide::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(0,0,0,0.18),
    rgba(0,0,0,0)
  );
}



/* NAV BUTTONS */

.gallery-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:68px;
  height:68px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,0.14);
  backdrop-filter:blur(12px);
  color:#fff;
  font-size:1rem;
  cursor:pointer;
  transition:0.35s ease;
  z-index:5;
}

.gallery-btn:hover{
  background:#fff;
  color:#111;
}

.prev-btn{
  left:30px;
}

.next-btn{
  right:30px;
}

/* RESPONSIVE */

@media(max-width:992px){

  .casablanca-slide{
    padding:24px;
  }

  .casablanca-slide img{
    max-height:560px;
  }

}

@media(max-width:768px){

  .casablanca-slide{
    padding:16px;
  }

  .casablanca-slide img{
    max-height:420px;
  }

  .gallery-btn{
    width:54px;
    height:54px;
  }

}

/* =========================
   VILLA CARD IMAGE
========================= */

.villa-card{
  overflow:hidden;
  padding:0;
}

.villa-image{
  width:100%;
  background:#f3efe9;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px 24px 0;
}

.villa-image img{
  width:100%;
  height:auto;
  max-height:340px;
  object-fit:contain;
  transition:0.6s ease;
  border-radius:20px;
}

.villa-card:hover .villa-image img{
  transform:scale(1.05);
}

.villa-card-content{
  padding:42px;
}

@media(max-width:768px){

  .villa-image{
    padding:18px 18px 0;
  }

  .villa-image img{
    max-height:260px;
  }

}

/* =========================
   COMMERCIAL PROJECTS
========================= */

.commercial-intro{
  max-width:1100px;
}

/* FEATURE SECTION */

.commercial-feature-section{
  padding:140px 7%;
}

.commercial-feature-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.commercial-feature-image img{
  width:100%;
  border-radius:36px;
  display:block;
}

.commercial-feature-content span{
  font-size:0.8rem;
  letter-spacing:4px;
  text-transform:uppercase;
  color:#b08a57;
  display:block;
  margin-bottom:24px;
}

.commercial-feature-content h2{
  font-family:'Cormorant Garamond', serif;
  font-size:5rem;
  line-height:1;
  margin-bottom:28px;
  font-weight:600;
}

.commercial-feature-content p{
  line-height:2;
  color:rgba(255,255,255,0.74);
  margin-bottom:24px;
}

.commercial-meta{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:42px;
}

.commercial-meta div{
  padding:28px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,0.08);
  background:rgba(255,255,255,0.03);
}

.commercial-meta h4{
  color:#b08a57;
  margin-bottom:12px;
  font-size:0.9rem;
}

.commercial-meta p{
  margin:0;
  color:#fff;
}

/* OFFICE SPACE */

.office-space-section{
  background:#f3efe9;
}

.office-space-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.office-space-content span{
  font-size:0.8rem;
  letter-spacing:4px;
  text-transform:uppercase;
  color:#b08a57;
  display:block;
  margin-bottom:24px;
}

.office-space-content h2{
  font-family:'Cormorant Garamond', serif;
  font-size:4.5rem;
  line-height:1;
  margin-bottom:28px;
  font-weight:600;
}

.office-space-content p{
  line-height:2;
  color:#555;
  margin-bottom:24px;
}

.office-space-image{
  background:#fff;
  padding:24px;
  border-radius:36px;
}

.office-space-image img{
  width:100%;
  border-radius:24px;
  display:block;
}

/* HIGHLIGHTS */

.office-highlights{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:40px;
}

.office-highlight{
  background:#fff;
  padding:28px;
  border-radius:24px;
  text-align:center;
}

.office-highlight h3{
  font-family:'Cormorant Garamond', serif;
  font-size:3rem;
  color:#111;
  margin-bottom:10px;
}

.office-highlight p{
  margin:0;
  color:#666;
}

/* HOSPITALITY */

.hospitality-section{
  background:#111;
}

.hospitality-card{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.hospitality-image img{
  width:100%;
  border-radius:36px;
  display:block;
}

.hospitality-content span{
  font-size:0.8rem;
  letter-spacing:4px;
  text-transform:uppercase;
  color:#b08a57;
  display:block;
  margin-bottom:24px;
}

.hospitality-content h2{
  font-family:'Cormorant Garamond', serif;
  font-size:4.5rem;
  line-height:1;
  margin-bottom:28px;
  color:#fff;
}

.hospitality-content p{
  color:rgba(255,255,255,0.74);
  line-height:2;
  margin-bottom:24px;
}

.hospitality-meta{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.hospitality-meta span{
  padding:10px 18px;
  border-radius:999px;
  background:rgba(255,255,255,0.08);
  color:#fff;
  font-size:0.85rem;
}

/* RESPONSIVE */

@media(max-width:1100px){

  .commercial-feature-grid,
  .office-space-wrapper,
  .hospitality-card{
    grid-template-columns:1fr;
  }

  .commercial-meta,
  .office-highlights{
    grid-template-columns:1fr;
  }

}

@media(max-width:768px){

  .commercial-feature-content h2,
  .office-space-content h2,
  .hospitality-content h2{
    font-size:3rem;
  }

}

/* =========================
   FULL WIDTH INNER PAGE HERO FIX
========================= */

.projects-hero{
  width:100vw;
  height:100vh;
  min-height:100vh;
  position:relative;
  overflow:hidden;
  margin:0 !important;
  padding:0 !important;
  left:50%;
  right:50%;
  margin-left:-50vw !important;
  margin-right:-50vw !important;
}

.projects-hero img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  display:block;
}

.projects-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
}

.projects-hero-content{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  z-index:2;
  padding:0 6%;
}

/* REMOVE ANY CONTAINER RESTRICTIONS */

body{
  overflow-x:hidden;
}

/* MOBILE FIX */

@media(max-width:768px){

  .projects-hero{
    height:100svh;
    min-height:100svh;
  }

}

/* =========================
   ABOUT PAGE
========================= */

/* SUSTAINABILITY */

.sustainability-section{
  background:#f3efe9;
}

.editorial-tag{
  font-size:0.8rem;
  letter-spacing:4px;
  text-transform:uppercase;
  color:#b08a57;
  display:block;
  margin-bottom:24px;
}

/* WHAT WE DO */

.what-we-do-section{
  background:#111;
  color:#fff;
}

.what-we-do-section .section-heading h2{
  color:#fff;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:32px;
}

.service-card{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  padding:48px;
  border-radius:32px;
  transition:0.4s ease;
}

.service-card:hover{
  transform:translateY(-10px);
  background:rgba(255,255,255,0.06);
}

.service-icon{
  width:80px;
  height:80px;
  border-radius:50%;
  background:rgba(255,255,255,0.08);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:32px;
}

.service-icon i{
  font-size:1.8rem;
  color:#b08a57;
}

.service-card h3{
  font-family:'Cormorant Garamond', serif;
  font-size:2.4rem;
  margin-bottom:20px;
  font-weight:600;
}

.service-card p{
  line-height:2;
  color:rgba(255,255,255,0.74);
}

/* EXPERTISE */

.expertise-wrapper{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:100px;
  align-items:start;
}

.expertise-left span{
  font-size:0.8rem;
  letter-spacing:4px;
  text-transform:uppercase;
  color:#b08a57;
  display:block;
  margin-bottom:24px;
}

.expertise-left h2{
  font-family:'Cormorant Garamond', serif;
  font-size:5rem;
  line-height:0.95;
  font-weight:600;
}

.expertise-right p{
  font-size:1.05rem;
  line-height:2;
  color:#555;
  margin-bottom:28px;
}

/* JOURNEY */

/* =========================
   JOURNEY
========================= */

.journey-section{
    background:#111;
    padding:140px 7%;
}

.journey-wrapper{
    max-width:1500px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 0.9fr;
    gap:80px;
    align-items:center;
}

.journey-card span{
    display:block;
    font-size:.8rem;
    letter-spacing:4px;
    text-transform:uppercase;
    color:#b08a57;
    margin-bottom:24px;
}

.journey-card h2{
    font-family:'Cormorant Garamond', serif;
    font-size:5rem;
    line-height:.95;
    color:#fff;
    margin-bottom:36px;
    font-weight:600;
}

.journey-card p{
    color:rgba(255,255,255,.74);
    line-height:2;
    margin-bottom:28px;
    font-size:1.05rem;
}

.journey-image{
    overflow:hidden;
    border-radius:36px;
}

.journey-image img{
    width:100%;
    height:700px;
    object-fit:cover;
    border-radius:36px;
    transition:transform .6s ease;
}

.journey-image:hover img{
    transform:scale(1.05);
}

/* Responsive */

@media(max-width:1100px){

    .journey-wrapper{
        grid-template-columns:1fr;
        gap:60px;
    }

    .journey-card h2{
        font-size:3.5rem;
    }

    .journey-image img{
        height:500px;
    }

}

@media(max-width:768px){

    .journey-section{
        padding:90px 6%;
    }

    .journey-card h2{
        font-size:3rem;
        line-height:1;
    }

    .journey-image img{
        height:380px;
    }

}

/* =========================
   CONTACT PAGE
========================= */

.contact-section{
  background:#f3efe9;
}

.contact-wrapper{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:80px;
  align-items:start;
}

/* LEFT */

.contact-left{
  position:sticky;
  top:120px;
}

.contact-logo{
  margin-bottom:36px;
}

.contact-logo img{
  width:180px;
  height:auto;
  display:block;
}

.contact-left h2{
  font-family:'Cormorant Garamond', serif;
  font-size:5rem;
  line-height:0.95;
  margin-bottom:28px;
  font-weight:600;
}

.contact-left p{
  color:#555;
  line-height:2;
  max-width:520px;
}

/* RIGHT */

.contact-right{
  display:grid;
  gap:32px;
}

.contact-card{
  background:#fff;
  padding:48px;
  border-radius:36px;
  box-shadow:0 10px 40px rgba(0,0,0,0.04);
}

.contact-card span{
  font-size:0.8rem;
  letter-spacing:4px;
  text-transform:uppercase;
  color:#b08a57;
  display:block;
  margin-bottom:32px;
}

.contact-card a{
  display:flex;
  align-items:center;
  gap:24px;
  padding:24px 0;
  border-bottom:1px solid rgba(0,0,0,0.08);
  transition:0.3s ease;
}

.contact-card a:last-child{
  border-bottom:none;
  padding-bottom:0;
}

.contact-card a:hover{
  transform:translateX(6px);
}

.contact-icon{
  width:72px;
  height:72px;
  border-radius:50%;
  background:#111;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.contact-icon i{
  color:#fff;
  font-size:1.2rem;
}

.contact-info h4{
  font-size:1.1rem;
  margin-bottom:8px;
  font-weight:600;
}

.contact-info p{
  color:#666;
  line-height:1.7;
  word-break:break-word;
}

/* RESPONSIVE */

@media(max-width:1100px){

  .contact-wrapper{
    grid-template-columns:1fr;
  }

  .contact-left{
    position:relative;
    top:auto;
  }

}

@media(max-width:768px){

  .contact-left h2{
    font-size:3rem;
    line-height:1;
  }

  .contact-card{
    padding:36px;
  }

  .contact-card a{
    align-items:flex-start;
  }

  .contact-icon{
    width:60px;
    height:60px;
  }

}

/* =========================
   CONTACT FORM
========================= */

.contact-form-section{
  background:#111;
  color:#fff;
}

.contact-form-wrapper{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:80px;
  align-items:start;
}

/* LEFT */

.contact-form-content{
  position:sticky;
  top:120px;
}

.contact-form-content span{
  font-size:0.8rem;
  letter-spacing:4px;
  text-transform:uppercase;
  color:#b08a57;
  display:block;
  margin-bottom:24px;
}

.contact-form-content h2{
  font-family:'Cormorant Garamond', serif;
  font-size:5rem;
  line-height:0.95;
  margin-bottom:30px;
  font-weight:600;
}

.contact-form-content p{
  color:rgba(255,255,255,0.72);
  line-height:2;
  max-width:520px;
}

/* FORM CARD */

.contact-form-card{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:36px;
  padding:54px;
  backdrop-filter:blur(12px);
}

/* FORM */

.luxury-form{
  display:grid;
  gap:28px;
}

.form-group{
  display:flex;
  flex-direction:column;
}

.form-group label{
  margin-bottom:14px;
  font-size:0.92rem;
  color:#d6b27a;
  letter-spacing:1px;
}

.form-group input,
.form-group textarea{
  width:100%;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:18px;
  padding:20px 22px;
  color:#fff;
  font-family:'Inter', sans-serif;
  font-size:1rem;
  outline:none;
  transition:0.35s ease;
}

.form-group textarea{
  resize:none;
}

.form-group input::placeholder,
.form-group textarea::placeholder{
  color:rgba(255,255,255,0.4);
}

.form-group input:focus,
.form-group textarea:focus{
  border-color:#b08a57;
  background:rgba(255, 255, 255, 0.07);
}

/* BUTTON */

.submit-btn{
  width:max-content;
  display:inline-flex;
  align-items:center;
  gap:14px;
  background:#b08a57;
  color:#fff;
  border:none;
  border-radius:999px;
  padding:18px 30px;
  font-size:0.95rem;
  font-weight:600;
  cursor:pointer;
  transition:0.35s ease;
}

.submit-btn:hover{
  background:#fff;
  color:#111;
  transform:translateY(-2px);
}

/* RESPONSIVE */

@media(max-width:1100px){

  .contact-form-wrapper{
    grid-template-columns:1fr;
  }

  .contact-form-content{
    position:relative;
    top:auto;
  }

}

@media(max-width:768px){

  .contact-form-content h2{
    font-size:3rem;
    line-height:1;
  }

  .contact-form-card{
    padding:36px 28px;
  }

}

/* FORM VALIDATION NOTES */

.form-note{
  margin-top:10px;
  font-size:0.82rem;
  color:rgba(255,255,255,0.45);
}

/* INVALID STATES */

.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown){
  border-color:#b08a57;
}

/* VALID STATES */

.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown){
  border-color:#4d8f66;
}

/* LUXURY HERO */

.luxury-hero {
  position: relative;
  min-height: 100vh;
  background-image:
    radial-gradient(circle at top left, rgba(201,169,97,.08), transparent 30%),
    radial-gradient(circle at bottom right, rgba(201,169,97,.06), transparent 35%),
    url('../assets/images/about-us-hero.webp');
  background-size: auto, auto, cover;
  background-position: center, center, center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 8%;
}

.luxury-container {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  width: 100%;
  text-align: center;
}

.luxury-tag {
  display: inline-block;
  color: #c9a961;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-family: 'Inter', sans-serif;
}

.luxury-hero h1 {
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: 1;
  font-weight: 600;
  color: #fff;
  margin-bottom: 30px;
  font-family: 'Cormorant Garamond', serif;
}

.luxury-hero p {
  max-width: 760px;
  margin: 0 auto 90px;
  color: rgba(255,255,255,0.72);
  font-size: 17px;
  line-height: 1.9;
  font-family: 'Inter', sans-serif;
}

.luxury-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.luxury-stat {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  padding: 55px 35px;
  border-radius: 28px;
  transition: 0.5s ease;
  overflow: hidden;
}

.luxury-stat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(201,169,97,0.15),
    transparent 40%
  );
  opacity: 0;
  transition: 0.5s ease;
}

.luxury-stat:hover::before {
  opacity: 1;
}

.luxury-stat:hover {
  transform: translateY(-8px);
  border-color: rgba(201,169,97,0.35);
}

.luxury-stat h2 {
  font-size: 4rem;
  color: #fff;
  margin-bottom: 18px;
  font-weight: 600;
  font-family: 'Cormorant Garamond', serif;
}

.luxury-stat span {
  display: block;
  color: rgba(255,255,255,0.68);
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

/* REVEAL ANIMATION */

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s cubic-bezier(.19,1,.22,1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */

@media(max-width: 992px) {

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

}

@media(max-width: 640px) {

  .luxury-hero {
    padding: 140px 7% 100px;
  }

  .luxury-stats {
    grid-template-columns: 1fr;
  }

  .luxury-hero h1 {
    font-size: 3.2rem;
  }

  .luxury-stat h2 {
    font-size: 3rem;
  }

}

/* =========================
   LUXURY PAGE HEADER
========================= */

.luxury-page-header{
  padding:180px 7% 110px;
  background:#f7f5f1;
  position:relative;
}

.luxury-header-line{
  width:100%;
  height:1px;
  background:rgba(0,0,0,0.08);
  margin-bottom:70px;
}

.luxury-page-header-content{
  max-width:950px;
}

.luxury-page-header-content span{
  display:block;
  font-size:0.78rem;
  letter-spacing:4px;
  text-transform:uppercase;
  color:#b08a57;
  margin-bottom:24px;
}

.luxury-page-header-content h1{
  font-family:'Cormorant Garamond', serif;
  font-size:6rem;
  line-height:0.92;
  font-weight:600;
  color:#111;
  margin-bottom:30px;
}

.luxury-page-header-content p{
  max-width:720px;
  font-size:1.05rem;
  line-height:2;
  color:#666;
}

/* RESPONSIVE */

@media(max-width:768px){

  .luxury-page-header{
    padding:140px 6% 80px;
  }

  .luxury-header-line{
    margin-bottom:50px;
  }

  .luxury-page-header-content h1{
    font-size:3.5rem;
    line-height:1;
  }

}

/* =========================
   SITE VISIT CTA
========================= */

.site-visit-cta{
  padding-top:20px;
}

.site-visit-wrapper{
  background:#111;
  border-radius:40px;
  padding:110px 8%;
  text-align:center;
  position:relative;
  overflow:hidden;
}

.site-visit-wrapper::before{
  content:'';
  position:absolute;
  width:500px;
  height:500px;
  background:rgba(176,138,87,0.08);
  border-radius:50%;
  top:-220px;
  right:-180px;
}

.site-visit-wrapper span{
  display:block;
  font-size:0.8rem;
  letter-spacing:4px;
  text-transform:uppercase;
  color:#b08a57;
  margin-bottom:24px;
  position:relative;
  z-index:2;
}

.site-visit-wrapper h2{
  font-family:'Cormorant Garamond', serif;
  font-size:5rem;
  line-height:0.95;
  font-weight:600;
  color:#fff;
  margin-bottom:28px;
  position:relative;
  z-index:2;
}

.site-visit-wrapper p{
  max-width:760px;
  margin:auto;
  color:rgba(255,255,255,0.72);
  line-height:2;
  margin-bottom:42px;
  position:relative;
  z-index:2;
}

.site-visit-btn{
  display:inline-flex;
  align-items:center;
  gap:14px;
  padding:18px 34px;
  background:#b08a57;
  color:#fff;
  border-radius:999px;
  font-weight:600;
  transition:0.35s ease;
  position:relative;
  z-index:2;
}

.site-visit-btn:hover{
  transform:translateY(-4px);
  background:#c79a5d;
}

@media(max-width:768px){

  .site-visit-wrapper{
    padding:80px 8%;
    border-radius:30px;
  }

  .site-visit-wrapper h2{
    font-size:3rem;
    line-height:1;
  }

}

/* =========================
   TESTIMONIAL SLIDER
========================= */

.testimonial-slider{
  overflow:hidden;
  margin-top:60px;
}

.testimonial-track{
  display:flex;
  gap:30px;
  width:max-content;
  animation:testimonialScroll 45s linear infinite;
}

.testimonial-track:hover{
  animation-play-state:paused;
}

.testimonial{
  min-width:420px;
  max-width:420px;
  background:#fff;
  padding:42px;
  border-radius:28px;
  box-shadow:0 10px 40px rgba(0,0,0,0.04);
}

.testimonial p{
  line-height:2;
  color:#555;
  margin-bottom:24px;
  font-size:1rem;
}

.testimonial h4{
  font-weight:600;
  color:#111;
}

@keyframes testimonialScroll{

  0%{
    transform:translateX(0);
  }

  100%{
    transform:translateX(-50%);
  }

}

@media(max-width:768px){

  .testimonial{
    min-width:320px;
    max-width:320px;
    padding:32px;
  }

}

/* FULL WIDTH TESTIMONIAL SLIDER */

.testimonials{
  overflow:hidden;
}

.testimonial-slider{
  width:100vw;
  margin-left:calc(50% - 50vw);
  overflow:hidden;
  padding:10px 0;
}

.testimonial-track{
  display:flex;
  gap:30px;
  width:max-content;
  animation:testimonialScroll 45s linear infinite;
  padding-left:30px;
}

/* =========================
   PAGE HEADER
========================= */

.page-header{
    padding: 140px 7% 40px;
    text-align: center;
}

.page-header h1{
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.2rem;
    font-weight: 600;
    line-height: 1;
    color: #111;
}

@media(max-width:768px){

    .page-header{
        padding: 120px 6% 30px;
    }

    .page-header h1{
        font-size: 2.8rem;
    }

}

.page-header{
    padding: 130px 7% 30px;
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.page-header h1{
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 600;
}

.project-card-link{
    text-decoration: none;
    color: inherit;
    display: block;
}

.project-card-link:hover .project-card{
    transform: translateY(-10px);
}

.athulya-slider{
  position: relative;
  overflow: hidden;
  border-radius: 36px;
}

.athulya-track{
  display: flex;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}

.athulya-slide{
  min-width: 100%;
}

.athulya-slide img{
  width: 100%;
  height: 760px;
  object-fit: cover;
  display: block;
  border-radius: 24px;
}

@media(max-width:768px){

  .athulya-slide img{
    height: 480px;
  }

}

.athulya-prev{
  left: 30px;
}

.athulya-next{
  right: 30px;
}

/* =========================
   RESORT SLIDER
========================= */

.resort-slider{
  position: relative;
  overflow: hidden;
  border-radius: 36px;
}

.resort-track{
  display: flex;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}

.resort-slide{
  min-width: 100%;
}

.resort-slide img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

.resort-prev{
  left: 30px;
}

.resort-next{
  right: 30px;
}

/* =========================
   FEATURED DEVELOPMENTS
========================= */

.featured-developments{
  background:#f3efe9;
}

.featured-project{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
  margin-bottom:120px;
}

.featured-project:last-child{
  margin-bottom:0;
}

.featured-project.reverse .featured-project-image{
  order:2;
}

.featured-project.reverse .featured-project-content{
  order:1;
}

.featured-project-image img{
  width:100%;
  height:650px;
  object-fit:cover;
  border-radius:36px;
}

.featured-project-content span{
  font-size:0.8rem;
  letter-spacing:4px;
  text-transform:uppercase;
  color:#b08a57;
  display:block;
  margin-bottom:20px;
}

.featured-project-content h3{
  font-family:'Cormorant Garamond', serif;
  font-size:4rem;
  font-weight:600;
  margin-bottom:24px;
}

.featured-project-content p{
  color:#666;
  line-height:2;
  margin-bottom:32px;
}

.featured-project-content a{
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-weight:600;
  transition:0.3s ease;
}

.featured-project-content a:hover{
  color:#b08a57;
}

@media(max-width:992px){

  .featured-project,
  .featured-project.reverse{
    grid-template-columns:1fr;
  }

  .featured-project.reverse .featured-project-image,
  .featured-project.reverse .featured-project-content{
    order:unset;
  }

  .featured-project-image img{
    height:420px;
  }

  .featured-project-content h3{
    font-size:3rem;
  }

}

/* =========================
   HOME HIGHLIGHT
========================= */

.home-highlight{
  position: relative;
  background: #0f0f0f;
  overflow: hidden;
  color: #fff;
}

.home-highlight-container{
  max-width: 1400px;
  margin: auto;
  text-align: center;
}

.home-highlight-tag{
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #d6b27a;
  margin-bottom: 24px;
}

.home-highlight h2{
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 24px;
}

.home-highlight p{
  max-width: 750px;
  margin: auto;
  color: rgba(255,255,255,0.75);
  line-height: 2;
  margin-bottom: 70px;
}

.home-highlight-stats{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
}

.home-highlight-stat{
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  background: rgba(255,255,255,0.03);
}

.home-highlight-stat h3{
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: #d6b27a;
  margin-bottom: 12px;
}

.home-highlight-stat span{
  color: rgba(255,255,255,0.75);
}

@media(max-width:992px){

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

  .home-highlight h2{
    font-size: 3.5rem;
  }

}

@media(max-width:768px){

  .home-highlight-stats{
    grid-template-columns: 1fr;
  }

  .home-highlight h2{
    font-size: 2.8rem;
  }

}

/* =========================
   HOME MAP
========================= */

.home-map-section{
  background:#111;
  color:#fff;
}

.home-map-section .section-heading{
  max-width:900px;
}

.home-map-section .section-heading h2{
  color:#fff;
}

.home-map-section .section-heading p{
  color:rgba(255,255,255,0.7);
}

.home-map-wrapper{
  position:relative;
  overflow:hidden;
  border-radius:36px;
  height:700px;
}

.home-map-wrapper iframe{
  width:100%;
  height:100%;
  border:0;
}

.home-map-card{
  position:absolute;
  left:40px;
  bottom:40px;
  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(18px);
  padding:36px;
  border-radius:28px;
  max-width:420px;
}

.home-map-card h3{
  font-family:'Cormorant Garamond', serif;
  font-size:2.2rem;
  color:#111;
  margin-bottom:20px;
}

.location-list{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.location-list span{
  background:#111;
  color:#fff;
  padding:10px 18px;
  border-radius:999px;
  font-size:0.85rem;
}

/* =========================
   SITE VISIT FORM
========================= */

/* =========================
   SITE VISIT SECTION
========================= */

.site-visit-section{
  background:#f3efe9;
  padding:120px 7%;
}

.site-visit-grid{
  max-width:1400px;
  margin:auto;
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:60px;
  align-items:center;
}

/* CONTENT */

.site-visit-content{
  max-width:520px;
}

.site-visit-content span{
  display:block;
  font-size:.8rem;
  letter-spacing:4px;
  text-transform:uppercase;
  color:#b08a57;
  margin-bottom:20px;
}

.site-visit-content h2{
  font-family:'Cormorant Garamond', serif;
  font-size:4rem;
  line-height:.95;
  font-weight:600;
  margin-bottom:28px;
  color:#111;
}

.site-visit-content p{
  color:#666;
  line-height:1.9;
  font-size:1rem;
}

/* FORM CARD */

.site-visit-form-card{
  background:#111;
  padding:60px;
  border-radius:36px;
  box-shadow:
    0 20px 60px rgba(0,0,0,.12),
    0 8px 24px rgba(0,0,0,.08);
}

/* OPTIONAL SMALL LABEL */

.form-tag{
  display:block;
  font-size:.75rem;
  letter-spacing:3px;
  text-transform:uppercase;
  color:#b08a57;
  margin-bottom:24px;
}

/* FORM GROUPS */

.site-visit-form-card .form-group{
  margin-bottom:22px;
}

/* INPUTS */

.site-visit-form-card input,
.site-visit-form-card select,
.site-visit-form-card textarea{
  width:100%;
  padding:20px 24px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  background:rgba(255,255,255,.03);
  color:#fff;
  font-family:'Inter',sans-serif;
  font-size:.95rem;
  transition:.3s ease;
}

/* TEXTAREA */

.site-visit-form-card textarea{
  min-height:140px;
  resize:vertical;
}

/* PLACEHOLDERS */

.site-visit-form-card input::placeholder,
.site-visit-form-card textarea::placeholder{
  color:rgba(255,255,255,.45);
}

/* SELECT */

.site-visit-form-card select{
  color:#fff;
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
}

.site-visit-form-card select option{
  background:#111;
  color:#fff;
}

/* FOCUS STATES */

.site-visit-form-card input:focus,
.site-visit-form-card select:focus,
.site-visit-form-card textarea:focus{
  outline:none;
  border-color:#b08a57;
  background:rgba(255,255,255,.05);
}

/* BUTTON */

.site-visit-btn{
  width:100%;
  border:none;
  background:#b08a57;
  color:#fff;
  padding:20px;
  border-radius:16px;
  cursor:pointer;
  font-family:'Inter',sans-serif;
  font-size:.95rem;
  font-weight:600;
  letter-spacing:.5px;
  margin-top:10px;
  transition:.3s ease;
}

.site-visit-btn:hover{
  background:#9b7748;
  transform:translateY(-2px);
}

.site-visit-btn i{
  margin-left:10px;
}

/* RESPONSIVE */

@media(max-width:992px){

  .site-visit-grid{
    grid-template-columns:1fr;
    gap:50px;
  }

  .site-visit-content{
    max-width:none;
  }

  .site-visit-content h2{
    font-size:3rem;
  }

  .site-visit-form-card{
    padding:40px;
  }

}

@media(max-width:768px){

  .site-visit-section{
    padding:90px 6%;
  }

  .site-visit-content h2{
    font-size:2.6rem;
  }

  .site-visit-form-card{
    padding:30px;
    border-radius:28px;
  }

  .site-visit-form-card input,
  .site-visit-form-card select,
  .site-visit-form-card textarea{
    padding:16px 18px;
  }

}

.site-visit-form-card{
  position:relative;
  overflow:hidden;
}

.site-visit-form-card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:1px;
  background:linear-gradient(
    90deg,
    transparent,
    rgba(176,138,87,.8),
    transparent
  );
}

/* =========================
   PAGE TITLE BAR
========================= */


.page-title-wrapper{
    max-width: 1400px;
}

.page-title-wrapper span{
    display: block;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #b08a57;
    margin-bottom: 10px;
}

.page-title-wrapper h1{
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1;
    color: #111;
}

@media(max-width:768px){

    .page-title-bar{
        padding: 35px 6% 20px;
    }

    .page-title-wrapper h1{
        font-size: 2.5rem;
    }

}

/* =========================
   CHESSBOARD CARDS
========================= */

/* BLACK CARDS */

.completed-card:nth-child(odd){
    background:#111;
    color:#fff;
}

.completed-card:nth-child(odd) .completed-card-image{
    background:#111;
}

.completed-card:nth-child(odd) .completed-card-content{
    background:#111;
}

.completed-card:nth-child(odd) h3{
    color:#fff;
}

.completed-card:nth-child(odd) p{
    color:rgba(255,255,255,.72);
}

.completed-card:nth-child(odd) .completed-meta span{
    color:#d4b07b;
}

.completed-card:nth-child(odd) a{
    color:#d4b07b;
}


/* LIGHT CARDS */

.completed-card:nth-child(even){
    background:#f3efe9;
}

.completed-card:nth-child(even) .completed-card-image{
    background:#f3efe9;
}

.completed-card:nth-child(even) .completed-card-content{
    background:#f3efe9;
}

.completed-card:nth-child(even) h3{
    color:#111;
}

.completed-card:nth-child(even) p{
    color:#666;
}

.completed-card:nth-child(even) .completed-meta span{
    color:#b08a57;
}

/* =========================
   WHAT WE DO
========================= */

.what-we-do-section{
    background:#111;
    padding:140px 7%;
}

.what-we-do-section .section-heading{
    margin-bottom:80px;
    max-width:none;
}

.what-we-do-section .section-heading span{
    display:block;
    color:#b08a57;
    letter-spacing:4px;
    text-transform:uppercase;
    font-size:.8rem;
    margin-bottom:20px;
}

.what-we-do-section .section-heading h2{
    font-family:'Cormorant Garamond',serif;
    font-size:5.5rem;
    line-height:.95;
    font-weight:600;
    color:#fff;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:rgba(255,255,255,.02);
    border:1px solid rgba(255,255,255,.08);
    border-radius:36px;
    padding:55px;
    transition:.4s ease;
}

.service-card:hover{
    transform:translateY(-8px);
    border-color:rgba(176,138,87,.25);
}

.service-icon-circle{
    width:90px;
    height:90px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:40px;
}

.service-icon-circle i{
    color:#d4b07b;
    font-size:2rem;
}

.service-card h3{
    font-family:'Cormorant Garamond',serif;
    font-size:3rem;
    color:#fff;
    line-height:1.05;
    margin-bottom:28px;
}

.service-card p{
    color:rgba(255,255,255,.72);
    line-height:2;
    font-size:1rem;
}

@media(max-width:992px){

    .what-we-do-section .section-heading h2{
        font-size:4rem;
    }

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

}

/* =========================
   COVE SECTION
========================= */

.featured-project.reverse{
    background: #111;
    color: #fff;
    border-radius: 36px;
    padding: 80px;
}

.featured-project.reverse .featured-project-content span{
    color: #d4b07b;
}

.featured-project.reverse h3{
    color: #fff;
}

.featured-project.reverse p{
    color: rgba(255,255,255,.72);
}

.featured-project.reverse a{
    color: #d4b07b;
}

.featured-project.reverse a:hover{
    color: #fff;
}




/* ===== V2 Global Refinements ===== */
:root{
  --section-space:56px;
  --container-width:1480px;
}
section{
  padding:var(--section-space) 8% !important;
}
.hero{
    height:100vh;
}
.intro{
  padding-top:90px!important;
  padding-bottom:90px!important;
}
.intro-grid,
.feature,
.project-feature-grid,
.commercial-feature-grid,
.upcoming-feature-grid,
.resort-wrapper{
  gap:56px!important;
}
.section-heading{
  max-width:1100px;
  margin-bottom:48px!important;
}
.section-heading h2{font-size:3.4rem!important;}
.intro-left h1{font-size:4.4rem!important;line-height:1.02;}
.feature-content h2,
.editorial h2,
.cta h2,
.project-content h2,
.upcoming-feature-content h2,
.resort-content h2,
.commercial-feature-content h2{
 font-size:3.3rem!important;
}
p,
.intro-right p,
.feature-content p,
.editorial p,
.project-content p,
.commercial-feature-content p,
.upcoming-feature-content p,
.resort-content p{
 font-size:.98rem!important;
 line-height:1.75!important;
}
.feature-content{padding:64px!important;}
.cta{padding:72px 48px!important;}
.project-feature{padding:80px 8%!important;}
.commercial-feature-section{padding:80px 8%!important;}
.project-image img{height:620px!important;}
.cards,.completed-grid,.projects-grid,.villa-grid,.future-grid{gap:24px!important;}
.card-content,.project-card-content,.completed-card-content,.villa-card-content{padding:30px!important;}
.card-content h3,.project-card-content h3,.completed-card-content h3{font-size:2rem!important;}
.luxury-hero{min-height:86vh!important;padding:100px 8%!important;}
.luxury-hero h1{font-size:clamp(3rem,5vw,5.5rem)!important;}
.luxury-hero p{margin-bottom:56px!important;}
.luxury-stat{padding:38px 28px!important;}
.luxury-stat h2{font-size:3rem!important;}
@media(max-width:992px){
 section{padding:42px 6%!important;}
 .intro-left h1,.section-heading h2,.feature-content h2,.editorial h2,.cta h2{font-size:2.8rem!important;}
 .hero,.luxury-hero{height:auto;min-height:70vh!important;}
}

/* =======================================
   FLOOR PLANS
======================================= */

.floor-plans{

    background:#f7f5f1;

}

.villa-plan{

    margin-bottom:120px;

}

.villa-plan:last-child{

    margin-bottom:0;

}

.villa-plan-header{

    margin-bottom:50px;

}

.villa-plan-header span{

    font-size:.8rem;

    letter-spacing:4px;

    text-transform:uppercase;

    color:#b08a57;

    display:block;

    margin-bottom:12px;

}

.villa-plan-header h3{

    font-family:'Cormorant Garamond',serif;

    font-size:3rem;

    font-weight:600;

    color:#111;

}

.floor-gallery{

    display:grid;

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

    gap:30px;

}

.floor-item{

    background:#fff;

    padding:30px;

    border-radius:28px;

    box-shadow:0 12px 40px rgba(0,0,0,.04);

}

.floor-item h4{

    text-align:center;

    margin-bottom:20px;

    font-size:1rem;

    color:#666;

    letter-spacing:2px;

    text-transform:uppercase;

}

.floor-item img{

    width:100%;

    border-radius:18px;

    transition:.5s;

}

.floor-item:hover img{

    transform:scale(1.03);

}

.villa-specs{

    margin-top:50px;

    display:grid;

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

    gap:20px;

}

.villa-specs div{

    background:#fff;

    padding:22px 26px;

    border-radius:18px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    border:1px solid rgba(0,0,0,.05);

}

.villa-specs span{

    color:#666;

}

.villa-specs strong{

    font-weight:600;

    color:#111;

}

@media(max-width:992px){

    .floor-gallery{

        grid-template-columns:1fr;

    }

    .villa-specs{

        grid-template-columns:1fr;

    }

}

.project-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-slider {
    position: relative;
    width: 320px;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
    background: #111;
}

.story-slider .slides {
    display: flex;
    height: 100%;
    transition: transform .6s ease;
}

.story-slider .slides img {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,.45);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: .3s;
    z-index: 2;
}

.slider-btn:hover {
    background: rgba(0,0,0,.75);
}

.slider-btn.prev {
    left: 12px;
}

.slider-btn.next {
    right: 12px;
}

/* Mobile */

@media(max-width:768px){

    .story-slider{
        width:100%;
        max-width:340px;
        margin:auto;
    }

}

.project-logo {
    width: 260px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 12px 0 30px;
    object-fit: contain;
    transform: scale(1);
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1),
                filter 0.45s ease;
    cursor: pointer;
}

.project-logo:hover {
    transform: scale(1.1);
    filter: brightness(1.08);
}

/* =========================
   PREMIUM REVEALS
========================= */

section:not(.hero),
.expertise-wrapper,
.expertise-right,
.completed-card{
    opacity:1;
    transform:none;
    filter:none;
}

.reveals-enabled section:not(.hero),
.reveals-enabled .expertise-wrapper,
.reveals-enabled .expertise-right,
.reveals-enabled .completed-card{
    opacity:0;
    transform:translateY(34px);
    filter:blur(8px);
    transition:
        opacity .95s cubic-bezier(.2,.8,.2,1),
        transform .95s cubic-bezier(.2,.8,.2,1),
        filter .95s cubic-bezier(.2,.8,.2,1);
    will-change:opacity, transform, filter;
}

.reveals-enabled section.show,
.reveals-enabled .expertise-wrapper.show,
.reveals-enabled .expertise-right.show,
.reveals-enabled .completed-card.show{
    opacity:1;
    transform:translateY(0);
    filter:blur(0);
}

@media(max-width:768px){
    .reveals-enabled section:not(.hero),
    .reveals-enabled .expertise-wrapper,
    .reveals-enabled .expertise-right,
    .reveals-enabled .completed-card{
        transform:translateY(22px);
        filter:blur(5px);
    }

    .reveals-enabled section.show,
    .reveals-enabled .expertise-wrapper.show,
    .reveals-enabled .expertise-right.show,
    .reveals-enabled .completed-card.show{
        transform:none;
        filter:blur(0);
    }
}

@media(prefers-reduced-motion:reduce){
    .reveals-enabled section:not(.hero),
    .reveals-enabled .expertise-wrapper,
    .reveals-enabled .expertise-right,
    .reveals-enabled .completed-card{
        transition:none;
        transform:none;
        filter:none;
    }
}

/*=========================
DOWNLOAD HERO
=========================*/

.downloads-hero{

    position:relative;
    height:115vh;
    overflow:hidden;

}

.downloads-slider{

    position:absolute;
    inset:0;

}

.downloads-slide{

    position:absolute;
    inset:0;

    opacity:0;

    transition:opacity 1.2s ease;

}

.downloads-slide.active{

    opacity:1;

}

.downloads-slide img{

    width:100%;
    height:100%;
    object-fit:cover;

}

.downloads-overlay{

    position:absolute;
    inset:0;

    background:rgba(0,0,0,.45);

}

.downloads-content{

    position:relative;

    z-index:2;

    height:100%;

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

    text-align:center;

    max-width:900px;

    margin:auto;

    padding:0 7%;

}

.downloads-content span{

    color:#b08a57;
    letter-spacing:3px;
    text-transform:uppercase;

}

.downloads-content h1{

    font-family:'Cormorant Garamond',serif;
    font-size:5rem;
    color:#fff;
    margin:25px 0;

}

.downloads-content p{

    color:rgba(255,255,255,.85);
    font-size:1.05rem;
    line-height:1.9;

}

@media(max-width:768px){

    .downloads-content h1{

        font-size:3.3rem;

    }

}

/*=========================
BROCHURE
=========================*/

.brochure-section{

    padding:120px 7%;
    background:#f8f7f4;

}

.brochure-card{

    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 420px;
    gap:80px;
    align-items:center;
    background:#fff;
    border-radius:28px;
    padding:70px;
    box-shadow:0 25px 70px rgba(0,0,0,.08);

}

.brochure-content span{

    color:#b08a57;
    text-transform:uppercase;
    letter-spacing:3px;

}

.brochure-content h2{

    font-family:'Cormorant Garamond',serif;
    font-size:4rem;
    margin:18px 0;

}

.brochure-content p{

    line-height:2;
    color:#555;
    margin-bottom:40px;

}

.brochure-btn{

    display:inline-block;
    padding:18px 42px;
    background:#111;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    transition:.35s;

}

.brochure-btn:hover{

    background:#b08a57;

}

.brochure-image{
    border-radius:18px;
}

.brochure-image img{
    width:100%;
    height:auto;
    object-fit:contain;
    display:block;
    transition:transform .5s ease;
}

.brochure-image:hover img{
    transform:scale(1.05);
}

/* =========================
   DOWNLOAD FORM
========================= */

.download-form-section{

    padding:140px 7%;
    background:#000000;

}

.download-form-card{

    max-width:900px;
    margin:60px auto 0;
    background:#000000;
    padding:60px;
    border-radius:24px;
    box-shadow:0 25px 60px rgba(0,0,0,.08);

}

.form-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;

}

.form-group{

    display:flex;
    flex-direction:column;
    margin-bottom:30px;

}

.form-group label{

    font-size:.9rem;
    font-weight:500;
    margin-bottom:10px;
    color:#ffffff;

}

.download-form-card input,
.download-form-card textarea{
    width:100%;
    padding:18px 20px;

    background:#111;
    color:#fff;

    border:1px solid #b08a57;
    border-radius:10px;

    font-family:'Inter',sans-serif;
    font-size:1rem;

    transition:.3s;
}

.download-form-card input::placeholder,
.download-form-card textarea::placeholder{
    color:rgba(255,255,255,.55);
}

.download-form-card input:focus,
.download-form-card textarea:focus{
    outline:none;
    border-color:#b08a57;
    box-shadow:0 0 0 3px rgba(176,138,87,.15);
}

.form-group textarea{

    resize:vertical;

}

.download-btn{

    display:inline-block;
    padding:18px 48px;
    background:#111;
    color:#fff;
    border:none;
    border-radius:50px;
    font-size:.95rem;
    letter-spacing:1px;
    text-transform:uppercase;
    cursor:pointer;
    transition:.35s;

}

.download-btn:hover{

    background:#b08a57;

}

@media(max-width:768px){

    .download-form-card{

        padding:35px;

    }

    .form-grid{

        grid-template-columns:1fr;

    }

}

/*=========================
BOTTOM CTA
=========================*/

.downloads-cta{

    padding:120px 7%;
    background:#111;
    text-align:center;

}

.downloads-cta h2{

    font-family:'Cormorant Garamond',serif;
    font-size:4rem;
    color:#fff;

}

.downloads-cta p{

    color:rgba(255,255,255,.75);
    margin:20px 0 40px;

}

.cta-btn{

    display:inline-block;
    padding:18px 48px;
    background:#b08a57;
    color:#fff;
    text-decoration:none;
    border-radius:50px;

}

.cta-btn:hover{

    background:#946f3f;

}

@media(max-width:992px){

    .brochure-card{

        grid-template-columns:1fr;
        padding:40px;

    }

    .downloads-content h1{

        font-size:3.5rem;

    }

    .brochure-content h2{

        font-size:3rem;

    }

    .downloads-cta h2{

        font-size:3rem;

    }

}

/* Download Form Heading */

.download-form-section .section-heading span{
    color:#b08a57;
}

.download-form-section .section-heading h2{
    color:#fff;
}

.download-form-section .section-heading p{
    color:rgba(255,255,255,.75);
}

/* ==========================
CUSTOM SELECT
========================== */

.custom-select{
    position:relative;
    width:100%;
}

.select-selected{
    background:#111;
    color:#fff;
    border:1px solid rgba(255,255,255,.15);
    border-radius:10px;
    padding:18px 20px;
    cursor:pointer;

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

    font-size:1rem;
    transition:.3s;
}

.select-selected:hover{
    border-color:#b08a57;
}

.select-selected::after{
    content:"▼";
    font-size:.75rem;
    color:#fff;
}

/* Dropdown */

.select-options{

    position:absolute;
    left:0;
    right:0;
    top:calc(100% + 8px);

    background:#fff;

    border-radius:12px;

    overflow:hidden;

    box-shadow:0 20px 45px rgba(0,0,0,.18);

    display:none;

    z-index:999;
}

.select-options.active{
    display:block;
}

.select-options div{

    padding:16px 20px;

    color:#111;
    cursor:pointer;

    transition:.25s;
}

.select-options div:hover{

    background:#b08a57;
    color:#fff;

}
/* =========================
   RESPONSIVE LAYOUT & MOBILE FIXES
========================= */

.hero-picture{
  display:block;
}

@media(max-width:992px){
  body:not(.transparent-navbar){
    padding-top:72px;
  }

  .intro-grid,
  .feature,
  .project-feature-grid,
  .commercial-feature-grid,
  .upcoming-feature-grid,
  .resort-wrapper,
  .office-space-wrapper,
  .hospitality-card,
  .contact-wrapper,
  .contact-form-wrapper,
  .site-visit-grid,
  .brochure-card{
    grid-template-columns:1fr !important;
  }

  .cards,
  .completed-grid,
  .projects-grid,
  .villa-grid,
  .future-grid,
  .services-grid,
  .testimonial-grid,
  .floor-gallery{
    grid-template-columns:repeat(auto-fit, minmax(min(100%, 280px), 1fr)) !important;
  }

  .project-meta,
  .commercial-meta,
  .upcoming-meta,
  .office-highlights,
  .villa-specs,
  .luxury-stats,
  .legacy-stats{
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
  }

  .map-overlay-card,
  .home-map-card{
    position:relative;
    left:auto;
    right:auto;
    bottom:auto;
    max-width:none;
    margin:0;
    border-radius:24px;
  }

  .map-wrapper,
  .home-map-wrapper{
    height:auto;
    border-radius:28px;
  }

  .map-wrapper iframe,
  .home-map-wrapper iframe{
    height:420px;
    display:block;
  }
}

@media(max-width:768px){
  section{
    padding:64px 6% !important;
  }

  .hero,
  .projects-hero,
  .downloads-hero{
    height:auto;
    min-height:72vh;
  }

  .hero img,
  .projects-hero img,
  .downloads-slide img{
    min-height:72vh;
  }

  .hero{
    height:100svh !important;
    min-height:100svh !important;
    background:#0f0f0f;
  }

  .hero-picture{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
  }

  .hero-picture img{
    position:absolute;
    inset:0;
    width:100%;
    height:100% !important;
    min-height:0 !important;
    object-fit:cover !important;
    object-position:center center !important;
    background:#0f0f0f;
    transform:scale(1.04);
  }

  .hero-overlay{
    background:rgba(0,0,0,.08);
  }

  .projects-hero-content h1,
  .downloads-content h1,
  .luxury-hero h1,
  .heritage-hero-content h1{
    font-size:clamp(2.8rem, 14vw, 4rem) !important;
    line-height:1 !important;
  }

  .intro-left h1,
  .section-heading h2,
  .feature-content h2,
  .editorial h2,
  .cta h2,
  .project-content h2,
  .upcoming-feature-content h2,
  .resort-content h2,
  .commercial-feature-content h2,
  .office-space-content h2,
  .hospitality-content h2,
  .contact-left h2,
  .contact-form-content h2,
  .site-visit-content h2,
  .brochure-content h2,
  .downloads-cta h2{
    font-size:clamp(2.4rem, 11vw, 3.2rem) !important;
    line-height:1.05 !important;
  }

  .card,
  .completed-card,
  .project-card,
  .villa-card,
  .future-card,
  .service-card,
  .testimonial,
  .contact-card,
  .contact-form-card,
  .site-visit-form-card,
  .download-form-card,
  .brochure-card,
  .cta,
  .feature,
  .featured-project.reverse{
    border-radius:24px !important;
  }

  .cards{
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
    gap:16px !important;
  }

  .card{
    height:100%;
    border-radius:22px !important;
  }

  .card img{
    width:100%;
    aspect-ratio:1 / 1;
    height:auto !important;
    max-height:none !important;
    object-fit:cover;
  }

  .card-content{
    padding:20px !important;
  }

  .card-content h3{
    font-size:1.45rem !important;
    line-height:1.08;
  }

  .card-content p{
    font-size:.9rem !important;
    line-height:1.6 !important;
  }

  .project-card-content,
  .completed-card-content,
  .villa-card-content,
  .future-card,
  .service-card,
  .contact-card,
  .contact-form-card,
  .site-visit-form-card,
  .download-form-card,
  .brochure-card,
  .feature-content,
  .featured-project.reverse{
    padding:28px !important;
  }

  .project-card img,
  .completed-card-image img,
  .commercial-feature-image img,
  .hospitality-image img,
  .upcoming-feature-image img,
  .resort-image img,
  .project-image img{
    max-height:420px;
    height:auto !important;
    object-fit:cover;
  }

  .luxury-stats,
  .legacy-stats{
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
    gap:14px !important;
  }

  .luxury-stat{
    padding:24px 16px !important;
    min-height:150px;
  }

  .luxury-stat h2{
    font-size:2.45rem !important;
    margin-bottom:10px;
  }

  .luxury-stat span{
    font-size:.78rem;
    line-height:1.45;
  }

  .expertise-section{
    overflow:hidden;
  }

  .expertise-wrapper{
    display:flex !important;
    flex-direction:column !important;
    grid-template-columns:none !important;
    gap:28px !important;
    width:100% !important;
    max-width:100% !important;
  }

  .expertise-left,
  .expertise-right{
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
  }

  .expertise-left h2{
    max-width:100% !important;
    font-size:clamp(2.35rem, 11vw, 3.25rem) !important;
    line-height:1.02 !important;
    overflow-wrap:break-word !important;
    word-break:normal !important;
  }

  .expertise-right{
    display:block !important;
    overflow:visible !important;
  }

  .expertise-right p{
    max-width:100% !important;
    overflow-wrap:break-word !important;
    word-break:normal !important;
  }

  .office-space-wrapper{
    grid-template-columns:1fr !important;
  }

  .office-space-image{
    order:-1;
  }

  .office-space-content{
    order:1;
  }

  .office-space-image img{
    width:100%;
    height:360px !important;
    max-height:none !important;
    object-fit:cover;
    object-position:center bottom;
  }

  .project-info,
  .completed-meta,
  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }

  .form-grid,
  .luxury-form{
    grid-template-columns:1fr !important;
  }

  .download-form-section,
  .site-visit-section,
  .contact-form-section{
    padding:72px 6% !important;
  }

  .downloads-content,
  .projects-hero-content{
    padding:96px 6% 64px;
  }
}

@media(max-width:480px){
  .completed-grid,
  .projects-grid,
  .villa-grid,
  .future-grid,
  .services-grid,
  .testimonial-grid{
    grid-template-columns:1fr !important;
  }

  .map-wrapper iframe,
  .home-map-wrapper iframe{
    height:340px;
  }

  .gallery-btn,
  .slider-btn{
    width:42px;
    height:42px;
  }
}

@media(max-width:420px){
  .cards{
    gap:12px !important;
  }

  .card-content{
    padding:16px !important;
  }

  .card-content h3{
    font-size:1.22rem !important;
  }

  .card-content p{
    font-size:.82rem !important;
  }

  .luxury-stat{
    min-height:138px;
    padding:20px 12px !important;
  }

  .luxury-stat h2{
    font-size:2.1rem !important;
  }

  .expertise-left h2{
    font-size:clamp(2rem, 10vw, 2.75rem) !important;
  }

  .office-space-image img{
    height:320px !important;
  }
}
/* Final content enhancements */
.sustainability-wrapper{
  width:100%;
  max-width:none;
  margin:0;
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:100px;
  align-items:start;
}

.sustainability-left h2{
  font-family:'Cormorant Garamond', serif;
  font-size:5rem;
  line-height:0.95;
  font-weight:600;
  color:#111;
}

.sustainability-right p{
  font-size:1.05rem;
  line-height:2;
  color:#555;
  margin-bottom:28px;
}

.featured-project-logo{
  width:260px;
  max-width:100%;
  height:auto;
  object-fit:contain;
  display:block;
  margin:4px 0 28px;
}

.floor-item img{
  cursor:zoom-in;
}

.image-lightbox,
.site-visit-modal{
  position:fixed;
  inset:0;
  z-index:4000;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  background:rgba(0,0,0,.78);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .3s ease, visibility .3s ease;
}

.image-lightbox.active,
.site-visit-modal.active{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.image-lightbox-content,
.site-visit-modal-card{
  position:relative;
  width:min(100%, 1040px);
  max-height:90vh;
  border-radius:24px;
  background:#111;
  box-shadow:0 30px 90px rgba(0,0,0,.35);
  overflow:hidden;
}

.image-lightbox-content{
  padding:22px;
}

.image-lightbox-content img{
  width:100%;
  max-height:78vh;
  object-fit:contain;
  display:block;
  border-radius:16px;
  background:#fff;
}

.lightbox-caption{
  color:rgba(255,255,255,.76);
  text-align:center;
  margin-top:14px;
  font-size:.92rem;
}

.modal-close,
.lightbox-close{
  position:absolute;
  top:16px;
  right:16px;
  width:42px;
  height:42px;
  border:0;
  border-radius:50%;
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:1.35rem;
  line-height:1;
  cursor:pointer;
  z-index:2;
}

.site-visit-modal-card{
  max-width:620px;
  padding:42px;
  background:#111;
  color:#fff;
}

.site-visit-modal-card h3{
  font-family:'Cormorant Garamond', serif;
  font-size:2.8rem;
  line-height:1;
  margin-bottom:14px;
}

.site-visit-modal-card p{
  color:rgba(255,255,255,.7);
  line-height:1.7;
  margin-bottom:26px;
}

.site-visit-popup-form{
  display:grid;
  gap:16px;
}

.site-visit-popup-form input,
.site-visit-popup-form select,
.site-visit-popup-form textarea{
  width:100%;
  padding:16px 18px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px;
  background:rgba(255,255,255,.04);
  color:#fff;
  outline:none;
  font-size:16px;
}

.site-visit-popup-form select option{
  color:#111;
}

.site-visit-popup-form textarea{
  min-height:96px;
  resize:vertical;
}

.site-visit-popup-form input::placeholder,
.site-visit-popup-form textarea::placeholder{
  color:rgba(255,255,255,.45);
}

.site-visit-popup-form button{
  border:0;
  border-radius:999px;
  padding:16px 24px;
  background:#b08a57;
  color:#fff;
  cursor:pointer;
  font-weight:600;
}

body.modal-open{
  overflow:hidden;
}

/* Completed project card spacing */
.completed-grid{
  column-gap:36px;
  row-gap:78px;
  align-items:start;
}

.completed-card{
  height:100%;
}

@media(max-width:992px){
  .completed-grid{
    gap:28px !important;
  }
}

@media(max-width:768px){
  .sustainability-wrapper{
    display:flex;
    flex-direction:column;
    gap:28px;
    width:100%;
    max-width:100%;
  }

  .sustainability-left,
  .sustainability-right{
    width:100%;
    max-width:100%;
    min-width:0;
  }

  .sustainability-left h2{
    max-width:100%;
    font-size:clamp(2.35rem, 11vw, 3.25rem);
    line-height:1.02;
    overflow-wrap:break-word;
  }

  .sustainability-right p{
    max-width:100%;
    overflow-wrap:break-word;
  }

  .featured-project-logo{
    width:220px;
    margin-bottom:24px;
  }

  .image-lightbox,
  .site-visit-modal{
    align-items:flex-end;
    padding:14px;
  }

  .image-lightbox-content,
  .site-visit-modal-card{
    width:100%;
    max-height:92vh;
    border-radius:22px;
  }

  .image-lightbox-content{
    padding:14px;
  }

  .image-lightbox-content img{
    max-height:78vh;
  }

  .site-visit-modal-card{
    padding:32px 22px 24px;
    overflow:auto;
  }

  .site-visit-modal-card h3{
    font-size:2.25rem;
  }
}
