/* ── Canvas z-index anchor ── */
#bgCanvas { z-index: 0 !important; }
#siteBg   { z-index: 0 !important; }
.nav, header.hero, main, footer { position: relative; z-index: 1; }

/* ── Design tokens ── */
:root {
  --green:       #2d6a4f;
  --green-mid:   #40916c;
  --green-dark:  #1b4332;
  --green-light: #d8f3dc;
  --green-pale:  #f0faf2;
  --gold:        #b5830a;
  --gold-light:  #fef9c3;
  --bg:          #f8fafc;
  --bg-alt:      #f1f5f9;
  --surface:     #ffffff;
  --border:      #e2e8f0;
  --text:        #0f172a;
  --muted:       #64748b;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.07);
  --shadow:      0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
  --radius:      12px;
  --nav-h:       64px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background-color: var(--bg);
  background-image: radial-gradient(circle, rgba(45,106,79,.07) 1.2px, transparent 1.2px);
  background-size: 30px 30px;
  line-height: 1.7;
  overflow-x: hidden;
}
/* Global heading weight */
h1, h2, h3, h4 { font-family: 'Manrope', sans-serif; font-weight: 800; }
h4 { font-weight: 700; }
body::before {
  content: ''; position: fixed; inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at calc(12% + var(--scroll-pct,0) * 75%) 25%, rgba(45,106,79,.055) 0%, transparent 65%),
    radial-gradient(ellipse 45% 55% at calc(88% - var(--scroll-pct,0) * 55%) 72%, rgba(181,131,10,.042) 0%, transparent 65%);
  pointer-events: none; z-index: -1;
}
img { max-width: 100%; display: block; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
ul { list-style: none; }

/* ── Scroll progress bar ── */
.scroll-bar {
  position: fixed; top: 0; left: 0; z-index: 1000;
  height: 3px; width: 0%;
  background: linear-gradient(to right, var(--green), var(--gold));
  border-radius: 0 2px 2px 0; transition: width 80ms linear;
}

/* ════════════════════════════
   NAV  (light-hero variant — dark links by default)
   ════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  background: transparent; border-bottom: 1px solid transparent;
  transition: background 380ms ease, border-color 380ms ease, box-shadow 380ms ease;
}
/* Nav text is white on dark hero, switches to dark when scrolled */
.nav:not(.scrolled) .nav-links a { color: rgba(255,255,255,.88); }
.nav:not(.scrolled) .nav-links a:hover { color: #74d4a0; background: rgba(255,255,255,.08); }
.nav:not(.scrolled) .nav-lang-btn { color: rgba(255,255,255,.82); border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.08); }
.nav:not(.scrolled) .nav-icon-btn { color: rgba(255,255,255,.82); border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.08); }
.nav.scrolled {
  background: rgba(255,255,255,.92); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(226,232,240,.8); box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.brand { display: flex; align-items: center; }
.brand-logo { height: 42px; width: auto; display: block; border-radius: 8px; padding: 3px 6px; transition: background 300ms; }
.nav-links { display: flex; align-items: center; gap: 0.15rem; }
.nav-links a {
  padding: .4rem .8rem; border-radius: 8px;
  font-size: .88rem; font-weight: 600; color: var(--text);
  transition: color 160ms, background 160ms;
}
.nav-links a:hover, .nav-links a.active { color: var(--green); background: var(--green-pale); }
.nav-cta {
  background: var(--green) !important; color: #fff !important;
  font-weight: 700 !important; padding: .46rem 1.1rem !important; border-radius: 999px !important;
}
.nav-cta:hover { background: var(--green-dark) !important; transform: translateY(-1px); }
.nav-controls { display: flex; align-items: center; gap: .4rem; }
.nav-lang-btn {
  font-size: .75rem; font-weight: 700; letter-spacing: .05em;
  padding: .3rem .7rem; border-radius: 999px;
  border: 1.5px solid var(--border); background: rgba(255,255,255,.8); color: var(--text);
  cursor: pointer; white-space: nowrap; transition: background 180ms, border-color 180ms, color 180ms;
}
.nav-lang-btn:hover { background: var(--green-pale); border-color: var(--green); color: var(--green); }
.nav-icon-btn {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid var(--border); background: rgba(255,255,255,.8); color: var(--text);
  display: grid; place-items: center; cursor: pointer; transition: background 180ms, border-color 180ms;
}
.nav-icon-btn:hover { background: var(--bg-alt); }
.menu-btn {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; border-radius: 8px;
}
.menu-btn span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform 280ms ease, opacity 200ms;
}
.menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ════════════════════════════
   BUTTONS
   ════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .78rem 1.5rem; border-radius: 999px; border: none; cursor: pointer;
  font-size: .92rem; font-weight: 700; letter-spacing: .01em;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms;
  text-align: center; white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: .55; pointer-events: none; }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 2px 14px rgba(45,106,79,.3); }
.btn-primary:hover { background: var(--green-dark); box-shadow: 0 6px 22px rgba(45,106,79,.4); }
.btn-outline { background: rgba(255,255,255,.08); color: #fff; border: 2px solid rgba(255,255,255,.5); backdrop-filter: blur(8px); }
.btn-outline:hover { background: rgba(255,255,255,.18); border-color: #fff; }
.btn-mic {
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  color: #fff; box-shadow: 0 2px 14px rgba(45,106,79,.35);
}
.btn-mic:hover { box-shadow: 0 4px 22px rgba(45,106,79,.5); }
.btn-mic.recording {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  box-shadow: 0 2px 14px rgba(220,38,38,.4);
  animation: micPulse 1s ease-in-out infinite;
}
@keyframes micPulse {
  0%,100% { box-shadow: 0 2px 14px rgba(220,38,38,.4); }
  50%      { box-shadow: 0 4px 28px rgba(220,38,38,.7), 0 0 0 8px rgba(220,38,38,.12); }
}

/* ════════════════════════════
   HERO  (light premium)
   ════════════════════════════ */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(to right,
      rgba(8,20,12,.93) 0%,
      rgba(11,26,16,.82) 40%,
      rgba(11,26,16,.55) 72%,
      rgba(11,26,16,.40) 100%),
    url('images/BANNER.jpg?v=8') center / cover no-repeat;
  background-attachment: fixed;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 3.5rem) 5vw 5rem;
  position: relative; overflow: hidden;
}
/* Animated ambient blobs */
.hero-blob {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
}
.hero-blob-1 {
  width: 720px; height: 720px; top: -260px; right: -180px;
  background: radial-gradient(circle at 40% 40%, rgba(45,106,79,.10) 0%, transparent 60%);
  border-radius: 42% 58% 52% 48% / 48% 52% 48% 52%;
  animation: heroBlob1 20s ease-in-out infinite;
}
.hero-blob-2 {
  width: 500px; height: 500px; bottom: -160px; left: -120px;
  background: radial-gradient(circle at 60% 60%, rgba(181,131,10,.08) 0%, transparent 60%);
  border-radius: 60% 40% 38% 62% / 52% 62% 38% 48%;
  animation: heroBlob2 16s ease-in-out infinite;
}
.hero-blob-3 {
  width: 340px; height: 340px; top: 40%; left: 45%;
  background: radial-gradient(circle, rgba(45,106,79,.06) 0%, transparent 60%);
  border-radius: 50%; animation: heroBlob2 24s ease-in-out infinite reverse;
}
@keyframes heroBlob1 {
  0%,100% { transform: translate(0,0) scale(1); border-radius: 42% 58% 52% 48% / 48% 52% 48% 52%; }
  33%     { transform: translate(-28px,42px) scale(1.07); border-radius: 55% 45% 38% 62% / 60% 40% 62% 40%; }
  66%     { transform: translate(22px,-22px) scale(.94); }
}
@keyframes heroBlob2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(32px,-28px) scale(1.1); }
}
.hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 1; pointer-events: none; opacity: 0.6;
}
/* Layout */
.hero-inner {
  display: flex; gap: 3.5rem; width: 100%; align-items: center;
  position: relative; z-index: 2;
  will-change: opacity, transform;
}
.hero-copy { flex: 1; min-width: 0; }
/* Eyebrow */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  text-transform: uppercase; letter-spacing: .18em;
  font-size: .72rem; font-weight: 700; color: #74d4a0;
  margin-bottom: 1.1rem;
}
.hero-eyebrow-row { display: flex; align-items: center; gap: .55rem; margin-bottom: 1.1rem; }
.hero-eyebrow-row .eyebrow { margin-bottom: 0; }
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #74d4a0; flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(116,212,160,.25);
  animation: dotPulse 2.4s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(116,212,160,.25); }
  50%     { box-shadow: 0 0 0 7px rgba(116,212,160,.1); }
}
/* Headline */
.hero-copy h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.3rem, 4.2vw, 3.9rem);
  line-height: 1.06; letter-spacing: -.03em;
  color: #fff; margin-bottom: 1.3rem; font-weight: 800;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.h1-accent {
  background: linear-gradient(125deg, #74d4a0 0%, #40916c 45%, #f9c94e 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: inline;
}
.hero-desc {
  color: rgba(255,255,255,.78); font-size: 1.05rem; margin-bottom: 2.2rem;
  max-width: 520px; line-height: 1.75;
  text-shadow: 0 1px 8px rgba(0,0,0,.25);
}
.hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 2.6rem; }
/* Glass stat pills on dark hero */
.hero-stats { display: flex; gap: .65rem; flex-wrap: wrap; }
.stat-pill {
  display: flex; flex-direction: column; align-items: center;
  padding: .85rem 1.15rem; border-radius: 14px; min-width: 82px; text-align: center;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 16px rgba(0,0,0,.2);
  transition: transform 200ms, box-shadow 200ms, background 200ms;
}
.stat-pill:hover { transform: translateY(-3px); background: rgba(255,255,255,.16); box-shadow: 0 6px 24px rgba(0,0,0,.25); }
.stat-pill strong { font-family: 'Manrope', sans-serif; font-size: 1.4rem; color: #74d4a0; display: block; font-weight: 800; }
.stat-pill span   { font-size: .68rem; color: rgba(255,255,255,.65); font-weight: 600; text-transform: uppercase; letter-spacing: .07em; }
/* ── Showcase card (right column) ── */
.hero-showcase {
  flex: 0 0 400px; position: relative;
}
.showcase-card {
  background: rgba(255,255,255,.1); border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.showcase-card:hover { transform: translateY(-4px); box-shadow: 0 32px 90px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.18); }
.showcase-img-wrap {
  position: relative;
  background: linear-gradient(135deg, #c8e6c9 0%, #a5d6a7 40%, #b8d4c0 100%);
}
.showcase-img-wrap img { width: 100%; height: 230px; object-fit: cover; display: block; }
.showcase-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 1rem 1.1rem;
}
.showcase-tag {
  background: var(--green); color: #fff;
  padding: .3rem .9rem; border-radius: 999px;
  font-size: .76rem; font-weight: 700; letter-spacing: .06em;
  box-shadow: 0 2px 12px rgba(45,106,79,.4);
}
.showcase-body { padding: 1.2rem 1.3rem 1.4rem; }
.showcase-location { color: rgba(255,255,255,.65); font-size: .88rem; margin-bottom: .95rem; display: flex; align-items: center; }
.showcase-badges { display: flex; flex-wrap: wrap; gap: .45rem; }
.sbadge {
  padding: .32rem .8rem; border-radius: 999px;
  font-size: .76rem; font-weight: 600;
  background: rgba(255,255,255,.12); color: #74d4a0;
  border: 1px solid rgba(116,212,160,.3);
  transition: background 160ms, border-color 160ms;
}
.sbadge:hover { background: rgba(116,212,160,.2); }
.sbadge.gold { background: rgba(181,131,10,.2); color: #f9c94e; border-color: rgba(181,131,10,.35); }
/* Floating accent tags */
.floating-plots {
  position: absolute; top: -18px; right: -18px;
  background: var(--green); color: #fff;
  border-radius: 16px; padding: .85rem 1rem; text-align: center;
  box-shadow: 0 8px 28px rgba(45,106,79,.45);
  animation: floatY 3.2s ease-in-out infinite;
}
.floating-plots strong { display: block; font-family: 'Manrope',sans-serif; font-size: 1.6rem; font-weight: 800; line-height: 1; }
.floating-plots span { display: block; font-size: .68rem; opacity: .82; text-transform: uppercase; letter-spacing: .07em; margin-top: .2rem; }
.floating-cert {
  position: absolute; bottom: -14px; left: 24px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-radius: 999px; padding: .42rem 1rem;
  font-size: .76rem; font-weight: 700; color: #74d4a0;
  display: flex; align-items: center; gap: .4rem;
  box-shadow: 0 4px 16px rgba(45,106,79,.15);
  animation: floatY 4s ease-in-out infinite .8s;
}
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-7px); }
}

/* ════════════════════════════
   SECTIONS BASE
   ════════════════════════════ */
.section {
  padding: 5.5rem 5vw;
  background-color: var(--surface);
  background-image: radial-gradient(circle, rgba(45,106,79,.055) 1px, transparent 1px);
  background-size: 30px 30px;
  position: relative; overflow: hidden;
}
.alt-section {
  background-color: var(--bg-alt);
  background-image: radial-gradient(circle, rgba(45,106,79,.04) 1px, transparent 1px);
  background-size: 30px 30px;
}
.section > *, .alt-section > * { position: relative; z-index: 1; }
.section-heading { max-width: 700px; margin-bottom: 3rem; }
.section-heading .eyebrow { color: var(--green); }
.section-heading .eyebrow::before {
  content: ''; display: inline-block; width: 0; height: 2px;
  background: var(--green); border-radius: 1px; vertical-align: middle;
  transition: width .6s cubic-bezier(.16,1,.3,1) .1s;
}
.section-heading.visible .eyebrow::before { width: 24px; }
.section-heading h2 {
  font-family: 'Manrope', sans-serif; font-size: clamp(1.9rem, 3vw, 2.75rem);
  font-weight: 800; letter-spacing: -.02em; color: var(--text); margin: .4rem 0 .9rem;
  padding-bottom: .65rem; position: relative; display: inline-block; line-height: 1.1;
}
.section-heading h2::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  height: 3px; width: 100%;
  background: linear-gradient(to right, var(--green), var(--gold), transparent);
  border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform .8s cubic-bezier(.16,1,.3,1) .35s;
}
.section-heading.visible h2::after { transform: scaleX(.42); }
.section-heading p { color: var(--muted); font-size: 1.05rem; max-width: 580px; font-weight: 400; line-height: 1.75; }

/* ════════════════════════════
   SCROLL REVEAL
   ════════════════════════════ */
.reveal       { opacity: 0; transform: translateY(44px) scale(.98);   filter: blur(3px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1), filter .7s; }
.reveal.visible { opacity: 1; transform: none; filter: blur(0px); }
.reveal-left  { opacity: 0; transform: translateX(-60px) translateY(8px); filter: blur(2px); transition: opacity .75s cubic-bezier(.16,1,.3,1), transform .75s cubic-bezier(.16,1,.3,1), filter .75s; }
.reveal-right { opacity: 0; transform: translateX(60px)  translateY(8px); filter: blur(2px); transition: opacity .75s cubic-bezier(.16,1,.3,1), transform .75s cubic-bezier(.16,1,.3,1), filter .75s; }
.reveal-scale { opacity: 0; transform: scale(.92) translateY(24px);        filter: blur(3px); transition: opacity .68s cubic-bezier(.16,1,.3,1), transform .68s cubic-bezier(.16,1,.3,1), filter .68s; }
.reveal-left.visible, .reveal-right.visible, .reveal-scale.visible { opacity: 1; transform: none; filter: blur(0px); }

/* ── Enhanced scroll effects ── */
/* Section headings slide up with underline animation */
.section-heading { transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
/* Project gallery images: depth on scroll hover */
.project-gallery img { will-change: transform; }
/* Amenity items: tilt on hover */
.amenity-item { will-change: transform; }
.amenity-item:hover { transform: translateY(-3px) rotate(.5deg); }
/* Cards: lift on hover for section cards */
.project-specs-card:hover, .blueprint-notes-card:hover {
  box-shadow: var(--shadow); border-color: var(--green-light);
  transform: translateY(-2px);
  transition: box-shadow 220ms, border-color 220ms, transform 220ms;
}
/* Spec items: pop in stagger via CSS only */
.spec-item { transition: transform 200ms, box-shadow 200ms, border-color 200ms; }
.spec-item:hover { transform: translateY(-2px) scale(1.01); box-shadow: var(--shadow); border-color: var(--green-light); }
/* Showcase card on hero: subtle scale parallax */
.hero-showcase { transition: transform 800ms cubic-bezier(.16,1,.3,1); }
/* Horizontal marquee for testimonials (optional band) */
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
/* Count-up numbers: scale bounce when finished */
@keyframes numBounce {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.18); }
  70%  { transform: scale(.94); }
  100% { transform: scale(1); }
}
.count-up.done { animation: numBounce 380ms cubic-bezier(.16,1,.3,1); }
/* Section entrance: whole section fades from slight below */
@keyframes sectionIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

/* ════════════════════════════
   PROJECT
   ════════════════════════════ */
#project::before {
  content: ''; position: absolute; width: 550px; height: 550px;
  top: -160px; right: -160px; border-radius: 40% 60% 55% 45% / 45% 55% 45% 55%;
  background: radial-gradient(circle, rgba(45,106,79,.08) 0%, transparent 65%);
  animation: sectionBlob 22s ease-in-out infinite; pointer-events: none; z-index: 0;
}
.project-overview { display: grid; grid-template-columns: .85fr 1.15fr; gap: 1.4rem; margin-bottom: 1.6rem; }
.project-specs-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm);
}
.project-specs-card h3 { font-size: .77rem; text-transform: uppercase; letter-spacing: .12em; color: var(--green); font-weight: 700; margin-bottom: 1.4rem; }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.spec-item { padding: .85rem; border-radius: 8px; background: var(--bg); border: 1px solid var(--border); }
.spec-item strong { display: block; font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .3rem; font-weight: 700; }
.spec-item span   { font-size: .97rem; font-weight: 700; color: var(--text); }
.project-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.project-gallery img { border-radius: var(--radius); height: 160px; border: 1px solid var(--border); transition: transform 300ms, box-shadow 300ms; }
.project-gallery img:hover { transform: scale(1.02); box-shadow: var(--shadow); }
.project-gallery img:first-child { grid-column: 1 / -1; height: 200px; }
.location-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.location-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.3rem; box-shadow: var(--shadow-sm);
  transition: box-shadow 200ms, border-color 200ms, transform 200ms;
}
.location-card:hover { box-shadow: 0 8px 28px rgba(45,106,79,.1); border-color: var(--green-light); transform: translateY(-2px); }
.location-card h4 { font-size: .77rem; text-transform: uppercase; letter-spacing: .11em; color: var(--green); font-weight: 700; margin-bottom: 1rem; }
.location-card li { color: var(--muted); font-size: .9rem; padding: .3rem 0; display: flex; align-items: baseline; gap: .5rem; border-bottom: 1px solid var(--bg-alt); }
.location-card li:last-child { border-bottom: none; }
.dist { color: var(--gold); font-weight: 700; font-size: .82rem; flex-shrink: 0; }

/* ════════════════════════════
   AMENITIES
   ════════════════════════════ */
#amenities::before {
  content: ''; position: absolute; width: 450px; height: 450px;
  bottom: -120px; left: -100px; border-radius: 60% 40% 40% 60% / 60% 60% 40% 40%;
  background: radial-gradient(circle, rgba(181,131,10,.07) 0%, transparent 65%);
  animation: sectionBlob 18s ease-in-out infinite reverse; pointer-events: none; z-index: 0;
}
#amenities::after {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-45deg, transparent 0, transparent 22px, rgba(45,106,79,.016) 22px, rgba(45,106,79,.016) 23px);
  pointer-events: none; z-index: 0;
}
.amenities-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.amenity-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.2rem 1rem;
  display: flex; align-items: center; gap: .85rem; box-shadow: var(--shadow-sm);
  transition: transform 200ms, box-shadow 200ms, border-color 200ms;
}
.amenity-item:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(45,106,79,.12); border-color: var(--green-light); }
.a-icon { width: 38px; height: 38px; border-radius: 8px; background: var(--green-pale); color: var(--green); display: grid; place-items: center; flex-shrink: 0; transition: background 200ms; }
.amenity-item:hover .a-icon { background: var(--green-light); }
.amenity-item span { font-size: .88rem; color: var(--text); font-weight: 600; line-height: 1.3; }

/* ════════════════════════════
   AI BUILDER
   ════════════════════════════ */
.builder-section { background: var(--bg-alt); }
#builder::before {
  content: ''; position: absolute; width: 700px; height: 300px;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: radial-gradient(ellipse, rgba(45,106,79,.05) 0%, transparent 70%);
  pointer-events: none; z-index: 0; animation: sectionBlob 28s ease-in-out infinite reverse;
}
.builder-shell { display: grid; grid-template-columns: .8fr 1.2fr; gap: 1.4rem; }
.builder-controls { display: grid; gap: 1.2rem; align-content: start; }
.builder-form-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm);
}
.builder-form-card form { display: grid; gap: 1rem; }
.builder-form-card label { display: grid; gap: .3rem; }
.builder-form-card label span { font-size: .82rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.builder-form-card select,
.contact-form input,
.contact-form textarea,
.chat-input-row input {
  width: 100%; padding: .72rem .9rem; border-radius: 8px;
  border: 1px solid var(--border); background: var(--bg); color: var(--text);
  outline: none; transition: border-color 160ms, box-shadow 160ms; -webkit-appearance: none;
}
.builder-form-card select:focus,
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(45,106,79,.12); }
.builder-form-card .btn { width: 100%; margin-top: .2rem; }
.custom-size-input {
  display: none; width: 100%; margin-top: .4rem;
  padding: .72rem .9rem; border-radius: 8px;
  border: 1.5px solid var(--green); background: var(--green-pale); color: var(--text);
  outline: none; font: inherit; transition: box-shadow 160ms;
  animation: fadeInDown 200ms ease;
}
.custom-size-input:focus { box-shadow: 0 0 0 3px rgba(45,106,79,.15); }
.custom-size-input.visible { display: block; }
@keyframes fadeInDown { from { opacity:0; transform: translateY(-6px); } to { opacity:1; transform: none; } }
.text-brief-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow-sm);
}
.text-brief-card .eyebrow { margin-bottom: .8rem; color: var(--green); }
.text-brief-card textarea {
  width: 100%; resize: vertical; border-radius: 8px;
  border: 1px solid var(--border); background: var(--bg); color: var(--text);
  padding: .8rem; outline: none; margin-bottom: .8rem; min-height: 90px;
  transition: border-color 160ms, box-shadow 160ms;
}
.text-brief-card textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(45,106,79,.12); }
.brief-actions { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: .6rem; align-items: center; }
.brief-status { font-size: .83rem; color: var(--muted); }
/* Mic group: language selector + mic button joined */
.mic-group { display: flex; align-items: stretch; border-radius: 999px; overflow: hidden; box-shadow: 0 2px 12px rgba(45,106,79,.2); }
.voice-lang-select {
  border: 2px solid var(--green); border-right: none;
  border-radius: 999px 0 0 999px;
  background: var(--green-pale); color: var(--green-dark);
  padding: 0 .7rem 0 .9rem; font-size: .78rem; font-weight: 700;
  cursor: pointer; outline: none; -webkit-appearance: none; appearance: none;
  transition: background 160ms;
}
.voice-lang-select:focus, .voice-lang-select:hover { background: var(--green-light); }
.mic-group .btn-mic { border-radius: 0 999px 999px 0 !important; box-shadow: none; }
.builder-preview { display: grid; gap: 1.2rem; align-content: start; }
.concept-card {
  background: #0d1b2a; border: 1px solid #1e3a4f;
  border-radius: var(--radius); padding: 1.3rem; box-shadow: var(--shadow-lg);
}
.concept-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.glass-pill { padding: .32rem .8rem; border-radius: 999px; background: rgba(255,255,255,.08); color: #84d8ff; font-size: .73rem; border: 1px solid rgba(132,216,255,.2); letter-spacing: .04em; }
.status-badge { font-size: .82rem; color: #f3bf73; }
.blueprint-wrap { border-radius: 8px; overflow: hidden; border: 1px solid rgba(132,216,255,.15); background: #020d18; margin-bottom: 1rem; transition: opacity .35s ease; }
.blueprint-svg { width: 100%; height: auto; display: block; }
.concept-card h3 { font-family: 'Manrope',sans-serif; font-size: 1.05rem; color: #eef2f7; margin-bottom: .4rem; }
.concept-card p  { color: #7a9ab5; font-size: .9rem; }
.blueprint-notes-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow-sm);
}
.blueprint-notes-card h4 { font-size: .77rem; text-transform: uppercase; letter-spacing: .12em; color: var(--green); font-weight: 700; margin-bottom: 1rem; }
.blueprint-notes-card ul { display: grid; gap: .6rem; }
.blueprint-notes-card li { font-size: .9rem; color: var(--muted); padding-left: 1.2rem; position: relative; }
.blueprint-notes-card li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }

/* ════════════════════════════
   TESTIMONIALS
   ════════════════════════════ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.testimonial-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 1.1rem;
  transition: transform 220ms, box-shadow 220ms; position: relative; overflow: hidden;
}
.testimonial-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--green), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform 300ms ease;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(45,106,79,.12); }
.testimonial-card:hover::after { transform: scaleX(1); }
.quote-mark { font-size: 3rem; font-family: Georgia,serif; color: var(--green-light); line-height: 1; }
.tq { color: var(--text); font-size: .95rem; line-height: 1.7; flex: 1; }
.t-author { display: flex; align-items: center; gap: .85rem; }
.t-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--green); color: #fff; font-weight: 800; display: grid; place-items: center; flex-shrink: 0; font-size: .9rem; }
.t-author strong { display: block; font-size: .94rem; font-weight: 700; color: var(--text); }
.t-author span   { color: var(--muted); font-size: .78rem; }

/* ════════════════════════════
   FOUNDER
   ════════════════════════════ */
.founder-section { background: var(--green-pale); border-top: 1px solid var(--green-light); border-bottom: 1px solid var(--green-light); }
.founder-section::before {
  content: ''; position: absolute; width: 480px; height: 480px;
  top: -80px; right: -100px; border-radius: 55% 45% 40% 60% / 50% 60% 40% 50%;
  background: radial-gradient(circle, rgba(45,106,79,.09) 0%, transparent 65%);
  animation: sectionBlob 20s ease-in-out infinite; pointer-events: none; z-index: 0;
}
.founder-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 3rem; align-items: start; }
.founder-photo-col { display: flex; flex-direction: column; gap: 1rem; align-items: center; }
.founder-photo-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: .75rem; box-shadow: var(--shadow-lg); width: 100%; }
.founder-photo-card img { border-radius: 8px; width: 100%; min-height: 360px; max-height: 480px; object-fit: cover; object-position: top center; }
.founder-name-tag { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: .9rem 1.2rem; text-align: center; width: 100%; box-shadow: var(--shadow-sm); }
.founder-name-tag strong { display: block; font-size: 1rem; margin-bottom: .2rem; }
.founder-name-tag span   { color: var(--muted); font-size: .82rem; }
.founder-copy { padding-top: .5rem; }
blockquote { font-family: 'Manrope',sans-serif; font-size: clamp(1.2rem,1.8vw,1.5rem); line-height: 1.45; color: var(--green-dark); border-left: 3px solid var(--green); padding-left: 1.3rem; margin: 0 0 1.8rem; font-style: italic; }
.founder-copy p { color: var(--muted); font-size: .98rem; margin-bottom: 1rem; }
.founder-traits { display: flex; gap: .55rem; flex-wrap: wrap; margin-top: 1.5rem; }
.founder-traits span { padding: .35rem .9rem; border-radius: 999px; border: 1px solid var(--green-light); background: var(--green-pale); color: var(--green-dark); font-size: .8rem; font-weight: 600; transition: background 160ms; }
.founder-traits span:hover { background: var(--green-light); }
/* Founder milestones */
.founder-milestones {
  display: flex; gap: 1rem; flex-wrap: wrap; margin: 1.6rem 0;
}
.milestone-item {
  flex: 1; min-width: 90px; text-align: center;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem .8rem; box-shadow: var(--shadow-sm);
  transition: transform 200ms, box-shadow 200ms, border-color 200ms;
}
.milestone-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--green-light); }
.milestone-item strong { display: block; font-family: 'Manrope',sans-serif; font-size: 1.7rem; color: var(--green); font-weight: 800; line-height: 1.1; }
.milestone-item span   { font-size: .72rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
/* Founder values cards */
.founder-values { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin: 1.4rem 0; }
.fv-card {
  display: flex; align-items: flex-start; gap: .8rem;
  padding: .9rem 1rem; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: transform 200ms, box-shadow 200ms, border-color 200ms;
}
.fv-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--green-light); }
.fv-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--green-pale); color: var(--green);
  display: grid; place-items: center; flex-shrink: 0;
  transition: background 160ms;
}
.fv-card:hover .fv-icon { background: var(--green-light); }
.fv-card strong { display: block; font-size: .87rem; color: var(--text); margin-bottom: .2rem; }
.fv-card span   { display: block; font-size: .78rem; color: var(--muted); line-height: 1.4; }

/* ════════════════════════════
   CONTACT
   ════════════════════════════ */
.contact-section { background: var(--bg-alt); }
#contact::before {
  content: ''; position: absolute; width: 500px; height: 500px;
  bottom: -100px; right: -120px; border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  background: radial-gradient(circle, rgba(181,131,10,.06) 0%, transparent 65%);
  animation: sectionBlob 26s ease-in-out infinite reverse; pointer-events: none; z-index: 0;
}
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 2rem; }
.contact-info { display: grid; gap: 1.5rem; align-content: start; }
.contact-block h4 { font-size: .77rem; text-transform: uppercase; letter-spacing: .12em; color: var(--green); font-weight: 700; margin-bottom: .5rem; }
.contact-block a, .contact-block p { display: block; color: var(--muted); font-size: .95rem; margin-bottom: .15rem; transition: color 160ms; }
.contact-block a:hover { color: var(--green); }
/* Instagram link */
.instagram-link { display: inline-flex; align-items: center; color: var(--muted); transition: color 160ms; }
.instagram-link:hover { color: #e1306c; }
.cert-badges { display: flex; gap: .5rem; flex-wrap: wrap; }
.cert-badges span { padding: .3rem .8rem; border-radius: 999px; border: 1px solid var(--border); background: var(--surface); color: var(--muted); font-size: .75rem; }
.contact-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.6rem; display: grid; gap: .85rem; box-shadow: var(--shadow); }
.contact-form textarea { min-height: 110px; resize: vertical; border-radius: 8px; border: 1px solid var(--border); background: var(--bg); color: var(--text); padding: .72rem .9rem; outline: none; transition: border-color 160ms, box-shadow 160ms; }
.contact-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(45,106,79,.12); }
.contact-form .btn { width: 100%; }
.contact-status { font-size: .87rem; color: var(--green); text-align: center; min-height: 1.2em; }

/* ════════════════════════════
   WHATSAPP FAB + CHATBOT
   ════════════════════════════ */
.whatsapp-fab { position: fixed; bottom: 5.5rem; right: 1.2rem; width: 52px; height: 52px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 4px 20px rgba(37,211,102,.4); z-index: 50; transition: transform 200ms, box-shadow 200ms; }
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,.5); }
.chatbot { position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 50; }
.chat-toggle { border: none; border-radius: 999px; padding: .82rem 1.2rem; background: var(--green); color: #fff; font-weight: 700; cursor: pointer; box-shadow: 0 4px 20px rgba(45,106,79,.35); font-size: .88rem; transition: transform 180ms, background 180ms, box-shadow 180ms; }
.chat-toggle:hover { transform: translateY(-2px); background: var(--green-dark); box-shadow: 0 8px 28px rgba(45,106,79,.45); }
.chat-panel { display: none; width: min(360px, calc(100vw - 2.4rem)); margin-top: .8rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-lg); overflow: hidden; }
.chat-panel.open { display: block; animation: panelUp 240ms cubic-bezier(.16,1,.3,1); }
@keyframes panelUp { from { opacity:0; transform: translateY(10px) scale(.97); } to { opacity:1; transform: none; } }
.chat-header { display: flex; justify-content: space-between; align-items: center; padding: .85rem 1rem; border-bottom: 1px solid var(--border); background: var(--green-pale); }
.chat-header strong { color: var(--green-dark); }
.online-dot { color: #22c55e; font-size: .8rem; }
.online-dot::before { content: '● '; }
.chat-body { min-height: 180px; max-height: 320px; overflow-y: auto; padding: .9rem; display: flex; flex-direction: column; gap: .55rem; }
.bubble-wrap { display: flex; flex-direction: column; gap: .35rem; }
.bubble-wrap:has(.bubble.user) { align-items: flex-end; }
.bubble { padding: .6rem .85rem; border-radius: 10px; max-width: 86%; font-size: .9rem; line-height: 1.5; white-space: pre-wrap; }
.bubble.bot  { background: var(--bg-alt); color: var(--text); border: 1px solid var(--border); }
.bubble.user { background: var(--green); color: #fff; align-self: flex-end; }
.chat-chips { display: flex; flex-wrap: wrap; gap: .35rem; }
.chat-chip { padding: .32rem .75rem; border-radius: 999px; border: 1.5px solid var(--green); background: var(--green-pale); color: var(--green-dark); font-size: .78rem; font-weight: 600; cursor: pointer; transition: background 180ms, color 180ms, transform 120ms; }
.chat-chip:hover { background: var(--green); color: #fff; transform: translateY(-1px); }
.chat-chip:active { transform: translateY(0); }
.chat-input-row { display: flex; gap: .5rem; padding: .7rem; border-top: 1px solid var(--border); }
.chat-input-row input { flex: 1; border-radius: 8px; border: 1px solid var(--border); background: var(--bg); padding: .62rem .8rem; }
.chat-input-row button { border: none; border-radius: 8px; padding: .62rem 1rem; background: var(--green); color: #fff; font-weight: 600; cursor: pointer; }

/* ════════════════════════════
   BLUEPRINT DOT GRID (global bg texture)
   ════════════════════════════ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(45,106,79,.045) 1px, transparent 1px);
  background-size: 28px 28px;
  z-index: -1;
  pointer-events: none;
}

/* ════════════════════════════
   HERO CITYSCAPE
   ════════════════════════════ */
.hero-cityscape {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
  will-change: transform;
  overflow: hidden;
}
.hero-cityscape svg { display: block; width: 100%; }
.hero-cityscape rect {
  transform-box: fill-box;
  transform-origin: bottom center;
}
@keyframes bldUp {
  from { transform: translateY(115%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* ════════════════════════════
   FLOATING CONSTRUCTION ICONS
   ════════════════════════════ */
.hero-float-icons {
  position: absolute; inset: 0;
  z-index: 1; pointer-events: none; overflow: hidden;
}
.hfi {
  position: absolute;
  color: var(--green);
  will-change: transform;
}
@keyframes hfiBob  { 0%,100% { transform: translateY(0) rotate(0deg); }   50% { transform: translateY(-18px) rotate(5deg); } }
@keyframes hfiBob2 { 0%,100% { transform: translateY(0) rotate(0deg); }   50% { transform: translateY(-24px) rotate(-6deg); } }
@keyframes hfiBob3 { 0%,100% { transform: translateY(0) rotate(0deg); }   50% { transform: translateY(-14px) rotate(7deg); } }
.hfi svg { display: block; }
.hfi-1 { top: 14%; left: 4%;   opacity: .06;  width: 58px; animation: hfiBob  10s ease-in-out infinite; }
.hfi-2 { top: 10%; left: 22%;  opacity: .045; width: 40px; animation: hfiBob2 13s 1.2s ease-in-out infinite; }
.hfi-3 { top: 28%; left: 40%;  opacity: .04;  width: 46px; animation: hfiBob3  9s 2.5s ease-in-out infinite; }
.hfi-4 { top:  8%; right: 36%; opacity: .045; width: 44px; animation: hfiBob  12s .8s ease-in-out infinite; }
.hfi-5 { top: 20%; right: 16%; opacity: .055; width: 52px; animation: hfiBob2 11s 1.8s ease-in-out infinite; }
.hfi-6 { top: 38%; left: 10%;  opacity: .04;  width: 62px; animation: hfiBob3 14s 3.2s ease-in-out infinite; }
.hfi-7 { top:  7%; right:  5%; opacity: .045; width: 44px; animation: hfiBob  16s 2.4s ease-in-out infinite; }

/* Dark mode: tweak grid + icons for dark bg */
body.dark::before { background-image: radial-gradient(circle, rgba(116,212,160,.025) 1px, transparent 1px); }
body.dark .hfi { color: #74d4a0; }

/* ════════════════════════════
   FOOTER
   ════════════════════════════ */
.footer { padding: 2.5rem 5vw 3rem; background: var(--text); color: #e2e8f0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
.footer-logo { height: 40px; width: auto; background: #fff; border-radius: 7px; padding: 3px 9px; display: block; }
.footer-cert { font-size: .83rem; color: #94a3b8; }
.footer-loc  { font-size: .82rem; color: #64748b; }
.footer-copy { font-size: .78rem; color: #475569; }

/* ════════════════════════════
   AMENITY HOVER ANIMATIONS
   ════════════════════════════ */
.amenity-item:hover .a-icon svg {
  animation: iconWiggle 500ms cubic-bezier(.36,.07,.19,.97);
}
@keyframes iconWiggle {
  0%,100% { transform: rotate(0deg) scale(1); }
  20%     { transform: rotate(-12deg) scale(1.15); }
  40%     { transform: rotate(10deg) scale(1.1); }
  60%     { transform: rotate(-6deg) scale(1.05); }
  80%     { transform: rotate(4deg); }
}
/* Amenity item: glow ring on hover */
.amenity-item:hover .a-icon {
  background: var(--green);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(45,106,79,.18), 0 4px 16px rgba(45,106,79,.25);
}

/* ── Button ripple effect ── */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: ''; position: absolute; border-radius: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,.25);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0);
  transition: width 400ms ease, height 400ms ease, opacity 400ms ease;
  opacity: 0;
}
.btn:active::after {
  width: 280px; height: 280px; opacity: 1;
  transition: 0ms;
}

/* ── Chat typing indicator ── */
.typing-indicator { display: flex; gap: 5px; align-items: center; padding: .7rem 1rem; }
.typing-indicator span {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  animation: typingDot 1.2s ease-in-out infinite;
}
.typing-indicator span:nth-child(2) { animation-delay: .2s; }
.typing-indicator span:nth-child(3) { animation-delay: .4s; }
@keyframes typingDot {
  0%,80%,100% { transform: scale(0.7); opacity: .5; }
  40%         { transform: scale(1.1); opacity: 1; }
}

/* ── Social links ── */
.social-link { display: inline-flex; align-items: center; gap: .35rem; font-weight: 500; }

/* ════════════════════════════
   BLOB KEYFRAMES
   ════════════════════════════ */
@keyframes sectionBlob {
  0%,100% { transform: translate(0,0) scale(1) rotate(0deg); }
  33%     { transform: translate(-25px,30px) scale(1.06) rotate(30deg); }
  66%     { transform: translate(20px,-20px) scale(.95) rotate(-20deg); }
}

/* ════════════════════════════
   SITE-WIDE ANIMATION ENHANCEMENTS
   ════════════════════════════ */

/* ── H1 accent: animated gradient sweep ── */
.h1-accent {
  background-size: 220% auto;
  animation: gradientFlow 5s linear infinite;
}
@keyframes gradientFlow {
  0%   { background-position: 0% center; }
  100% { background-position: 220% center; }
}

/* ── Stat pills: shimmer sweep ── */
.stat-pill { position: relative; overflow: hidden; }
.stat-pill::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 55%;  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
  animation: pillShimmer 4s ease-in-out infinite;
  pointer-events: none;
}
.stat-pill:nth-child(2)::after { animation-delay: .6s; }
.stat-pill:nth-child(3)::after { animation-delay: 1.2s; }
.stat-pill:nth-child(4)::after { animation-delay: 1.8s; }
@keyframes pillShimmer {
  0%, 55%, 100% { left: -80%; opacity: 0; }
  10%            { left: 130%; opacity: 1; }
  45%            { left: 130%; opacity: 0; }
}

/* ── Showcase card: continuous subtle float ── */
.showcase-card {
  animation: cardFloat 5.5s ease-in-out infinite;
}
.showcase-card:hover { animation-play-state: paused; }
@keyframes cardFloat {
  0%,100% { transform: translateY(0) rotate(-.2deg); }
  50%      { transform: translateY(-10px) rotate(.2deg); }
}

/* ── Floating badges: enhanced bob ── */
.floating-plots { animation: floatPlots 4s ease-in-out infinite !important; }
.floating-cert  { animation: floatCert  5s ease-in-out infinite .9s !important; }
@keyframes floatPlots {
  0%,100% { transform: translateY(0) rotate(-2deg) scale(1); }
  50%      { transform: translateY(-10px) rotate(-1deg) scale(1.03); }
}
@keyframes floatCert {
  0%,100% { transform: translateY(0) rotate(1deg); }
  50%      { transform: translateY(-8px) rotate(2.5deg); }
}

/* ── Primary button: gradient shift on hover ── */
.btn-primary {
  background: linear-gradient(115deg, var(--green) 0%, #3a9460 50%, var(--green) 100%);
  background-size: 200% auto;
  transition: background-position 400ms ease, transform 200ms, box-shadow 200ms;
}
.btn-primary:hover {
  background-position: right center;
  box-shadow: 0 8px 28px rgba(45,106,79,.45);
}

/* ── WhatsApp FAB: pulse ring ── */
.whatsapp-fab { position: relative; }
.whatsapp-fab::before {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  background: rgba(37,211,102,.35);
  animation: waPulse 2.2s ease-out infinite;
  pointer-events: none;
}
.whatsapp-fab::after {
  content: '';
  position: absolute; inset: -8px;
  border-radius: 50%;
  background: rgba(37,211,102,.15);
  animation: waPulse 2.2s ease-out infinite .5s;
  pointer-events: none;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: .8; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ── Chat toggle: pulse ring (when closed) ── */
#chatToggle {
  position: relative;
}
#chatToggle:not(.open)::before {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 14px;
  background: rgba(45,106,79,.25);
  animation: chatPulse 2.8s ease-out infinite 1s;
  pointer-events: none;
}
@keyframes chatPulse {
  0%   { transform: scale(1);   opacity: .7; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ── Chat notification badge ── */
.chat-notif-dot {
  position: absolute; top: -5px; right: -5px;
  width: 14px; height: 14px; border-radius: 50%;
  background: #ef4444; border: 2px solid #fff;
  animation: notifPop .3s cubic-bezier(.34,1.56,.64,1) backwards, notifPulse 2s .5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes notifPop   { from { transform: scale(0); opacity: 0; } }
@keyframes notifPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(239,68,68,.45); } 50% { box-shadow: 0 0 0 6px rgba(239,68,68,0); } }

/* ── Chat panel: slide up from bottom ── */
.chat-panel.open { display: block; animation: chatSlideUp 280ms cubic-bezier(.16,1,.3,1); }
@keyframes chatSlideUp {
  from { opacity: 0; transform: translateY(20px) scale(.97); }
  to   { opacity: 1; transform: none; }
}

/* ── Chat preview bubble (auto-popup teaser) ── */
.chat-preview {
  position: absolute; bottom: calc(100% + 12px); right: 0;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px 14px 0 14px;
  padding: .75rem 1rem; max-width: 260px;
  box-shadow: var(--shadow-lg); font-size: .85rem; line-height: 1.5; color: var(--text);
  animation: previewIn 350ms cubic-bezier(.16,1,.3,1) forwards;
  cursor: pointer;
  white-space: normal;
}
.chat-preview::after {
  content: ''; position: absolute; bottom: -6px; right: 18px;
  width: 12px; height: 12px;
  background: var(--surface); border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
  transform: rotate(45deg);
}
.chat-preview strong { display: block; color: var(--green); font-size: .78rem; margin-bottom: .25rem; }
@keyframes previewIn {
  from { opacity: 0; transform: translateY(12px) scale(.95); }
  to   { opacity: 1; transform: none; }
}

/* ── 3D tilt cards ── */
.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 400ms cubic-bezier(.16,1,.3,1), box-shadow 400ms;
}
.tilt-card:hover { box-shadow: 0 20px 50px rgba(45,106,79,.14); }

/* ── Testimonial quote mark animate in ── */
.testimonial-card.visible .quote-mark {
  animation: quotePop .5s cubic-bezier(.34,1.56,.64,1) backwards;
}
@keyframes quotePop {
  from { opacity: 0; transform: scale(0) rotate(-20deg); }
  to   { opacity: 1; transform: none; }
}

/* ── Avatar bounce in ── */
.testimonial-card.visible .t-avatar {
  animation: avatarBounce .5s .2s cubic-bezier(.34,1.56,.64,1) backwards;
}
@keyframes avatarBounce {
  from { opacity: 0; transform: scale(0); }
  to   { opacity: 1; transform: scale(1); }
}

/* ── Founder photo glow on reveal ── */
.founder-photo-col.visible .founder-photo-card {
  animation: photoGlow .9s .4s ease both;
}
@keyframes photoGlow {
  from { box-shadow: var(--shadow-lg); border-color: var(--border); }
  to   { box-shadow: 0 24px 70px rgba(45,106,79,.22), 0 0 0 3px rgba(45,106,79,.12); border-color: rgba(45,106,79,.25); }
}

/* ── Founder blockquote entrance ── */
.founder-copy.visible blockquote {
  animation: quoteSlide .7s .25s cubic-bezier(.16,1,.3,1) backwards;
}
@keyframes quoteSlide {
  from { opacity: 0; transform: translateX(-18px); border-left-color: transparent; }
  to   { opacity: 1; transform: none; }
}

/* ── Founder trait badges stagger ── */
.founder-traits span {
  opacity: 0; transform: translateY(12px) scale(.9);
  transition: opacity .4s, transform .4s cubic-bezier(.34,1.4,.64,1);
}
.founder-copy.visible .founder-traits span { opacity: 1; transform: none; }
.founder-copy.visible .founder-traits span:nth-child(1) { transition-delay: .35s; }
.founder-copy.visible .founder-traits span:nth-child(2) { transition-delay: .48s; }
.founder-copy.visible .founder-traits span:nth-child(3) { transition-delay: .61s; }
.founder-copy.visible .founder-traits span:nth-child(4) { transition-delay: .74s; }

/* ── Section blob: fade in when section enters view ── */
.section-blob { opacity: 0; transition: opacity 1.4s ease; }
.section.sec-vis .section-blob { opacity: 1; }

/* ── Amenity item: entrance pop ── */
.amenity-item.visible .a-icon {
  animation: iconPop .45s cubic-bezier(.34,1.5,.64,1) backwards;
}
@keyframes iconPop {
  from { transform: scale(0) rotate(-15deg); }
  to   { transform: scale(1) rotate(0deg); }
}

/* ── Location card: left border sweep ── */
.location-card {
  border-left: 3px solid transparent;
  transition: border-left-color 400ms, box-shadow 200ms, transform 200ms;
}
.location-card.visible { border-left-color: var(--green-light); }
.location-card:hover   { border-left-color: var(--green); }

/* ── Spec items: value highlight on reveal ── */
.spec-item.visible span {
  animation: numGlow .6s .3s ease backwards;
}
@keyframes numGlow {
  0%  { color: var(--green); }
  100%{ color: var(--text); }
}

/* ── Contact input: glow ring on focus ── */
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45,106,79,.12), 0 2px 8px rgba(45,106,79,.08);
  animation: inputFocus .3s ease;
}
@keyframes inputFocus {
  from { box-shadow: 0 0 0 0 rgba(45,106,79,.25); }
  to   { box-shadow: 0 0 0 3px rgba(45,106,79,.12); }
}

/* ── Section heading underline sweep ── */
.section-heading.visible h2::after {
  animation: lineGrow .8s .35s cubic-bezier(.16,1,.3,1) both;
}
@keyframes lineGrow {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(.42); opacity: 1; }
}

/* ── Nav link underline animation ── */
.nav-links a {
  position: relative;
}
.nav-links a::before {
  content: '';
  position: absolute; bottom: -2px; left: 50%; right: 50%;
  height: 2px; border-radius: 1px;
  background: var(--green);
  transition: left 220ms cubic-bezier(.16,1,.3,1), right 220ms cubic-bezier(.16,1,.3,1);
}
.nav-links a:hover::before,
.nav-links a.active::before { left: 10%; right: 10%; }

/* ── Gallery img: reveal on hover ── */
.project-gallery img { transition: transform 400ms cubic-bezier(.16,1,.3,1), box-shadow 400ms, filter 400ms; }
.project-gallery img:hover { transform: scale(1.04) translateY(-3px); box-shadow: 0 12px 35px rgba(45,106,79,.18); filter: brightness(1.04); }

/* ════════════════════════════
   DARK MODE  (complete overrides)
   ════════════════════════════ */
body.dark {
  --bg: #0d1117; --bg-alt: #161b22; --surface: #1c2128; --border: #30363d;
  --text: #e6edf3; --muted: #8b949e;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.3); --shadow: 0 4px 16px rgba(0,0,0,.35); --shadow-lg: 0 12px 40px rgba(0,0,0,.45);
  background-color: var(--bg);
  background-image: radial-gradient(circle, rgba(116,212,160,.07) 1.2px, transparent 1.2px);
  background-size: 30px 30px;
}

/* ── Dark: Nav ── */
body.dark .nav-links a { color: rgba(255,255,255,.72); }
body.dark .nav-links a:hover, body.dark .nav-links a.active { color: #74d4a0; background: rgba(45,106,79,.18); }
body.dark .nav-lang-btn { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.07); color: rgba(255,255,255,.78); }
body.dark .nav-lang-btn:hover { background: rgba(45,106,79,.2); border-color: rgba(116,212,160,.4); color: #74d4a0; }
body.dark .nav-icon-btn { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.07); color: rgba(255,255,255,.78); }
body.dark .nav-icon-btn:hover { background: rgba(255,255,255,.13); }
body.dark .menu-btn span { background: rgba(255,255,255,.8); }
body.dark .nav.scrolled { background: rgba(13,17,23,.94); border-bottom-color: rgba(48,54,61,.8); box-shadow: 0 4px 24px rgba(0,0,0,.35); }
body.dark .nav.scrolled .nav-links a { color: rgba(255,255,255,.72); }

/* ── Dark: Hero ── */
body.dark .hero {
  background:
    radial-gradient(ellipse 70% 80% at 90% 10%, rgba(116,212,160,.07) 0%, transparent 55%),
    radial-gradient(ellipse 55% 55% at 10% 90%, rgba(181,131,10,.05) 0%, transparent 55%),
    linear-gradient(160deg, #060e08 0%, #0a1610 30%, #060a12 60%, #040b07 100%);
}
body.dark .hero-copy h1 { color: #dff0e8; }
body.dark .h1-accent {
  background: linear-gradient(125deg, #74d4a0 0%, #a0e4c0 45%, #f3bf73 100%);
  -webkit-background-clip: text; background-clip: text;
}
body.dark .hero-desc { color: rgba(210,235,225,.65); }
body.dark .hero .eyebrow { color: #74d4a0; }
body.dark .eyebrow-dot { background: #74d4a0; box-shadow: 0 0 0 3px rgba(116,212,160,.18); }
/* Dark stat pills (glass on dark hero) */
body.dark .stat-pill { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.1); box-shadow: none; backdrop-filter: blur(12px); }
body.dark .stat-pill:hover { background: rgba(255,255,255,.1); border-color: rgba(116,212,160,.3); }
body.dark .stat-pill strong { color: #74d4a0; }
body.dark .stat-pill span { color: rgba(255,255,255,.48); }
/* Dark showcase card */
body.dark .showcase-card { background: #111c15; border-color: rgba(45,106,79,.3); box-shadow: 0 24px 70px rgba(0,0,0,.45); }
body.dark .showcase-body { background: #111c15; }
body.dark .showcase-location { color: #8b949e; }
body.dark .sbadge { background: rgba(45,106,79,.18); color: #74d4a0; border-color: rgba(45,106,79,.28); }
body.dark .sbadge.gold { background: rgba(181,131,10,.14); color: #f3bf73; border-color: rgba(181,131,10,.24); }
body.dark .floating-plots { background: var(--green-dark); box-shadow: 0 8px 28px rgba(45,106,79,.3); }
body.dark .floating-cert { background: #1a2e1e; border-color: rgba(45,106,79,.35); color: #74d4a0; }
/* Dark: outline btn on dark hero */
body.dark .btn-outline { color: rgba(255,255,255,.82); border-color: rgba(255,255,255,.38); }
body.dark .btn-outline:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.65); color: #fff; }

/* ── Dark: Sections ── */
body.dark .section  {
  background-color: var(--surface);
  background-image: radial-gradient(circle, rgba(116,212,160,.06) 1px, transparent 1px);
  background-size: 30px 30px;
}
body.dark .alt-section {
  background-color: var(--bg-alt);
  background-image: radial-gradient(circle, rgba(116,212,160,.045) 1px, transparent 1px);
  background-size: 30px 30px;
}
body.dark .section-heading h2 { color: #e6edf3; }
body.dark .section-heading p  { color: #8b949e; }
body.dark .section-heading .eyebrow { color: #74d4a0; }
body.dark .chat-panel { background: var(--surface); border-color: var(--border); }
body.dark .chat-header { background: rgba(45,106,79,.15); }
body.dark .bubble.bot { background: var(--bg-alt); border-color: var(--border); color: var(--text); }
body.dark .footer { background: #010409; }
body.dark .founder-section { background: rgba(45,106,79,.08); border-color: var(--border); }
body.dark blockquote { color: #74d4a0; }
body.dark .founder-traits span { background: rgba(45,106,79,.15); border-color: rgba(45,106,79,.3); color: #74d4a0; }
body.dark .milestone-item { background: var(--surface); border-color: var(--border); }
body.dark .fv-card { background: var(--surface); border-color: var(--border); }
body.dark .fv-icon { background: rgba(45,106,79,.15); color: #74d4a0; }
body.dark .fv-card:hover .fv-icon { background: rgba(45,106,79,.3); }
body.dark .voice-lang-select { background: rgba(45,106,79,.15); color: #74d4a0; border-color: rgba(45,106,79,.35); }
body.dark .instagram-link:hover { color: #f06292; }

/* ── Nav active link (section tracking) ── */
.nav-links a.active { color: var(--green) !important; font-weight: 600; }
body.dark .nav-links a.active { color: #74d4a0 !important; }

/* ════════════════════════════
   SITE-WIDE ANIMATED BG ORBS
   ════════════════════════════ */
#siteBg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.bg-orb {
  position: absolute; border-radius: 50%; will-change: transform;
}
.bg-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(45,106,79,.14) 0%, transparent 65%);
  top: -220px; left: -200px; filter: blur(55px);
  animation: bgOrb1 24s ease-in-out infinite;
}
.bg-orb-2 {
  width: 580px; height: 580px;
  background: radial-gradient(circle, rgba(181,131,10,.09) 0%, transparent 65%);
  top: 28%; right: -160px; filter: blur(65px);
  animation: bgOrb2 30s 4s ease-in-out infinite;
}
.bg-orb-3 {
  width: 820px; height: 820px;
  background: radial-gradient(circle, rgba(45,106,79,.08) 0%, transparent 65%);
  top: 55%; left: -180px; filter: blur(80px);
  animation: bgOrb1 38s 8s ease-in-out infinite reverse;
}
.bg-orb-4 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(64,145,108,.11) 0%, transparent 65%);
  bottom: -120px; right: 0; filter: blur(60px);
  animation: bgOrb2 26s 13s ease-in-out infinite;
}
@keyframes bgOrb1 {
  0%,100% { transform: translate(0, 0)    scale(1); }
  33%      { transform: translate(130px, 100px) scale(1.12); }
  66%      { transform: translate(-70px, 170px) scale(.9); }
}
@keyframes bgOrb2 {
  0%,100% { transform: translate(0, 0)      scale(1); }
  33%      { transform: translate(-110px, -90px) scale(1.1); }
  66%      { transform: translate(80px, -150px) scale(1.14); }
}
body.dark .bg-orb-1 { background: radial-gradient(circle, rgba(116,212,160,.07) 0%, transparent 65%); }
body.dark .bg-orb-2 { background: radial-gradient(circle, rgba(181,131,10,.05) 0%, transparent 65%); }
body.dark .bg-orb-3 { background: radial-gradient(circle, rgba(116,212,160,.05) 0%, transparent 65%); }
body.dark .bg-orb-4 { background: radial-gradient(circle, rgba(116,212,160,.07) 0%, transparent 65%); }

/* ════════════════════════════
   PAGE LOADER  (blueprint intro)
   ════════════════════════════ */
#pageLoader {
  position: fixed; inset: 0; z-index: 9999;
  background: #0b1a10;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.6rem;
  transition: opacity .5s .05s ease, visibility .5s .05s;
}
#pageLoader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-brand {
  font-family: 'Manrope', sans-serif; font-size: 1.65rem; font-weight: 800;
  color: #fff; letter-spacing: .06em; text-transform: uppercase;
}
.loader-brand span { color: #74d4a0; }
.loader-draw { width: 280px; height: 66px; overflow: visible; display: block; }
.ldl {
  fill: none; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 600; stroke-dashoffset: 600;
  animation: ldDraw 1.4s ease forwards;
}
.ldl-a { stroke: rgba(116,212,160,.75); stroke-width: 1.5; }
.ldl-b { stroke: #2d6a4f; stroke-width: 1.8; animation-delay: .18s; }
.ldl-c { stroke: rgba(116,212,160,.5); stroke-width: 1.2; animation-delay: .36s; }
.ldl-d { stroke: rgba(181,131,10,.6); stroke-width: 1.5; animation-delay: .52s; }
@keyframes ldDraw { to { stroke-dashoffset: 0; } }
.loader-label {
  font-size: .7rem; letter-spacing: .25em; text-transform: uppercase;
  color: rgba(255,255,255,.45); font-weight: 600;
  opacity: 0; animation: ldFadeIn .5s .85s ease forwards;
}
.loader-progress { width: 190px; height: 2px; background: rgba(255,255,255,.08); border-radius: 2px; overflow: hidden; }
.loader-fill { height: 100%; width: 0; background: linear-gradient(90deg, #2d6a4f, #74d4a0); border-radius: 2px;
  animation: ldFill 1.1s .2s cubic-bezier(.4,0,.2,1) forwards; }
@keyframes ldFadeIn { to { opacity: 1; } }
@keyframes ldFill   { to { width: 100%; } }

/* ════════════════════════════
   HERO ENTRANCE ANIMATIONS
   ════════════════════════════ */
.hero-eyebrow-row,
.hero-copy h1,
.hero-desc,
.hero-actions,
.hero-stats,
.hero-showcase {
  opacity: 0; filter: blur(8px); transform: translateY(52px);
  will-change: opacity, transform, filter;
}
.hero.ready .hero-eyebrow-row { animation: hEnt .85s .06s cubic-bezier(.16,1,.3,1) forwards; }
.hero.ready .hero-copy h1     { animation: hEnt .9s  .20s cubic-bezier(.16,1,.3,1) forwards; }
.hero.ready .hero-desc        { animation: hEnt .8s  .36s cubic-bezier(.16,1,.3,1) forwards; }
.hero.ready .hero-actions     { animation: hEnt .8s  .50s cubic-bezier(.16,1,.3,1) forwards; }
.hero.ready .hero-stats       { animation: hEnt .8s  .62s cubic-bezier(.16,1,.3,1) forwards; }
.hero.ready .hero-showcase    { animation: hShowIn 1.05s .28s cubic-bezier(.16,1,.3,1) forwards; }
@keyframes hEnt {
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes hShowIn {
  from { opacity: 0; transform: translateX(80px) scale(.93) rotateY(-5deg); filter: blur(8px); }
  to   { opacity: 1; transform: none; filter: blur(0); }
}

/* ════════════════════════════
   HERO BLUEPRINT GRID LINES
   ════════════════════════════ */
.hero-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.hg-line {
  fill: none; stroke-linecap: square;
  stroke-dasharray: 1200; stroke-dashoffset: 1200;
}
.hg-h { stroke: rgba(45,106,79,.055); stroke-width: .8; }
.hg-v { stroke: rgba(45,106,79,.04);  stroke-width: .6; }
.hg-line.draw { animation: hgDraw 2.6s ease forwards; }
@keyframes hgDraw { to { stroke-dashoffset: 0; } }
body.dark .hg-h { stroke: rgba(116,212,160,.045); }
body.dark .hg-v { stroke: rgba(116,212,160,.03); }

/* ════════════════════════════
   TICKER STRIP
   ════════════════════════════ */
.ticker-section {
  background: var(--green-dark); overflow: hidden;
  padding: .7rem 0; position: relative; z-index: 4;
  border-top: 1px solid rgba(116,212,160,.1);
  border-bottom: 1px solid rgba(116,212,160,.08);
}
.ticker-track {
  display: flex; width: max-content;
  animation: tickerRun 36s linear infinite;
  gap: 0;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex; align-items: center; gap: .85rem;
  padding: 0 2.4rem; white-space: nowrap;
  color: rgba(255,255,255,.8); font-size: .76rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
}
.ticker-dot { color: #74d4a0; font-size: 1rem; flex-shrink: 0; line-height: 1; }
@keyframes tickerRun { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
body.dark .ticker-section { background: #010d05; }

/* ════════════════════════════
   CLIP-MASK HEADING REVEAL
   ════════════════════════════ */
.clip-head { overflow: hidden; }
.clip-head > * {
  display: block; transform: translateY(110%);
  transition: transform .9s cubic-bezier(.16,1,.3,1);
  will-change: transform;
}
.clip-head.visible > *             { transform: translateY(0); }
.clip-head.visible > *:nth-child(2){ transition-delay: .1s; }
.clip-head.visible > *:nth-child(3){ transition-delay: .22s; }

/* ════════════════════════════
   SCROLL PARALLAX IMAGES
   ════════════════════════════ */
.parallax-wrap { overflow: hidden; position: relative; border-radius: var(--radius); }
.parallax-wrap > img {
  will-change: transform; display: block; width: 100%;
  transform: scale(1.22) translateY(0px);
  transition: transform 0ms linear;
}

/* ════════════════════════════
   COUNTER SLOT DIGIT FLASH
   ════════════════════════════ */
.count-up.tick {
  display: inline-block;
  animation: digitTick .12s ease;
}
@keyframes digitTick {
  0%   { opacity: .5; transform: translateY(-5px) scaleY(.8); filter: blur(2px); }
  100% { opacity: 1;  transform: translateY(0)    scaleY(1);   filter: blur(0);  }
}

/* ════════════════════════════
   SECTION ENTRANCE PULSE LINE
   ════════════════════════════ */
.section-heading::after {
  content: '';
  display: block; height: 2px; width: 0; margin: 1.2rem auto 0;
  background: linear-gradient(90deg, var(--green), #74d4a0, var(--green));
  border-radius: 2px;
  transition: width 1s .3s cubic-bezier(.16,1,.3,1);
}
.section-heading.visible::after { width: 80px; }

/* ════════════════════════════
   CONSTRUCTION PROGRESS BEAM
   ════════════════════════════ */
.spec-item { position: relative; overflow: hidden; }
.spec-item::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 100%; height: 2px;
  background: linear-gradient(90deg, var(--green), #74d4a0);
  transition: right .8s cubic-bezier(.16,1,.3,1);
}
.spec-item.visible::after { right: 0; }

/* ════════════════════════════
   MOBILE NAV DRAWER
   ════════════════════════════ */
@media (max-width: 768px) {
  .menu-btn { display: flex; }
  .nav-links { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--surface); border-bottom: 1px solid var(--border); flex-direction: column; align-items: stretch; padding: 1rem; gap: .25rem; box-shadow: var(--shadow-lg); z-index: 199; }
  .nav-links.open { display: flex; animation: slideDown 240ms cubic-bezier(.16,1,.3,1); }
  @keyframes slideDown { from { opacity:0; transform: translateY(-8px); } to { opacity:1; transform: none; } }
  .nav-links a { padding: .75rem 1rem; border-radius: 8px; font-size: .95rem; color: var(--text); }
  .nav-links a:hover { color: var(--green); background: var(--green-pale); }
  .nav-cta { text-align: center; margin-top: .5rem; }
  .nav-controls { gap: .35rem; }
  .nav-lang-btn { font-size: .72rem; padding: .28rem .6rem; }
  .nav-icon-btn  { width: 30px; height: 30px; }
}

/* ════════════════════════════
   RESPONSIVE
   ════════════════════════════ */
@media (max-width: 1100px) {
  .amenities-grid { grid-template-columns: repeat(3,1fr); }
  .location-grid  { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .hero-inner      { flex-direction: column; }
  .hero-showcase   { flex: unset; width: 100%; max-width: 480px; margin: 0 auto; }
  .project-overview { grid-template-columns: 1fr; }
  .project-gallery  { grid-template-columns: 1fr 1fr; }
  .builder-shell   { grid-template-columns: 1fr; }
  .founder-grid    { grid-template-columns: 1fr; }
  .founder-photo-col { flex-direction: row; align-items: flex-start; gap: 1rem; }
  .founder-photo-card { max-width: 200px; }
  .founder-photo-card img { min-height: 240px; }
  .contact-grid    { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero { padding: calc(var(--nav-h) + 2rem) 1.2rem 3.5rem; }
  .section { padding: 3.5rem 1.2rem; }
  .hero-stats { flex-wrap: wrap; }
  .floating-plots { top: -14px; right: -10px; }
  .floating-cert  { bottom: -10px; left: 16px; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .location-grid  { grid-template-columns: 1fr; }
  .spec-grid      { grid-template-columns: 1fr; }
  .project-gallery { grid-template-columns: 1fr; }
  .founder-photo-col { flex-direction: column; align-items: center; }
  .founder-photo-card { max-width: 100%; }
  .whatsapp-fab   { bottom: 5rem; right: 1rem; }
  .chatbot        { right: 1rem; bottom: 1rem; }
  #project::before, #amenities::before, #builder::before,
  .founder-section::before, #contact::before { display: none; }
}
