/* ══════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px}
body{
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight:300;
  background:#fff;
  color:#3b3b35;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
img{display:block;max-width:100%}

html {
  scroll-behavior: smooth;
}
 
/* ══════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════ */
.sr{opacity:0;transform:translateY(28px);transition:opacity .9s cubic-bezier(.22,.61,.36,1),transform .9s cubic-bezier(.22,.61,.36,1)}
.sr.show{opacity:1;transform:translateY(0)}
.sr-l{opacity:0;transform:translateX(-28px);transition:opacity .9s cubic-bezier(.22,.61,.36,1),transform .9s cubic-bezier(.22,.61,.36,1)}
.sr-l.show{opacity:1;transform:translateX(0)}
.sr-r{opacity:0;transform:translateX(28px);transition:opacity .9s cubic-bezier(.22,.61,.36,1),transform .9s cubic-bezier(.22,.61,.36,1)}
.sr-r.show{opacity:1;transform:translateX(0)}
.d1{transition-delay:.05s}.d2{transition-delay:.15s}.d3{transition-delay:.25s}.d4{transition-delay:.35s}.d5{transition-delay:.45s}

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
#navbar{
  position:fixed;
  top:0;left:0;right:0;
  z-index:999;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  padding:26px 52px;
  transition:background .45s ease,padding .45s ease,box-shadow .45s ease;
}
#navbar.scrolled{
  background:rgba(10,14,8,.92);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  padding:18px 52px;
  box-shadow:0 1px 0 rgba(255,255,255,.07);
}

/* LEFT — Logo */
.nav-logo{
  display:flex;
  align-items:center;
}
.nav-logo a{
 font-family: "Montserrat", sans-serif;
  font-weight:400;
  font-size:13px;
  letter-spacing:2.5px;
  text-transform:uppercase;
  color:#fff;
  text-decoration:none;
  line-height:1.55;
  opacity:.95;
  transition:opacity .25s;
}
.nav-logo a:hover{opacity:1}

/* CENTER — Nav links */
.nav-center{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:38px;
  list-style:none;
}
.nav-center a{
 font-family: "Montserrat", sans-serif;
  font-weight:400;
  font-size:10px;
  letter-spacing:2.5px;
  text-transform:uppercase;
  color:rgba(255,255,255,.68);
  text-decoration:none;
  transition:color .25s;
  white-space:nowrap;
}
.nav-center a:hover{color:#fff}

/* RIGHT — Experience · Invest + Enquire CTA */
.nav-right{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:32px;
  list-style:none;
}
.nav-right a{
   font-family: "Montserrat", sans-serif;
  font-weight:400;
  font-size:10px;
  letter-spacing:2.5px;
  text-transform:uppercase;
  color:rgba(255,255,255,.68);
  text-decoration:none;
  transition:color .25s;
  white-space:nowrap;
}
.nav-right a:hover{color:#fff}
.nav-enquire{
  border:1px solid rgba(255,255,255,.38) !important;
  padding:8px 20px !important;
  color:rgba(255,255,255,.88) !important;
  letter-spacing:2px !important;
  transition:background .3s,border-color .3s,color .3s !important;
}
.nav-enquire:hover{
  background:rgba(255,255,255,.1) !important;
  border-color:rgba(255,255,255,.65) !important;
  color:#fff !important;
}

/* Mobile burger */
.nav-burger{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  margin-left:auto;
}
.nav-burger span{
  display:block;width:24px;height:1px;
  background:rgba(255,255,255,.8);
  transition:all .3s;
}

/* Mobile nav drawer */
.nav-mobile-drawer{
  display:none;
  position:fixed;
  top:0;left:0;right:0;bottom:0;
  background:rgba(10,14,8,.97);
  z-index:998;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:28px;
}
.nav-mobile-drawer.open{display:flex}
.nav-mobile-drawer a{
  font-family: "Montserrat", sans-serif;
  font-weight:300;
  font-size:12px;
  letter-spacing:3px;
  text-transform:uppercase;
  color:rgba(255,255,255,.7);
  text-decoration:none;
  transition:color .25s;
}
.nav-mobile-drawer a:hover{color:#fff}
.nav-mobile-close{
  position:absolute;top:26px;right:28px;
  font-size:22px;color:rgba(255,255,255,.5);
  cursor:pointer;background:none;border:none;
}

@media(max-width:900px){
  #navbar{grid-template-columns:1fr auto}
  .nav-center,.nav-right{display:none}
  .nav-burger{display:flex}
  #navbar{padding:20px 24px}
  #navbar.scrolled{padding:14px 24px}
}

/* ══════════════════════════════════════════
   SECTION 1 — HERO
══════════════════════════════════════════ */
#hero{
  position:relative;
  width:100%;
  height:100vh;
  min-height:620px;
  overflow:hidden;
}
.hero-img{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
  object-position:center 30%;
  transform:scale(1.06);
  animation:hzoom 14s ease forwards;
}
@keyframes hzoom{to{transform:scale(1)}}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(
    to bottom,
    rgba(8,12,6,.42) 0%,
    rgba(8,12,6,.18) 40%,
    rgba(8,12,6,.52) 100%
  );
}
.hero-inner{
  position:relative;z-index:2;
  height:100%;
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  text-align:center;
  padding:0 24px;
}
.hero-title{
  font-family:'Cormorant Garamond',serif;
  font-weight:400;
  font-size:clamp(36px,5.5vw,72px);
  line-height:1.18;
  color:#fff;
  letter-spacing:.5px;
  opacity:0;
  animation:fu .9s .6s forwards;
}
.hero-sub{
  margin-top:22px;
  font-family:'Lato',sans-serif;
  font-weight:300;
  font-size:14px;
  letter-spacing:2.5px;
  color:rgba(255,255,255,.65);
  line-height:2.2;
  max-width:600px;
  opacity:0;
  animation:fu .9s .9s forwards;
}
@keyframes fu{
  from{opacity:0;transform:translateY(22px)}
  to{opacity:1;transform:translateY(0)}
}
.hero-scroll-wrap{
  position:absolute;
  bottom:32px;left:47%;
  transform:translateX(-50%);
  z-index:3;display:flex;flex-direction:column;
  align-items:center;gap:10px;
  opacity:0;animation:fu .9s 1.3s forwards;
}
.hero-scroll-line{
  width:1px;height:48px;
  background:linear-gradient(to bottom,transparent,rgba(255,255,255,.55));
  animation:spulse 2.2s ease-in-out infinite;
}
@keyframes spulse{
  0%,100%{opacity:.4;transform:scaleY(1)}
  50%{opacity:1;transform:scaleY(.6)}
}
.hero-scroll-txt{
  font-size:8px;letter-spacing:3px;
  text-transform:uppercase;
  color:rgba(255,255,255,.45);
}

/* ══════════════════════════════════════════
   SECTION 2 — WHAT IF (THE ORIGIN)
══════════════════════════════════════════ */
#whatif{
  background:#ffffff;
  padding:80px 0 90px;
}
.whatif-inner{
  max-width:1060px;
  margin:0 auto;
  padding:0 60px;
}

/* Heading: centered, full width */
.whatif-heading-block{
  text-align:left;
  margin-bottom:48px;
}
.whatif-section-tag{
 font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #b8956a;
    display: block;
    margin-bottom: 18px;
}
.whatif-h2{
  font-family:'Cormorant Garamond',serif;
  font-weight:500;
  font-size:80px;
  line-height:1.2;
  color:#1e1e18;
  letter-spacing:-.3px;
  margin-bottom:24px;
}
/* Short green divider line under heading */
/* .whatif-divider{
  width:36px;
  height:1.5px;
  background:#6b8c6b;
  margin:0 auto;
} */

/* Two-col body: left=text stacked, right=image */
.whatif-body-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:start;
  margin-top:52px;
}

/* LEFT: stacked paragraphs */
.whatif-text-stack{
  display:flex;
  flex-direction:column;
  gap:22px;
}
.whatif-para{
  font-size:12.5px;
  line-height:1.95;
  color:#7a7a6c;
  font-weight:300;
}

/* RIGHT: image with overlapping dark CTA tag at bottom-left */
.whatif-img-col{
  position:relative;
}
.whatif-img-wrap{
  position:relative;
  overflow:visible;
}
.whatif-img{
  width:100%;
  height:380px;
  object-fit:cover;
  object-position:center;
  display:block;
}
/* Dark tag overlapping bottom-left corner of image */
.whatif-img-tag{
position: fixed;
    bottom: -20px;
    left: 60px;
    background: #1e1e18;
    color: #fff;
    padding: 26px 20px;
    z-index: 3;
}
.whatif-img-tag-label{
  font-family:'Lato',sans-serif;
  font-weight:300;
  font-size:14px;
  letter-spacing:2.5px;
  text-transform:uppercase;
  color:rgba(255,255,255,.5);
  display:block;
  margin-bottom:4px;
}
.whatif-img-tag-text{
  font-family:'Cormorant Garamond',serif;
  font-weight:400;
  font-size:24px;
  color:#fff;
  letter-spacing:.5px;
  display:block;
}

/* ══════════════════════════════════════════
   SECTION 3 — NATURE IS THE FIRST ARCHITECT
══════════════════════════════════════════ */

#nature-arch {
  position: relative;
  background: url('../images/nature-bg.jpg') center/cover no-repeat;
  color: #fff;
  padding: 120px 20px;
  text-align: center;
}

/* Dark overlay */
.na-overlay {
  position: absolute;
  inset: 0;
  background: rgb(31 157 74 / 0%);
}

/* Content */
.na-inner {
  position: relative;
  max-width: 1200px;
  margin: auto;
}

/* Label */
.na-label {
  letter-spacing: 3px;
  font-size: 12px;
  color: #c2a878;
  margin-bottom: 20px;
}

/* Title */
.na-title {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
}

/* Subtitle */
.na-sub {
  max-width: 700px;
  margin: auto;
  color: #aaa;
  font-size: 16px;
  margin-bottom: 80px;
}

/* Columns */
.na-cols {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  text-align: left;
}

/* Column */
.na-col {
  flex: 1;
  position: relative;
  padding: 0 20px;
}

/* Vertical divider */
/* .na-col:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background: rgba(255,255,255,0.1);
} */

/* Number */
.na-num {
  font-size: 12px;
  color: #2ecc71;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 15px;
}

/* Heading */
.na-col h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

/* Body */
.na-col p {
  font-size: 14px;
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Stats */
.na-stat {
  font-size: 28px;
  color: #2ecc71;
  margin-bottom: 5px;
}

/* Stat sub */
.na-stat-sub {
  font-size: 12px;
  color: #777;
  letter-spacing: 1px;
}
/* Number with line */
.na-num {
  font-size: 12px;
  color: #2ecc71;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

/* Line after number */
.na-num::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.15);
}

/* Responsive */
@media (max-width: 900px) {
  .na-cols {
    flex-direction: column;
    gap: 40px;
  }

  .na-col::after {
    display: none;
  }

  .na-title {
    font-size: 32px;
  }
}
#nature-arch{
  background:#2a2f24;
  padding:86px 0 80px;
  position:relative;
  overflow:hidden;
}
#nature-arch::before{
  content:'';
  position:absolute;inset:0;
  background:url('../images/tep-hero-main.png')center/cover no-repeat;
  opacity:.08;
}
.na-inner{
  position:relative;z-index:2;
  max-width:1140px;margin:0 auto;padding:0 60px;
  text-align:left;
}
.na-label{
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #b8956a;
    display: block;
    margin-bottom: 18px;
}
.na-title{
     font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 80px;
    line-height: 1.2;
    color: #fff;
    letter-spacing: -.3px;
    margin-bottom: 24px;
}
.na-sub{
font-size: 17px;
    color: rgb(255 255 255 / 81%);
    font-weight: 300;
    letter-spacing: .5px;
    line-height: 1.9;
    /* max-width: 560px; */
    /* margin: 0 auto 64px; */
    /* text-align: left; */
    float: left;
    position: absolute;
    margin-bottom: 31px;
}
.na-cols{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  padding-top:100px;
}
.na-col{
  padding:0 40px;
  text-align:left;
}
/* Paragraph divider line */
.na-col p {
  font-size: 16px;
  color: #aaa;
  line-height:36px;
  margin-bottom: 30px;
  position: relative;
}

/* Line after paragraph */
/* .na-col p::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.1);
} */
.na-col:last-child{border-right:none}
.na-col-head{
  font-size:9px;
  letter-spacing:3px;
  text-transform:uppercase;
  color:rgba(255,255,255,.45);
  margin-bottom:14px;
}
.na-col-body{
  font-size:11.5px;
  line-height:1.9;
  color:rgba(255,255,255,.38);
  font-weight:300;
  margin-bottom:28px;
}
.na-stat{
  font-family:'Cormorant Garamond',serif;
  font-weight:300;
  font-size:50px;
  color:#2ecc71;
  line-height:1;
}
.na-stat sup{
  font-size:22px;
  color:#a09880;
  vertical-align:super;
  margin-left:2px;
}
.na-stat-sub{
  font-size:8.5px;
  letter-spacing:2.5px;
  text-transform:uppercase;
  color:rgba(255,255,255,.3);
  margin-top:6px;
}

/* ══════════════════════════════════════════
   SECTION 4 — EVERY CHAPTER
══════════════════════════════════════════ */
#chapters{
  background:#ffffff;
  padding:96px 0 0;
}
.ch-inner{
  max-width:1140px;margin:0 auto;padding:0 60px;
}
.ch-head{
  font-family:'Cormorant Garamond',serif;
  font-weight:400;
  font-size:clamp(26px,3.2vw,42px);
  line-height:1.25;
  color:#222218;
  margin-bottom:16px;
}
.ch-sub{
  font-size:12px;
  color:#888878;
  font-weight:300;
  line-height:1.95;
  margin-bottom:42px;
}
.ch-tabs{
  display:flex;
  gap:0;
  border-bottom:1px solid #e4e0d8;
}
.ch-tab{
  padding:10px 0;
  margin-right:36px;
  font-size:10px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#aaa99a;
  background:none;border:none;
  border-bottom:1.5px solid transparent;
  cursor:pointer;
  transition:all .25s;
  font-family:'Lato',sans-serif;
  font-weight:400;
}
.ch-tab.active{color:#222218;border-bottom-color:#222218}
.ch-tab:hover{color:#555548}

/* ══════════════════════════════════════════
   SECTION 5 — LOST IN THE WOODS (full-width photo)
══════════════════════════════════════════ */
#lost{
  position:relative;
  width:100%;
  height:90vh;
  min-height:620px;
  overflow:hidden;
}
.lost-bg{
  position:absolute;inset:0;
  background:url('https://images.unsplash.com/photo-1510798831971-661eb04b3739?w=1800&q=85')center/cover no-repeat;
  transform:scale(1.04);
  transition:transform 10s ease;
}
#lost:hover .lost-bg{transform:scale(1)}
.lost-overlay{
  position:absolute;inset:0;
  background:linear-gradient(
    120deg,
    rgba(6,10,5,.72) 0%,
    rgba(6,10,5,.3) 45%,
    rgba(6,10,5,.55) 100%
  );
}
/* Top-right card */
.lost-card{
  position:absolute;
  top:58px;right:72px;
  z-index:3;
  background:rgba(8,12,6,.78);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  border:1px solid rgba(255,255,255,.1);
  padding:38px 36px 36px;
  width:316px;
  color:#fff;
}
.lost-card-tag{
  font-size:8px;
  letter-spacing:3px;
  text-transform:uppercase;
  color:#b0a07c;
  margin-bottom:14px;
  font-family:'Lato',sans-serif;
  font-weight:400;
}
.lost-card h3{
  font-family:'Cormorant Garamond',serif;
  font-weight:400;
  font-size:24px;
  line-height:1.3;
  color:#fff;
  margin-bottom:14px;
}
.lost-card p{
  font-size:11.5px;
  line-height:1.95;
  color:rgba(255,255,255,.55);
  font-weight:300;
  margin-bottom:26px;
}
.lost-card-btn{
  display:inline-block;
  border:1px solid rgba(255,255,255,.35);
  color:#fff;
  font-size:8.5px;
  letter-spacing:2.5px;
  text-transform:uppercase;
  padding:10px 24px;
  background:transparent;
  cursor:pointer;
  transition:all .3s;
  font-family:'Lato',sans-serif;
  text-decoration:none;
}
.lost-card-btn:hover{
  background:rgba(255,255,255,.09);
  color:#fff;
  border-color:rgba(255,255,255,.6);
}
/* Bottom quote */
.lost-quote{
  position:absolute;
  bottom:72px;left:72px;
  z-index:3;
  max-width:620px;
  font-family:'Cormorant Garamond',serif;
  font-weight:300;
  font-style:italic;
  font-size:clamp(20px,2.6vw,34px);
  line-height:1.42;
  color:#fff;
}

/* ══════════════════════════════════════════
   SECTION 6 — WHERE LIFESTYLE MEETS LEGACY
══════════════════════════════════════════ */
#lifestyle-legacy{
  position:relative;
  overflow:hidden;
  padding:72px 0;
}
.ll-bg{
  position:absolute;inset:0;
  background:url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&q=80')center/cover no-repeat;
  transform:scale(1.04);
}
.ll-overlay{
  position:absolute;inset:0;
  background:rgba(24,30,20,.78);
}
.ll-inner{
  position:relative;z-index:2;
  text-align:center;
  padding:0 24px;
}
.ll-hl{
  font-family:'Cormorant Garamond',serif;
  font-weight:300;
  font-style:italic;
  font-size:clamp(28px,4vw,54px);
  color:#fff;
  letter-spacing:.3px;
}

/* ══════════════════════════════════════════
   SECTION 7 — LIFESTYLE TEXT COLUMNS
══════════════════════════════════════════ */
#lifestyle-text{
  background:#ffffff;
  padding:90px 0;
}
.lt-inner{
  max-width:1140px;margin:0 auto;padding:0 60px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:72px;
}
.lt-col-label{
  font-size:8.5px;
  letter-spacing:3px;
  text-transform:uppercase;
  color:#a09880;
  margin-bottom:16px;
}
.lt-col h3{
  font-family:'Cormorant Garamond',serif;
  font-weight:400;
  font-size:22px;
  color:#222218;
  margin-bottom:14px;
  line-height:1.35;
}
.lt-col p{
  font-size:12px;
  line-height:2;
  color:#7a7a6c;
  font-weight:300;
}

/* ══════════════════════════════════════════
   SECTION 8 — NOT SELLING PROPERTY
══════════════════════════════════════════ */
#notsell{
  background:#f7f5f0;
  padding:96px 0 90px;
}
.ns-inner{
  max-width:1140px;margin:0 auto;padding:0 60px;
}
.ns-head{
  text-align:center;
  margin-bottom:70px;
}
.ns-head h2{
  font-family:'Cormorant Garamond',serif;
  font-weight:400;
  font-size:clamp(26px,3.2vw,42px);
  color:#222218;
  margin-bottom:12px;
}
.ns-head p{
  font-size:11.5px;
  color:#888878;
  font-weight:300;
  line-height:1.95;
  max-width:400px;
  margin:0 auto;
  letter-spacing:.3px;
}
/* GRID matching screenshot:
   Row1: [small landscape img top-right area] [Escape label+title+text right]
   Row2: [Reconnection: img left + text right spanning]
   Row3: [Legacy label + img right + text]
*/
.ns-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  grid-template-rows:auto auto auto;
  gap:0;
  row-gap:0;
}
/* Escape card: top row, right-side image above, text below-left */
.ns-escape{
  grid-column:1;grid-row:1;
  padding-right:40px;
  padding-bottom:52px;
  border-right:1px solid #e8e4dc;
}
.ns-escape-img{
  width:100%;height:186px;
  object-fit:cover;
  margin-bottom:24px;
}
.ns-card-tag{
  font-size:8px;letter-spacing:3px;
  text-transform:uppercase;color:#a09880;
  margin-bottom:10px;
  font-family:'Lato',sans-serif;
}
.ns-card-title{
  font-family:'Cormorant Garamond',serif;
  font-weight:400;font-size:24px;
  color:#222218;margin-bottom:12px;
}
.ns-card-text{
  font-size:11.5px;line-height:1.95;
  color:#7a7a6c;font-weight:300;
}

/* Reconnection: spans both columns, row2 */
.ns-reconnect{
  grid-column:1/3;grid-row:2;
  display:grid;
  grid-template-columns:200px 1fr;
  gap:36px;
  align-items:start;
  padding:40px 0;
  border-top:1px solid #e8e4dc;
  border-bottom:1px solid #e8e4dc;
}
.ns-reconnect-img{
  width:200px;height:150px;
  object-fit:cover;
}
.ns-reconnect-body{padding-top:4px}

/* Legacy: row3, right column */
.ns-legacy{
  grid-column:2;grid-row:3;
  padding-left:40px;
  padding-top:44px;
  border-left:1px solid #e8e4dc;
}
.ns-legacy-img{
  width:100%;height:186px;
  object-fit:cover;
  margin-bottom:24px;
}

/* ══════════════════════════════════════════
   SECTION 9 — INVESTING
══════════════════════════════════════════ */
#investing{
  background:#ffffff;
  padding:96px 0 90px;
}
.inv-inner{
  max-width:1140px;margin:0 auto;padding:0 60px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:start;
}
.inv-left h2{
  font-family:'Cormorant Garamond',serif;
  font-weight:400;
  font-size:clamp(26px,3.2vw,42px);
  line-height:1.25;
  color:#222218;
  margin-bottom:0;
}
.inv-list{
  list-style:none;
  margin-top:8px;
}
.inv-item{
  display:flex;
  align-items:center;
  gap:20px;
  padding:17px 0;
  border-bottom:1px solid #e8e4dc;
  cursor:pointer;
  transition:transform .25s;
}
.inv-item:first-child{border-top:1px solid #e8e4dc}
.inv-item:hover{transform:translateX(5px)}
.inv-item:hover .inv-arrow{color:#222218}
.inv-num{
  font-family:'Cormorant Garamond',serif;
  font-size:13px;color:#b0a07c;
  flex-shrink:0;width:22px;
}
.inv-label{
  font-size:12.5px;color:#3b3b35;
  font-weight:300;letter-spacing:.2px;
  flex:1;
}
.inv-arrow{
  color:#ccc;font-size:14px;
  margin-left:auto;
  transition:color .25s,transform .25s;
}
.inv-item:hover .inv-arrow{transform:translateX(4px)}

/* ══════════════════════════════════════════
   SECTION 10 — FOOTER / CTA
══════════════════════════════════════════ */
#footer-cta{
  position:relative;
  background:#18201a;
  padding:110px 0 70px;
  text-align:center;
  overflow:hidden;
}
#footer-cta::before{
  content:'';
  position:absolute;inset:0;
  background:url('https://images.unsplash.com/photo-1542621334-a254cf47733d?w=1400&q=70')center/cover no-repeat;
  opacity:.07;
}
.fc-inner{
  position:relative;z-index:2;
  padding:0 24px;
}
.fc-ornament{
  font-size:22px;
  color:rgba(255,255,255,.35);
  margin-bottom:28px;
  display:block;
}
.fc-title{
  font-family:'Cormorant Garamond',serif;
  font-weight:300;
  font-style:italic;
  font-size:clamp(32px,5vw,64px);
  color:#fff;
  line-height:1.22;
  margin-bottom:42px;
  letter-spacing:.3px;
}
.fc-btn{
  display:inline-block;
  border:1px solid rgba(255,255,255,.32);
  color:rgba(255,255,255,.8);
  font-size:9px;
  letter-spacing:3px;
  text-transform:uppercase;
  padding:13px 42px;
  background:transparent;
  cursor:pointer;
  transition:all .35s;
  text-decoration:none;
  font-family:'Lato',sans-serif;
  font-weight:400;
}
.fc-btn:hover{
  background:rgba(255,255,255,.07);
  color:#fff;
  border-color:rgba(255,255,255,.55);
  letter-spacing:3.6px;
}
.fc-divider{
  width:1px;height:48px;
  background:rgba(255,255,255,.12);
  margin:56px auto 44px;
}
.fc-nav{
  display:flex;justify-content:center;
  flex-wrap:wrap;gap:0 44px;
  list-style:none;margin-bottom:50px;
}
.fc-nav a{
  font-size:9.5px;letter-spacing:2px;
  text-transform:uppercase;
  color:rgba(255,255,255,.32);
  text-decoration:none;
  transition:color .3s;
  font-family:'Lato',sans-serif;
}
.fc-nav a:hover{color:rgba(255,255,255,.72)}
.fc-copy{
  font-size:10px;
  color:rgba(255,255,255,.18);
  letter-spacing:.5px;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media(max-width:900px){
  .whatif-body-row{grid-template-columns:1fr;gap:40px}
  .whatif-inner{padding:0 24px}
  .whatif-h2{font-size:28px}
  .whatif-img{height:260px}
  .whatif-wrap,.lt-inner,.inv-inner{grid-template-columns:1fr;padding:0 28px}
  .whatif-right{grid-template-columns:1fr}
  .whatif-img-wrap{grid-column:1;grid-row:auto;display:block}
  .na-cols{grid-template-columns:1fr}
  .na-col{border-right:none;border-bottom:1px solid rgba(255,255,255,.08);padding:32px 20px;text-align:center}
  .na-inner{padding:0 28px}
  .ch-inner,.ns-inner{padding:0 24px}
  .lost-card{right:20px;left:20px;top:auto;bottom:24px;width:auto}
  .lost-quote{left:24px;right:24px;bottom:200px}
  .ns-grid{grid-template-columns:1fr}
  .ns-escape{grid-column:1;padding-right:0;border-right:none}
  .ns-reconnect{grid-column:1;grid-template-columns:1fr}
  .ns-reconnect-img{width:100%;height:200px}
  .ns-legacy{grid-column:1;padding-left:0;border-left:none}
  .fc-nav{gap:14px 32px}
}
 

/* Container */
.container {
  max-width: 1200px !important;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
#navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo */
.nav-logo img {
  height: 60px;
  object-fit: contain;
}

/* Menu */
.nav-menu {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-menu li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: 0.3s;
}

.nav-menu li a:hover {
  color: #007bff;
}

/* Enquire Button */
.nav-enquire {
  padding: 8px 16px;
  border: 1px solid #000;
  border-radius: 20px;
}

/* Burger (hidden desktop) */
.nav-burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-burger span {
  width: 25px;
  height: 3px;
  background: #000;
  margin: 4px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  #whatif {
    background: #ffffff;
    padding: 40px 0 100px !important;
}
.whatif-divider {
    width: 200px !important;
    height: 2px;
    background: #3a7d44;
    margin: 0px !important;
    transform: scaleX(0);
    transform-origin: center;
    animation: lineGrow 1s ease forwards;
    animation-delay: 0.6s;
}

  .nav-burger {
    display: flex;
  }
}
/* .origin-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 72px;
    height: 72px;
    border-top: 1.5px solid #b0a07c;
    border-left: 1.5px solid #b0a07c;
    pointer-events: none;
    z-index: 2;
} */
/* ══════════════════════════════════════════
   SECTION 2 — THE ORIGIN (WHAT IF)
══════════════════════════════════════════ */
#whatif{
  background:#ffffff;
  padding:96px 0 100px;
}
.origin-wrap{
  max-width:1140px;
  margin:0 auto;
  padding:0 60px;
}

/* Section heading row: label left + full-width bottom border */
.origin-heading-row{
  display:flex;
  align-items:center;
  gap:28px;
  padding-bottom:22px;
  border-bottom:1px solid #d8d4cc;
  margin-bottom:64px;
}
.origin-section-label{
  font-family:'Lato',sans-serif;
  font-weight:400;
  font-size:9px;
  letter-spacing:4px;
  text-transform:uppercase;
  color:#a09880;
  white-space:nowrap;
  flex-shrink:0;
}

/* Two column body */
.origin-body-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:72px;
  align-items:start;
}

/* LEFT: big heading + paragraphs */
.origin-title{
  font-family:'Cormorant Garamond',serif;
  font-weight:400;
  font-size:clamp(28px,3vw,42px);
  line-height:1.22;
  color:#1e1e18;
  letter-spacing:-.2px;
  margin-bottom:40px;
}
.origin-text-cols{
  display:grid;
  gap:24px 36px;
}
.origin-para{
  font-size:18px;
  line-height:1.95;
  color:#7a7a6c;
  font-weight:300;
}

/* RIGHT: image with decorative top-left corner border */
.origin-right{
  position:relative;    /* space for the top border frame */
  padding-left:28px;     /* space for the left border frame */
}
/* The L-shaped decorative corner — top + left lines */
/* .origin-right::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:72px;
  height:72px;
  border-top:1.5px solid #b0a07c;
  border-left:1.5px solid #b0a07c;
  pointer-events:none;
  z-index:2;
} */
.origin-img{
  width:100%;
  height:440px;
  object-fit:cover;
  object-position:center;
  display:block;
  position:relative;
  z-index:1;
  transition:transform .7s ease;
}
.origin-right:hover .origin-img{
  transform:scale(1.02);
}
/* Subtle shadow behind image */
.origin-img-inner{
  overflow:hidden;
  position:relative;
  box-shadow:12px 18px 48px rgba(0,0,0,.1);
}

/* Section */
#chapters {
  font-family: "Playfair Display", serif;
}

/* Top */
.ch-top {
  max-width: 760px;      /* controls text width */
  margin: 0 auto;        /* centers block */
  text-align: center;
  display: block;        /* avoid flex issues */
}

/* Label */
.ch-label {
  font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #b8956a;
    display: block;
    margin-bottom: 20px;
}

.ch-head {
font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 80px;
    line-height: 1.2;
    color: #1e1e18;
    letter-spacing: -.3px;
    margin-bottom: 24px;
}

.ch-sub {
  color: #666;
  margin-bottom: 60px;
font-size: 20px;
    font-weight: 300;
    line-height: 1.9;
    font-family: Lora, serif;
}

/* Tabs */
.ch-tabs {
  display: flex;
  justify-content: center;
  gap: 200px;
  position: relative;
}

/* Tab */
.ch-tab {
  text-align: center;
  cursor: pointer;
  opacity: 0.5;
  transition: 0.3s;
}

.ch-tab.active {
  opacity: 1;
}

/* Tab label */
.ch-tab span {
  font-size: 10px;
  letter-spacing: 2px;
  color: #888;
}

.ch-tab p {
  font-size: 14px;
  margin-top: 5px;
}

/* Bottom line */
.ch-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ddd;
}

/* Active green line */
.ch-active-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 260px;
  height: 2px;
  background: #2ecc71;
  transition: 0.4s;
}

/* Content split */
.ch-content {
  display: flex;
  margin-top: 10px;
}

/* Image */
.ch-image {
  width: 50%;
  position: relative;
}

.ch-image img {
  width: 100%;
  height: 630px;
  object-fit: cover;
}

/* Badge */
.ch-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #2ecc71;
  color: #fff;
  font-size: 10px;
  padding: 6px 12px;
  letter-spacing: 2px;
}

/* Right panel */
.ch-info {
  width: 50%;
  background: #0f0f0f;
  color: #fff;
  padding: 80px;
}

/* Small label */
.ch-small {
  font-size: 10px;
  letter-spacing: 2px;
  color: #aaa;
  margin-bottom: 10px;
}

/* Title */
.ch-info h3 {
font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 50px;
    line-height: 1.2;
    color: #1e1e18;
    letter-spacing: -.3px;
}

/* Location */
.ch-location {
  font-size: 12px;
  color: #888;
  margin-bottom: 20px;
}

/* Desc */
.ch-info p {
    font-size: 13px;
    color: #5a5a5a;
    display: block;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 900px) {
  .ch-content {
    flex-direction: column;
  }

  .ch-image,
  .ch-info {
    width: 100%;
  }

  .ch-info {
    padding: 40px;
  }
}

/* Right panel */
.ch-info {
  width: 50%;
 background: #eef5ef;
  color: #fff;
  padding: 40px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Small label */
.ch-small {
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #b8956a !important;
    display: block;
    margin-bottom: 20px;
}

/* Title */
.ch-title {
  font-size: 40px;
  font-weight: 400;
  font-family: "Playfair Display", serif;
  margin-bottom: 10px;
}

/* Location */
.ch-location {
  letter-spacing: 2px;
  color: #888 !important;
  margin-bottom: 30px;
  font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-size: 14px !important;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

/* Description */
.ch-desc {
  font-size: 15px !important;
  line-height: 1.8;
  color: #5a5a5a !important;
  margin-bottom: 20px;
  max-width: 600px;
  font-family: Lora, serif;
}

/* Stats Row */
.ch-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

/* Each stat */
.ch-stats div {
  position: relative;
}

/* Vertical divider */
.ch-stats div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 26px;
  height: 40px;
  width: 1px;
  background: rgb(133 130 130 / 49%);
}

/* Numbers */
.ch-stats h4 {
  font-size: 20px;
  color: #2ecc71;
  margin-bottom: 5px;
}

/* Label */
.ch-stats span {
  font-size: 13px;
  letter-spacing: 2px;
  color: #666;
  font-family: Montserrat, sans-serif;
}

/* CTA */
.ch-cta {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
}

/* CTA text */
.ch-cta span {
  font-size: 13px;
    letter-spacing: 2px;
    color: #bfa67a;
    font-family: Montserrat, sans-serif;
    font-weight: 500;
}

/* Line */
.ch-cta .line {
  width: 60px;
  height: 1px;
  background: #bfa67a;
  transition: 0.3s;
}

/* Hover effect */
.ch-cta:hover .line {
  width: 100px;
}

/* Hide panels */
.ch-panel {
  display: none;
}

/* Active panel */
.ch-panel.active {
  display: flex;
}

/* Smooth fade */
.ch-panel {
  opacity: 0;
  transition: 0.4s ease;
  width: 100%;
}

.ch-panel.active {
  opacity: 1;
}

/* Tabs */
.ch-tab {
  cursor: pointer;
  opacity: 0.5;
  transition: 0.3s;
}

.ch-tab.active {
  opacity: 1;
}

/* Active underline */
.ch-active-line {
  position: absolute;
  bottom: 0;
  height: 2px;
  width: 250px;
  background: #2ecc71;
  transition: 0.4s;
}

/* Section */
.quote-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* Background image */
.quote-bg {
  position: absolute;
  inset: 0;
  background: url("../images/tep-luxury-treehouse.png") center/cover no-repeat;
  z-index: 1;
}

/* Dark cinematic overlay */
.quote-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

/* Center content */
.quote-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

/* Quote text */
.quote-text {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-style: italic;
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
  max-width: 900px;
}

/* Author */
.quote-author {
  margin-top: 30px;
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.6);
}

/* Section */
.lifestyle-section {
  width: 100%;
  background: #fff;
}

/* HERO IMAGE */
.ls-hero {
  position: relative;
  height: 70vh;
  background: url("../images/tep-resort-luxury.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Gradient fade (IMPORTANT) */
.ls-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0) 40%,
    rgba(255,255,255,0.85) 70%,
    #ffffff 100%
  );
}

/* Title */
.ls-title {
  position: relative;
  z-index: 2;
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 400;
  color: #fff;
  text-align: center;
}

/* CONTENT SECTION */
.ls-content {
  max-width: 700px;
  margin: 40px auto 0px;
  text-align: center;
  padding: 0 20px;
}

/* Paragraph */
.ls-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
}

/* Section */
.ll-section {
  padding: 120px 20px;
}

/* Container */
.ll-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 80px;
  position: relative;
}

/* Vertical divider */
.ll-container::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: 1px;
  background: rgba(0,0,0,0.08);
}

/* Column */
.ll-col {
  flex: 1;
}

/* Box (important for border effect) */
.ll-box {
  position: relative;
  padding-top: 40px;
}

/* Top border accent LEFT */
.ll-left .ll-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 1px;
  background: #2ecc71;
}

.ll-left .ll-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 30px;
  background: #2ecc71;
}

/* Top border accent RIGHT */
.ll-right .ll-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 1px;
  background: #d6b98c;
}

.ll-right .ll-box::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 30px;
  background: #d6b98c;
}

/* Labels */
.ll-label {
  font-size: 10px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.ll-label.green {
  color: #2ecc71;
}

.ll-label.gold {
  color: #d6b98c;
}

/* Heading */
.ll-box h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 20px;
}

/* Paragraph */
.ll-box p {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 20px;
  max-width: 420px;
}

/* Responsive */
@media (max-width: 900px) {
  .ll-container {
    flex-direction: column;
  }

  .ll-container::before {
    display: none;
  }
}
/* Section */
.exp-section {
  background: #f7f5f2;
  padding: 120px 20px;
}

/* TOP */
.exp-top {
  text-align: left;
  max-width: 900px;
  margin: 0 auto 100px;
}

.exp-label {
 font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #b8956a;
    display: block;
    margin-bottom: 18px;
}

.exp-top h2 {
     font-family: Cormorant Garamond,serif;
    font-size: 60px;
    font-weight: 500;
    line-height: 1.25;
    color: #1c1c1c;
    margin-bottom: 40px;
}

.exp-sub {
  font-size: 14px;
  color: #777;
  line-height: 1.7;
}

/* ROW */
.exp-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  margin-bottom: 100px;
}

/* Reverse layout */
.exp-row.reverse {
  flex-direction: row-reverse;
}

/* IMAGE */
.exp-img {
  position: relative;
  width: 500px;
}

.exp-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

/* Badge */
.exp-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #222;
  color: #fff;
  font-size: 10px;
  padding: 6px 10px;
}

/* TEXT */
.exp-text {
  max-width: 380px;
}

/* Mini label */
.exp-mini {
  font-size: 12px;
  letter-spacing: 2px;
  color: #2ecc71 !important;
  margin-bottom: 10px;
  font-weight: 500;
}

/* Heading */
.exp-text h3 {
  font-family:Cormorant Garamond,serif;
  font-size: 36px;
  margin-bottom: 25px;
}

/* Paragraph */
.exp-text p {
font-size: 18px;
    color: #555;
    line-height: 1.8;
    font-family: Lora, serif;
}

/* Responsive */
@media (max-width: 900px) {
  .exp-row {
    flex-direction: column;
  }

  .exp-row.reverse {
    flex-direction: column;
  }

  .exp-img {
    width: 100%;
  }
}

/* Section */
.faq-section {
  padding: 120px 20px;
}

/* Container */
.faq-container {
  max-width: 900px;
  margin: auto;
}

/* Label */
.faq-label {
  text-align: center;
  font-size: 10px;
  letter-spacing: 3px;
  color: #bfa67a;
  margin-bottom: 20px;
}

/* Title */
.faq-title {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 80px;
}

/* Item */
.faq-item {
  border-top: 1px solid rgba(0,0,0,0.1);
  padding: 25px 0;
  cursor: pointer;
}

/* Head */
.faq-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Number */
.faq-num {
  width: 50px;
  font-size: 12px;
  color: #bfa67a;
}

/* Title */
.faq-head h4 {
  flex: 1;
  font-size: 18px;
  font-weight: 400;
  margin: 0;
}

/* Arrow */
.faq-arrow {
  font-size: 16px;
  transition: 0.3s;
}

/* Content */
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
}

.faq-content p {
  margin-top: 15px;
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}

/* ACTIVE STATE */
.faq-item.active .faq-content {
  max-height: 200px;
}

/* Hover effect */
.faq-item:hover .faq-arrow {
  color: #2ecc71;
  transform: translateX(5px);
}

.faq-item:hover h4 {
  color: #000;
}

/* Section */
.cta-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* Background */
.cta-bg {
  position: absolute;
  inset: 0;
  background: url("../images/earth-project-philosophy.png") center/cover no-repeat;
  z-index: 1;
}

/* Dark overlay */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 10, 0.75);
  z-index: 2;
}

/* Content */
.cta-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  max-width: 700px;
  margin: auto;
}

/* Logo */
.cta-logo {
  width: 160px;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Heading */
.cta-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  font-weight: 400;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 20px;
}

/* Paragraph */
.cta-content p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
}

/* Buttons */
.cta-buttons {
  display: flex;
  gap: 20px;
}

/* Primary button */
.btn-primary {
  background: #2ecc71;
  color: #fff;
  padding: 12px 28px;
  font-size: 11px;
  letter-spacing: 2px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #27ae60;
}

/* Outline button */
.btn-outline {
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  padding: 12px 28px;
  font-size: 11px;
  letter-spacing: 2px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline:hover {
  border-color: #fff;
}

/* Footer */
.footer {
  background: #050505;
  color: rgba(255,255,255,0.6);
  padding: 100px 40px 40px;
  font-size: 13px;
}

/* Container */
.footer-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 80px;
}

/* Left */
.footer-left {
  max-width: 320px;
}

.footer-logo {
  width: 70px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.footer-left p {
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
}

/* Columns */
.footer-col h5 {
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  text-decoration: none;
  color: rgba(255,255,255,0.6);
  transition: 0.3s;
}

.footer-col a:hover {
  color: #fff;
}

/* Divider */
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 60px auto 30px;
  max-width: 1100px;
}

/* Bottom */
.footer-bottom {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* Default navbar */
#navbar {
  position: fixed;   /* KEY CHANGE */
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px 60px;
  z-index: 999;
  transition: 0.4s ease;
   font-family: "Montserrat", sans-serif;
}

/* LOGO */
.nav-logo {
  position: absolute;
  left: 10%;
  top: 25px;
}

.nav-logo img {
  height: 60px;
}

/* MENU GROUP */
.nav-group {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-20%); /* keep your design alignment */
  display: flex;
  align-items: center;
  gap: 40px;
}

/* LINKS */
.nav-group a {
    text-decoration: none;
    color: rgb(180 179 179 / 85%);
    letter-spacing: 2px;
    transition: 0.3s;
    font-weight: 500;
    font-size: 12px;
    padding-left: 25px;
}

.nav-group a:hover {
  color: #c1bfbf;
}

/* BUTTON */
.nav-btn {
  border: 1px solid rgba(255,255,255,0.5);
  padding: 8px 18px;
}

.nav-btn:hover {
  border-color: #fff;
}

/* SCROLL STATE (premium effect) */
#navbar.scrolled {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  padding: 15px 60px;
}

/* Adjust positions when scrolled */
#navbar.scrolled .nav-logo {
  top: 15px;
}

#navbar.scrolled .nav-group {
  top: 25px;
}
#navbar.scrolled {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
/* Column base */
.na-col {
  position: relative;
  padding: 30px;
  transition: 0.4s ease;
  overflow: hidden;
}

/* Overlay (hidden initially) */
.na-col::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 40%); /* dark overlay */
  opacity: 0;
  transition: 0.4s ease;
  z-index: 1;
}

/* Content stays above overlay */
.na-col * {
  position: relative;
  z-index: 2;
}

/* Hover effect */
.na-col:hover::before {
  opacity: 1;
}
.ch-cta a{
  text-decoration: none;
}
/* HERO */
#hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* IMAGE */
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY (THIS IS THE KEY FIX) */
.hero-overlay {
  position: absolute;
  inset: 0;
 }

/* CONTENT */
.hero-inner {
  position: absolute;
  top: 52%;   /* slight offset (not exact 50%) */
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 820px;
  padding: 0 20px;
}

/* LOGO */
.hero-logo {
  width: 130px;
  margin-bottom: 20px; /* more breathing space */
  opacity: 0.9;
}

/* TITLE (IMPORTANT FIXES) */
.hero-title {
  font-family:'Cormorant Garamond',serif;
  font-size: 70px;
  font-weight: 500; /* lighter */
  line-height: 1.25; /* more spacing */
  letter-spacing: 0.3px;
  color: #fff;
  margin-bottom: 28px;
}

/* SUBTEXT */
.hero-sub {
 font-family: "Lora", serif;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin: 0 auto;
}

/* SCROLL */
.hero-scroll-wrap {
  position: absolute;
  bottom: 10px; /* more spacing */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

/* LINE */
.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.35);
  margin: 0 auto 12px;
}

/* TEXT */
.hero-scroll-txt {
  font-size: 9px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.5);
}
/* BUTTON WRAPPER */
.hero-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* PRIMARY BUTTON */
.btn-primary {
  background: #fff;
  color: #000;
  padding: 14px 32px;
  font-size: 11px;
  letter-spacing: 2px;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
}

/* HOVER → GREEN */
.btn-primary:hover {
  background: #2ecc71;   /* premium green */
  color: #fff;
}

/* OUTLINE BUTTON */
.btn-outline {
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  padding: 14px 32px;
  font-size: 11px;
  letter-spacing: 2px;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  transition: 0.3s ease;
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.05);
}
.hero-buttons a:hover {
  transform: translateY(-2px);
}

/* SECTION */
.earth-section {
  padding: 80px 40px;
}

/* CONTAINER */
.earth-container {
  max-width: 1200px;
  margin: auto;
}

/* LABEL */
.earth-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.earth-label .line {
  width: 40px;
  height: 1px;
  background: #bfa67a;
}

.earth-label p {
  letter-spacing: 3px;
  font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    color: #b8956a;
}

/* HEADINGS */
.earth-head h2 {
 font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 60px;
    line-height: 1.2;
    color: #1e1e18;
    letter-spacing: -.3px;
    margin-bottom: 24px;
}

.earth-head h2 span {
  font-style: italic;
  color: rgb(76 76 76);
}

/* SUB */
.earth-sub {
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 3px;
letter-spacing: 2px;
    color: #888 !important;
    margin-bottom: 30px;
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-size: 14px !important;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

/* CARDS */
.earth-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 80px;
  border: 1px solid rgba(255,255,255,0.08);
}

/* CARD */
.earth-card {
  position: relative;
  padding: 60px;
  border: 1px solid #e9e4d854;
}
/* 
.earth-card:last-child {
  border-right: none;
} */

/* SMALL NUMBER */
.card-num {
  letter-spacing: 3px;
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    color: #b8956a;
}

/* TITLE */
.earth-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 1.2;
    color: #1e1e18;
    letter-spacing: -.3px;
    margin-bottom: 24px;
}

/* TEXT */
.earth-card p {
font-size: 15px !important;
    line-height: 1.8;
    color: #5a5a5a !important;
    margin-bottom: 20px;
    font-family: Lora, serif;
  max-width: 420px;
}

/* BUTTON */
.card-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 20px;
  border: 1px solid #2ecc71;
  color: #2ecc71;
  font-size: 11px;
  letter-spacing: 2px;
  text-decoration: none;
  transition: 0.3s;
}

.card-btn:hover {
  background: #2ecc71;
  color: #000;
}

/* BIG BACKGROUND NUMBER */
.bg-num {
 position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 100px;
    color: rgb(76 76 76 / 15%);
  font-family: 'Cormorant Garamond', serif;
}

/* HOVER EFFECT */
.earth-card:hover {
  background: #eef5ef;
}

/* SECTION */
.inner-hero {
  padding: 140px 20px 120px;
  text-align: center;
}

/* CONTAINER */
.inner-container {
  max-width: 900px;
  margin: 0 auto;
}

/* LABEL */
.inner-label {
font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #b8956a;
    display: block;
    margin-bottom: 18px;
}

/* TITLE */
.inner-title {
  font-family: Cormorant Garamond,serif;
  font-size: 80px;
  font-weight: 500;
  line-height: 1.25;
  color: #1c1c1c;
  margin-bottom: 40px;
}

/* DESCRIPTION */
.inner-desc {
  font-family: Lora, serif;
  font-size: 20px;
  line-height: 1.9;
  color: #6b6b6b;
  max-width:900px;
  text-align: left;
}
.inner-hero {
  border-top: 1px solid rgba(0,0,0,0.05);
    background: #fefdfb;
    text-align: left;
}

/* HEADER */
.inner-page #navbar {
    border-bottom: 1px solid rgba(0,0,0,0.06);
      background: #fefdfb;
      height: 90px;
}
.inner-page #navbar .nav-logo {
    position: absolute;
    left: 14%;
    top: 15px;
}

/* NAV WRAP */
.inner-page .nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* LOGO */
.inner-page .nav-logo img {
  height: 60px;
}

/* MENU */
.inner-page .nav-menu {
  display: flex;
  align-items: center;
  gap: 46px; /* IMPORTANT spacing */
}

/* MENU LINKS */
.inner-page .nav-group a {
  font-size: 12px;
  letter-spacing: 2px;
  text-decoration: none;
  color: #7a7a7a;
  transition: 0.3s ease;
}

/* ACTIVE (ABOUT) */
.inner-page .nav-group a.active {
  color: #3a7d44; /* earthy green */
}

/* HOVER */
.inner-page .nav-menu a:hover {
  color: #3a7d44;
}

/* BUTTON */
.inner-page .nav-btn {
  padding: 12px 26px;
  background: #1c1c1c;
  color: #fff !important;
  font-size: 11px;
  letter-spacing: 2px;
  text-decoration: none;
}

/* BUTTON ALIGN FIX */
.inner-page .nav-action {
  margin-left: 30px; /* separates button from menu */
}
.inner-page .nav-menu a {
  position: relative;
}

.inner-page .nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 1px;
  background: #3a7d44;
  transition: 0.3s;
}

.inner-page .nav-menu a:hover::after {
  width: 100%;
}

/* SECTION */
.landscape-section {
  position: relative;
  width: 100%;
  height: 60vh; /* adjust if needed */
  overflow: hidden;
}

/* IMAGE */
.landscape-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY (VERY IMPORTANT FOR LOOK) */
.landscape-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(180, 150, 90, 0.15),   /* warm sunlight tone */
    rgba(20, 18, 14, 0.25)      /* soft depth */
  );
}

/* SECTION */
.origin-section {
  padding: 140px 20px;
  text-align: left;
}

/* CONTAINER */
.origin-container {
  max-width: 900px;
  margin: 0 auto;
}

/* LABEL */
.origin-label {
  font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #b8956a;
    display: block;
    margin-bottom: 30px;
}

/* MAIN TITLE */
.origin-title {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.5;
  color: #1c1c1c;
  margin-bottom: 40px;
}

/* TEXT BLOCK */
.origin-text p {
  font-size: 19px;
  line-height: 1.9;
  color: #6b6b6b;
  margin-bottom: 24px;
      font-family: Lora, serif;
}

/* DIVIDER */
.origin-divider {
 width: 180px;
    height: 2px;
    background: #3a7d44;
    margin-bottom: 60px;
    margin-top: 50px;
}

/* SUBTITLE */
.origin-subtitle {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 400;
  color: #1c1c1c;
  margin-bottom: 30px;
}

/* BOTTOM TEXT */
.origin-text.bottom {
  max-width: 680px;
  margin: 0 auto;
}
.origin-section {
  animation: fadeUp 1s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* SECTION */
.principles-section {
  background: #f6f4ef; /* soft earth beige */
  padding: 120px 20px;
  text-align: center;
}

.principles-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left; /* 🔥 main fix */
}

/* LABEL */
.principles-label {
  text-align: left;
  font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #b8956a;
    display: block;
    margin-bottom: 30px;
}

/* TITLE */
.principles-title {
  text-align: left;
}

/* OPTIONAL: reduce spacing for better alignment */
.principles-title {
  margin-bottom: 50px;
  font-family: "Playfair Display", serif;
    font-size: 38px;
    font-weight: 400;
    line-height: 1.5;
    color: #1c1c1c;
}

/* DIVIDER */
.principles-divider {
  height: 1px;
  background: rgba(0,0,0,0.08);
}

/* GRID */
.principles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* ITEMS */
.principle-item {
  padding: 30px;
  text-align: left;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  border-right: 1px solid rgba(0,0,0,0.08);
  background: transparent;
    transition: all 0.3s ease;
}

/* REMOVE RIGHT BORDER */
.principle-item:nth-child(2n) {
  border-right: none;
}

/* REMOVE BOTTOM BORDER */
.principle-item:nth-last-child(-n+2) {
  border-bottom: none;
}

/* NUMBER */
.principle-item .num {
  font-size: 20px;
  color: #3a7d44;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: inline-block;
}

/* TITLE */
.principle-item h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 16px;
   transition: all 0.3s ease;
}

/* TEXT */
.principle-item p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(0,0,0,0.6);
}
.principle-item:hover {
  background: #ffffff;
  transition: all 0.3s ease;
}
 

.principle-item:hover h3 {
  color: #3a7d44; /* 🌿 Earth green */
}

/* SECTION */
.cta-section {
  padding: 140px 20px;
  text-align: center;
}

/* CONTAINER */
.cta-container {
  max-width: 720px;
  margin: 0 auto;
}

/* TITLE */
.cta-title {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 24px;
}

/* TEXT */
.cta-text {
  font-size: 20px;
  line-height: 1.8;
  color: rgba(0,0,0,0.6);
  margin-bottom: 40px;
}

/* BUTTON */
.cta-btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;

  background: #1a1a1a;
  color: #ffffff;

  transition: all 0.3s ease;
}

/* 🔥 HOVER EFFECT (YOUR REQUIREMENT) */
.cta-btn:hover {
  background: #3a7d44; /* green */
  color: #ffffff;
}
.inner-page .cta-section {
  position: relative;
  height: 80vh;
  width: 100%;
  overflow: hidden;
}
/* SECTION */
.contact-section {
  background: #f5f3ee;
  padding: 100px 20px;
}

/* LAYOUT */
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 60% 40%; /* exact proportion */
  min-height: 650px; /* match panel height */
}

/* LEFT FORM */
.contact-form {
  padding: 60px 80px 60px 40px; /* more right spacing like design */
}

/* FULL WIDTH INPUT */
.form-group {
  width: 100%;
  margin-bottom: 40px;
}

/* ROW FIX */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
input,
textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #d6d2c8; /* softer like design */
  padding: 12px 0;
  font-size: 15px;
  background: transparent;
  outline: none;
}

/* FOCUS LINE (GREEN like screenshot) */
input:focus,
textarea:focus {
  border-bottom: 1px solid #3a7d44;
}
.form-row .form-group:nth-child(2) input {
  border-bottom: 1px solid #3a7d44; /* active look */
}
.interest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.interest-tags span {
  border: 1px solid #d6d2c8;
  padding: 10px 18px;
  font-size: 11px;
  letter-spacing: 1.5px;
  background: #fff;
}

/* HOVER */
.interest-tags span:hover {
  border-color: #3a7d44;
  color: #3a7d44;
}
.contact-info {
  background: #121212;
  color: #fff;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical center */
}
.contact-info h3 {
  font-size: 32px;
  line-height: 1.4;
  font-weight: 400;
}

.contact-info p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
}
.submit-btn {
  margin-top: 30px;
  padding: 14px 36px;
  background: #1a1a1a;
  color: #fff;
  font-size: 11px;
  letter-spacing: 2px;
  border: none;
}

.submit-btn:hover {
  background: #3a7d44;
}

/* LABEL */
.form-group label {
  font-size: 11px;
    letter-spacing: 2px;
    color: #b8956a;
    display: block;
    margin-bottom: 10px;
    font-family: Montserrat, sans-serif;
    font-weight: 500;
}

/* INPUTS */
input,
textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.2);
  padding: 10px 0;
  font-size: 14px;
  background: transparent;
  outline: none;
  font-family: Lora, serif;
}

/* ROW */
.form-row {
  display: flex;
  gap: 40px;
}

/* TEXTAREA */
textarea {
  height: 80px;
  resize: none;
}

/* TAGS */
.interest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.interest-tags span {
  border: 1px solid rgba(0,0,0,0.2);
  padding: 8px 14px;
  font-size: 11px;
  letter-spacing: 1px;
  cursor: pointer;
}

/* BUTTON */
.submit-btn {
  margin-top: 30px;
  padding: 14px 30px;
  background: #1a1a1a;
  color: #fff;
  border: none;
  font-size: 11px;
  letter-spacing: 2px;
  cursor: pointer;
}

/* HOVER */
.submit-btn:hover {
  background: #3a7d44;
}

/* RIGHT PANEL */
.contact-info {
  background: #121212;
  color: #fff;
  padding: 60px 50px;
}

/* TITLE */
.contact-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  margin-bottom: 20px;
}

/* TEXT */
.contact-info p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
}

/* DIVIDER */
.info-divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.4);
  margin: 30px 0;
}

/* INFO BLOCK */
.info-block {
  margin-bottom: 20px;
}

.info-block span {
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
}

.info-block p {
  margin-top: 5px;
}
.interest-tags span:hover {
  border-color: #3a7d44;
  color: #3a7d44;
}
input:focus,
textarea:focus {
  border-bottom: 1px solid #3a7d44;
}
/* HERO IMAGE */
.hero-img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 6s ease-out forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1.05);
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: overlayFade 1.2s ease forwards;
  background-color: #00000091;
}

@keyframes overlayFade {
  to {
    opacity: 1;
  }
}
.hero-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  text-align: center;
  color: #fff;
}

/* LOGO */
.hero-logo {
  width: 200px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;
}

/* TITLE */
.hero-title {
  font-size: 64px;
  font-family: "Playfair Display", serif;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s ease forwards;
  animation-delay: 0.3s;
}

/* SUBTEXT */
.hero-sub {
  max-width: 600px;
  margin: 20px auto;
  font-size: 16px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s ease forwards;
  animation-delay: 0.6s;
}

/* KEYFRAME */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-buttons {
  margin-top: 30px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s ease forwards;
  animation-delay: 0.9s;
}

/* PRIMARY BUTTON */
.btn-primary {
  background: #ffffff;
  color: #000;
  padding: 14px 28px;
  margin-right: 12px;
  font-size: 12px;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.4s ease;
}

.btn-primary:hover {
  background: #3a7d44;
  color: #fff;
}

/* OUTLINE BUTTON */
.btn-outline {
  border: 1px solid #fff;
  color: #fff;
  padding: 14px 28px;
  font-size: 12px;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.4s ease;
}

.btn-outline:hover {
  background: #fff;
  color: #000;
}
.hero-scroll-wrap {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: #fff;
  animation: scrollAnim 1.5s infinite;
}

@keyframes scrollAnim {
  0% { opacity: 0; transform: translateY(0); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translateY(20px); }
}

@media (max-width: 768px) {

  #hero {
    min-height: 100vh;
  }

  .hero-inner {
    width: 90%;
    padding: 0 10px;
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -40%);
    text-align: center;
    color: #fff;
  }

  

  .hero-title {
    font-size: 34px;
    line-height: 1.3;
    margin-bottom: 0px;
  }
  .origin-wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 40px;
}

  .hero-sub {
    font-size: 14px;
    line-height: 1.6;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
  }

  .hero-scroll-wrap {
    bottom: 20px;
  }

  .hero-scroll-line {
    height: 30px;
  }
}
/* BASE ANIMATION STATE */
.sr,
.sr-l,
.sr-r {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

/* LEFT SLIDE */
.sr-l {
  transform: translateX(-60px);
}

/* RIGHT SLIDE */
.sr-r {
  transform: translateX(60px);
}

/* ACTIVE */
.sr.show,
.sr-l.show,
.sr-r.show {
  opacity: 1;
  transform: translate(0,0);
}
.origin-img {
  width: 100%;
  display: block;
  transform: scale(1.05);
  transition: transform 1.5s ease;
}

.origin-right.show .origin-img {
  transform: scale(1);
}
.whatif-h2 {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.2s;
}

.whatif-divider {
  width: 60px;
  height: 2px;
  background: #3a7d44;
  margin: 20px auto 0;
  transform: scaleX(0);
  transform-origin: center;
  animation: lineGrow 1s ease forwards;
  animation-delay: 0.6s;
}

@keyframes lineGrow {
  to { transform: scaleX(1); }
}
@media (max-width: 768px) {

  .origin-body-row {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .origin-left,
  .origin-right {
    width: 100%;
  }

  .origin-text-cols {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .whatif-h2 {
    font-size: 30px;
    line-height: 1.3;
  }

  .origin-para {
    font-size: 14px;
    line-height: 1.6;
  }

  .origin-img-inner {
    position: relative;
  }

  .whatif-img-tag {
    bottom: 10px;
    right: 10px;
    font-size: 12px;
  }
}
@media (max-width: 1024px) {

  .origin-body-row {
    gap: 50px;
  }

  .whatif-h2 {
    font-size: 34px;
  }
}
.origin-img-inner:hover .origin-img {
  transform: scale(1.03);
}
/* BASE */
.sr {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

/* SHOW */
.sr.show {
  opacity: 1;
  transform: translateY(0);
}

/* DELAYS */
.d1 { transition-delay: 0.2s; }
.d2 { transition-delay: 0.4s; }
.d3 { transition-delay: 0.6s; }
/* CARD */
.na-col {
  transition: all 0.4s ease;
  padding: 40px;
  position: relative;
}

/* BACKGROUND HOVER */
.na-col:hover {
  background: rgba(255,255,255,0.04);
}

/* NUMBER LINE EFFECT */
.na-num {
  display: inline-block;
  margin-bottom: 20px;
  position: relative;
}

.na-num::after {
  content: "";
  display: block;
  width: 0%;
  height: 1px;
  background: #3a7d44;
  margin-top: 6px;
  transition: 0.4s;
}

.na-col:hover .na-num::after {
  width: 40px;
}

/* TITLE HOVER */
.na-col h3 {
  transition: 0.3s;
}

.na-col:hover h3 {
  color: #3a7d44;
}
.na-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3),
    rgba(0,0,0,0.5)
  );
}
@media (max-width: 768px) {

  .na-inner {
    padding: 80px 20px;
    text-align: center;
  }

  .na-title {
    font-size: 32px;
    line-height: 1.3;
  }

  .na-sub {
    font-size: 14px;
    margin-bottom: 40px;
  }

  .na-cols {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .na-col {
    padding: 30px 20px;
  }

  .na-col h3 {
    font-size: 20px;
  }

  .na-col p {
    font-size: 14px;
    line-height: 1.6;
  }
}
@media (max-width: 1024px) {

  .na-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
   .na-col:nth-child(1) {
    grid-column: span 2;
  }
   .na-col:nth-child(2) {
    grid-column: span 2;
  }

  .na-col:nth-child(3) {
    grid-column: span 2;
  }

  .na-title {
    font-size: 42px;
  }
}
.na-col {
  will-change: transform, opacity;
}
/* BASE */
.sr {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

/* SHOW */
.sr.show {
  opacity: 1;
  transform: translateY(0);
}
/* PANEL BASE */
.ch-panel {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  visibility: hidden;
}

/* ACTIVE PANEL */
.ch-panel.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  visibility: visible;
}
.ch-image img {
  width: 100%;
  height: 640px !important;
  transform: scale(1.05);
  transition: transform 1.5s ease;
}

.ch-panel.active .ch-image img {
  transform: scale(1);
}
.ch-tab {
  cursor: pointer;
  transition: 0.3s;
}

.ch-tab:hover {
  color: #3a7d44;
}

.ch-tab.active p {
  color: #3a7d44;
}
@media (max-width: 768px) {

  .ch-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .ch-panel {
    position: relative;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }

  .ch-image img {
    height: auto;
  }

  .ch-info {
    padding: 20px;
  }

  .ch-title {
    font-size: 22px;
  }

  .ch-desc {
    font-size: 14px;
    line-height: 1.6;
  }

  /* TABS SCROLLABLE */
  .ch-tabs {
    overflow-x: auto;
    display: flex;
    gap: 20px;
    padding-bottom: 10px;
  }

  .ch-tab {
    min-width: 160px;
  }

  /* HIDE ACTIVE LINE */
  .ch-active-line {
    display: none;
  }
}
@media (max-width: 1024px) {

  .ch-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ch-image {
    order: 1;
  }

  .ch-info {
    order: 2;
  }

  .ch-title {
    font-size: 28px;
  }
}
.ch-panel,
.ch-image img {
  will-change: transform, opacity;
}
/* BASE */
.sr {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

/* SHOW */
.sr.show {
  opacity: 1;
  transform: translateY(0);
}

/* DELAYS */
.d1 { transition-delay: 0.2s; }
.d2 { transition-delay: 0.4s; }
/* CARD */
.earth-card {
  position: relative;
  transition: all 0.4s ease;
  padding: 60px;
}

/* BACKGROUND HOVER */
.earth-card:hover {
  background: #f9f8f4;
  transform: translateY(-4px);
}

/* TITLE HOVER */
.earth-card h3 {
  transition: 0.3s;
}

.earth-card:hover h3 {
  color: #3a7d44;
}

/* BUTTON HOVER */
.card-btn {
  transition: 0.3s;
}

.earth-card:hover .card-btn {
  color: #3a7d44;
  border-color: #3a7d44;
}
.bg-num {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 120px;
  color: rgba(0,0,0,0.03);
  transition: 0.4s;
}

.earth-card:hover .bg-num {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .cta-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 20px;
}
.ch-head {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 1.2;
    color: #1e1e18;
    letter-spacing: -.3px;
    margin-bottom: 24px;
}
.ch-sub {
    color: #666;
    margin-bottom: 60px;
    font-size: 19px;
    font-weight: 300;
    line-height: 1.9;
    font-family: Lora, serif;
}

  .earth-section {
    padding: 80px 20px;
  }

  .earth-head h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .earth-sub {
    font-size: 13px;
    margin-top: 10px;
  }

  .earth-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
  }

  .earth-card {
    padding: 30px 20px;
  }

  .earth-card h3 {
    font-size: 20px;
  }

  .earth-card p {
    font-size: 14px;
    line-height: 1.6;
  }

  .bg-num {
    font-size: 70px;
  }
}
@media (max-width: 1024px) {

  .earth-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .earth-card {
    padding: 40px;
  }

  .earth-head h2 {
    font-size: 36px;
  }
}
.ch-stats h4 {
  font-size: 32px;
  font-weight: 500;
  transition: 0.3s;
}

/* subtle pop effect */
.count {
  transform: translateY(10px);
}

.count.show {
  transform: translateY(0);
  opacity: 1;
}

/* BASE ANIMATION */
.sr {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.sr.show {
  opacity: 1;
  transform: translateY(0);
}

/* DELAYS */
.d1 { transition-delay: 0.2s; }
.d2 { transition-delay: 0.4s; }
.d3 { transition-delay: 0.6s; }
.d4 { transition-delay: 0.8s; }

.cta-bg {
  position: absolute;
  inset: 0;
  background: url('../images/tep-resort-luxury.png') center/cover no-repeat;
  transform: scale(1.1);
  animation: ctaZoom 6s ease-out forwards;
}

@keyframes ctaZoom {
  to { transform: scale(1.05); }
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.761);
}
.cta-buttons a {
  transition: all 0.4s ease;
}

.btn-primary:hover {
  background: #3a7d44;
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #000;
}

/* BASE */
.sr {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

/* SHOW */
.sr.show {
  opacity: 1;
  transform: translateY(0);
}

/* DELAYS */
.d1 { transition-delay: 0.2s; }
.d2 { transition-delay: 0.4s; }
.d3 { transition-delay: 0.6s; }
@media (max-width: 768px) {

  .inner-hero {
    padding: 100px 20px 80px;
    text-align: center;
  }

  .inner-container {
    max-width: 100%;
  }

  .inner-label {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .inner-title {
    font-size: 32px;
    line-height: 1.3;
    margin: 20px 0;
  }

  .inner-desc {
    font-size: 14px;
    line-height: 1.6;
  }
}
@media (max-width: 1024px) {

  .inner-title {
    font-size: 48px;
  }

  .inner-desc {
    max-width: 600px;
    margin: auto;
  }
}


/* NAVBAR */
#navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 40px;
}

/* MENU */
.nav-group {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* MOBILE ICON HIDDEN */
.nav-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}
/* DRAWER BASE */
.nav-mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #111;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  transition: right 0.4s ease;
  z-index: 999;
}

/* ACTIVE */
.nav-mobile-drawer.active {
  right: 0;
}

/* LINKS */
.nav-mobile-drawer a {
  color: #fff;
  font-size: 18px;
  letter-spacing: 2px;
  text-decoration: none;
}

/* CLOSE BUTTON */
.nav-mobile-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 28px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}
/* TABLET + MOBILE */
@media (max-width: 1024px) {

  #navbar {
    padding: 0 20px;
  }

  /* HIDE DESKTOP MENU */
  .nav-group {
    display: none;
  }

  /* SHOW TOGGLE */
  .nav-toggle {
    display: block;
  }

  /* LOGO SIZE */
  .nav-logo img {
    height: 22px;
  }
}
.nav-mobile-drawer a {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s ease;
}

.nav-mobile-drawer.active a {
  opacity: 1;
  transform: translateY(0);
}

.nav-mobile-drawer.active a:nth-child(2) { transition-delay: 0.1s; }
.nav-mobile-drawer.active a:nth-child(3) { transition-delay: 0.2s; }
.nav-mobile-drawer.active a:nth-child(4) { transition-delay: 0.3s; }
.nav-mobile-drawer.active a:nth-child(5) { transition-delay: 0.4s; }
/* HIDE DRAWER ON DESKTOP */
@media (min-width: 1025px) {
  .nav-mobile-drawer {
    display: none !important;
  }
}
.nav-mobile-drawer {
  right: -100%;
}

.nav-mobile-drawer.active {
  right: 0;
}
.nav-mobile-drawer {
  background: rgba(0,0,0,0.95); /* instead of full black */
}
.nav-mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;   /* IMPORTANT */
  height: 100vh;
  background: #0b0b0b;
  z-index: 9999;

  transform: translateX(100%);
  transition: transform 0.4s ease;
}

/* OPEN */
.nav-mobile-drawer.active {
  transform: translateX(0);
}
body.nav-open {
  overflow: hidden;
}
.nav-mobile-close {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 28px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}
/* NAVBAR MOBILE */
@media (max-width: 1024px) {

  #navbar {
    display: flex;
    justify-content: space-between; /* IMPORTANT */
    align-items: center;
    padding: 0 20px;
    height: 70px;
  }

  /* LOGO LEFT */
  .nav-logo {
    display: flex;
    align-items: center;
  }

  .nav-logo img {
    height: 22px;
  }

  /* MENU ICON RIGHT */
  .nav-toggle {
    display: block;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
  }

  /* HIDE DESKTOP MENU */
  .nav-group {
    display: none;
  }
}
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #fff;
  display: block;
}
/* HIDE MOBILE ICON ON DESKTOP */
.nav-toggle {
  display: none;
}

/* DESKTOP NAV */
#navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}

.nav-group {
  display: flex;
  gap: 40px;
}
@media (max-width: 1024px) {

  #navbar {
    display: flex;
    justify-content: space-between; /* KEY FIX */
    align-items: center;
    padding: 0 20px;
    height: 70px;
  }

  /* LOGO LEFT */
  .nav-logo {
    display: flex;
    align-items: center;
  }

  .nav-logo img {
    height: 22px;
  }

  /* HIDE DESKTOP MENU */
  .nav-group {
    display: none;
  }

  /* SHOW HAMBURGER RIGHT */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .nav-toggle span {
    width: 22px;
    height: 2px;
    background: #fff;
    display: block;
  }
}
#navbar {
  display: flex;
  align-items: center;
  justify-content: space-between; /* IMPORTANT */
}
.nav-toggle {
  margin-left: auto; /* 🔥 pushes it to right */
}
@media (max-width: 1024px) {

  #navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
  }

  /* LOGO LEFT */
  .nav-logo {
    display: flex;
    align-items: center;
  }

  .nav-logo img {
    height: 46px;
  }

  /* HIDE DESKTOP MENU */
  .nav-group {
    display: none;
  }

  /* HAMBURGER RIGHT */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-left: auto; /* 🔥 KEY LINE */
    cursor: pointer;
  }

  .nav-toggle span {
    width: 22px;
    height: 2px;
    background: #fff;
  }
}

.inner-page .nav-toggle span {
        width: 22px;
        height: 2px;
        background: #000000;
}

@media (max-width:768px){

  .ch-tabs{
    display:flex;
    overflow-x:auto;
    gap:16px;
    padding:0 20px 10px;
    scroll-snap-type:x mandatory;
  }

  .ch-tabs::-webkit-scrollbar{
    display:none;
  }

  .ch-tab{
    min-width:180px;
    padding:14px;
    background:#f5f5f5;
    border-radius:12px;
    scroll-snap-align:start;
    text-align:left;
  }

  .ch-tab.active{
    background:#3a7d44;
    color:#fff;
  }

  .ch-active-line,
  .ch-line{
    display:none;
  }
}
@media (max-width:768px){

  .ch-panel{
    flex-direction:column;
    gap:20px;
  }

  .ch-image img{
    border-radius:14px;
  }

  .ch-info{
    padding:20px;
    background:#fff;
    border-radius:14px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    width: 100% !important;
  }
}
@media (max-width:768px){

  .ch-image img{
    width:100%;
    height:220px;
    object-fit:cover;
  }

  .ch-badge{
    top:10px;
    left:10px;
    font-size:10px;
  }
}
@media (max-width:768px){

  .ch-title{
    font-size:22px;
  }

  .ch-location{
    font-size:12px;
    margin-bottom:10px;
  }

  .ch-desc{
    font-size:14px;
    line-height:1.6;
  }
}
@media (max-width:768px){

  .ch-stats{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
    margin-top:20px;
  }

  .ch-stats div{
    background:#f8f8f8;
    padding:12px;
    border-radius:10px;
    text-align:center;
  }

  .ch-stats h4{
    font-size:20px;
    color:#3a7d44;
  }

  .ch-stats span{
    font-size:11px;
  }
}
@media (max-width:768px){

  .ch-cta{
    margin-top:20px;
  }

  .ch-cta span{
    font-size:12px;
    letter-spacing:1px;
  }

  .ch-cta .line{
    width:100%;
  }
}
.ch-tabs{
  overflow-x:auto;
}
/* ================= MOBILE TABS ================= */
@media (max-width:768px){

  .main-tabs{
    padding:0 0 10px;
  }

  .ch-tabs{
    display:flex;
    gap:0px;
    overflow-x:auto;
    padding:0 20px;
    scroll-snap-type:x mandatory;
  }

  .ch-tabs::-webkit-scrollbar{
    display:none;
  }

  .ch-tab{
   min-width: 140px;
        flex-shrink: 0;
        padding: 6px 8px 10px;
        border-radius: 0px;
        background: #f3f4f2;
        scroll-snap-align: start;
        transition: 0.3s ease;
        border: 1px solid transparent;
        margin-right: 6px !important;
  }

  /* TEXT STYLE */
  .ch-tab span{
    font-size:10px;
    letter-spacing:1.5px;
    color:#888;
    display:block;
    margin-bottom:6px;
  }

  .ch-tab p{
    font-size:10px;
    font-weight:500;
    color:#1a1a1a;
  }

  /* ACTIVE TAB */
  .ch-tab.active{
    background:#3a7d44;
    color:#fff;
    border-color:#3a7d44;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
  }

  .ch-tab.active span{
    color:rgba(255,255,255,0.7);
  }

  .ch-tab.active p{
    color:#fff;
  }

  /* REMOVE DESKTOP LINE */
  .ch-line,
  .ch-active-line{
    display:none;
  }
}
.ch-tabs{
  scroll-behavior:smooth;
}
.ch-tab:active{
  transform:scale(0.97);
}
.main-tabs::after{
  content:"";
  position:absolute;
  right:0;
  top:0;
  width:40px;
  height:100%;
  pointer-events:none;
}
.main-tabs{
  width: 1120px;
    margin-left: auto;
    margin-right: auto;
}
/* HOME PAGE DEFAULT - HIDE LOGO */
.home-page .nav-logo {
  opacity: 0;
  transform: translateY(-10px);
  transition: 0.3s ease;
}

/* AFTER SCROLL - SHOW LOGO */
.home-page #navbar.scrolled .nav-logo {
  opacity: 1;
  transform: translateY(0);
}
.ch-slider {
  position: relative;
  width: 100%;
  height: 620px;
  overflow: hidden;
}

/* SLIDES */
.ch-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.slide.active {
  opacity: 1;
}

/* ARROWS */
.ch-prev,
.ch-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgb(37 157 78 / 68%);
  border: none;
  color: #fff;
  font-size: 20px;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 0;
  z-index: 2;
  transition: 0.3s;
}

.ch-prev:hover,
.ch-next:hover {
  background: rgba(0,0,0,0.7);
}

.ch-prev { left: 15px; }
.ch-next { right: 15px; }
@media (max-width:768px){
  .ch-slider {
    height: 250px;
  }

  .ch-prev,
  .ch-next {
    font-size: 16px;
    padding: 8px 10px;
  }
}
.ch-slider::after {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,0.25), transparent);
}