
:root{
  --ink:#F5EFE0; 
  --gold:#A88838;
  --white:#1A1612;
  --white60:rgba(26,22,18,0.68);
  --white30:rgba(26,22,18,0.42);
  --white10:rgba(26,22,18,0.12);
  --gold60:rgba(168,136,56,0.6);
  --gold20:rgba(168,136,56,0.22);
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:'DM Sans',sans-serif;background:var(--ink);color:var(--white);overflow-x:hidden;}

nav{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:100;

  display:flex;
  flex-direction:column;
  align-items:center;

  padding:.5rem 1rem 1rem;

  background:rgba(245,239,224,0.94);
  backdrop-filter:blur(20px);

  border-bottom:0.5px solid var(--gold20);
}


/* LOGO */

.nav-logo{
  display:flex;
  align-items:center;
  gap:0.95rem;

  margin-bottom:0.85rem;

  text-decoration:none;
}

.nav-logo img{
  height:84px;
  width:auto;
  display:block;

  mix-blend-mode:multiply;

  filter:contrast(1.05)
  drop-shadow(0 0 14px rgba(168,136,56,0.18));
}

.nav-wordmark{
  font-family:'Cormorant Garamond',serif;

  font-size:2.6rem;
  font-weight:500;

  letter-spacing:0.32em;

  color:var(--white);

  line-height:1;

  text-transform:uppercase;

  padding-left:0.95rem;

  border-left:0.5px solid var(--gold60);
}

/* =========================
   NAV LINKS
========================= */

.nav-links{
  display:flex;
  align-items:center;
  gap:1.5rem;

  list-style:none;
}

/* NAV ITEMS */

.nav-links li{
  position:relative;
}

/* LINKS */

.nav-links a{
  font-size:11px;
  font-weight:500;

  letter-spacing:0.14em;

  text-transform:uppercase;

  color:var(--white60);

  text-decoration:none;

  transition:0.3s ease;
}

.nav-links a:hover{
  color:var(--white);
}

/* =========================
   DROPDOWN MENU
========================= */

.dropdown-menu{
  position:absolute;

  top:180%;
  left:50%;

  transform:translateX(-50%);

  min-width:240px;

  background:rgba(255,255,255,0.92);

  backdrop-filter:blur(16px);

  border:1px solid var(--gold20);

  box-shadow:
  0 15px 40px rgba(0,0,0,0.08);

  padding:18px 0;

  opacity:0;
  visibility:hidden;

  transition:0.35s ease;

  border-radius:18px;
}

/* SHOW DROPDOWN */

.dropdown:hover .dropdown-menu{
  opacity:1;
  visibility:visible;
  top:155%;
}

/* DROPDOWN LINKS */

.dropdown-menu a{
  display:block;

  padding:12px 26px;

  font-size:11px;

  letter-spacing:0.14em;

  color:var(--white60);

  transition:0.3s ease;
}

.dropdown-menu a:hover{
  background:var(--gold20);
  color:var(--white);

  padding-left:34px;
}

/* =========================
   CONTACT BUTTON
========================= */

.nav-cta{
  font-family:'DM Sans',sans-serif;

  font-size:11px;
  font-weight:500;

  letter-spacing:0.1em;

  text-transform:uppercase;

  padding:8px 22px;

  background:var(--gold);

  color:#1A1612;

  border:none;

  cursor:pointer;

  transition:opacity 0.2s;

  text-decoration:none;

  display:inline-block;
}

.nav-cta:hover{
  opacity:0.85;
}

/* HERO */
.hero{
  position:relative;min-height:85vh;
  display:flex;flex-direction:column;justify-content:center;
  padding:2rem 4rem 6rem;overflow:hidden;
}
.hero-geo{position:absolute;right:-60px;top:50%;transform:translateY(-50%);width:52vw;max-width:680px;opacity:0.085;pointer-events:none;}
.hero-tag{
  display:inline-flex;align-items:center;gap:10px;
  font-size:10px;font-weight:400;letter-spacing:0.25em;text-transform:uppercase;
  color:var(--gold);margin-bottom:2rem;
}
.hero-tag::before{content:'';width:28px;height:0.5px;background:var(--gold);}
.hero h1{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(3.2rem,6.5vw,5.8rem);
  font-weight:300;line-height:1.06;letter-spacing:-0.025em;
  margin-bottom:1.75rem;width:90%;
}
.hero h1 em{font-style:italic;color:var(--gold);}
.hero-sub{
  font-size:1rem;font-weight:300;
  color:var(--white60);width:80%;
  line-height:1.85;margin-bottom:2.75rem;
}
.hero-btns{display:flex;align-items:center;gap:2rem;}
.btn-gold{
  font-family:'DM Sans',sans-serif;font-size:12px;font-weight:500;
  letter-spacing:0.1em;text-transform:uppercase;
  padding:14px 36px;background:var(--gold);color:#1A1612;
  border:none;cursor:pointer;transition:opacity 0.2s;text-decoration:none;display:inline-block;
}
.btn-gold:hover{opacity:0.85}
.btn-ghost{
  font-size:12px;font-weight:400;letter-spacing:0.1em;text-transform:uppercase;
  color:var(--white30);text-decoration:none;
  border-bottom:0.5px solid rgba(26,22,18,0.2);padding-bottom:2px;
  transition:color 0.2s,border-color 0.2s;
}
.btn-ghost:hover{color:var(--white);border-color:var(--white);}
.scroll-hint{
  position:absolute;bottom:2.5rem;left:4rem;z-index:1;
  display:flex;align-items:center;gap:10px;
  font-size:9px;letter-spacing:0.25em;text-transform:uppercase;color:var(--white30);
}
.scroll-hint::after{content:'';width:36px;height:0.5px;background:var(--white30);}

/* STATS */
.stats-bar{
  display:grid;grid-template-columns:repeat(3,1fr);
  border-top:0.5px solid var(--white10);border-bottom:0.5px solid var(--white10);
}
.stat{padding:2.5rem 1.5rem;text-align:center;border-right:0.5px solid var(--white10);}
.stat:last-child{border-right:none;}
.stat-n{font-family:'Cormorant Garamond',serif;font-size:2.8rem;font-weight:300;color:var(--gold);line-height:1;margin-bottom:5px;letter-spacing:-0.02em;}
.stat-l{font-size:10px;font-weight:400;letter-spacing:0.14em;text-transform:uppercase;color:var(--white30);}

/* SECTION */
.section{max-width:1080px;margin:0 auto;padding:5rem 3rem;}
.sec-tag{display:inline-flex;align-items:center;gap:10px;font-size:10px;font-weight:400;letter-spacing:0.25em;text-transform:uppercase;color:var(--gold);margin-bottom:1.75rem;}
.sec-tag::before{content:'';width:20px;height:0.5px;background:var(--gold);}
.sec-h2{font-family:'Cormorant Garamond',serif;font-size:clamp(2.2rem,4vw,3.4rem);font-weight:300;line-height:1.15;letter-spacing:-0.02em;margin-bottom:1rem;}
.sec-h2 em{font-style:italic;color:var(--gold);}

/* ── GRAPHIC BAND ── */
.graphic-band{
  background:#EDE5D2;
  padding:4.5rem 0 3rem;
  border-top:0.5px solid var(--gold20);
  border-bottom:0.5px solid var(--gold20);
  overflow:hidden;
}
.graphic-band svg{display:block;width:100%;max-width:1000px;margin:0 auto;}

/* PROBLEM */
.problem-bg{background:var(--ink);}
.prob-grid{display:grid;grid-template-columns:1fr 1fr;gap:1px;background:var(--white10);border:0.5px solid var(--white10);margin-top:3rem;}
.prob-card{background:var(--ink);padding:3rem 2.5rem;transition:background 0.3s;}
.prob-card:hover{background:#EFE7D5;}
.prob-card.accent{background:#F1E8D0;border-left:2px solid var(--gold);}
.prob-big{font-family:'Cormorant Garamond',serif;font-size:3.5rem;font-weight:300;color:var(--gold);line-height:1;margin-bottom:0.5rem;}
.prob-card h3{font-family:'Cormorant Garamond',serif;font-size:1.3rem;font-weight:400;margin-bottom:0.75rem;color:var(--white);}
.prob-card p{font-size:13.5px;font-weight:300;color:var(--white60);line-height:1.8;}

/* PILLARS */
.pillars-bg{background:#EAE2CE;}
.pillars-grid{display:grid;grid-template-columns:1fr 1fr;gap:2px;background:var(--white10);margin-top:3.5rem;}
.pillar{background:#EAE2CE;padding:3.5rem 3rem;position:relative;overflow:hidden;transition:background 0.3s;}
.pillar:hover{background:#E5DCC6;}
.pillar::before{content:'';position:absolute;top:0;left:0;right:0;height:2px;background:var(--gold);}
.pillar-num{font-family:'Cormorant Garamond',serif;font-size:6rem;font-weight:300;color:rgba(26,22,18,0.05);position:absolute;top:1rem;right:1.5rem;line-height:1;user-select:none;}
.pillar-tag{font-size:10px;font-weight:500;letter-spacing:0.2em;text-transform:uppercase;color:var(--gold);margin-bottom:1.25rem;}
.pillar h3{font-family:'Cormorant Garamond',serif;font-size:1.9rem;font-weight:300;line-height:1.2;margin-bottom:1rem;}
.pillar p{font-size:13.5px;font-weight:300;color:var(--white60);line-height:1.85;margin-bottom:1.75rem;}
.pillar-feats{list-style:none;display:flex;flex-direction:column;gap:10px;}
.pillar-feats li{display:flex;align-items:flex-start;gap:10px;font-size:13px;font-weight:300;color:rgba(26,22,18,0.5);line-height:1.6;}
.pillar-feats li::before{content:'';width:4px;height:4px;border-radius:50%;background:var(--gold);flex-shrink:0;margin-top:8px;}

/* EQUATION */
.eq-band{
  background:var(--ink);
  border-top:0.5px solid var(--white10);border-bottom:0.5px solid var(--white10);
  padding:4rem 3rem;text-align:center;position:relative;overflow:hidden;
}
.eq-band::before{
  content:'∞';font-family:'Cormorant Garamond',serif;font-size:18rem;font-weight:300;
  color:rgba(26,22,18,0.04);position:absolute;top:50%;left:50%;
  transform:translate(-50%,-50%);user-select:none;pointer-events:none;line-height:1;
}
.eq-inner{position:relative;z-index:1;display:flex;align-items:center;justify-content:center;gap:2rem;flex-wrap:wrap;}
.eq-pill{font-family:'Cormorant Garamond',serif;font-size:1.5rem;font-weight:300;font-style:italic;padding:12px 28px;border:0.5px solid;}
.eq-pill.a{border-color:rgba(26,22,18,0.35);color:var(--white);}
.eq-pill.b{border-color:var(--gold);color:var(--gold);}
.eq-pill.result{font-style:normal;font-family:'DM Sans',sans-serif;font-size:12px;font-weight:500;letter-spacing:0.1em;text-transform:uppercase;background:var(--gold);border-color:var(--gold);color:#1A1612;padding:14px 32px;}
.eq-op{font-family:'Cormorant Garamond',serif;font-size:2rem;color:var(--white30);font-weight:300;}

/* STEPS */
.steps-bg{background:var(--ink);}
.steps-row{display:grid;grid-template-columns:repeat(3,1fr);gap:2px;background:var(--white10);margin-top:3.5rem;}
.step{background:var(--ink);padding:3rem 2.5rem;position:relative;overflow:hidden;}
.step::after{content:attr(data-n);font-family:'Cormorant Garamond',serif;font-size:8rem;font-weight:300;color:rgba(26,22,18,0.05);position:absolute;bottom:0.5rem;right:1rem;line-height:1;user-select:none;}
.step-badge{width:34px;height:34px;border:0.5px solid var(--gold);display:flex;align-items:center;justify-content:center;font-size:12px;color:var(--gold);margin-bottom:1.5rem;}
.step h4{font-family:'Cormorant Garamond',serif;font-size:1.3rem;font-weight:400;margin-bottom:0.65rem;color:var(--white);}
.step p{font-size:13px;font-weight:300;color:var(--white60);line-height:1.8;}

/* PROOF */
.proof-bg{background:#EAE2CE;}
.proof-grid{display:grid;grid-template-columns:1fr 1.2fr;gap:4rem;margin-top:3.5rem;align-items:start;}
.quote-block{border-left:2px solid var(--gold);padding-left:2rem;}
.quote-text{font-family:'Cormorant Garamond',serif;font-size:1.5rem;font-weight:300;font-style:italic;line-height:1.6;color:var(--white);margin-bottom:1.25rem;}
.quote-attr{font-size:11px;letter-spacing:0.15em;text-transform:uppercase;color:var(--white30);}
.case-card{background:var(--ink);border:0.5px solid var(--white10);padding:2.5rem;}
.case-tag{font-size:10px;letter-spacing:0.2em;text-transform:uppercase;color:var(--gold);margin-bottom:1.25rem;}
.case-metrics{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--white10);margin:1.5rem 0;}
.case-metric{background:var(--ink);padding:1.25rem 1rem;text-align:center;}
.case-metric-n{font-family:'Cormorant Garamond',serif;font-size:2rem;font-weight:300;color:var(--gold);margin-bottom:4px;}
.case-metric-l{font-size:10px;letter-spacing:0.1em;text-transform:uppercase;color:var(--white30);}
.case-card p{font-size:13px;font-weight:300;color:var(--white60);line-height:1.8;}
.sector-row{display:flex;gap:8px;flex-wrap:wrap;margin-top:3rem;padding-top:2.5rem;border-top:0.5px solid var(--white10);}
.sector-pill{font-size:10px;font-weight:400;letter-spacing:0.12em;text-transform:uppercase;padding:6px 16px;border:0.5px solid rgba(26,22,18,0.15);color:var(--white30);transition:border-color 0.2s,color 0.2s;}
.sector-pill:hover{border-color:var(--gold);color:var(--gold);}

/* CTA */
.cta-section{text-align:center;padding:8rem 3rem;position:relative;overflow:hidden;}
.cta-section::before{content:'GreenGenome';font-family:'Cormorant Garamond',serif;font-size:12vw;font-weight:300;color:rgba(26,22,18,0.04);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);white-space:nowrap;user-select:none;pointer-events:none;letter-spacing:0.2em;}
.cta-inner{position:relative;z-index:1;max-width:580px;margin:0 auto;}
.cta-section h2{font-family:'Cormorant Garamond',serif;font-size:clamp(2.2rem,4vw,3.2rem);font-weight:300;line-height:1.15;margin-bottom:1.25rem;}
.cta-section h2 em{font-style:italic;color:var(--gold);}
.cta-section p{font-size:0.95rem;font-weight:300;color:var(--white60);line-height:1.8;margin-bottom:2.75rem;}
.cta-contacts{display:flex;align-items:center;justify-content:center;gap:2rem;margin-top:1.75rem;font-size:12px;color:var(--white30);letter-spacing:0.08em;}
.cta-contacts a{color:var(--white30);text-decoration:none;transition:color 0.2s;}
.cta-contacts a:hover{color:var(--gold);}

/* FOOTER */
footer{background:#1A1612;border-top:0.5px solid var(--gold20);padding:0.4rem 3rem;display:flex;align-items:center;justify-content:space-between;}
.foot-logo img{height:32px;width:auto;opacity:0.85;filter:brightness(1.1);}
.foot-right{font-size:10px;letter-spacing:0.1em;color:rgba(245,239,224,0.45);}

/* ANIMATE */
@keyframes fadeUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
.fu{animation:fadeUp 0.85s ease forwards;opacity:0;}
.d1{animation-delay:0.1s}.d2{animation-delay:0.25s}.d3{animation-delay:0.4s}.d4{animation-delay:0.55s}

@media(max-width:768px){
  nav{padding:1rem 1.5rem 0.9rem;}
  .nav-logo{gap:0.6rem;margin-bottom:0.6rem;}
  .nav-logo img{height:60px;}
  .nav-wordmark{font-size:1.65rem;letter-spacing:0.26em;padding-left:0.6rem;}
  .nav-links{gap:1.25rem;}
  .hero{padding:0rem 1rem 4rem;}
  .section{padding:3rem 1.5rem;}
  .stats-bar{grid-template-columns:1fr 1fr;}
  .prob-grid,.pillars-grid,.steps-row,.proof-grid{grid-template-columns:1fr;}
  footer{flex-direction:column;gap:1rem;text-align:center;}
}

/* Scroll offset for fixed nav */
section[id], div[id] {
  scroll-margin-top: 190px;
}
@media(max-width:768px){
  section[id], div[id] {
    scroll-margin-top: 140px;
  }
}/* =========================================
   PROJECT SHOWCASE
========================================= */

.projects-showcase{
  background:#F3EBD9;
  border-top:0.5px solid var(--gold20);
  border-bottom:0.5px solid var(--gold20);
}

.project-grid{
  margin-top:4rem;

  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

  gap:2rem;
}

.project-card{
  position:relative;

  background:rgba(255,255,255,0.45);

  backdrop-filter:blur(14px);

  border:1px solid rgba(168,136,56,0.18);

  padding:2.5rem;

  border-radius:28px;

  overflow:hidden;

  transition:0.45s ease;

  box-shadow:
  0 10px 30px rgba(0,0,0,0.05);
}

.project-card:hover{
  transform:translateY(-10px);

  background:#fff;

  box-shadow:
  0 20px 45px rgba(0,0,0,0.08);
}

.project-card::before{
  content:'';

  position:absolute;

  top:0;
  left:0;

  width:100%;
  height:4px;

  background:linear-gradient(
    90deg,
    transparent,
    var(--gold),
    transparent
  );
}

.project-badge{
  display:inline-block;

  font-size:10px;
  font-weight:600;

  letter-spacing:0.18em;

  text-transform:uppercase;

  color:var(--gold);

  margin-bottom:1.5rem;
}

.project-card h3{
  font-family:'Cormorant Garamond',serif;

  font-size:2rem;
  font-weight:400;

  line-height:1.2;

  margin-bottom:1rem;
}

.project-card p{
  font-size:14px;

  line-height:1.9;

  color:var(--white60);

  margin-bottom:2rem;
}

.project-footer{
  display:flex;

  justify-content:space-between;

  align-items:center;

  padding-top:1.25rem;

  border-top:1px solid rgba(26,22,18,0.08);

  font-size:11px;

  letter-spacing:0.12em;

  text-transform:uppercase;

  color:var(--white30);
}

/* =========================================
   TIMELINE
========================================= */

.timeline-section{
  background:var(--ink);
}

.timeline{
  position:relative;

  margin-top:4rem;

  padding-left:2rem;
}

.timeline::before{
  content:'';

  position:absolute;

  left:7px;
  top:0;

  width:1px;
  height:100%;

  background:rgba(168,136,56,0.35);
}

.timeline-item{
  position:relative;

  margin-bottom:4rem;
}

.timeline-dot{
  position:absolute;

  left:-2px;
  top:8px;

  width:18px;
  height:18px;

  border-radius:50%;

  background:var(--gold);

  box-shadow:
  0 0 0 8px rgba(168,136,56,0.08);
}

.timeline-content{
  padding-left:3rem;
}

.timeline-year{
  display:inline-block;

  margin-bottom:1rem;

  font-size:11px;

  letter-spacing:0.16em;

  text-transform:uppercase;

  color:var(--gold);
}

.timeline-content h3{
  font-family:'Cormorant Garamond',serif;

  font-size:2rem;

  font-weight:300;

  margin-bottom:1rem;
}

.timeline-content p{
  font-size:14px;

  line-height:1.9;

  color:var(--white60);
}

/* =========================================
   PREMIUM HOVER EFFECTS
========================================= */

.project-card,
.pillar,
.prob-card{
  will-change:transform;
}

.project-card:hover,
.pillar:hover,
.prob-card:hover{
  transform:translateY(-6px);
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

  .project-grid{
    grid-template-columns:1fr;
  }

  .project-card{
    padding:2rem;
  }

  .timeline{
    padding-left:1rem;
  }

  .timeline-content{
    padding-left:2rem;
  }

  .timeline-content h3{
    font-size:1.6rem;
  }

}

/* =========================================
   PROJECT FILTER BAR
========================================= */

.project-filter-bar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:2rem;

  margin-bottom:3rem;

  flex-wrap:wrap;
}

.project-filters{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.project-filter{
  border:0.5px solid var(--gold20);

  background:transparent;

  color:var(--white60);

  padding:10px 18px;

  border-radius:999px;

  font-size:10px;

  letter-spacing:0.12em;

  text-transform:uppercase;

  cursor:pointer;

  transition:0.3s ease;
}

.project-filter:hover,
.project-filter.active{
  background:var(--gold);

  color:#1A1612;

  border-color:var(--gold);
}

/* SEARCH */

.project-search input{
  width:320px;

  max-width:100%;

  background:transparent;

  border:0.5px solid var(--gold20);

  padding:14px 18px;

  color:var(--white);

  font-size:12px;

  outline:none;
}

.project-search input::placeholder{
  color:var(--white30);
}

/* =========================================
   PROJECT GRID
========================================= */

.lux-project-grid{
  display:grid;

  grid-template-columns:repeat(3,1fr);

  gap:2rem;
}

/* CARD */

.lux-project-card{
  background:#EFE7D5;

  border:0.5px solid var(--gold20);

  overflow:hidden;

  transition:0.35s ease;
}

.lux-project-card:hover{
  transform:translateY(-8px);

  box-shadow:
  0 15px 35px rgba(0,0,0,0.06);
}

/* IMAGE */

.lux-project-image{
  height:230px;

  overflow:hidden;

  background:#ddd;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:4rem;
}

.green-card{
  background:#0b8f47;

  color:white;
}

.lux-project-image img{
  width:100%;
  height:100%;

  object-fit:cover;

  display:block;
}

/* CONTENT */

.lux-project-content{
  padding:2rem;
}

/* TAGS */

.lux-tags{
  display:flex;

  gap:8px;

  flex-wrap:wrap;

  margin-bottom:1rem;
}

.lux-tags span{
  font-size:9px;

  letter-spacing:0.1em;

  text-transform:uppercase;

  border:0.5px solid var(--gold20);

  padding:5px 10px;

  color:var(--white60);
}

/* TITLE */

.lux-project-content h3{
  font-family:'Cormorant Garamond',serif;

  font-size:2rem;

  font-weight:300;

  line-height:1.15;

  margin-bottom:1rem;
}

/* TEXT */

.lux-project-content p{
  font-size:13px;

  line-height:1.85;

  color:var(--white60);

  margin-bottom:1.5rem;
}

/* MINI TAGS */

.lux-mini-tags{
  display:flex;

  gap:8px;

  flex-wrap:wrap;
}

.lux-mini-tags span{
  background:rgba(168,136,56,0.08);

  color:var(--white60);

  padding:6px 10px;

  font-size:9px;

  letter-spacing:0.08em;

  text-transform:uppercase;
}

/* MOBILE */

@media(max-width:992px){

  .lux-project-grid{
    grid-template-columns:1fr 1fr;
  }

}

@media(max-width:768px){

  .project-filter-bar{
    flex-direction:column;
    align-items:flex-start;
  }

  .project-search{
    width:100%;
  }

  .project-search input{
    width:100%;
  }

  .lux-project-grid{
    grid-template-columns:1fr;
  }

}

/* =========================================
   GALLERY LIGHTBOX
========================================= */

.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: 0.35s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox img {
    max-width: 88%;
    max-height: 85vh;
    border-radius: 18px;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: zoomIn .35s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(.85);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* CLOSE BUTTON */
.gallery-close {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 42px;
    color: white;
    cursor: pointer;
    font-weight: 300;
    transition: .3s;
}

.gallery-close:hover {
    transform: scale(1.1);
}

/* ARROWS */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    color: white;
    font-size: 30px;
    border: none;
    cursor: pointer;
    transition: .3s ease;
}

.gallery-arrow:hover {
    background: rgba(255,255,255,0.25);
}

.gallery-prev {
    left: 30px;
}

.gallery-next {
    right: 30px;
}

/* CURSOR POINTER */
.lux-project-image img {
    cursor: pointer;
    transition: .4s ease;
}

.lux-project-image img:hover {
    transform: scale(1.03);
}

/* MOBILE */
@media (max-width:768px) {

    .gallery-lightbox img {
        max-width: 94%;
    }

    .gallery-arrow {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .gallery-prev {
        left: 10px;
    }

    .gallery-next {
        right: 10px;
    }

    .gallery-close {
        top: 15px;
        right: 20px;
    }
}

.lux-project-image{
    border-radius:24px 24px 0 0;
    overflow:hidden;

    display:flex;
    align-items:center;
    justify-content:center;
}

/* ICON CARD */
.lux-project-image:not(:has(img)){
    min-height:240px;
    font-size:90px;
    background:linear-gradient(135deg,#e8f5e9,#d7f0dc);
}

.lux-project-card{
    border-radius:28px;
    overflow:hidden;
}
.hero-project-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
    margin-top:50px;
}

/* TABLET */
@media (max-width:992px){

    .hero-project-grid{
        grid-template-columns:repeat(2, 1fr);
    }

}

/* MOBILE */
@media (max-width:768px){

    .hero-project-grid{
        grid-template-columns:1fr;
    }

}

.nav-links.show{
    display:flex !important;
}

.dropdown.active .dropdown-menu{
    display:block !important;
}

.mobile-menu-btn{
    display:none;
}

@media(max-width:992px){

    .mobile-menu-btn{
        display:block;
    }

    .nav-links{
        display:none;

        position:fixed;

        top:85px;
        left:0;

        width:100%;
        height:calc(100vh - 85px);

        overflow-y:auto;

        flex-direction:column;

        align-items:flex-start;

        padding:20px;

        background:rgba(245,239,224,.98);

        backdrop-filter:blur(20px);
    }

    .dropdown{
        width:100%;
    }

    .dropdown-btn{
        width:100%;
        text-align:left;
    }

    .dropdown-menu{
        display:none;
        position:static;
        width:100%;
        box-shadow:none;
    }

}

.navbar{
    position:sticky;
    top:0;
    z-index:9999;
    background:#f5efe0;
    box-shadow:0 4px 15px rgba(0,0,0,.08);
}

.top-header{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:10px 20px;
}

.brand{
    display:flex;
    align-items:center;
    gap:15px;
    text-decoration:none;
}

.brand img{
    height:80px;
    width:auto;
}

.brand-text h1{
    margin:0;
    color:#A88838;
    font-size:2rem;
}

.brand-text span{
    color:#666;
    font-size:.9rem;
}

.menu-bar{
    display:flex;
    justify-content:center;
}

.nav-links{
    display:flex;
    gap:25px;
    list-style:none;
    padding:10px 0;
    margin:0;
}

.nav-links a{
    text-decoration:none;
    color:#222;
}

.nav-cta{
    background:#A88838;
    color:white !important;
    padding:10px 18px;
    border-radius:50px;
}

.dropdown{
    position:relative;
}

.dropdown-menu{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    min-width:250px;
    background:#fff;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
    z-index:9999;
}

.dropdown-menu a{
    display:block;
    padding:12px 18px;
}

@media(min-width:993px){

    .dropdown:hover .dropdown-menu{
        display:block;
    }

}

.mobile-toggle{
    display:none;
}

@media(max-width:992px){

    .mobile-toggle{
        display:block;
        background:none;
        border:none;
        font-size:30px;
        cursor:pointer;
        margin:10px;
    }

    .menu-bar{
        flex-direction:column;
    }

    .nav-links{
        display:none;
        flex-direction:column;
        width:100%;
        padding:15px;
        gap:0;
    }

    .nav-links.show{
        display:flex;
    }

    .nav-links li{
        width:100%;
    }

    .nav-links a{
        display:block;
        padding:15px 0;
    }

    .dropdown-menu{
        position:static;
        display:none;
        box-shadow:none;
        background:#fafafa;
        width:100%;
    }

    .dropdown.active .dropdown-menu{
        display:block;
    }

    .brand img{
        height:60px;
    }

    .brand-text h1{
        font-size:1.4rem;
    }
}



*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

 

/* HERO */

.contact-hero{
    padding:100px 20px 70px;
    text-align:center;
    background:linear-gradient(
        135deg,
   
    );
}

.contact-hero-inner{
    max-width:900px;
    margin:auto;
}

.contact-eyebrow{
    color:var(--gold);
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:3px;
    margin-bottom:20px;
}

.contact-hero h1{
    font-size:56px;
    margin-bottom:20px;
    line-height:1.1;
}

.contact-hero em{
    color:var(--gold);
    font-style:normal;
}

.contact-hero p{
    color:var(--muted);
    font-size:20px;
}

/* MAIN */

.contact-main{
    max-width:1400px;
    margin:auto;
    padding:80px 20px;
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
}

/* FORM */

.form-block{
    background:var(--card);
    padding:40px;
    border-radius:20px;
    box-shadow:var(--shadow);
}

.form-block h2{
    margin-bottom:10px;
}

.sub{
    color:var(--muted);
    margin-bottom:35px;
}

.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
}

.form-field{
    display:flex;
    flex-direction:column;
}

.form-field.full{
    grid-column:1/-1;
}

.form-field label{
    margin-bottom:8px;
    font-weight:600;
}

.req{
    color:#ff5a5a;
}

.form-field input,
.form-field select,
.form-field textarea{
    background:var(--card2);
    border:1px solid var(--border);
    color:#1A1612;
    padding:14px;
    border-radius:10px;
    font-size:15px;
}

.form-field textarea{
    min-height:160px;
    resize:vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{
    border-color:var(--gold);
    outline:none;
}

.form-submit{
    margin-top:30px;
    background:var(--gold);
    color:black;
    border:none;
    padding:15px 35px;
    border-radius:50px;
    cursor:pointer;
    font-weight:700;
    transition:.3s;
}

.form-submit:hover{
    transform:translateY(-2px);
}

.form-note{
    color:var(--muted);
    margin-top:15px;
}

/* SIDE */

.side-block{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.next-card,
.direct-card,
.location-card{
    background:var(--card);
    padding:30px;
    border-radius:20px;
    box-shadow:var(--shadow);
}

.next-card h3,
.direct-card h3{
    margin-bottom:20px;
}

.next-steps{
    list-style:none;
}

.next-steps li{
    display:flex;
    gap:15px;
    margin-bottom:20px;
}

.num{
    width:35px;
    height:35px;
    border-radius:50%;
    background:var(--gold);
    color:black;
    display:flex;
    justify-content:center;
    align-items:center;
    font-weight:bold;
}

.direct-item{
    margin-bottom:15px;
}

.direct-item a{
    color:var(--gold);
    text-decoration:none;
}

.lbl{
    display:block;
    color:var(--muted);
    margin-bottom:6px;
}

.city{
    font-size:18px;
    font-weight:700;
    margin-bottom:10px;
}

.reach{
    color:var(--muted);
}

/* TRUST */

.trust-strip{
    padding:80px 20px;
}

.trust-inner{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.trust-item{
    background:var(--card);
    padding:30px;
    border-radius:20px;
    display:flex;
    gap:20px;
}

.icon{
    font-size:28px;
    color:var(--gold);
}

/* FAQ */

.faq-section{
    padding:80px 20px 120px;
}

.faq-inner{
    max-width:1100px;
    margin:auto;
}

.faq-eyebrow{
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:15px;
}

.faq-title{
    font-size:42px;
    margin-bottom:40px;
}

.faq-item{
    background:var(--card);
    margin-bottom:15px;
    border-radius:15px;
    overflow:hidden;
    cursor:pointer;
}

.faq-q{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px;
    font-weight:600;
}

.faq-a{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
    color:var(--muted);
    padding:0 22px;
}

.faq-item.open .faq-a{
    max-height:300px;
    padding:0 22px 22px;
}

.faq-item.open .plus{
    transform:rotate(45deg);
}

.plus{
    transition:.3s;
    font-size:28px;
}

/* RESPONSIVE */

@media(max-width:992px){

    .contact-main{
        grid-template-columns:1fr;
    }

    .trust-inner{
        grid-template-columns:1fr;
    }

    .contact-hero h1{
        font-size:42px;
    }
}

@media(max-width:768px){

    .form-grid{
        grid-template-columns:1fr;
    }

    .contact-hero{
        padding:70px 15px;
    }

    .contact-hero h1{
        font-size:34px;
    }

    .faq-title{
        font-size:30px;
    }

    .form-block,
    .next-card,
    .direct-card,
    .location-card{
        padding:25px;
    }
}