/* ===================================================================
   JUSPAID INTERNATIONAL — Design tokens
   Theme: Dwello-style layout, re-grounded in sandalwood/forest subject
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Work+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@500&display=swap');

:root{
  /* --- color: sandalwood / heartwood / forest --- */
  --cream:        #F6F1E2;   /* page background — sandalwood dust */
  --cream-card:   #FBF8EF;   /* card surface, lighter */
  --heartwood:    #3B2A1E;   /* primary text, dark brown buttons */
  --heartwood-2:  #5A4530;   /* secondary brown text */
  --forest:       #51664A;   /* deep forest green — accent */
  --forest-dark:  #1F2B1C;   /* near-black green — dark sections */
  --turmeric:     #C98A3E;   /* gold/turmeric — highlight accent */
  --turmeric-lt:  #E9D4A8;   /* pale gold, chips/borders */
  --stone:        #DCD2BA;   /* taupe borders, search bar bg */
  --white:        #FFFFFF;
  --line:         rgba(59,42,30,0.12);

  /* --- type --- */
  --font-display: 'Fraunces', serif;
  --font-body:    'Work Sans', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* --- radius / shadow --- */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --header-h: 92px;
  --r-pill: 999px;
  --shadow-card: 0 20px 40px -16px rgba(59,42,30,0.18);
  --shadow-soft: 0 8px 24px -10px rgba(59,42,30,0.14);
}

*{ box-sizing: border-box; }
html{
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100%;
}
body{
  margin:0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--heartwood);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
}
img{ max-width:100%; display:block; height:auto; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family: var(--font-display); margin:0; line-height:1.08; font-weight:600; overflow-wrap: anywhere; }
p{ margin:0; }

main{
  padding-top: var(--header-h);
  overflow-x: clip;
  max-width: 100%;
}

.wrap{
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 48px;
  min-width: 0;
}
@media (max-width: 900px){ .wrap{ padding: 0 22px; } }

/* ---------- eyebrow / labels (ring-motif uses these) ---------- */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 14px;
}
.eyebrow::before{
  content:"";
  width:18px; height:18px;
  border-radius:50%;
  border: 2px solid var(--forest);
  background:
    radial-gradient(circle, transparent 30%, var(--forest) 31%, transparent 32%);
  flex-shrink:0;
}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-family: var(--font-body);
  font-weight:600;
  font-size:15px;
  padding: 15px 30px;
  border-radius: var(--r-pill);
  border:none;
  cursor:pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space:nowrap;
}
.btn-dark{ background: var(--heartwood); color: var(--cream-card); }
.btn-dark:hover{ transform: translateY(-2px); box-shadow: var(--shadow-soft); background:#2c1f15; }
.btn-gold{ background: var(--turmeric); color: var(--heartwood); }
.btn-gold:hover{ transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-outline{ background: transparent; color: var(--heartwood); border: 1.5px solid var(--heartwood); }
.btn-outline:hover{ background: var(--heartwood); color: var(--cream-card); }
.btn-ghost-light{ background: rgba(255,255,255,0.12); color:#fff; border:1px solid rgba(255,255,255,0.35); }
.btn-ghost-light:hover{ background: rgba(255,255,255,0.22); }
.btn-block{ width:100%; }
.btn-sm{ padding:10px 20px; font-size:13px; }

/* ===================================================================
   HEADER
   =================================================================== */
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(246,241,226,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transform: translateY(0);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.site-header.is-hidden{
  transform: translateY(-100%);
  pointer-events: none;
}
.site-header .wrap{
  display:flex; align-items:center; justify-content:space-between;
  height: var(--header-h);
}
.logo{
  display:flex; align-items:center; gap:10px;
  font-family: var(--font-display);
  font-size: 22px; font-weight:700;
  color: var(--heartwood);
}
.logo .mark{
  width:34px; height:34px; border-radius:50%;
  object-fit: cover;
  flex-shrink:0;
}
.footer-logo .mark{
  width:30px; height:30px; border-radius:50%;
  object-fit: cover;
  flex-shrink:0;
}
.main-nav{ display:flex; align-items:center; gap:38px; }
.main-nav a{
  font-size:15px; font-weight:600; color: var(--heartwood-2);
  position:relative; padding:6px 0;
}
.main-nav a.active{ color: var(--heartwood); }
.main-nav a.active::after{
  content:""; position:absolute; left:0; right:0; bottom:-4px; height:2px;
  background: var(--turmeric);
  border-radius:2px;
}
.main-nav a:hover{ color: var(--forest); }
.header-actions{ display:flex; align-items:center; gap:16px; }
.icon-btn{
  width:42px; height:42px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  border:1px solid var(--line);
  background: var(--cream-card);
  flex-shrink:0;
}
.nav-toggle{ display:none; background:none; border:none; cursor:pointer; }
@media (max-width: 980px){
  .main-nav{ display:none; }
  .nav-toggle{ display:flex; }
  .header-actions .icon-btn:first-child{ display:none; }
}

/* ===================================================================
   HERO  (search-bar style adapted to "find a plot / book a stay")
   =================================================================== */
.hero{
  position:relative;
  padding: 70px 0 32px;
  overflow:visible;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 36px;
  align-items:center;
}
.hero-copy h1{
  font-size: clamp(44px, 6vw, 72px);
  letter-spacing:-0.01em;
  color: var(--heartwood);
}
.hero-copy p.lead{
  font-size:18px; color: var(--heartwood-2);
  max-width: 440px; margin: 22px 0 34px;
  line-height:1.6;
}
.hero-cta-row{ display:flex; gap:16px; align-items:center; }
.hero-media{
  position:relative;
  border-radius: var(--r-lg);
  overflow:hidden;
  aspect-ratio: 6/5.4;
  box-shadow: var(--shadow-card);
}
.hero-media img{ width:100%; height:100%; object-fit:cover; }
.hero-media::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(31,43,28,0) 55%, rgba(31,43,28,0.55) 100%);
}
.hero-tag{
  position:absolute; left:24px; bottom:24px; z-index:2;
  color:#fff; font-family: var(--font-mono); font-size:13px;
  letter-spacing:.06em;
  display:flex; align-items:center; gap:8px;
}
.hero-tag .dot{ width:8px; height:8px; border-radius:50%; background: var(--turmeric); }

/* finder bar (acts as search) */
.finder-bar{
  margin-top: -34px;
  position:relative; z-index:5;
  background: var(--stone);
  border-radius: var(--r-md);
  padding: 22px;
  display:flex; gap:14px; align-items:center;
  box-shadow: var(--shadow-card);
}
.finder-field{
  flex:1;
  background: var(--cream-card);
  border-radius: var(--r-sm);
  padding: 14px 18px;
  display:flex; align-items:center; justify-content:space-between;
  gap:10px;
}
.finder-field label{
  display:block; font-size:11px; text-transform:uppercase; letter-spacing:.06em;
  color: var(--forest); margin-bottom:3px; font-family: var(--font-mono);
}
.finder-field select, .finder-field input{
  border:none; background:none; font-family:var(--font-body);
  font-size:15px; font-weight:600; color:var(--heartwood); width:100%;
  padding:0; outline:none;
}
.finder-bar .btn{ flex-shrink:0; }
@media (max-width: 980px){
  .hero-grid{ grid-template-columns:1fr; }
  .finder-bar{ flex-wrap:wrap; }
  .finder-field{ min-width: 45%; }
}
@media (max-width: 600px){
  .finder-field{ min-width:100%; }
}


/* ===================================================================
   SCROLL HERO (frame sequence + feature copy)
   =================================================================== */
.hero-scroll{
  position:relative;
  margin-top: calc(-1 * var(--header-h));
}
.hero-scroll__track{ height: 420vh; }
.hero-scroll__sticky{
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.hero-scroll__banner{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-scroll__canvas{
  position: absolute;
  left: 0;
  right: 0;
  top: var(--header-h);
  width: 100%;
  height: calc(100vh - var(--header-h));
  display: block;
  transition: top 0.45s cubic-bezier(0.4, 0, 0.2, 1), height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
body.nav-hidden .hero-scroll__canvas{
  top: 0;
  height: 100vh;
}
.hero-scroll__badge{
  position: absolute;
  right: 7.2%;
  bottom: 4.5%;
  z-index: 4;
  width: 92px;
  height: 92px;
  min-width: 92px;
  min-height: 92px;
  max-width: 92px;
  max-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  background: rgba(251, 248, 239, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.24);
  font-family: var(--font-display);
  font-size: 10.5px;
  line-height: 1.15;
  font-weight: 600;
  color: var(--heartwood);
  letter-spacing: 0.01em;
  text-align: center;
  overflow: hidden;
  pointer-events: none;
}
.hero-scroll__content{
  position: absolute;
  inset: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 0 48px;
  box-sizing: border-box;
}
.hero-scroll__slides{
  position: relative;
  max-width: 560px;
  min-height: clamp(240px, 34vh, 320px);
}
.hero-scroll__slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}
.hero-scroll__slide.is-active{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.hero-scroll__slide h1,
.hero-scroll__slide h2{
  font-size: clamp(38px, 5.6vw, 64px);
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.38);
}
.hero-scroll__slide .lead{
  font-size: clamp(16px, 2vw, 18px);
  color: rgba(255,255,255,0.95);
  line-height: 1.65;
  max-width: 500px;
  margin-bottom: 28px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.34);
}
.hero-scroll__slide .eyebrow--light{
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.32);
}
.hero-scroll__hint{
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  transition: opacity 0.35s ease;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}
.eyebrow--light{ color: var(--turmeric-lt); }
.eyebrow--light::before{ border-color: var(--turmeric-lt); background: radial-gradient(circle, transparent 30%, var(--turmeric-lt) 31%, transparent 32%); }
.hero-scroll__hint.is-hidden{ opacity: 0; }
.hero-scroll__hint-line{
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,0.5);
}
.hero-scroll + .wrap > .finder-bar{
  margin-top: -28px;
  margin-bottom: 0;
  position: relative;
  z-index: 5;
}
.hero-scroll.is-complete .hero-scroll__hint{ opacity: 0; }
@media (max-width: 900px){
  .hero-scroll__track{ height: 360vh; }
  .hero-scroll__content{ padding-bottom: 48px; }
  .hero-scroll__slides{ min-height: 280px; }
  .hero-scroll__badge{
    right: 5%;
    bottom: 3.5%;
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    max-width: 80px;
    max-height: 80px;
    font-size: 9.5px;
    padding: 5px;
  }
  .hero-cta-row{ flex-wrap: wrap; }
}
@media (prefers-reduced-motion: reduce){
  .hero-scroll__track{ height: auto; }
  .hero-scroll__sticky{ position: relative; height: min(78vh, 720px); }
  .hero-scroll__slide{ position: relative; opacity: 1; transform: none; display: none; }
  .hero-scroll__slide.is-active{ display: block; }
  .hero-scroll__hint{ display: none; }
}

/* ===================================================================
   STAT STRIP
   =================================================================== */
.stat-strip{
  background: var(--forest-dark);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 44px 48px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 70px 0;
}
.hero + .wrap > .stat-strip,
.hero-scroll + .wrap + .wrap > .stat-strip{
  margin-top: 38px;
}
.stat-strip .stat-item{ text-align:left; border-left:1px solid rgba(255,255,255,0.15); padding-left:24px; }
.stat-strip .stat-item:first-child{ border-left:none; padding-left:0; }
.stat-num{ font-family:var(--font-display); font-size:38px; color: var(--turmeric-lt); }
.stat-label{ font-size:13px; color: rgba(255,255,255,0.72); margin-top:4px; }
@media (max-width: 900px){
  .stat-strip{ grid-template-columns: repeat(2,1fr); gap:28px; }
  .stat-strip .stat-item{ border-left:none; padding-left:0; }
}
.stat-strip--compact{
  margin: 20px 0 0;
  padding: 32px 40px;
}
.stat-strip--compact .stat-num{ font-size: 32px; }
.stat-strip--compact .stat-label{ font-size: 12.5px; line-height: 1.35; }

/* homepage video embed */
.video-section{ margin: -30px 0 10px; }
.video-section--spaced{ margin-top: 28px; }
.video-frame{
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 100%;
  border: 1px solid var(--line);
  background: var(--forest-dark);
  box-shadow: 0 18px 50px rgba(31,43,28,0.12);
}
.video-frame iframe{ width:100%; height:100%; border:0; display:block; max-width:100%; }
.video-frame {
  position: relative;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
}
.video-frame--clean{
  position: relative;
  overflow: hidden;
}
.video-frame--clean iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  max-width: 100%;
}
.page-hero-banner{
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 7;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.page-hero-banner img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===================================================================
   SECTION HEADERS / GENERIC LAYOUT
   =================================================================== */
.section{ padding: 86px 0; }
.section-tight{ padding: 50px 0; }
.section-head{
  display:flex; justify-content:space-between; align-items:flex-end;
  gap:30px; margin-bottom: 48px;
}
.section-head h2{ font-size: clamp(30px,4vw,44px); max-width:620px; }
.section-head p{ color: var(--heartwood-2); max-width:380px; font-size:15.5px; line-height:1.6; }
.section-dark{ background: var(--forest-dark); color:#fff; }
.section-dark .eyebrow{ color: var(--turmeric-lt); }
.section-dark .eyebrow::before{ border-color: var(--turmeric-lt); background: radial-gradient(circle, transparent 30%, var(--turmeric-lt) 31%, transparent 32%);}
.section-dark h2{ color:#fff; }
.section-dark .section-head p{ color: rgba(255,255,255,0.68); }
.section-dark .split-copy p{ color: rgba(255,255,255,0.9); }
.section-dark .split-copy h2{ color: #fff; }
.section-dark .tick-list li{ color: rgba(255,255,255,0.86); }
.section-dark .note{
  background: rgba(255,255,255,0.08);
  border-color: rgba(232,190,124,0.5);
  color: rgba(255,255,255,0.84);
}
.section-dark .note strong{ color: var(--turmeric-lt); }
.section-dark .timeline-step h4{ color: #fff; }
.section-dark .timeline-step p{ color: rgba(255,255,255,0.78); }

/* ---------- "why choose us" feature cards ---------- */
.feature-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:22px; }
.feature-card{
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 30px;
}
.feature-card.is-accent{ background: var(--forest); color:#fff; border-color: transparent; }
.feature-icon{
  width:48px; height:48px; border-radius: 14px;
  background: var(--turmeric-lt);
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 20px;
}
.feature-card.is-accent .feature-icon{ background: rgba(255,255,255,0.18); }
.feature-card h3{ font-size:19px; margin-bottom:8px; }
.feature-card p{ font-size:14.5px; line-height:1.6; color: var(--heartwood-2); }
.feature-card.is-accent p{ color: rgba(255,255,255,0.82); }
@media (max-width: 900px){ .feature-grid{ grid-template-columns:1fr; } }

/* ---------- ring / growth-ring stat motif (signature element) ---------- */
.ring-row{ display:flex; gap:54px; flex-wrap:wrap; align-items:center; }
.ring-stat{ display:flex; align-items:center; gap:18px; }
.ring-graphic{
  width:84px; height:84px; border-radius:50%;
  position:relative; flex-shrink:0;
  background:
    radial-gradient(circle, transparent 56%, var(--turmeric) 57% 60%, transparent 61%),
    radial-gradient(circle, transparent 70%, var(--forest) 71% 74%, transparent 75%),
    radial-gradient(circle, transparent 84%, var(--heartwood) 85% 88%, transparent 89%);
}
.ring-graphic::after{
  content:""; position:absolute; inset:38%;
  border-radius:50%; background: var(--heartwood);
}
.ring-num{ font-family:var(--font-display); font-size:30px; }
.ring-label{ font-size:13px; color: var(--heartwood-2); max-width:140px; line-height:1.4; }

/* ===================================================================
   CARDS — projects / residences / plots
   =================================================================== */
.card-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:24px; }
.card-grid.cols-2{ grid-template-columns: repeat(2,1fr); }
.prop-card{
  background: var(--cream-card);
  border-radius: var(--r-md);
  overflow:hidden;
  border:1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
}
.prop-card:hover{ transform: translateY(-5px); box-shadow: var(--shadow-card); }
.prop-card .img-wrap{ position:relative; aspect-ratio: 4/3; overflow:hidden; }
.prop-card .img-wrap img{ width:100%; height:100%; object-fit:cover; }
.prop-tag{
  position:absolute; top:14px; left:14px;
  background: var(--heartwood); color:#fff;
  font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.04em;
  padding:6px 12px; border-radius: var(--r-pill);
}
.prop-body{ padding: 22px; }
.prop-loc{ display:flex; align-items:center; gap:6px; font-size:13px; color: var(--forest); font-weight:600; margin-bottom:8px;}
.prop-body h3{ font-size:19px; margin-bottom:10px; }
.prop-meta{ display:flex; gap:16px; font-size:13px; color: var(--heartwood-2); margin-bottom:16px; }
.prop-foot{ display:flex; align-items:center; justify-content:space-between; padding-top:16px; border-top:1px solid var(--line); }
.prop-price{ font-family: var(--font-display); font-size:18px; }
@media (max-width: 980px){ .card-grid, .card-grid.cols-2{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px){ .card-grid, .card-grid.cols-2{ grid-template-columns: 1fr; } }

/* ===================================================================
   TESTIMONIALS
   =================================================================== */
.testi-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:22px; }
.testi-card{ background: var(--cream-card); border:1px solid var(--line); border-radius: var(--r-md); padding:26px; }
.testi-stars{ color: var(--turmeric); font-size:14px; margin-bottom:14px; letter-spacing:2px; }
.testi-card p.quote{ font-size:14.5px; line-height:1.65; color: var(--heartwood-2); margin-bottom:20px; }
.testi-person{ display:flex; align-items:center; gap:12px; }
.testi-avatar{ width:44px; height:44px; border-radius:50%; object-fit:cover; background:var(--stone); }
.testi-name{ font-weight:700; font-size:14px; }
.testi-loc{ font-size:12.5px; color: var(--heartwood-2); }
@media (max-width: 900px){ .testi-grid{ grid-template-columns:1fr; } }

/* ===================================================================
   TIMELINE (process / cultivation cycle)
   =================================================================== */
.timeline{ display:flex; gap:0; position:relative; }
.timeline::before{
  content:""; position:absolute; top:42px; left:0; right:0; height:2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
}
.timeline-step{ flex:1; position:relative; padding-top:64px; padding-right:18px; }
.timeline-dot{
  position:absolute; top:26px; left:0;
  width:32px; height:32px; border-radius:50%;
  background: var(--cream); border:2px solid var(--forest);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-mono); font-size:12px; color:var(--forest); font-weight:700;
}
.timeline-step h4{ font-size:16px; margin-bottom:6px; }
.timeline-step p{ font-size:13.5px; color: var(--heartwood-2); line-height:1.55; }
@media (max-width: 900px){
  .timeline{ flex-direction:column; gap:30px; }
  .timeline::before{ display:none; }
  .timeline-step{ padding-top:0; padding-left:50px; }
  .timeline-dot{ top:0; left:0; }
}

/* ===================================================================
   FORMS (contact / enquiry / become partner)
   =================================================================== */
.form-card{
  background: var(--cream-card);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  padding: 40px;
}
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap:18px; margin-bottom:18px; }
.field{ display:flex; flex-direction:column; gap:8px; }
.field.full{ grid-column: 1 / -1; }
.field label{ font-size:13px; font-weight:600; color: var(--heartwood-2); }
.field input, .field select, .field textarea{
  border: 1.5px solid var(--line);
  background: var(--cream);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--heartwood);
  outline:none;
}
.field input:focus, .field select:focus, .field textarea:focus{ border-color: var(--forest); }
.field textarea{ resize:vertical; min-height:110px; }
@media (max-width: 700px){ .form-row{ grid-template-columns:1fr; } }

/* ===================================================================
   DISCLAIMER NOTE — used wherever returns/figures are discussed
   =================================================================== */
.note{
  display:flex; gap:14px;
  background: rgba(201,138,62,0.1);
  border: 1px solid var(--turmeric-lt);
  border-radius: var(--r-sm);
  padding: 18px 20px;
  font-size: 13.5px;
  color: var(--heartwood-2);
  line-height:1.6;
}
.note strong{ color: var(--heartwood); }

/* ===================================================================
   TWO-COL CONTENT (about / project detail blocks)
   =================================================================== */
.split{ display:grid; grid-template-columns: 1fr 1fr; gap:56px; align-items:center; }
.split.reverse .split-media{ order:2; }
.split-media img{ border-radius: var(--r-lg); width:100%; aspect-ratio:5/4; object-fit:cover; box-shadow: var(--shadow-soft); }
.split-media .video-frame--short{
  aspect-ratio: 9 / 16;
  max-width: 320px;
  margin: 0 auto;
  box-shadow: var(--shadow-soft);
}
.split-copy h2{ font-size: clamp(28px,3.4vw,38px); margin-bottom:18px; }
.split-copy p{ color: var(--heartwood-2); line-height:1.7; font-size:15.5px; margin-bottom:16px; }
.tick-list{ display:flex; flex-direction:column; gap:12px; margin: 22px 0; }
.tick-list li{ display:flex; gap:12px; align-items:flex-start; font-size:14.5px; color: var(--heartwood-2); list-style:none; }
.tick-list .tick{
  width:20px; height:20px; border-radius:50%; background: var(--forest); color:#fff;
  flex-shrink:0; display:flex; align-items:center; justify-content:center; font-size:11px; margin-top:2px;
}
@media (max-width: 900px){ .split, .split.reverse .split-media{ grid-template-columns:1fr; order:0; } .split{grid-template-columns:1fr;} }

/* amenity chips */
.chip-grid{ display:flex; flex-wrap:wrap; gap:10px; }
.chip{
  background: var(--cream-card); border:1px solid var(--line);
  border-radius: var(--r-pill); padding: 10px 18px;
  font-size: 13.5px; font-weight:600; color: var(--heartwood-2);
  display:flex; align-items:center; gap:8px;
}
.chip .dot{ width:6px;height:6px;border-radius:50%; background: var(--turmeric); }

/* pricing / plan table */
.plan-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:22px; }
.plan-card{ background: var(--cream-card); border:1px solid var(--line); border-radius: var(--r-md); padding:30px; display:flex; flex-direction:column; }
.plan-card.is-featured{ background: var(--heartwood); color:#fff; border-color:transparent; transform: scale(1.02); box-shadow: var(--shadow-card);}
.plan-name{ font-family:var(--font-mono); font-size:12px; text-transform:uppercase; letter-spacing:.08em; color:var(--forest); margin-bottom:10px;}
.plan-card.is-featured .plan-name{ color: var(--turmeric-lt); }
.plan-price{ font-family:var(--font-display); font-size:34px; margin-bottom:4px; }
.plan-sub{ font-size:13px; color:var(--heartwood-2); margin-bottom:22px; }
.plan-card.is-featured .plan-sub{ color: rgba(255,255,255,0.7); }
.plan-list{ display:flex; flex-direction:column; gap:11px; margin-bottom:26px; flex:1; }
.plan-list li{ font-size:13.5px; display:flex; gap:10px; list-style:none; }
@media (max-width: 900px){ .plan-grid{ grid-template-columns:1fr; } .plan-card.is-featured{ transform:none; } }

/* logos / partners strip */
.partner-strip{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:30px; opacity:0.75; }
.partner-strip span{ font-family: var(--font-mono); font-size:13px; letter-spacing:.05em; color: var(--heartwood-2); }

/* gallery masonry-ish */
.gallery-grid{ display:grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows:160px; gap:14px; }
.gallery-grid img{ width:100%; height:100%; object-fit:cover; border-radius: var(--r-sm); }
.gallery-grid .tall{ grid-row: span 2; }
.gallery-grid .wide{ grid-column: span 2; }
@media (max-width: 900px){ .gallery-grid{ grid-template-columns: repeat(2,1fr); } .gallery-grid .wide{grid-column:span 2;} }

/* gallery / updates feed (admin-managed YouTube) */
.updates-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  align-items: start;
}
.update-card{
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.update-card__video{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--forest-dark);
}
.update-card__video iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.update-card--short .update-card__video{
  aspect-ratio: 9 / 16;
  max-width: 300px;
  margin: 0 auto;
}
.update-card__body{
  padding: 18px 20px 22px;
}
.update-card__date{
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--heartwood-2);
}
.update-card__title{
  font-size: clamp(17px, 2.2vw, 20px);
  line-height: 1.3;
  margin-top: 8px;
  color: var(--heartwood);
}
.updates-empty{
  text-align: center;
  padding: 52px 24px;
  border: 1px dashed var(--line);
  border-radius: var(--r-lg);
  background: var(--cream-card);
  color: var(--heartwood-2);
  font-size: 15px;
  line-height: 1.65;
}

/* map / location block */
.map-frame{ border-radius: var(--r-lg); overflow:hidden; border:1px solid var(--line); aspect-ratio:16/8; }
.map-frame iframe{ width:100%; height:100%; border:0; }

/* faq accordion */
.faq-item{ border-bottom:1px solid var(--line); padding: 22px 0; }
.faq-q{ display:flex; justify-content:space-between; align-items:center; cursor:pointer; font-weight:600; font-size:16px; }
.faq-q .plus{ font-family:var(--font-mono); font-size:20px; color:var(--forest); transition: transform .2s ease; }
.faq-item.open .faq-q .plus{ transform: rotate(45deg); }
.faq-a{ display:none; padding-top:14px; font-size:14.5px; color: var(--heartwood-2); line-height:1.7; max-width:760px; }
.faq-item.open .faq-a{ display:block; }

/* progress bar (construction status) */
.progress-track{ background: var(--stone); border-radius: var(--r-pill); height:10px; overflow:hidden; }
.progress-fill{ background: var(--forest); height:100%; border-radius: var(--r-pill); }

/* badges */
.badge-row{ display:flex; gap:10px; flex-wrap:wrap; }
.badge{ background: var(--forest); color:#fff; font-size:12px; font-weight:700; padding:6px 14px; border-radius: var(--r-pill); }
.badge.gold{ background: var(--turmeric); color: var(--heartwood); }

/* ===================================================================
   CTA BANNER
   =================================================================== */
.cta-banner{
  background: var(--forest);
  border-radius: var(--r-lg);
  padding: 60px;
  display:flex; align-items:center; justify-content:space-between; gap:30px;
  color:#fff;
  position:relative;
  overflow:hidden;
}
.cta-banner::before{
  content:""; position:absolute; right:-60px; top:-60px;
  width:240px; height:240px; border-radius:50%;
  border: 24px solid rgba(255,255,255,0.08);
}
.cta-banner h2{ font-size: clamp(26px,3vw,36px); color:#fff; max-width:480px; }
.cta-banner p{ color: rgba(255,255,255,0.78); margin-top:10px; max-width:420px; }
@media (max-width: 800px){ .cta-banner{ flex-direction:column; text-align:center; padding:40px 28px; } }

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer{ background: var(--forest-dark); color: rgba(255,255,255,0.82); padding: 70px 0 0; margin-top:90px; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap:40px; padding-bottom:50px; border-bottom:1px solid rgba(255,255,255,0.12); }
.footer-grid h4{ color:#fff; font-family:var(--font-body); font-size:14px; text-transform:uppercase; letter-spacing:.06em; margin-bottom:18px; }
.footer-grid ul{ display:flex; flex-direction:column; gap:11px; }
.footer-grid a{ font-size:14px; color: rgba(255,255,255,0.68); }
.footer-grid a:hover{ color: var(--turmeric-lt); }
.footer-logo{ display:flex; align-items:center; gap:10px; font-family:var(--font-display); font-size:21px; color:#fff; margin-bottom:14px; }
.footer-grid p.about-text{ font-size:13.5px; color: rgba(255,255,255,0.6); line-height:1.7; max-width:280px; }
.footer-bottom{ display:flex; justify-content:space-between; padding: 26px 0; font-size:12.5px; color: rgba(255,255,255,0.5); }
@media (max-width: 900px){ .footer-grid{ grid-template-columns: 1fr 1fr; } .footer-bottom{ flex-direction:column; gap:10px; text-align:center;} }

/* sticky WhatsApp */
.whatsapp-float{
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover{
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
  color: #fff;
}
@media (max-width: 700px){
  .whatsapp-float{ right: 16px; bottom: 16px; width: 52px; height: 52px; }
}

/* page header (non-home pages) */
.page-header{ padding: 56px 0 30px; }
.page-header .eyebrow{ justify-content:center; }
.page-header h1{ font-size: clamp(34px,5vw,52px); text-align:center; }
.page-header p{ text-align:center; max-width:560px; margin: 16px auto 0; color: var(--heartwood-2); font-size:16px; }
.breadcrumb{ text-align:center; font-size:13px; color:var(--heartwood-2); margin-bottom:14px; display:flex; justify-content:center; gap:8px; }
.breadcrumb .sep{ color: var(--turmeric); }

/* mobile nav drawer */
.mobile-nav{
  position:fixed; inset:0; background: var(--cream); z-index:110;
  display:none; flex-direction:column; padding: 28px 26px;
}
.mobile-nav.open{ display:flex; }
.mobile-nav .close-row{ display:flex; justify-content:flex-end; }
.mobile-nav a{ font-family: var(--font-display); font-size:28px; padding: 16px 0; border-bottom:1px solid var(--line); }

.text-center{ text-align:center; }
.mt-40{ margin-top:40px; }
.mb-0{ margin-bottom:0 !important; }
