/* =================================================================
   VANTARA HERITAGE — PREMIUM LUXURY DESIGN SYSTEM
   Dark luxury · Gold/Bronze accents · Glassmorphism · Cinematic
   ================================================================= */

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
  /* Brand palette */
  --bg-0:           #07090F;   /* deepest navy-black */
  --bg-1:           #0A0E1A;   /* primary background */
  --bg-2:           #121726;   /* elevated surface */
  --bg-3:           #1A2033;   /* cards */
  --line:           rgba(201, 169, 97, 0.18);
  --line-soft:      rgba(255, 255, 255, 0.07);

  /* Heritage emerald spectrum (matches logo) */
  --brand-100:       #E5F1EA;
  --brand-200:       #BFE0CC;
  --brand-300:       #8FCBA8;
  --brand-400:       #4FA571;
  --brand-500:       #2C7A4B;   /* primary heritage green */
  --brand-600:       #1F5C39;
  --brand-deep:      #14391F;
  --brand-rgb:       44,122,75;       /* for rgba() */
  --brand-rgb-deep:  20,57,31;
  --brand-grad:      linear-gradient(135deg, #8FCBA8 0%, #2C7A4B 45%, #14391F 100%);
  --brand-grad-soft: linear-gradient(135deg, rgba(143,203,168,.12), rgba(20,57,31,.05));

  /* Text */
  --text-100:       #FFFFFF;
  --text-200:       #F5F1EA;
  --text-300:       #C9C7C0;
  --text-400:       #9A958B;
  --text-500:       #6E6A60;

  /* States */
  --success:        #2BD46A;
  --whatsapp:       #25D366;

  /* Shadows */
  --shadow-sm:      0 4px 14px rgba(0,0,0,.30);
  --shadow-md:      0 12px 40px rgba(0,0,0,.45);
  --shadow-lg:      0 24px 80px rgba(0,0,0,.55);
  --shadow-brand:    0 14px 44px rgba(44,122,75,.22);

  /* Radii */
  --r-sm:           8px;
  --r-md:           14px;
  --r-lg:           22px;
  --r-xl:           34px;
  --r-pill:         999px;

  /* Spacing */
  --gutter:         clamp(1rem, 4vw, 2rem);
  --section-y:      clamp(4.5rem, 9vw, 8rem);

  /* Type — luxury real-estate pairing: Playfair Display + Poppins */
  --font-display:   'Playfair Display', 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body:      'Poppins', 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-serif-alt: 'Cormorant Garamond', 'Playfair Display', serif;

  /* Motion */
  --ease:           cubic-bezier(.2,.7,.2,1);
  --ease-out:       cubic-bezier(.16,1,.3,1);
  --t-fast:         .25s;
  --t-base:         .45s;
  --t-slow:         .85s;

  /* Sticky-header height — kept in sync per breakpoint so the
     mobile full-screen menu can position itself perfectly below it. */
  --header-h:       78px;
}

/* ---------- 2. RESET ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
/* The HTML5 `hidden` attribute must win over any display: flex/grid rules
   used by alert components (success/error panels). */
[hidden] { display: none !important; }
body {
  margin: 0;
  background: var(--bg-1);
  color: var(--text-200);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast) var(--ease); }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
em { font-style: italic; font-family: var(--font-display); }

/* ---------- 3. LAYOUT PRIMITIVES ---------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section {
  padding: var(--section-y) 0;
  position: relative;
}
.section-head {
  max-width: 880px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.section-head.center { text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--brand-500);
  margin-bottom: 1.25rem;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand-500);
  box-shadow: 0 0 0 4px rgba(44,122,75,.18);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--text-100);
  margin: 0;
}
.section-title em {
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.section-sub {
  margin-top: 1rem;
  color: var(--text-300);
  font-size: 1.05rem;
  max-width: 720px;
  margin-left: auto; margin-right: auto;
}

/* ---------- 4. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .85rem 1.4rem;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .02em;
  position: relative;
  isolation: isolate;
  transition: transform var(--t-fast) var(--ease),
              box-shadow var(--t-base) var(--ease),
              background var(--t-base) var(--ease),
              color var(--t-base) var(--ease);
  white-space: nowrap;
}
.btn i { font-size: .9em; }
.btn-sm { padding: .55rem 1rem; font-size: .82rem; }
.btn-lg { padding: 1.05rem 1.7rem; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--brand-grad);
  color: #FFFFFF;
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(44,122,75,.35);
}
.btn-outline {
  border: 1px solid var(--brand-500);
  color: var(--brand-300);
  background: rgba(44,122,75,.05);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(44,122,75,.12);
  color: var(--brand-100);
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-soft);
  color: var(--text-200);
}
.btn-ghost:hover { background: rgba(255,255,255,.08); }
.btn-link {
  padding: 0;
  background: transparent;
  color: var(--brand-300);
  border-radius: 0;
}
.btn-link:hover { color: var(--brand-100); gap: 1rem; }

/* ---------- 5. GLASSMORPHISM ---------- */
.glass {
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015)),
    rgba(18, 23, 38, 0.55);
  border: 1px solid var(--line-soft);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-radius: var(--r-lg);
  position: relative;
}
.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(44,122,75,.35), rgba(255,255,255,.04) 40%, rgba(44,122,75,.0) 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ---------- 6. UTILITY BAR (premium compact topbar) ---------- */
.utility-bar {
  background: linear-gradient(90deg, var(--brand-600), var(--brand-500) 50%, var(--brand-deep));
  color: rgba(255,255,255,.95);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .02em;
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative;
  z-index: 81;
}
.util-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: .55rem 0;
  flex-wrap: nowrap;
  min-width: 0;
}
.util-item {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #FFFFFF;
  white-space: nowrap;
  min-width: 0;
  transition: color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.util-item > span { overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.util-item i {
  color: #FFFFFF;
  font-size: .78rem;
  display: inline-grid;
  place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  flex-shrink: 0;
}
.util-wa i { background: #25D366; }
a.util-item:hover { color: #FFFFFF; transform: translateY(-1px); }
a.util-item:hover i { background: rgba(255,255,255,.30); }
.util-wa:hover i { background: #1FBA59; }
.util-item.util-badge { font-weight: 600; }

/* Progressive disclosure — drop lowest-priority items first */
@media (max-width: 1180px) { .util-row { gap: 1.25rem; } }
@media (max-width: 1024px) {
  .util-row { gap: 1rem; padding: .5rem 0; }
  .util-item { font-size: .74rem; }
  .util-item i { width: 20px; height: 20px; font-size: .72rem; }
}
@media (max-width: 880px) {
  .util-badge { display: none; }
  .util-row { gap: .9rem; }
}
@media (max-width: 640px) {
  .util-loc { display: none; }
  .util-row { gap: .75rem; padding: .45rem 0; font-size: .72rem; }
}
@media (max-width: 420px) {
  .util-row { gap: .6rem; }
  .util-item { font-size: .7rem; gap: .35rem; }
  .util-item i { width: 18px; height: 18px; font-size: .64rem; }
}
@media (max-width: 340px) {
  .util-wa span { display: none; }
}

/* ---------- 7. HEADER / NAVBAR ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(7, 9, 15, 0.55);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: background var(--t-base) var(--ease),
              border-color var(--t-base) var(--ease),
              padding var(--t-base) var(--ease);
}
.site-header.scrolled {
  background: rgba(7, 9, 15, 0.88);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.header-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  height: 78px;
  column-gap: clamp(.5rem, 1.5vw, 1.5rem);
}
.header-row .brand,
.header-row .primary-nav,
.header-row .header-cta { min-width: 0; }
.header-row .primary-nav { justify-self: center; }
.header-row .header-cta { justify-self: end; }

/* Brand — fixed footprint, never overlaps */
.brand {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  flex-shrink: 0;
  text-decoration: none;
}
.brand-mark {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: #FFFFFF;
  color: var(--brand-500);
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(44,122,75,.18),
              inset 0 0 0 1px rgba(44,122,75,.16);
  padding: 0;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-base) var(--ease);
}
.brand:hover .brand-mark {
  transform: scale(1.04) rotate(-2deg);
  box-shadow: 0 10px 22px rgba(44,122,75,.28),
              inset 0 0 0 1px rgba(44,122,75,.28);
}
.brand-mark img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.brand-text {
  display: flex; flex-direction: column;
  justify-content: center;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
  padding-right: 4px;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: .005em;
  color: var(--text-100);
  line-height: 1.1;
  margin: 0;
}
.brand-sub {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--brand-500);
  margin-top: 6px;
  padding-right: .3em;
  line-height: 1;
}

/* Nav */
.primary-nav {
  display: flex;
  align-items: center;
  height: 100%;
}
.primary-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(.15rem, .35vw, .5rem);
  height: 100%;
}
.primary-nav li { display: flex; align-items: center; }
.primary-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  padding: .65rem .85rem .75rem;
  font-size: clamp(.85rem, .9vw, .94rem);
  font-weight: 500;
  letter-spacing: .01em;
  color: var(--text-300);
  border-radius: var(--r-pill);
  white-space: nowrap;
  transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  height: 2px;
  width: 0;
  background: var(--brand-grad);
  transition: width var(--t-base) var(--ease), left var(--t-base) var(--ease);
  border-radius: 2px;
  transform: translateX(-50%);
}
.primary-nav a:hover { color: var(--text-100); }
.primary-nav a:hover::after,
.primary-nav a.active::after {
  width: 22px;
  left: 50%;
}
.primary-nav a.active { color: var(--brand-500); font-weight: 600; }

/* Brand-text baseline aligns with nav center — drop the .brand-sub to a smaller height
   so the brand visual centre matches the single-line nav links */
.header-row .brand { align-self: center; }
.header-row .primary-nav,
.header-row .header-cta { align-self: center; }

.header-cta { display: inline-flex; align-items: center; gap: .5rem; flex-shrink: 0; }
.header-cta > * { flex-shrink: 0; }
.nav-toggle { z-index: 2; }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-soft);
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 12px; right: 12px;
  height: 2px;
  background: var(--brand-300);
  border-radius: 2px;
  transition: transform var(--t-base) var(--ease),
              opacity var(--t-fast) var(--ease),
              top var(--t-base) var(--ease);
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

@media (max-width: 1180px) {
  /* FULL-SCREEN OVERLAY MENU
     Covers the entire viewport BELOW the sticky header.
     All items fit on one screen — no internal scrolling. */
  .primary-nav {
    position: fixed;
    top: var(--header-h, 78px);
    left: 0; right: 0;
    bottom: 0;                /* full remaining height */
    background:
      radial-gradient(ellipse at 50% 0%, rgba(44,122,75,.18), transparent 55%),
      linear-gradient(180deg, rgba(7,9,15,.985), rgba(7,9,15,.985));
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid var(--line);
    padding: 1.5rem 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 90;
    width: 100%;
    height: auto;
    max-height: none;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition:
      opacity .35s var(--ease-out),
      transform .35s var(--ease-out),
      visibility 0s linear .35s;
    pointer-events: none;
    justify-self: stretch;
    box-shadow: 0 30px 60px rgba(0,0,0,.45);
  }
  .primary-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition:
      opacity .35s var(--ease-out),
      transform .35s var(--ease-out),
      visibility 0s linear 0s;
  }

  /* Eyebrow above the items */
  .primary-nav::before {
    content: "Menu";
    display: block;
    font-size: .68rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--brand-300);
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .4s var(--ease-out) .1s, transform .4s var(--ease-out) .1s;
  }
  .primary-nav.open::before { opacity: 1; transform: translateY(0); }

  /* Items — single centred column, display-font, premium feel */
  .primary-nav ul {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: .15rem;
    width: 100%;
    max-width: 380px;
    margin: 0;
  }
  .primary-nav li { display: block; }
  .primary-nav a {
    display: block;
    width: 100%;
    text-align: center;
    padding: clamp(.55rem, 1.6vh, .85rem) 1rem;
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 4.4vw, 1.6rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--text-100);
    border-radius: 12px;
    letter-spacing: .005em;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .35s var(--ease-out), transform .35s var(--ease-out), background .2s, color .2s;
  }
  .primary-nav a::after { display: none; }
  .primary-nav.open a { opacity: 1; transform: translateY(0); }
  .primary-nav.open a { transition-delay: calc(.08s + var(--i, 0) * .04s); }
  .primary-nav.open li:nth-child(1) a { --i: 1; }
  .primary-nav.open li:nth-child(2) a { --i: 2; }
  .primary-nav.open li:nth-child(3) a { --i: 3; }
  .primary-nav.open li:nth-child(4) a { --i: 4; }
  .primary-nav.open li:nth-child(5) a { --i: 5; }
  .primary-nav.open li:nth-child(6) a { --i: 6; }
  .primary-nav.open li:nth-child(7) a { --i: 7; }
  .primary-nav.open li:nth-child(8) a { --i: 8; }
  .primary-nav.open li:nth-child(9) a { --i: 9; }
  .primary-nav a:hover {
    background: rgba(44,122,75,.14);
    color: var(--brand-300);
  }
  .primary-nav a.active {
    color: var(--brand-300);
    background: rgba(44,122,75,.18);
  }

  /* Last item (Contact) — premium CTA pill */
  .primary-nav li:last-child a {
    margin-top: .5rem;
    background: var(--brand-grad);
    color: #FFFFFF;
    font-weight: 600;
    font-size: clamp(1rem, 3.6vw, 1.2rem);
    padding: .8rem 1rem;
    text-shadow: 0 1px 2px rgba(0,0,0,.2);
    font-family: var(--font-body);
    letter-spacing: .03em;
  }
  .primary-nav li:last-child a:hover {
    background: linear-gradient(135deg, var(--brand-500), var(--brand-deep));
    color: #FFFFFF;
  }

  /* Small footer inside menu — phone + WhatsApp shortcut for premium UX */
  .primary-nav::after {
    content: "";
    display: block;
    width: 60px; height: 1px;
    background: var(--line);
    margin: 1.25rem auto 0;
    opacity: 0;
    transition: opacity .5s var(--ease-out) .35s;
  }
  .primary-nav.open::after { opacity: 1; }

  .nav-toggle { display: inline-grid; place-items: center; }
  .header-cta .btn-ghost { display: none; }

  /* Backdrop no longer needed — the full-screen menu IS the backdrop */
  .nav-backdrop { display: none; }

  /* Light-theme full-screen overlay — cream luxury */
  [data-theme="light"] .primary-nav {
    background:
      radial-gradient(ellipse at 50% 0%, rgba(44,122,75,.10), transparent 55%),
      linear-gradient(180deg, #FFFCF4, #FAF6EC);
    border-top-color: var(--line);
    box-shadow: 0 20px 50px rgba(20,57,31,.10);
  }
  [data-theme="light"] .primary-nav::before { color: var(--brand-600); }
  [data-theme="light"] .primary-nav a { color: var(--text-100); }
  [data-theme="light"] .primary-nav a:hover { background: rgba(44,122,75,.08); color: var(--brand-600); }
  [data-theme="light"] .primary-nav a.active { background: rgba(44,122,75,.12); color: var(--brand-600); }
  [data-theme="light"] .primary-nav li:last-child a {
    background: linear-gradient(135deg, #2C7A4B 0%, #1F5C39 55%, #14391F 100%);
    color: #FFFFFF;
  }
  [data-theme="light"] .primary-nav::after { background: var(--line); }
}

/* Hide backdrop on desktop */
@media (min-width: 1181px) {
  .nav-backdrop { display: none !important; }
}
/* Tablet & below: collapse to hamburger */
@media (max-width: 1180px) {
  :root { --header-h: 72px; }
  .header-row {
    height: 72px;
    grid-template-columns: auto 1fr auto;
    column-gap: .5rem;
  }
  .primary-nav { top: 72px; }
}

/* Phones (≤ 720px) */
@media (max-width: 720px) {
  :root { --header-h: 66px; }
  .header-row { height: 66px; column-gap: .4rem; }
  .primary-nav { top: 66px; }
  .brand-mark { width: 44px; height: 44px; border-radius: 12px; }
  .brand-name { font-size: 1.05rem; }
  .brand-sub { font-size: .56rem; letter-spacing: .28em; margin-top: 4px; }
  .header-cta { gap: .35rem; }
  .header-cta .btn-sm {
    padding: .55rem .85rem;
    font-size: .78rem;
    gap: .4rem;
  }
  .nav-toggle { width: 40px; height: 40px; }
  .nav-toggle span { left: 10px; right: 10px; }
}

/* Small phones (≤ 540px) — hide theme toggle to give Enquire + hamburger room */
@media (max-width: 540px) {
  :root { --header-h: 62px; }
  .header-row { height: 62px; }
  .primary-nav { top: 62px; }
  .theme-toggle { display: none; }
  .brand { gap: .65rem; }
  .brand-mark { width: 40px; height: 40px; border-radius: 11px; }
  .brand-name { font-size: 1rem; }
  .brand-sub { font-size: .54rem; letter-spacing: .26em; margin-top: 3px; }
  .header-cta .btn-sm { padding: .5rem .75rem; font-size: .74rem; }
  .header-cta .btn-sm i { font-size: .75rem; }
  .nav-toggle { width: 38px; height: 38px; border-radius: 10px; }
}

/* Tiny phones (≤ 400px) — Enquire becomes icon-only */
@media (max-width: 400px) {
  :root { --header-h: 60px; }
  .header-row { height: 60px; column-gap: .3rem; }
  .primary-nav { top: 60px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-sub { display: none; }
  .brand-name { font-size: .98rem; }
  .brand-text { padding-right: 0; }
  .header-cta .btn-sm span { display: none; }
  .header-cta .btn-sm { padding: .55rem .7rem; gap: 0; }
  .header-cta .btn-sm i { font-size: 1rem; margin: 0; }
  .nav-toggle { width: 36px; height: 36px; }
}

/* Very tiny screens (≤ 340px) — drop brand text entirely, keep only logo */
@media (max-width: 340px) {
  .brand-text { display: none; }
}

/* ---------- 8. HERO ---------- */
/* ===== HERO — MOBILE-FIRST, NO CONFLICTING OVERRIDES ===== */
.hero {
  position: relative;
  padding: 4.5rem 0 3.5rem;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-img {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(44,122,75,.18), transparent 60%),
    linear-gradient(180deg, #050811 0%, #0A0E1A 100%);
  transform: scale(1.05);
  animation: heroPan 24s ease-in-out infinite alternate;
}
.hero-img::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 18% 80%, rgba(44,122,75,.10), transparent 35%),
    radial-gradient(circle at 85% 20%, rgba(20,57,31,.12), transparent 40%);
}
.hero-img::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(44,122,75,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44,122,75,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  opacity: .55;
}
@keyframes heroPan {
  0%   { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1.5%, -1%); }
}
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,9,15,0) 30%, rgba(7,9,15,.9) 92%);
}
.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,.55));
  pointer-events: none;
}

/* Content column — block layout so children flow naturally, full width */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  display: block;
}
.hero-content > * { margin-left: auto; margin-right: auto; max-width: 100%; }

/* EYEBROW — single line, allow wrap, never break per-word */
.hero-eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brand-500);
  margin: 0 auto 1.25rem;
  max-width: 95%;
  line-height: 1.4;
}
.hero-eyebrow > span:not(.line) {
  flex: 0 1 auto;
  white-space: normal;
  text-align: center;
}
.hero-eyebrow .line {
  flex: 0 0 18px;
  width: 18px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-500), transparent);
}

/* TITLE — scalable, never overflow, descenders never clipped.
   On mobile each word stacks to its own line so HERITAGE never clips. */
.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.1rem, 10.5vw, 5.4rem);
  line-height: 1.12;                 /* generous so g/p/y descenders breathe */
  letter-spacing: -.015em;
  margin: 0 auto;
  color: var(--text-100);
  overflow-wrap: break-word;
  word-break: keep-all;
  max-width: 100%;
  padding: .1em .25rem .2em;         /* extra bottom space for descenders */
  text-wrap: balance;
  overflow: visible;                 /* never clip glyphs */
}
.hero-title .reveal-word {
  display: block;                    /* mobile: stack each word */
  opacity: 0;
  transform: translateY(30px);
  animation: rise 1.1s var(--ease-out) forwards;
  padding: 0 .05em .12em;            /* bottom padding inside the bg-clip box */
  line-height: 1.12;
  overflow: visible;
}
.hero-title .reveal-word:nth-child(2) {
  animation-delay: .25s;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  /* Extra breathing room so the italic "g" tail isn't cropped */
  padding-bottom: .22em;
  line-height: 1.2;
  overflow: visible;
}
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

/* TAGLINE — readable on mobile */
.hero-tagline {
  margin: 1.25rem auto 1.5rem;
  max-width: 560px;
  font-size: clamp(.95rem, 2.6vw, 1.15rem);
  line-height: 1.55;
  color: var(--text-300);
  padding: 0 .5rem;
}
.hero-tagline br { display: none; }

/* META — 2 cols on mobile, 4 on desktop */
.hero-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
  max-width: 100%;
  margin: 0 auto 1.25rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01)),
    rgba(18, 23, 38, 0.45);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 1rem .85rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: .15rem .25rem;
  min-width: 0;
}
.meta + .meta::before { display: none; }
.meta-label {
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-400);
  font-weight: 600;
}
.meta-value {
  margin-top: .3rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text-100);
  font-weight: 600;
  line-height: 1.2;
}
.meta-value i {
  font-size: .65rem;
  font-style: normal;
  letter-spacing: .12em;
  color: var(--brand-500);
  font-family: var(--font-body);
  margin-left: 2px;
  font-weight: 500;
}

/* ACTIONS — full-width on mobile, side-by-side on tablet+ */
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  width: 100%;
  max-width: 360px;
  margin: 0 auto 1rem;
}
.hero-actions .btn { width: 100%; justify-content: center; }

/* SCROLL hint — hidden on mobile */
.hero-scroll { display: none; }
.scroll-line { width: 1px; height: 64px; background: var(--line-soft); position: relative; overflow: hidden; }
.scroll-line span {
  position: absolute; top: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(180deg, transparent, var(--brand-500));
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(330%); }
}

/* TRUST strip — premium responsive feature grid (no scroll) */
.hero-trust {
  position: static;
  width: 100%;
  margin-top: 1.5rem;
  background: rgba(7,9,15,.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line-soft);
  padding: .85rem 0;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .5rem .75rem;
  padding: 0 var(--gutter);
  font-size: .8rem;
  letter-spacing: .01em;
  color: var(--text-200);
  max-width: 1280px;
  margin: 0 auto;
}
.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .55rem .75rem;
  border-radius: 10px;
  background: rgba(255,255,255,.035);
  border: 1px solid var(--line-soft);
  min-width: 0;
  line-height: 1.25;
}
.trust-row span:last-child:nth-child(odd) { grid-column: 1 / -1; }
.trust-row i {
  color: var(--brand-500);
  font-size: .9rem;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(44,122,75,.12);
}
[data-theme="light"] .hero-trust {
  background: rgba(255,255,255,.55);
  border-top-color: var(--line);
}
[data-theme="light"] .trust-row { color: var(--text-200); }
[data-theme="light"] .trust-row span {
  background: rgba(255,255,255,.7);
  border-color: var(--line);
}

/* TABLET (≥ 640px) */
@media (min-width: 640px) {
  .hero { padding: 5.5rem 0 4rem; }
  .hero-title { font-size: clamp(3rem, 8vw, 5.4rem); }
  .hero-title .reveal-word { display: inline-block; padding: 0 .15em; }
  .hero-eyebrow {
    font-size: .72rem;
    letter-spacing: .25em;
    gap: .85rem;
    flex-wrap: nowrap;
  }
  .hero-eyebrow .line { flex: 0 0 28px; width: 28px; }
  .hero-tagline { margin: 1.5rem auto 1.75rem; }
  .hero-tagline br { display: inline; }
  .hero-meta {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    padding: 1.25rem;
    max-width: 880px;
  }
  .meta + .meta::before {
    content: "";
    display: block;
    position: absolute;
    left: -.5rem; top: 18%; bottom: 18%;
    width: 1px;
    background: var(--line-soft);
  }
  .meta { position: relative; }
  .meta-label { font-size: .7rem; letter-spacing: .22em; }
  .meta-value { font-size: 1.35rem; }
  .meta-value i { font-size: .72rem; }
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: none;
    gap: 1rem;
  }
  .hero-actions .btn { width: auto; }
  /* Trust grid: 3 columns at ≥ 640px */
  .trust-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .65rem;
    font-size: .82rem;
  }
  .trust-row span:last-child:nth-child(odd) { grid-column: auto; }
}
/* DESKTOP: 5 columns inline */
@media (min-width: 1024px) {
  .trust-row {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: .75rem;
  }
  .trust-row span { padding: .6rem .85rem; font-size: .82rem; }
}

/* DESKTOP (≥ 1024px) */
@media (min-width: 1024px) {
  .hero {
    min-height: 90vh;
    min-height: 90dvh;
    padding: 8rem 0 5.5rem;
    display: flex;
    align-items: center;
  }
  .hero-content { padding-bottom: 2.5rem; }
  .hero-eyebrow { font-size: .78rem; letter-spacing: .3em; gap: 1rem; margin-bottom: 2rem; }
  .hero-eyebrow .line { flex: 0 0 48px; width: 48px; }
  .hero-title { font-size: clamp(3.5rem, 8.5vw, 7rem); padding: 0; }
  .hero-title .reveal-word { display: inline-block; padding: 0 .15em; }
  .hero-tagline { font-size: 1.2rem; margin: 1.75rem auto 2rem; }
  .hero-meta { margin-bottom: 2rem; }
  .meta-value {
    font-size: clamp(1.1rem, 1.55vw, 1.35rem);
    line-height: 1.15;
    white-space: normal;
    text-wrap: balance;
  }
  /* SCROLL hint kept hidden so it never overlaps the CTAs / trust strip */
  .hero-scroll { display: none; }
  .hero-trust {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    margin-top: 0;
  }
}

/* ---------- 9. OVERVIEW ---------- */
.overview { background: linear-gradient(180deg, var(--bg-1), var(--bg-0)); }
.overview-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 3.5rem;
  align-items: start;
}
.lead {
  font-size: 1.15rem;
  color: var(--text-200);
  line-height: 1.75;
}
.overview-copy p { color: var(--text-300); line-height: 1.85; }
.overview-actions { margin-top: 1.75rem; display: flex; gap: 1rem; flex-wrap: wrap; }

.overview-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  position: sticky;
  top: 110px;
}
.stat-card {
  padding: 1.65rem 1.4rem;
  text-align: left;
  display: flex; flex-direction: column;
  transition: transform var(--t-base) var(--ease);
}
.stat-card:hover { transform: translateY(-4px); }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  line-height: 1;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 500;
}
.stat-unit {
  font-size: .85rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--brand-300);
  margin-top: .25rem;
}
.stat-label { color: var(--text-300); font-size: .9rem; margin-top: .75rem; }
.stat-card.accent .stat-num { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }

@media (max-width: 980px) {
  .overview-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .overview-stats { position: static; }
}
@media (max-width: 520px) {
  .overview-stats { grid-template-columns: 1fr; }
}

/* ---------- 10. FEATURES STRIP ---------- */
.features-strip { padding: 4rem 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.feature {
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  transition: transform var(--t-base) var(--ease), border-color var(--t-base) var(--ease), background var(--t-base) var(--ease);
  position: relative;
  overflow: hidden;
}
.feature::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--brand-grad);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-slow) var(--ease);
}
.feature:hover { transform: translateY(-6px); border-color: rgba(44,122,75,.35); background: linear-gradient(180deg, rgba(44,122,75,.06), rgba(255,255,255,0)); }
.feature:hover::before { transform: scaleX(1); }
.feature i {
  font-size: 1.7rem;
  color: var(--brand-500);
  margin-bottom: 1rem;
  display: block;
}
.feature h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 0 .5rem;
  color: var(--text-100);
}
.feature p { margin: 0; color: var(--text-300); font-size: .95rem; }
@media (max-width: 980px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }

/* ---------- 11. HIGHLIGHTS ---------- */
.highlights { background: var(--bg-0); }
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.hl-card {
  padding: 1.75rem 1.4rem;
  text-align: left;
  transition: transform var(--t-base) var(--ease);
}
.hl-card:hover { transform: translateY(-6px); }
.hl-icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--brand-grad-soft);
  border: 1px solid var(--line);
  color: var(--brand-500);
  font-size: 1.25rem;
  margin-bottom: 1.2rem;
}
.hl-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0 0 .45rem;
  color: var(--text-100);
}
.hl-card p { margin: 0; color: var(--text-300); font-size: .9rem; }
@media (max-width: 980px) { .highlights-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .highlights-grid { grid-template-columns: 1fr; } }

/* ---------- 12. WHY INVEST ---------- */
.why-invest {
  background:
    radial-gradient(ellipse at top, rgba(44,122,75,.05), transparent 60%),
    var(--bg-1);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  padding: 2rem 1.75rem 1.85rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.025), transparent);
  position: relative;
  transition: transform var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}
.why-card:hover { transform: translateY(-4px); border-color: rgba(44,122,75,.3); }
.why-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-style: italic;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: .5rem;
}
.why-card h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0 0 .5rem;
  color: var(--text-100);
}
.why-card p { margin: 0; color: var(--text-300); font-size: .92rem; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* ---------- 13. PRICE LIST ---------- */
.price-section { background: var(--bg-0); }
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.price-card {
  padding: 2rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-base) var(--ease);
  position: relative;
}
.price-card:hover { transform: translateY(-6px); }
.price-card.featured {
  border-color: rgba(44,122,75,.55);
  background:
    linear-gradient(180deg, rgba(44,122,75,.10), rgba(44,122,75,.02)),
    rgba(18,23,38,.7);
  box-shadow: var(--shadow-brand);
}
.ribbon {
  position: absolute;
  top: -12px; right: 20px;
  background: var(--brand-grad);
  color: #FFFFFF;
  padding: .35rem .9rem;
  border-radius: var(--r-pill);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: var(--shadow-brand);
}
.price-card header { margin-bottom: 1.25rem; }
.price-tag {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--brand-500);
  margin-bottom: .5rem;
}
.price-card h3 {
  font-family: var(--font-display);
  font-size: 2.6rem;
  margin: 0;
  color: var(--text-100);
  font-weight: 500;
  line-height: 1;
}
.price-card h3 span {
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--text-400);
  letter-spacing: .1em;
  margin-left: .35rem;
}
.price-features { margin: 0 0 1.5rem; flex: 1; }
.price-features li {
  padding: .55rem 0;
  border-bottom: 1px dashed var(--line-soft);
  display: flex; align-items: center; gap: .65rem;
  font-size: .92rem;
  color: var(--text-300);
}
.price-features li i { color: var(--brand-500); font-size: .8rem; }
.price-amount {
  display: flex; align-items: baseline; gap: .35rem;
  margin: 0 0 1.5rem;
}
.price-amount .cur { color: var(--brand-500); font-size: 1.4rem; }
.price-amount .amt {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--text-100);
}
.price-note { text-align: center; margin-top: 2rem; color: var(--text-400); font-size: .92rem; }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

/* ---------- 14. AMENITIES ---------- */
.amenities {
  background:
    radial-gradient(ellipse at bottom, rgba(44,122,75,.06), transparent 60%),
    var(--bg-1);
}
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.amenity-card {
  position: relative;
  padding: 2rem 1.5rem;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0)),
    rgba(18,23,38,.5);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  cursor: pointer;
  overflow: hidden;
  transition: transform var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}
.amenity-card::before {
  content: "";
  position: absolute;
  inset: -50% -10% auto auto;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(44,122,75,.18), transparent 60%);
  opacity: 0;
  transition: opacity var(--t-slow) var(--ease);
}
.amenity-card:hover { transform: translateY(-6px); border-color: rgba(44,122,75,.4); }
.amenity-card:hover::before { opacity: 1; }
.am-icon {
  width: 72px; height: 72px;
  margin: 0 auto 1rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--brand-grad-soft);
  border: 1px solid var(--line);
  color: var(--brand-500);
  font-size: 1.7rem;
  transition: transform var(--t-base) var(--ease);
}
.amenity-card:hover .am-icon { transform: rotate(-6deg) scale(1.05); color: var(--brand-300); }
.amenity-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
  color: var(--text-100);
}
.am-line {
  display: block;
  width: 28px; height: 2px;
  background: var(--brand-grad);
  margin: .75rem auto 0;
  border-radius: 2px;
  transform: scaleX(.5);
  transition: transform var(--t-base) var(--ease);
}
.amenity-card:hover .am-line { transform: scaleX(1.4); }
@media (max-width: 900px) { .amenity-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .amenity-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- 15. MASTER PLAN ---------- */
.master-plan { background: var(--bg-0); }
.plan-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  padding: .35rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-pill);
  background: rgba(18,23,38,.55);
  backdrop-filter: blur(14px);
  margin: 0 auto 2.5rem;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
}
.plan-tab {
  padding: .65rem 1.1rem;
  border-radius: var(--r-pill);
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-300);
  transition: all var(--t-fast) var(--ease);
}
.plan-tab:hover { color: var(--text-100); }
.plan-tab.is-active {
  background: var(--brand-grad);
  color: #FFFFFF;
  box-shadow: var(--shadow-brand);
}

.plan-card {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 0;
  overflow: hidden;
  align-items: stretch;
}
.plan-card.wide { grid-template-columns: 1.6fr 1fr; }
.plan-figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  min-height: 380px;
  cursor: zoom-in;
}
.plan-image {
  position: absolute; inset: 0;
  background-position: center;
  background-size: cover;
  transition: transform 1.2s var(--ease);
}
.plan-figure:hover .plan-image { transform: scale(1.06); }
.plan-200 { background: linear-gradient(135deg, #1A2033 0%, #0A0E1A 100%); }
.plan-300 { background: linear-gradient(135deg, #1F2440 0%, #0A0E1A 100%); }
.plan-500 { background: linear-gradient(135deg, #261F40 0%, #0A0E1A 100%); }
.plan-layout { background: linear-gradient(135deg, #2A2040 0%, #0A0E1A 100%); }
/* SVG architectural overlay on plan placeholders */
.plan-image::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(44,122,75,.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44,122,75,.15) 1px, transparent 1px),
    radial-gradient(circle at 30% 60%, rgba(44,122,75,.18), transparent 35%);
  background-size: 38px 38px, 38px 38px, auto;
}
.plan-zoom {
  position: absolute;
  bottom: 1rem; right: 1rem;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(7,9,15,.7);
  color: var(--brand-300);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  backdrop-filter: blur(10px);
  transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.plan-zoom:hover { transform: scale(1.1); background: rgba(44,122,75,.2); }

.plan-meta {
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
.plan-meta h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  margin: 0;
  color: var(--text-100);
  font-weight: 500;
}
.plan-meta ul li {
  padding: .35rem 0;
  display: flex; align-items: center; gap: .65rem;
  color: var(--text-300);
}
.plan-meta ul li i { color: var(--brand-500); font-size: .8rem; }
@media (max-width: 800px) {
  .plan-card, .plan-card.wide { grid-template-columns: 1fr; }
  .plan-figure { min-height: 260px; }
}

/* ---------- 16. GALLERY (MASONRY) ---------- */
.gallery-section { background: var(--bg-1); }
.masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}
.m-item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: zoom-in;
  background: #1a1f2e;
  border: 1px solid var(--line-soft);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
  display: block;
}
.m-item img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1s var(--ease);
  display: block;
}
.m-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.m-item:hover img { transform: scale(1.08); }
.m-overlay {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  background: linear-gradient(180deg, transparent 40%, rgba(7,9,15,.85));
  color: var(--brand-200);
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .8rem;
  opacity: 0;
  transition: opacity var(--t-base) var(--ease);
}
.m-overlay i { margin-right: .5rem; }
.m-item:hover .m-overlay { opacity: 1; }

.m-1 { grid-column: span 2; grid-row: span 2; }
.m-4 { grid-row: span 2; }
/* Project-poster tiles (m-1..m-3) — contain so full marketing creative is visible;
   news-clipping tiles (m-4..m-6) — cover with top-anchored crop for legible headlines */
.m-1 img, .m-2 img, .m-3 img { object-fit: cover; object-position: center; }
.m-4 img, .m-5 img, .m-6 img { object-fit: cover; object-position: center top; }
@media (max-width: 900px) {
  .masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .m-1 { grid-column: span 2; grid-row: span 1; }
  .m-4 { grid-row: span 1; }
}
@media (max-width: 500px) {
  .masonry { grid-template-columns: 1fr; }
  .m-1 { grid-column: span 1; }
}

/* ---------- 17. LOCATION ---------- */
.location { background: var(--bg-0); }
.loc-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}
.loc-map {
  overflow: hidden;
  min-height: 540px;
  position: relative;
}
.loc-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(.55) contrast(1.05) brightness(.85);
}
.map-overlay {
  position: absolute;
  left: 1.25rem; bottom: 1.25rem;
  display: inline-flex; align-items: center; gap: .65rem;
  padding: .7rem 1.1rem;
  border-radius: var(--r-pill);
  background: rgba(7,9,15,.85);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  font-size: .85rem;
  color: var(--text-200);
}
.map-overlay i { color: var(--brand-500); }

.loc-timeline { padding: 0 .5rem; }
.loc-timeline h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--text-100);
  font-weight: 500;
  margin: 0 0 1.5rem;
}
.timeline { position: relative; padding-left: 1.5rem; border-left: 1px dashed var(--line); }
.timeline li {
  position: relative;
  padding: 0 0 1.5rem 1.25rem;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: .5rem;
  align-items: start;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: -1.95rem; top: .3rem;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(44,122,75,.2);
  border: 2px solid var(--brand-500);
}
.timeline li.accent::before { background: var(--brand-grad); box-shadow: 0 0 0 5px rgba(44,122,75,.15); }
.t-time {
  font-family: var(--font-display);
  color: var(--brand-300);
  font-size: 1.05rem;
  font-style: italic;
}
.timeline li strong { display: block; color: var(--text-100); font-weight: 600; font-size: 1rem; }
.timeline li span { color: var(--text-400); font-size: .88rem; }

.spiritual-strip {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--brand-grad-soft);
}
.spiritual-strip h4 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--brand-300);
  margin: 0 0 1rem;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chips span {
  padding: .45rem .85rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: rgba(7,9,15,.4);
  font-size: .82rem;
  color: var(--text-200);
}
@media (max-width: 900px) {
  .loc-grid { grid-template-columns: 1fr; }
  .loc-map { min-height: 360px; }
  .timeline li { grid-template-columns: 110px 1fr; }
}

/* ---------- 18. NEWS STRIP ---------- */
.news-strip { padding-top: 0; }
.news-card {
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: center;
}
.news-meta h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--text-100);
  margin: 0 0 .75rem;
  font-weight: 500;
  line-height: 1.25;
}
.news-meta p { color: var(--text-300); margin: 0 0 1.25rem; }
.news-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}
.news-stats > div {
  padding: 1.25rem .75rem;
  border-left: 1px solid var(--line-soft);
}
.news-stats > div:first-child { border-left: 0; }
.news-stats strong {
  display: block;
  font-family: var(--font-display);
  color: var(--brand-300);
  font-size: 1.4rem;
  font-weight: 500;
}
.news-stats span { font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text-400); }
@media (max-width: 900px) {
  .news-card { grid-template-columns: 1fr; padding: 2rem; }
}

/* ---------- 19. BROCHURE CTA ---------- */
.brochure-cta { background: var(--bg-1); }
.brochure-card {
  background:
    radial-gradient(ellipse at 80% 30%, rgba(44,122,75,.18), transparent 50%),
    linear-gradient(135deg, rgba(44,122,75,.06), rgba(255,255,255,0)),
    rgba(18,23,38,.7);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.brochure-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: .75rem 0 1rem;
  color: var(--text-100);
  font-weight: 500;
  line-height: 1.2;
}
.brochure-copy h2 em {
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brochure-copy p { color: var(--text-300); margin: 0 0 1.75rem; }
.brochure-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.brochure-art { position: relative; min-height: 280px; perspective: 900px; }
.brochure-mock {
  position: relative;
  width: 220px; height: 300px;
  margin: 0 auto;
  transform: rotateY(-18deg) rotateX(6deg);
  transition: transform var(--t-slow) var(--ease);
}
.brochure-card:hover .brochure-mock { transform: rotateY(-8deg) rotateX(3deg); }
.b-mock-front, .b-mock-back {
  position: absolute; inset: 0;
  border-radius: 12px;
  box-shadow: 0 30px 70px rgba(0,0,0,.55);
}
.b-mock-front {
  background:
    radial-gradient(circle at 20% 20%, rgba(44,122,75,.22), transparent 45%),
    linear-gradient(180deg, #14182A, #0A0E1A);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  z-index: 2;
}
.b-mock-back {
  background: linear-gradient(180deg, #1F2440, #0A0E1A);
  transform: translate(14px, 14px);
  z-index: 1;
  border: 1px solid var(--line-soft);
}
.bm-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: .25em;
  color: var(--text-100);
}
.bm-sub {
  font-size: .7rem;
  letter-spacing: .5em;
  color: var(--brand-500);
  margin-top: .25rem;
}
.bm-line { display: block; width: 100%; height: 1px; background: var(--brand-grad); }
.bm-foot { font-size: .72rem; letter-spacing: .15em; color: var(--text-400); }
@media (max-width: 800px) {
  .brochure-card { grid-template-columns: 1fr; padding: 2rem; text-align: center; }
  .brochure-actions { justify-content: center; }
  .brochure-art { min-height: 220px; }
  .brochure-mock { transform: rotateY(-6deg); }
}

/* ---------- 20. CONTACT ---------- */
.contact { background: var(--bg-0); }
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 1.75rem;
}
.contact-info { padding: 2.25rem; }
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin: 0 0 1.5rem;
  color: var(--text-100);
  font-weight: 500;
}
.contact-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 0;
  border-top: 1px solid var(--line-soft);
}
.contact-list li:first-child { border-top: 0; padding-top: 0; }
.ci-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--brand-grad-soft);
  border: 1px solid var(--line);
  color: var(--brand-500);
}
.ci-icon.whatsapp { color: var(--whatsapp); border-color: rgba(37,211,102,.3); background: rgba(37,211,102,.08); }
.ci-label {
  display: block;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-400);
  margin-bottom: .25rem;
}
.ci-value { color: var(--text-100); font-weight: 500; }
.ci-value:hover { color: var(--brand-300); }
.trust-marks {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-soft);
  display: flex; flex-wrap: wrap; gap: 1.25rem;
  font-size: .82rem;
  color: var(--text-300);
}
.trust-marks i { color: var(--brand-500); margin-right: .35rem; }

.contact-form {
  padding: 2.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
  align-content: start;
}
.contact-form h3 {
  grid-column: 1 / -1;
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--text-100);
  font-weight: 500;
}
.form-sub { grid-column: 1 / -1; margin: -.5rem 0 .5rem; color: var(--text-400); font-size: .92rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field.full { grid-column: 1 / -1; }
.field > span {
  font-size: .78rem;
  letter-spacing: .1em;
  color: var(--text-300);
  text-transform: uppercase;
}
.field > span em { color: var(--brand-500); font-style: normal; }
.field input, .field select, .field textarea {
  background: rgba(7,9,15,.55);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: .85rem 1rem;
  color: var(--text-100);
  font-size: .95rem;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand-500);
  box-shadow: 0 0 0 4px rgba(44,122,75,.12);
  background: rgba(7,9,15,.85);
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--brand-500) 50%), linear-gradient(135deg, var(--brand-500) 50%, transparent 50%); background-position: calc(100% - 18px) center, calc(100% - 14px) center; background-size: 4px 4px; background-repeat: no-repeat; padding-right: 2.2rem; }

.check { grid-column: 1 / -1; display: flex; align-items: flex-start; gap: .65rem; color: var(--text-300); font-size: .88rem; }
.check input { accent-color: var(--brand-500); margin-top: 3px; }

.contact-form .btn { grid-column: 1 / -1; }
/* Premium "Enquiry sent" confirmation panel (replaces fields on success) */
.form-success {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .6rem;
  padding: 1.75rem 1.25rem;
  border-radius: 14px;
  background:
    radial-gradient(ellipse at top, rgba(44,122,75,.12), transparent 60%),
    rgba(44, 122, 75, 0.08);
  border: 1px solid rgba(44, 122, 75, 0.30);
  color: var(--text-100);
  margin: .5rem 0 0;
  animation: successPop .45s var(--ease-out) backwards;
}
.form-success-badge {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #2C7A4B, #14391F);
  color: #FFFFFF;
  font-size: 1.5rem;
  box-shadow: 0 8px 20px rgba(44,122,75,.35);
  animation: badgePop .55s var(--ease-out) .05s backwards;
}
.form-success h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  margin: .25rem 0 0;
  color: var(--text-100);
}
.form-success p {
  margin: 0;
  font-size: .92rem;
  line-height: 1.55;
  color: var(--text-300);
  max-width: 360px;
}
@keyframes successPop {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes badgePop {
  0% { opacity: 0; transform: scale(.5); }
  60% { transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}

/* While success is showing, fade out the form fields */
form.is-sent .field,
form.is-sent label.field,
form.is-sent .form-sub,
form.is-sent button[type="submit"],
form.is-sent .check,
form.is-sent .enq-secondary,
form.is-sent .enq-trust,
form.is-sent .hp-field {
  display: none !important;
}
form.is-sent { padding-top: .5rem; padding-bottom: .5rem; }
form.is-sent h3 { margin-bottom: 0; }

@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .contact-form { grid-template-columns: 1fr; padding: 1.75rem; }
  .contact-info { padding: 1.75rem; }
}

/* ---------- 21. FOOTER ---------- */
.site-footer {
  background: var(--bg-0);
  padding-top: 4rem;
  border-top: 1px solid var(--line);
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.f-col h5 {
  font-family: var(--font-body);
  font-size: .82rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--brand-300);
  margin: 0 0 1.25rem;
  font-weight: 600;
}
.f-col ul li {
  padding: .35rem 0;
  color: var(--text-300);
  font-size: .92rem;
}
.f-col a { color: var(--text-300); transition: color var(--t-fast) var(--ease); }
.f-col a:hover { color: var(--brand-300); }
.f-brand p { color: var(--text-300); font-size: .9rem; line-height: 1.7; }
.f-contact li { display: flex; align-items: flex-start; gap: .6rem; line-height: 1.6; }
.f-contact i { color: var(--brand-500); margin-top: 4px; }

.f-social {
  display: flex; gap: .65rem; margin-top: 1.25rem;
}
.f-social a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-soft);
  color: var(--text-300);
  transition: all var(--t-fast) var(--ease);
}
.f-social a:hover {
  background: var(--brand-grad);
  color: #FFFFFF;
  border-color: transparent;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding: 1.5rem 0;
}
.fb-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--text-400);
  font-size: .85rem;
}
.fb-links { display: flex; flex-wrap: wrap; gap: 1.25rem; margin: 0; padding: 0; list-style: none; }
.fb-links a { color: var(--text-400); }
.fb-links a:hover { color: var(--brand-300); }

/* "Managed by Navix Technologies" — subtle premium credit */
.fb-copy { margin: 0; }
.fb-managed {
  margin: 0;
  font-size: .8rem;
  color: var(--text-400);
  letter-spacing: .03em;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  white-space: nowrap;
}
.fb-managed::before {
  content: "";
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--brand-500);
  opacity: .55;
  margin-right: .3rem;
}
.fb-managed a {
  position: relative;
  color: var(--text-200);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}
.fb-managed a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base) var(--ease);
}
.fb-managed a:hover { color: var(--brand-300); }
.fb-managed a:hover::after { transform: scaleX(1); }
[data-theme="light"] .fb-managed a { color: var(--text-100); }
[data-theme="light"] .fb-managed a:hover { color: var(--brand-600); }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- 22. FLOATING CTAs ---------- */
.floating-ctas {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 70;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.fcta {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--bg-2);
  color: var(--brand-300);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  font-size: 1.1rem;
  position: relative;
  transition: transform var(--t-fast) var(--ease);
}
.fcta:hover { transform: translateY(-3px) scale(1.05); }
.fcta-wa { background: var(--whatsapp); color: #fff; border-color: transparent; box-shadow: 0 14px 40px rgba(37,211,102,.35); }
.fcta-call { background: var(--brand-grad); color: #FFFFFF; border-color: transparent; box-shadow: var(--shadow-brand); animation: pulseRing 2.6s ease-out infinite; }
.fcta-enq { background: var(--bg-2); }
.fcta-tip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%; transform: translateY(-50%) translateX(8px);
  padding: .4rem .75rem;
  border-radius: var(--r-pill);
  background: rgba(7,9,15,.95);
  border: 1px solid var(--line);
  color: var(--text-100);
  font-size: .78rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.fcta:hover .fcta-tip { opacity: 1; transform: translateY(-50%) translateX(0); }
@keyframes pulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(44,122,75,.6), var(--shadow-brand); }
  70%  { box-shadow: 0 0 0 16px rgba(44,122,75,0), var(--shadow-brand); }
  100% { box-shadow: 0 0 0 0 rgba(44,122,75,0), var(--shadow-brand); }
}

/* Mobile CTA bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 70;
  background: rgba(7,9,15,.92);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: .5rem;
  box-shadow: var(--shadow-lg);
}
.mobile-cta-bar a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-200);
  border-radius: var(--r-pill);
}
.mobile-cta-bar a.primary {
  background: var(--brand-grad);
  color: #FFFFFF;
}
.mobile-cta-bar a i { font-size: 1rem; }
@media (max-width: 720px) {
  .mobile-cta-bar { display: flex; }
  /* On mobile the bottom CTA bar already covers Call/WhatsApp/Enquire,
     so the right-side floating cluster is hidden to free up space and
     prevent overlap with the price-cloud announcement (and to keep its
     close X fully tappable). */
  .floating-ctas { display: none !important; }
}

/* ---------- 23. LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(2, 4, 8, 0.92);
  backdrop-filter: blur(14px);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-base) var(--ease);
}
.lightbox.open { display: flex; opacity: 1; }
.lb-figure {
  width: min(92vw, 1080px);
  max-height: 86vh;
  margin: 0;
  position: relative;
}
.lb-image {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
}
.lb-figure figcaption {
  text-align: center;
  margin-top: 1rem;
  color: var(--text-300);
  font-size: .95rem;
}
.lb-close, .lb-prev, .lb-next {
  position: fixed;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(7,9,15,.7);
  border: 1px solid var(--line);
  color: var(--brand-200);
  font-size: 1.1rem;
  transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(44,122,75,.2); transform: scale(1.05); }
.lb-close { top: 1.5rem; right: 1.5rem; }
.lb-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lb-prev:hover, .lb-next:hover { transform: translateY(-50%) scale(1.05); }

/* ---------- 24. SCROLL PROGRESS ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--brand-grad);
  z-index: 200;
  transition: width .1s linear;
}

/* ---------- 25. REVEAL ANIMATIONS ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}
[data-reveal]:nth-child(2) { transition-delay: .08s; }
[data-reveal]:nth-child(3) { transition-delay: .16s; }
[data-reveal]:nth-child(4) { transition-delay: .24s; }
[data-reveal]:nth-child(5) { transition-delay: .32s; }
[data-reveal]:nth-child(6) { transition-delay: .40s; }
[data-reveal]:nth-child(7) { transition-delay: .48s; }
[data-reveal]:nth-child(8) { transition-delay: .56s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .001s !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- 26. SELECTION & SCROLLBAR ---------- */
::selection { background: var(--brand-500); color: #FFFFFF; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--brand-600), var(--brand-deep));
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover { background: var(--brand-500); }

/* =================================================================
   27. COMPREHENSIVE MOBILE-RESPONSIVE OVERRIDES
   Mobile-first refinements + tablet + small-phone fixes
   ================================================================= */

/* Prevent any element from breaking the viewport horizontally */
html, body { max-width: 100%; overflow-x: hidden; }
img, iframe, video, svg { max-width: 100%; height: auto; }
.container { min-width: 0; }

/* --- Tablet (≤ 1024px) --- */
@media (max-width: 1024px) {
  :root {
    --section-y: clamp(3.5rem, 7vw, 5.5rem);
    --gutter: clamp(1rem, 3.5vw, 1.5rem);
  }
  .section-head { margin-bottom: 2.5rem; }
}

/* --- Mid-tablet / large phones (≤ 820px) --- */
@media (max-width: 820px) {
  :root { --section-y: clamp(3rem, 8vw, 4.5rem); }

  .section-title { font-size: clamp(1.7rem, 6vw, 2.6rem); line-height: 1.15; }
  .section-sub { font-size: .98rem; }
  .eyebrow { font-size: .7rem; letter-spacing: .22em; }

  .lead { font-size: 1.02rem; }
  .feature, .hl-card, .why-card, .price-card, .contact-info, .contact-form { padding: 1.5rem 1.25rem; }

  .news-card { padding: 1.75rem; }
  .news-meta h3 { font-size: 1.4rem; }
  .news-stats > div { padding: 1rem .5rem; }
  .news-stats strong { font-size: 1.1rem; }

  .brochure-card { padding: 1.75rem; gap: 1.5rem; }
  .brochure-mock { width: 180px; height: 250px; }

  .timeline { padding-left: 1rem; }
  .timeline li { padding-left: .75rem; gap: .25rem; }
  .timeline li::before { left: -1.65rem; }

  .footer-grid { gap: 2rem; padding-bottom: 2rem; }
}

/* --- Small tablets / phones (≤ 720px) --- */
@media (max-width: 720px) {
  :root {
    --section-y: clamp(2.75rem, 9vw, 3.75rem);
    --gutter: 1rem;
  }

  /* HERO — handled mobile-first in main hero block; no overrides needed here */

  /* Section heads */
  .section-head { margin-bottom: 2rem; }
  .section-title { font-size: clamp(1.55rem, 7.5vw, 2.2rem); }

  /* Overview */
  .overview-stats { grid-template-columns: 1fr 1fr; gap: .75rem; }
  .stat-card { padding: 1.25rem 1rem; }
  .stat-num { font-size: 2rem; }

  /* Highlights / Features / Why grids fall to single column */
  .features-grid, .highlights-grid, .why-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* Amenities */
  .amenity-grid { gap: .75rem; }
  .amenity-card { padding: 1.5rem 1rem; }
  .am-icon { width: 60px; height: 60px; font-size: 1.4rem; }
  .amenity-card h4 { font-size: 1.05rem; }

  /* Pricing */
  .price-card h3 { font-size: 2.2rem; }
  .price-amount .amt { font-size: 1.6rem; }

  /* Master plan tabs scroll on small */
  .plan-tabs {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: .3rem;
  }
  .plan-tabs::-webkit-scrollbar { display: none; }
  .plan-tab { flex: 0 0 auto; padding: .55rem .95rem; font-size: .82rem; }
  .plan-meta { padding: 1.5rem 1.25rem; }
  .plan-meta h3 { font-size: 1.5rem; }

  /* Masonry */
  .masonry { gap: .65rem; }

  /* Location */
  .loc-map { min-height: 280px; }
  .loc-timeline h3 { font-size: 1.4rem; margin-bottom: 1.25rem; }
  .timeline li { grid-template-columns: 1fr; gap: .15rem; padding-bottom: 1.25rem; }
  .t-time { font-size: .95rem; }
  .timeline li strong { font-size: .95rem; }
  .spiritual-strip { padding: 1.25rem 1rem; }
  .chips span { font-size: .76rem; padding: .35rem .7rem; }

  /* News */
  .news-card { padding: 1.5rem 1.25rem; }
  .news-meta h3 { font-size: 1.2rem; line-height: 1.3; }
  .news-stats > div { padding: .85rem .25rem; }
  .news-stats strong { font-size: 1rem; }
  .news-stats span { font-size: .65rem; letter-spacing: .12em; }

  /* Brochure */
  .brochure-card { padding: 1.5rem 1.25rem; }
  .brochure-mock { width: 150px; height: 210px; transform: rotateY(0); }
  .brochure-art { min-height: 200px; }
  .brochure-copy h2 { font-size: 1.5rem; }
  .brochure-actions .btn-lg { padding: .85rem 1.25rem; font-size: .9rem; width: 100%; justify-content: center; }

  /* Contact */
  .contact-info, .contact-form { padding: 1.5rem 1.25rem; }
  .contact-info h3, .contact-form h3 { font-size: 1.3rem; }
  .ci-icon { width: 38px; height: 38px; font-size: .9rem; }
  .contact-list li { grid-template-columns: 42px 1fr; gap: .75rem; padding: .85rem 0; }

  /* Footer */
  .site-footer { padding-top: 3rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; }
  .f-col h5 { margin-bottom: 1rem; }
  .fb-row { flex-direction: column; text-align: center; gap: .75rem; }
  .fb-links { justify-content: center; }
  .fb-managed { justify-content: center; }

  /* Buttons sit more comfortably */
  .btn { padding: .8rem 1.25rem; font-size: .88rem; }
  .btn-lg { padding: .95rem 1.4rem; font-size: .95rem; }

  /* floating-ctas is hidden on mobile (see earlier rule) — keep tooltips off
     so any residual paint state is silent. */
  .fcta-tip { display: none; }

  /* Lightbox controls move to bottom */
  .lb-close { top: 1rem; right: 1rem; width: 42px; height: 42px; }
  .lb-prev, .lb-next { width: 42px; height: 42px; top: auto; bottom: 1rem; transform: none; }
  .lb-prev:hover, .lb-next:hover { transform: scale(1.05); }
  .lb-prev { left: 50%; transform: translateX(calc(-100% - 6px)); }
  .lb-next { right: 50%; transform: translateX(calc(100% + 6px)); }
  .lb-prev:hover { transform: translateX(calc(-100% - 6px)) scale(1.05); }
  .lb-next:hover { transform: translateX(calc(100% + 6px)) scale(1.05); }
  .lb-figure { width: 94vw; }
  .lb-figure figcaption { font-size: .85rem; padding: 0 1rem; }

  /* Mobile bottom CTA */
  .mobile-cta-bar a { padding: .65rem .35rem; font-size: .76rem; gap: .35rem; }
  .mobile-cta-bar a i { font-size: .95rem; }
}

/* --- Small phones (≤ 480px) --- */
@media (max-width: 480px) {
  :root { --gutter: .9rem; }

  /* Hero handled mobile-first */

  .section-title { font-size: clamp(1.45rem, 8vw, 1.95rem); }
  .section-head { margin-bottom: 1.75rem; }

  .stat-card { padding: 1rem .9rem; }
  .stat-num { font-size: 1.75rem; }
  .stat-label { font-size: .8rem; }

  .price-card h3 { font-size: 1.9rem; }
  .ribbon { font-size: .65rem; padding: .3rem .7rem; right: 14px; }

  .feature i { font-size: 1.4rem; }
  .feature h4, .hl-card h4, .why-card h4 { font-size: 1.1rem; }
  .why-num { font-size: 2.1rem; }

  .am-icon { width: 54px; height: 54px; font-size: 1.25rem; }
  .amenity-card h4 { font-size: .98rem; }
  .amenity-grid { grid-template-columns: 1fr 1fr; }

  .plan-meta { padding: 1.25rem 1rem; }
  .plan-meta h3 { font-size: 1.3rem; }
  .plan-figure { min-height: 220px; }

  .news-card { padding: 1.25rem 1rem; }
  .news-stats { grid-template-columns: 1fr; }
  .news-stats > div { border-left: 0; border-top: 1px solid var(--line-soft); padding: .65rem 0; }
  .news-stats > div:first-child { border-top: 0; }

  .brochure-card { padding: 1.25rem 1rem; }
  .brochure-mock { width: 130px; height: 180px; }

  .contact-info h3, .contact-form h3 { font-size: 1.15rem; }
  .field input, .field select, .field textarea { padding: .75rem .9rem; font-size: .9rem; }
  .field > span { font-size: .72rem; }

  .footer-bottom { padding: 1.25rem 0; }
  .fb-row { font-size: .78rem; }
  .fb-links { gap: .85rem; font-size: .78rem; }

  /* Mobile CTA bar — tighter padding on small phones */
  .mobile-cta-bar { left: 8px; right: 8px; bottom: 8px; padding: .4rem; }
  .mobile-cta-bar a { font-size: .72rem; padding: .6rem .25rem; }

  /* Scrollbar slimmer on mobile */
  ::-webkit-scrollbar { width: 6px; height: 6px; }
}

/* --- Tiny phones (≤ 360px) --- */
@media (max-width: 360px) {
  :root { --gutter: .75rem; }
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 1.35rem; }
  .price-card h3 { font-size: 1.7rem; }
  .amenity-grid { grid-template-columns: 1fr; }
  .brand-name { font-size: .92rem; }
  .floating-ctas { display: none; }
}

/* --- Landscape phones (short height) --- */
@media (max-height: 520px) and (orientation: landscape) {
  .hero { padding: 4rem 0 2.5rem; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-meta { padding: .65rem; }
  .meta-value { font-size: 1rem; }
  .hero-scroll { display: none; }
  .hero-trust { position: static; }
}

/* Utility bar — handled inside its main block now */

/* =================================================================
   28. THEME TOGGLE BUTTON
   ================================================================= */
.theme-toggle {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  position: relative;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-soft);
  color: var(--text-200);
  transition: background var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease);
  overflow: hidden;
  flex-shrink: 0;
}
.theme-toggle:hover {
  background: rgba(44,122,75,.12);
  border-color: var(--brand-500);
  color: var(--brand-300);
  transform: rotate(15deg);
}
.theme-toggle i {
  font-size: 1rem;
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  transition: opacity var(--t-base) var(--ease),
              transform var(--t-base) var(--ease);
}
.theme-toggle .t-sun { opacity: 0; transform: scale(.6) rotate(90deg); }
.theme-toggle .t-moon { opacity: 1; transform: scale(1) rotate(0); }
[data-theme="light"] .theme-toggle .t-sun  { opacity: 1; transform: scale(1) rotate(0); }
[data-theme="light"] .theme-toggle .t-moon { opacity: 0; transform: scale(.6) rotate(-90deg); }
@media (max-width: 480px) {
  .theme-toggle { width: 36px; height: 36px; }
  .theme-toggle i { font-size: .9rem; }
}
@media (max-width: 380px) {
  .theme-toggle { width: 34px; height: 34px; }
}

/* =================================================================
   29. LIGHT THEME — warm cream/white with emerald accents
   ================================================================= */
[data-theme="light"] {
  --bg-0:     #EFEAD9;   /* warm ivory */
  --bg-1:     #FAF6EC;   /* primary cream */
  --bg-2:     #FFFFFF;   /* card surface */
  --bg-3:     #F4EFE0;   /* subtle */
  --line:     rgba(44,122,75,.22);
  --line-soft: rgba(20,57,31,.10);

  --text-100: #0F1F15;
  --text-200: #1F2A22;
  --text-300: #4A5550;
  --text-400: #6B7570;
  --text-500: #9AA39E;

  --shadow-sm: 0 4px 14px rgba(20,57,31,.10);
  --shadow-md: 0 12px 40px rgba(20,57,31,.14);
  --shadow-lg: 0 24px 80px rgba(20,57,31,.18);
  --shadow-brand: 0 14px 44px rgba(44,122,75,.30);

  color-scheme: light;
}

[data-theme="light"] body { background: var(--bg-1); color: var(--text-200); }
[data-theme="light"] meta[name="theme-color"] { /* informative only */ }

/* Header */
[data-theme="light"] .site-header { background: rgba(250,246,236,.65); }
[data-theme="light"] .site-header.scrolled {
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 30px rgba(20,57,31,.10);
  border-bottom-color: var(--line);
}
/* Utility bar keeps its green gradient in both themes — high-impact phone CTA */

[data-theme="light"] .primary-nav a { color: var(--text-300); }
[data-theme="light"] .primary-nav a:hover { color: var(--text-100); }
[data-theme="light"] .primary-nav a.active { color: var(--brand-500); }
@media (max-width: 1080px) {
  [data-theme="light"] .primary-nav {
    background: rgba(255,255,255,.98);
    border-bottom-color: var(--line);
  }
}
[data-theme="light"] .theme-toggle {
  background: rgba(20,57,31,.05);
  border-color: var(--line);
  color: var(--brand-500);
}
[data-theme="light"] .theme-toggle:hover { background: rgba(44,122,75,.12); color: var(--brand-600); }
[data-theme="light"] .nav-toggle {
  background: rgba(20,57,31,.05);
  border-color: var(--line);
}
[data-theme="light"] .nav-toggle span { background: var(--brand-500); }
[data-theme="light"] .btn-ghost {
  background: rgba(20,57,31,.05);
  border-color: var(--line);
  color: var(--text-200);
}
[data-theme="light"] .btn-ghost:hover { background: rgba(44,122,75,.08); color: var(--brand-600); }
[data-theme="light"] .btn-outline {
  background: rgba(44,122,75,.04);
  color: var(--brand-600);
  border-color: var(--brand-500);
}
[data-theme="light"] .btn-outline:hover { background: rgba(44,122,75,.10); color: var(--brand-600); }

/* Brand text */
[data-theme="light"] .brand-name { color: var(--text-100); }
[data-theme="light"] .brand-mark {
  background: #FFFFFF;
  box-shadow: 0 8px 24px rgba(44,122,75,.18),
              inset 0 0 0 1px rgba(44,122,75,.22);
}

/* Hero */
[data-theme="light"] .hero-img {
  background:
    radial-gradient(ellipse at 50% 25%, rgba(44,122,75,.18), transparent 60%),
    linear-gradient(180deg, #FAF6EC 0%, #F1ECDD 100%);
}
[data-theme="light"] .hero-img::before {
  background:
    radial-gradient(circle at 18% 80%, rgba(44,122,75,.14), transparent 38%),
    radial-gradient(circle at 85% 20%, rgba(20,57,31,.10), transparent 42%);
}
[data-theme="light"] .hero-img::after {
  background-image:
    linear-gradient(rgba(44,122,75,.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44,122,75,.10) 1px, transparent 1px);
  opacity: .7;
}
[data-theme="light"] .hero-gradient {
  background: linear-gradient(180deg, rgba(250,246,236,0) 30%, rgba(250,246,236,.95) 92%);
}
[data-theme="light"] .hero-vignette {
  background: radial-gradient(ellipse at center, transparent 40%, rgba(20,57,31,.10));
}
[data-theme="light"] .hero-title { color: var(--text-100); }
[data-theme="light"] .hero-tagline { color: var(--text-300); }
[data-theme="light"] .hero-eyebrow { color: var(--brand-600); }
[data-theme="light"] .hero-eyebrow .line { background: linear-gradient(90deg, transparent, var(--brand-500), transparent); }
[data-theme="light"] .hero-meta {
  background:
    linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.65)),
    rgba(255,255,255,.7);
  border-color: var(--line);
  box-shadow: 0 8px 24px rgba(20,57,31,.08);
}
[data-theme="light"] .meta-value { color: var(--text-100); }
[data-theme="light"] .meta-label { color: var(--text-400); }
[data-theme="light"] .meta + .meta::before { background: rgba(20,57,31,.10); }
[data-theme="light"] .hero-trust { background: rgba(255,255,255,.75); border-top-color: var(--line); }
[data-theme="light"] .trust-row { color: var(--text-300); }
[data-theme="light"] .hero-scroll { color: var(--text-400); }
[data-theme="light"] .scroll-line { background: rgba(20,57,31,.15); }

/* Glass surfaces */
[data-theme="light"] .glass {
  background:
    linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.55)),
    rgba(255,255,255,.7);
  border-color: var(--line);
  box-shadow: 0 14px 36px rgba(20,57,31,.10);
}
[data-theme="light"] .glass::before {
  background: linear-gradient(135deg, rgba(44,122,75,.35), rgba(20,57,31,.06) 40%, rgba(44,122,75,0) 70%);
}

/* Section backgrounds */
[data-theme="light"] .overview { background: linear-gradient(180deg, var(--bg-1), var(--bg-0)); }
[data-theme="light"] .highlights { background: var(--bg-0); }
[data-theme="light"] .why-invest {
  background:
    radial-gradient(ellipse at top, rgba(44,122,75,.08), transparent 60%),
    var(--bg-1);
}
[data-theme="light"] .price-section { background: var(--bg-0); }
[data-theme="light"] .amenities {
  background:
    radial-gradient(ellipse at bottom, rgba(44,122,75,.08), transparent 60%),
    var(--bg-1);
}
[data-theme="light"] .master-plan { background: var(--bg-0); }
[data-theme="light"] .gallery-section { background: var(--bg-1); }
[data-theme="light"] .location { background: var(--bg-0); }
[data-theme="light"] .brochure-cta { background: var(--bg-1); }
[data-theme="light"] .contact { background: var(--bg-0); }

/* Cards & non-glass surfaces */
[data-theme="light"] .feature {
  background: linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.65));
  border-color: var(--line-soft);
}
[data-theme="light"] .feature:hover {
  background: linear-gradient(180deg, rgba(44,122,75,.08), rgba(255,255,255,.55));
  border-color: var(--brand-500);
}
[data-theme="light"] .why-card {
  background: linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.55));
  border-color: var(--line-soft);
}
[data-theme="light"] .why-card:hover { border-color: var(--brand-500); }
[data-theme="light"] .amenity-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.65)),
    rgba(255,255,255,.8);
  border-color: var(--line-soft);
}
[data-theme="light"] .amenity-card:hover { border-color: var(--brand-500); }
[data-theme="light"] .amenity-card::before {
  background: radial-gradient(circle, rgba(44,122,75,.18), transparent 60%);
}

/* Price */
[data-theme="light"] .price-card.featured {
  background:
    linear-gradient(180deg, rgba(44,122,75,.10), rgba(44,122,75,.02)),
    rgba(255,255,255,.92);
  border-color: rgba(44,122,75,.45);
}
[data-theme="light"] .price-features li { color: var(--text-300); border-bottom-color: var(--line-soft); }
[data-theme="light"] .price-amount .amt { color: var(--text-100); }

/* Highlights icons */
[data-theme="light"] .hl-icon {
  background: rgba(44,122,75,.08);
  border-color: var(--line);
}

/* Master plan */
[data-theme="light"] .plan-tabs {
  background: rgba(255,255,255,.75);
  border-color: var(--line-soft);
}
[data-theme="light"] .plan-tab { color: var(--text-300); }
[data-theme="light"] .plan-tab:hover { color: var(--text-100); }
[data-theme="light"] .plan-200 { background: linear-gradient(135deg, #E5F1EA 0%, #FAF6EC 100%); }
[data-theme="light"] .plan-300 { background: linear-gradient(135deg, #DBEDE2 0%, #FAF6EC 100%); }
[data-theme="light"] .plan-500 { background: linear-gradient(135deg, #D2E8DA 0%, #FAF6EC 100%); }
[data-theme="light"] .plan-layout { background: linear-gradient(135deg, #C9E3D2 0%, #FAF6EC 100%); }
[data-theme="light"] .plan-image::after {
  background-image:
    linear-gradient(rgba(44,122,75,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44,122,75,.18) 1px, transparent 1px),
    radial-gradient(circle at 30% 60%, rgba(44,122,75,.22), transparent 35%);
}
[data-theme="light"] .plan-zoom {
  background: rgba(255,255,255,.85);
  color: var(--brand-600);
  border-color: var(--line);
}
[data-theme="light"] .plan-zoom:hover { background: rgba(44,122,75,.15); color: var(--brand-600); }

/* Masonry — switch to light gradient placeholders */
[data-theme="light"] .m-item { background: #ECE6D2; border-color: var(--line-soft); }
[data-theme="light"] .m-1::before {
  background-image:
    linear-gradient(135deg, rgba(255,255,255,.4), rgba(0,0,0,0)),
    radial-gradient(circle at 30% 40%, rgba(44,122,75,.4), transparent 50%),
    linear-gradient(135deg, #E5F1EA, #FAF6EC);
}
[data-theme="light"] .m-2::before {
  background-image:
    linear-gradient(135deg, rgba(255,255,255,.35), rgba(0,0,0,0)),
    radial-gradient(circle at 70% 50%, rgba(20,57,31,.3), transparent 55%),
    linear-gradient(135deg, #DBEDE2, #FAF6EC);
}
[data-theme="light"] .m-3::before {
  background-image:
    linear-gradient(135deg, rgba(255,255,255,.4), rgba(0,0,0,0)),
    radial-gradient(circle at 50% 60%, rgba(44,122,75,.32), transparent 55%),
    linear-gradient(135deg, #D2E8DA, #FAF6EC);
}
[data-theme="light"] .m-4::before {
  background-image:
    linear-gradient(135deg, rgba(255,255,255,.4), rgba(0,0,0,0)),
    radial-gradient(circle at 50% 50%, rgba(44,122,75,.28), transparent 55%),
    linear-gradient(135deg, #C9E3D2, #FAF6EC);
}
[data-theme="light"] .m-5::before {
  background-image:
    linear-gradient(135deg, rgba(255,255,255,.35), rgba(0,0,0,0)),
    radial-gradient(circle at 30% 60%, rgba(20,57,31,.32), transparent 55%),
    linear-gradient(135deg, #C0DEC9, #FAF6EC);
}
[data-theme="light"] .m-6::before {
  background-image:
    linear-gradient(135deg, rgba(255,255,255,.4), rgba(0,0,0,0)),
    radial-gradient(circle at 60% 40%, rgba(44,122,75,.26), transparent 55%),
    linear-gradient(135deg, #DBEDE2, #FAF6EC);
}
[data-theme="light"] .m-overlay {
  background: linear-gradient(180deg, transparent 40%, rgba(20,57,31,.78));
  color: #F5F1EA;
}

/* Location */
[data-theme="light"] .loc-map iframe { filter: grayscale(.2) contrast(1) brightness(1); }
[data-theme="light"] .map-overlay {
  background: rgba(255,255,255,.92);
  color: var(--text-200);
}
[data-theme="light"] .timeline { border-left-color: var(--line); }
[data-theme="light"] .timeline li::before { background: rgba(44,122,75,.18); }
[data-theme="light"] .timeline li strong { color: var(--text-100); }
[data-theme="light"] .timeline li span { color: var(--text-400); }
[data-theme="light"] .t-time { color: var(--brand-600); }
[data-theme="light"] .spiritual-strip {
  background: rgba(44,122,75,.06);
  border-color: var(--line);
}
[data-theme="light"] .spiritual-strip h4 { color: var(--brand-600); }
[data-theme="light"] .chips span {
  background: rgba(255,255,255,.85);
  border-color: var(--line);
  color: var(--text-200);
}

/* Brochure */
[data-theme="light"] .brochure-card {
  background:
    radial-gradient(ellipse at 80% 30%, rgba(44,122,75,.16), transparent 50%),
    linear-gradient(135deg, rgba(44,122,75,.05), rgba(255,255,255,0)),
    rgba(255,255,255,.85);
  border-color: var(--line);
}
[data-theme="light"] .brochure-copy h2 { color: var(--text-100); }
[data-theme="light"] .brochure-copy p { color: var(--text-300); }
[data-theme="light"] .b-mock-front {
  background:
    radial-gradient(circle at 20% 20%, rgba(44,122,75,.22), transparent 45%),
    linear-gradient(180deg, #FFFFFF, #F5EFDF);
  border-color: var(--line);
}
[data-theme="light"] .b-mock-back {
  background: linear-gradient(180deg, #F0EAD8, #E2DABF);
  border-color: var(--line-soft);
}
[data-theme="light"] .bm-brand { color: var(--text-100); }
[data-theme="light"] .bm-foot { color: var(--text-400); }

/* Contact form */
[data-theme="light"] .field input,
[data-theme="light"] .field select,
[data-theme="light"] .field textarea {
  background: rgba(255,255,255,.9);
  border-color: var(--line);
  color: var(--text-100);
}
[data-theme="light"] .field input::placeholder,
[data-theme="light"] .field textarea::placeholder { color: var(--text-400); }
[data-theme="light"] .field input:focus,
[data-theme="light"] .field select:focus,
[data-theme="light"] .field textarea:focus {
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(44,122,75,.18);
  border-color: var(--brand-500);
}
[data-theme="light"] .ci-icon {
  background: rgba(44,122,75,.08);
  border-color: var(--line);
}
[data-theme="light"] .check { color: var(--text-300); }
[data-theme="light"] .trust-marks { border-top-color: var(--line-soft); color: var(--text-300); }

/* Featured cards & news */
[data-theme="light"] .news-card { background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.75)); }
[data-theme="light"] .news-stats > div { border-left-color: var(--line-soft); }
[data-theme="light"] .news-stats strong { color: var(--brand-600); }
[data-theme="light"] .news-stats span { color: var(--text-400); }

/* Footer */
[data-theme="light"] .site-footer { background: var(--bg-0); border-top-color: var(--line); }
[data-theme="light"] .f-col h5 { color: var(--brand-600); }
[data-theme="light"] .f-col ul li, [data-theme="light"] .f-brand p { color: var(--text-300); }
[data-theme="light"] .f-col a:hover { color: var(--brand-600); }
[data-theme="light"] .footer-bottom { border-top-color: var(--line-soft); }
[data-theme="light"] .fb-row, [data-theme="light"] .fb-links a { color: var(--text-400); }
[data-theme="light"] .fb-links a:hover { color: var(--brand-600); }
[data-theme="light"] .f-social a {
  background: rgba(20,57,31,.04);
  border-color: var(--line);
  color: var(--text-300);
}

/* Floating CTAs / mobile bar */
[data-theme="light"] .fcta-enq {
  background: #FFFFFF;
  border-color: var(--line);
  color: var(--brand-600);
}
[data-theme="light"] .fcta-tip {
  background: rgba(255,255,255,.95);
  border-color: var(--line);
  color: var(--text-100);
}
[data-theme="light"] .mobile-cta-bar {
  background: rgba(255,255,255,.95);
  border-color: var(--line);
  box-shadow: 0 -8px 30px rgba(20,57,31,.12);
}
[data-theme="light"] .mobile-cta-bar a { color: var(--text-200); }
[data-theme="light"] .mobile-cta-bar a.primary { color: #FFFFFF; }

/* Lightbox in light mode */
[data-theme="light"] .lightbox { background: rgba(250,246,236,.95); }
[data-theme="light"] .lb-close,
[data-theme="light"] .lb-prev,
[data-theme="light"] .lb-next {
  background: rgba(255,255,255,.92);
  border-color: var(--line);
  color: var(--brand-600);
}
[data-theme="light"] .lb-figure figcaption { color: var(--text-300); }

/* Scrollbar */
[data-theme="light"] ::-webkit-scrollbar-track { background: var(--bg-0); }
[data-theme="light"] ::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--brand-500), var(--brand-deep));
}
[data-theme="light"] ::selection { background: var(--brand-500); color: #FFFFFF; }

/* Section heading colors */
[data-theme="light"] .section-title { color: var(--text-100); }
[data-theme="light"] .stat-label,
[data-theme="light"] .feature p,
[data-theme="light"] .hl-card p,
[data-theme="light"] .why-card p,
[data-theme="light"] .overview-copy p { color: var(--text-300); }
[data-theme="light"] .lead { color: var(--text-200); }
[data-theme="light"] .feature h4,
[data-theme="light"] .hl-card h4,
[data-theme="light"] .why-card h4,
[data-theme="light"] .amenity-card h4,
[data-theme="light"] .plan-meta h3,
[data-theme="light"] .loc-timeline h3,
[data-theme="light"] .news-meta h3,
[data-theme="light"] .contact-info h3,
[data-theme="light"] .contact-form h3,
[data-theme="light"] .price-card h3 { color: var(--text-100); }

/* Form success in light */
[data-theme="light"] .form-success {
  background: rgba(43,212,106,.10);
  border-color: rgba(43,212,106,.4);
  color: #14532D;
}

/* Section-sub & form-sub */
[data-theme="light"] .section-sub,
[data-theme="light"] .form-sub,
[data-theme="light"] .price-note { color: var(--text-400); }

/* ----- LIGHT THEME BUTTON CONTRAST FIXES ----- */
/* The default brand-grad starts from #8FCBA8 (light mint) which washes out
   white text. In light theme, anchor the gradient at richer greens. */
[data-theme="light"] .btn-primary {
  background: linear-gradient(135deg, #2C7A4B 0%, #1F5C39 55%, #14391F 100%);
  color: #FFFFFF !important;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0,0,0,.18);
  box-shadow: 0 14px 34px rgba(20,57,31,.30);
}
[data-theme="light"] .btn-primary:hover {
  background: linear-gradient(135deg, #1F5C39 0%, #14391F 60%, #0D2614 100%);
  box-shadow: 0 18px 44px rgba(20,57,31,.40);
}
[data-theme="light"] .btn-primary i { color: #FFFFFF; }

/* Ribbon, mobile CTA primary, fcta-call use the same gradient */
[data-theme="light"] .ribbon,
[data-theme="light"] .mobile-cta-bar a.primary,
[data-theme="light"] .fcta-call {
  background: linear-gradient(135deg, #2C7A4B 0%, #1F5C39 55%, #14391F 100%);
  color: #FFFFFF;
}
[data-theme="light"] .fcta-call { box-shadow: 0 14px 34px rgba(20,57,31,.30); }

/* Brand-mark badge in header uses brand-grad as backup; ensure clear */
[data-theme="light"] .brand-mark { color: #FFFFFF; }

/* btn-link in light theme — switch to deep green for readable contrast */
[data-theme="light"] .btn-link {
  color: var(--brand-600);
  font-weight: 600;
}
[data-theme="light"] .btn-link:hover { color: var(--brand-deep); }

/* Header CTAs visibility — make ghost btn outline stronger in light */
[data-theme="light"] .btn-ghost {
  background: #FFFFFF;
  border-color: var(--line);
  color: var(--text-100);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(20,57,31,.06);
}
[data-theme="light"] .btn-ghost:hover {
  background: rgba(44,122,75,.08);
  color: var(--brand-600);
  border-color: var(--brand-500);
}
[data-theme="light"] .btn-ghost i { color: var(--brand-500); }

/* Outline btn — stronger in light theme */
[data-theme="light"] .btn-outline {
  background: #FFFFFF;
  color: var(--brand-600);
  border-color: var(--brand-500);
  font-weight: 600;
}
[data-theme="light"] .btn-outline:hover {
  background: var(--brand-500);
  color: #FFFFFF;
  border-color: var(--brand-500);
}
[data-theme="light"] .btn-outline:hover i { color: #FFFFFF; }

/* Section-title em + stat-num + why-num + bm-sub use brand-grad text-clip;
   in light theme, switch to a stronger gradient so it isn't washed out */
[data-theme="light"] .section-title em,
[data-theme="light"] .stat-num,
[data-theme="light"] .why-num,
[data-theme="light"] .brochure-copy h2 em,
[data-theme="light"] .hero-title .reveal-word:nth-child(2),
[data-theme="light"] .bm-sub {
  background: linear-gradient(135deg, #2C7A4B 0%, #1F5C39 50%, #14391F 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Scroll-progress bar — stronger in light theme */
[data-theme="light"] .scroll-progress {
  background: linear-gradient(90deg, #2C7A4B, #14391F);
}

/* Brand-grad text outside buttons (eyebrow dot, am-line, etc.) — visible in light */
[data-theme="light"] .eyebrow { color: var(--brand-600); font-weight: 600; }
[data-theme="light"] .eyebrow .dot { background: var(--brand-500); box-shadow: 0 0 0 4px rgba(44,122,75,.18); }
[data-theme="light"] .am-line,
[data-theme="light"] .bm-line {
  background: linear-gradient(135deg, #2C7A4B, #14391F);
}

/* Plan-tab active state in light */
[data-theme="light"] .plan-tab.is-active {
  background: linear-gradient(135deg, #2C7A4B 0%, #1F5C39 55%, #14391F 100%);
  color: #FFFFFF;
}

/* Brand-mark img: in light, give it a faint emerald inner ring */
[data-theme="light"] .brand-mark {
  background: linear-gradient(180deg, #FFFFFF, #F7F2E4);
}

/* =================================================================
   30. ENQUIRY POPUP MODAL — premium luxury lead-gen
   ================================================================= */
.enq-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.enq-modal.open { display: flex; opacity: 1; }
.enq-backdrop {
  position: absolute; inset: 0;
  background: rgba(7, 12, 8, .65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.enq-dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: calc(100dvh - 2.5rem);
  background: #FFFFFF;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(20,57,31,.45);
  transform: translateY(24px) scale(.96);
  opacity: 0;
  transition: transform .5s var(--ease-out), opacity .4s var(--ease-out);
  border: 1px solid rgba(44,122,75,.18);
}
.enq-modal.open .enq-dialog { transform: none; opacity: 1; }
.enq-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  color: var(--brand-deep);
  display: grid; place-items: center;
  font-size: 1rem;
  z-index: 3;
  border: 1px solid rgba(20,57,31,.10);
  box-shadow: 0 4px 14px rgba(20,57,31,.20);
  transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.enq-close:hover { transform: rotate(90deg) scale(1.06); background: #fff; }

.enq-art {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}
.enq-art svg { width: 100%; height: 100%; display: block; }
.enq-art::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,57,31,.20) 0%, rgba(20,57,31,.55) 60%, rgba(20,57,31,.85) 100%);
}
.enq-art-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  color: #FFFFFF;
}
.enq-art-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  align-self: flex-start;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  padding: .4rem .85rem;
  border-radius: 999px;
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,.25);
  margin-bottom: 1rem;
}
.enq-art-badge i { color: #FFE9B3; font-size: .82rem; }
.enq-art-overlay h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.05;
  color: #FFFFFF;
}
.enq-art-overlay p {
  margin: .35rem 0 1.1rem;
  font-size: .95rem;
  color: rgba(255,255,255,.85);
}
.enq-art-pills { display: flex; flex-direction: column; gap: .4rem; margin: 0; padding: 0; }
.enq-art-pills li { display: inline-flex; align-items: center; gap: .55rem; font-size: .82rem; color: rgba(255,255,255,.92); }
.enq-art-pills i { color: #FFE9B3; font-size: .72rem; }

.enq-body {
  padding: 2.25rem 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  background: #FFFFFF;
}
.enq-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--brand-600); font-weight: 600; margin-bottom: .65rem;
}
.enq-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand-500);
  box-shadow: 0 0 0 4px rgba(44,122,75,.18);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot { 50% { box-shadow: 0 0 0 8px rgba(44,122,75,.04); } }
.enq-body h2 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  margin: 0 0 .5rem;
  line-height: 1.1;
  color: #0F1F15;
  font-weight: 600;
}
.enq-body h2 em {
  font-style: italic;
  background: linear-gradient(135deg, #2C7A4B, #14391F);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.enq-lead { color: #4A5550; font-size: .92rem; margin: 0 0 1.25rem; line-height: 1.55; }

.enq-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem 1rem;
}
.enq-form .field { display: flex; flex-direction: column; gap: .35rem; }
.enq-form .field.full { grid-column: 1 / -1; }
.enq-form .field > span {
  font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  color: #4A5550; font-weight: 600;
}
.enq-form .field > span em { color: var(--brand-500); font-style: normal; }
.enq-form .field input,
.enq-form .field select,
.enq-form .field textarea {
  background: #FAF8F1;
  border: 1px solid rgba(20,57,31,.12);
  border-radius: 10px;
  padding: .7rem .85rem;
  color: #0F1F15;
  font-size: .9rem;
  font-family: var(--font-body);
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.enq-form .field textarea { resize: vertical; min-height: 64px; }
.enq-form .field input:focus,
.enq-form .field select:focus,
.enq-form .field textarea:focus {
  outline: none;
  background: #FFFFFF;
  border-color: var(--brand-500);
  box-shadow: 0 0 0 4px rgba(44,122,75,.14);
}
.enq-form .field input::placeholder,
.enq-form .field textarea::placeholder { color: #9AA39E; }

.enq-form .btn-block { grid-column: 1 / -1; margin-top: .35rem; }
.enq-form .btn-primary {
  background: linear-gradient(135deg, #2C7A4B 0%, #1F5C39 55%, #14391F 100%);
  color: #FFFFFF;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0,0,0,.18);
}
.enq-form .btn-primary:hover {
  background: linear-gradient(135deg, #1F5C39 0%, #14391F 100%);
}

.enq-secondary {
  grid-column: 1 / -1;
  display: flex; align-items: center; justify-content: center;
  gap: .65rem; margin-top: .15rem; font-size: .85rem;
}
.enq-secondary a { color: var(--brand-600); font-weight: 600; display: inline-flex; align-items: center; gap: .35rem; }
.enq-secondary a:hover { color: var(--brand-deep); text-decoration: underline; }
.enq-secondary span { color: #9AA39E; }

.enq-success {
  grid-column: 1 / -1;
  margin: .25rem 0 0;
  padding: 1.75rem 1.25rem;
  border-radius: 14px;
  background:
    radial-gradient(ellipse at top, rgba(44,122,75,.14), transparent 60%),
    rgba(44, 122, 75, 0.08);
  border: 1px solid rgba(44, 122, 75, 0.30);
  color: var(--text-100);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .55rem;
  animation: successPop .45s var(--ease-out) backwards;
}
.enq-success-badge {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #2C7A4B, #14391F);
  color: #FFFFFF;
  font-size: 1.5rem;
  box-shadow: 0 8px 20px rgba(44,122,75,.35);
  animation: badgePop .55s var(--ease-out) .05s backwards;
}
.enq-success h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  margin: .25rem 0 0;
  color: var(--text-100);
}
.enq-success p {
  margin: 0;
  font-size: .92rem;
  line-height: 1.55;
  color: var(--text-300);
  max-width: 380px;
}
.enq-success p strong { color: var(--brand-600); font-weight: 700; }
.enq-success-brochure {
  margin-top: .5rem !important;
  padding: .5rem .85rem;
  border-radius: 999px;
  background: rgba(44,122,75,.12);
  color: var(--brand-600);
  font-size: .82rem !important;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
[data-theme="dark"] .enq-success h4 { color: #FFFFFF; }
[data-theme="dark"] .enq-success p { color: #C9C7C0; }
[data-theme="dark"] .enq-success p strong { color: #8FCBA8; }
[data-theme="dark"] .enq-success-brochure { color: #8FCBA8; background: rgba(44,122,75,.20); }

.enq-trust {
  margin-top: 1.25rem; padding-top: 1rem;
  border-top: 1px solid rgba(20,57,31,.08);
  display: flex; flex-wrap: wrap; gap: 1rem;
  font-size: .75rem; color: #4A5550;
}
.enq-trust i { color: var(--brand-500); margin-right: .35rem; }

[data-theme="dark"] .enq-dialog { background: #14182A; border-color: rgba(44,122,75,.25); }
[data-theme="dark"] .enq-body { background: #14182A; }
[data-theme="dark"] .enq-body h2 { color: #FFFFFF; }
[data-theme="dark"] .enq-body h2 em {
  background: linear-gradient(135deg, #8FCBA8, #2C7A4B);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
[data-theme="dark"] .enq-lead { color: #C9C7C0; }
[data-theme="dark"] .enq-form .field > span { color: #C9C7C0; }
[data-theme="dark"] .enq-form .field input,
[data-theme="dark"] .enq-form .field select,
[data-theme="dark"] .enq-form .field textarea {
  background: rgba(7,9,15,.45);
  border-color: rgba(255,255,255,.10);
  color: #FFFFFF;
}
[data-theme="dark"] .enq-form .field input::placeholder,
[data-theme="dark"] .enq-form .field textarea::placeholder { color: rgba(255,255,255,.4); }
[data-theme="dark"] .enq-trust { color: #C9C7C0; border-top-color: rgba(255,255,255,.08); }
[data-theme="dark"] .enq-eyebrow { color: #8FCBA8; }
[data-theme="dark"] .enq-secondary a { color: #8FCBA8; }
[data-theme="dark"] .enq-secondary span { color: #6E6A60; }
[data-theme="dark"] .enq-close { background: rgba(20,57,31,.5); color: #FFE9B3; border-color: rgba(255,255,255,.10); }

@media (max-width: 820px) {
  .enq-modal { padding: 0; align-items: flex-end; }
  .enq-dialog {
    grid-template-columns: 1fr;
    border-radius: 22px 22px 0 0;
    max-height: 96dvh;
    transform: translateY(40px);
    width: 100%;
  }
  .enq-art { min-height: 160px; max-height: 180px; }
  .enq-art-overlay { padding: 1.25rem; }
  .enq-art-overlay h3 { font-size: 1.4rem; }
  .enq-art-overlay p { font-size: .82rem; margin-bottom: .75rem; }
  .enq-art-pills li { font-size: .76rem; }
  .enq-body { padding: 1.5rem 1.25rem 1.25rem; }
  .enq-body h2 { font-size: 1.45rem; }
  .enq-form { grid-template-columns: 1fr; gap: .65rem; }
  .enq-trust { gap: .65rem; font-size: .7rem; }
  .enq-close { top: 10px; right: 10px; width: 34px; height: 34px; }
}
@media (max-width: 420px) {
  .enq-body { padding: 1.25rem 1rem 1rem; }
  .enq-body h2 { font-size: 1.3rem; }
  .enq-lead { font-size: .85rem; }
}

body.modal-open { overflow: hidden; }

/* =================================================================
   31. URGENCY & SOCIAL PROOF STRIP
   ================================================================= */
.urgency-strip {
  display: flex; align-items: center; justify-content: center;
  gap: .5rem .75rem; flex-wrap: wrap;
  background: linear-gradient(90deg, rgba(44,122,75,.10), rgba(44,122,75,.04));
  border: 1px solid rgba(44,122,75,.25);
  border-radius: 14px;
  padding: .7rem 1rem;
  margin: 0 auto 1.25rem;
  max-width: 100%;
  width: fit-content;
  font-size: .75rem;
  color: var(--text-200);
  text-align: center;
}
.urgency-strip > span { display: inline-flex; align-items: center; gap: .4rem; white-space: nowrap; }
@media (min-width: 640px) {
  .urgency-strip { font-size: .82rem; gap: 1rem; border-radius: 999px; padding: .6rem 1.25rem; }
}
.urgency-strip i { color: var(--brand-500); }
.urgency-strip strong { color: var(--brand-600); font-weight: 700; }
.urgency-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #E53935;
  box-shadow: 0 0 0 0 rgba(229,57,53,.7);
  animation: redPulse 1.5s ease-out infinite;
  display: inline-block;
}
@keyframes redPulse {
  0% { box-shadow: 0 0 0 0 rgba(229,57,53,.55); }
  100% { box-shadow: 0 0 0 12px rgba(229,57,53,0); }
}
[data-theme="dark"] .urgency-strip {
  background: linear-gradient(90deg, rgba(44,122,75,.18), rgba(44,122,75,.06));
  border-color: rgba(143,203,168,.25);
  color: #F5F1EA;
}
[data-theme="dark"] .urgency-strip strong { color: #8FCBA8; }
@media (max-width: 720px) {
  .urgency-strip { font-size: .74rem; padding: .55rem 1rem; gap: .65rem; }
  .urgency-strip .ux-sep { display: none; }
}

/* =================================================================
   32. HERO BUILDING SKYLINE
   ================================================================= */
.hero-skyline {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  height: clamp(140px, 22vh, 260px);
  z-index: 0;
  opacity: .85;
  pointer-events: none;
}
.hero-skyline svg { width: 100%; height: 100%; display: block; }
[data-theme="dark"] .hero-skyline { opacity: .55; }
@media (max-width: 640px) { .hero-skyline { height: clamp(80px, 14vh, 160px); opacity: .55; } }

/* =================================================================
   30. URGENCY OFFER STRIP (encourages enquiry)
   ================================================================= */
.offer-strip {
  position: relative;
  z-index: 5;
  background: linear-gradient(90deg, rgba(44,122,75,.10), rgba(20,57,31,.05) 50%, rgba(44,122,75,.10));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: .9rem 0;
  overflow: hidden;
}
.offer-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(44,122,75,.10), transparent);
  background-size: 50% 100%;
  background-repeat: no-repeat;
  animation: offerSheen 4.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes offerSheen {
  0%   { background-position: -50% 0; }
  100% { background-position: 150% 0; }
}
.offer-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .85rem 1rem;
  font-size: .92rem;
  color: var(--text-200);
  position: relative;
  z-index: 1;
}
.offer-tag {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .4rem .85rem;
  border-radius: var(--r-pill);
  background: var(--brand-grad);
  color: #FFFFFF;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  flex-shrink: 0;
  box-shadow: var(--shadow-brand);
  white-space: nowrap;
}
.offer-tag i { animation: pulseFire 1.6s ease-in-out infinite; }
@keyframes pulseFire {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: .8; }
}
.offer-text {
  flex: 1 1 280px;
  min-width: 0;
  line-height: 1.45;
}
.offer-text strong { color: var(--brand-600); font-weight: 700; }
.offer-text em { font-family: var(--font-display); font-style: italic; color: var(--text-300); font-size: .92em; }
.offer-row .btn { flex-shrink: 0; white-space: nowrap; }
[data-theme="dark"] .offer-text strong { color: var(--brand-300); }
[data-theme="dark"] .offer-strip { background: linear-gradient(90deg, rgba(44,122,75,.18), rgba(20,57,31,.10) 50%, rgba(44,122,75,.18)); }

/* Mid screens — hide the long italic clause */
@media (max-width: 880px) {
  .offer-text em { display: none; }
  .offer-text { font-size: .9rem; }
}

/* Mobile — stack each piece cleanly */
@media (max-width: 640px) {
  .offer-row {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: .6rem;
  }
  .offer-tag {
    align-self: center;
    font-size: .68rem;
    padding: .35rem .8rem;
  }
  .offer-text {
    width: 100%;
    flex: 1 1 auto;
    font-size: .88rem;
    text-align: center;
  }
  .offer-row .btn {
    width: 100%;
    justify-content: center;
    padding: .65rem 1rem;
    font-size: .85rem;
  }
}
@media (max-width: 420px) {
  .offer-strip { padding: .75rem 0; }
  .offer-tag { font-size: .62rem; padding: .3rem .7rem; letter-spacing: .1em; }
  .offer-text { font-size: .82rem; }
  .offer-row .btn { font-size: .8rem; padding: .65rem .9rem; }
}

/* =================================================================
   31. LIGHT-THEME CONTRAST AUDIT
   Ensures every button, link, badge has visible text in the light theme
   ================================================================= */
[data-theme="light"] .btn-primary {
  color: #FFFFFF !important;            /* white text on green gradient — high contrast */
  text-shadow: 0 1px 0 rgba(20,57,31,.18);
}
[data-theme="light"] .btn-primary i { color: #FFFFFF; }

[data-theme="light"] .btn-outline {
  background: rgba(44,122,75,.06);
  color: var(--brand-600);              /* dark green text on cream */
  border-color: var(--brand-500);
}
[data-theme="light"] .btn-outline:hover { background: rgba(44,122,75,.14); color: var(--brand-600); }
[data-theme="light"] .btn-outline i { color: var(--brand-600); }

[data-theme="light"] .btn-ghost {
  background: #FFFFFF;
  border-color: rgba(44,122,75,.25);
  color: var(--text-100);               /* dark text on white */
  box-shadow: 0 4px 14px rgba(20,57,31,.06);
}
[data-theme="light"] .btn-ghost:hover { background: rgba(44,122,75,.08); color: var(--brand-600); border-color: var(--brand-500); }
[data-theme="light"] .btn-ghost i { color: var(--brand-500); }

[data-theme="light"] .btn-link { color: var(--brand-600); font-weight: 600; }
[data-theme="light"] .btn-link:hover { color: var(--brand-500); }
[data-theme="light"] .btn-link i { color: var(--brand-600); }

/* "Most Popular" ribbon on price-card */
[data-theme="light"] .ribbon { color: #FFFFFF; }

/* Footer brand name needs dark text in light mode */
[data-theme="light"] .site-footer .brand-name { color: var(--text-100); }
[data-theme="light"] .site-footer .brand-sub { color: var(--brand-600); }

/* Stat-card text */
[data-theme="light"] .stat-unit { color: var(--brand-600); }

/* Eyebrow + section eyebrow */
[data-theme="light"] .eyebrow { color: var(--brand-600); }
[data-theme="light"] .eyebrow .dot { background: var(--brand-500); }

/* Hero meta label/value override (already set, but explicit) */
[data-theme="light"] .meta-value i { color: var(--brand-600); }

/* Trust strip in hero (light) */
[data-theme="light"] .trust-row i { color: var(--brand-600); }

/* Price ticks */
[data-theme="light"] .price-features li i { color: var(--brand-500); }
[data-theme="light"] .price-amount .cur { color: var(--brand-500); }

/* Floating CTA tooltip text */
[data-theme="light"] .fcta-tip { color: var(--text-100); }

/* "On Request" label */
[data-theme="light"] .price-tag { color: var(--brand-600); }

/* Plan-meta list ticks */
[data-theme="light"] .plan-meta ul li i { color: var(--brand-500); }
[data-theme="light"] .plan-meta ul li { color: var(--text-300); }
[data-theme="light"] .plan-meta p { color: var(--text-300); }

/* Hero scroll indicator text */
[data-theme="light"] .hero-scroll { color: var(--text-400); }

/* Section sub & form labels */
[data-theme="light"] .field > span,
[data-theme="light"] .field > span em { color: var(--text-300); }
[data-theme="light"] .field > span em { color: var(--brand-500); }

/* News-stats borders in light */
[data-theme="light"] .news-stats > div { border-left-color: var(--line); }
@media (max-width: 480px) {
  [data-theme="light"] .news-stats > div { border-top-color: var(--line); }
}

/* Brochure mockup brand text */
[data-theme="light"] .bm-sub { color: var(--brand-600); }

/* Feature/highlight/why icons should always have visible color */
[data-theme="light"] .feature i,
[data-theme="light"] .hl-card .hl-icon,
[data-theme="light"] .am-icon { color: var(--brand-600); }
[data-theme="light"] .why-num {
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Master plan tab in light theme */
[data-theme="light"] .plan-tab.is-active { color: #FFFFFF; }

/* Footer copyright row */
[data-theme="light"] .fb-row p { color: var(--text-400); }

/* Spiritual chip strip header */
[data-theme="light"] .spiritual-strip { background: rgba(44,122,75,.08); }

/* Mobile-bar Enquire stays gradient-green with white text */
[data-theme="light"] .mobile-cta-bar a.primary { color: #FFFFFF; }

/* Modal already gets dark theme via [data-theme="dark"] — ensure light mode is light surface */
[data-theme="light"] .enq-dialog { background: #FFFFFF; border-color: var(--line); }
[data-theme="light"] .enq-body { color: var(--text-200); }
[data-theme="light"] .enq-body h2 { color: var(--text-100); }
[data-theme="light"] .enq-lead, [data-theme="light"] .enq-trust { color: var(--text-300); }
[data-theme="light"] .enq-trust i { color: var(--brand-500); }
[data-theme="light"] .enq-close {
  background: rgba(255,255,255,.95);
  border-color: var(--line);
  color: var(--brand-600);
}
[data-theme="light"] .enq-backdrop { background: rgba(15,31,21,.45); }
[data-theme="light"] .enq-form input,
[data-theme="light"] .enq-form select,
[data-theme="light"] .enq-form textarea {
  background: #FFFFFF;
  border-color: var(--line);
  color: var(--text-100);
}
[data-theme="light"] .enq-form input:focus,
[data-theme="light"] .enq-form select:focus,
[data-theme="light"] .enq-form textarea:focus {
  background: #FFFFFF;
  border-color: var(--brand-500);
  box-shadow: 0 0 0 4px rgba(44,122,75,.18);
}
[data-theme="light"] .enq-secondary a { color: var(--brand-600); }

/* =================================================================
   33. NEWS & UPDATES — premium media card grid
   ================================================================= */
.news-updates {
  background:
    radial-gradient(ellipse at top, rgba(44,122,75,.06), transparent 60%),
    var(--bg-1);
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.news-card-v {
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0)),
    rgba(18,23,38,.45);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t-base) var(--ease),
              box-shadow var(--t-base) var(--ease),
              border-color var(--t-base) var(--ease);
}
.news-card-v:hover {
  transform: translateY(-6px);
  border-color: rgba(44,122,75,.4);
  box-shadow: var(--shadow-md);
}
.news-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16/10;
  width: 100%;
  background: #F5F1E8;
  overflow: hidden;
  cursor: zoom-in;
}
.news-thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 1s var(--ease);
  display: block;
}
.news-thumb::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(20,57,31,.50) 100%);
  transition: opacity .4s var(--ease);
  opacity: .8;
}
.news-card-v:hover .news-thumb img { transform: scale(1.06); }
.news-card-v:hover .news-thumb::after { opacity: .95; }

.news-cat {
  position: absolute;
  top: 1rem; left: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: .35rem .85rem;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--brand-deep);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(20,57,31,.12);
}

.news-body {
  padding: 1.5rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  flex: 1;
}
.news-date {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-400);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.news-date i { color: var(--brand-500); font-size: .75rem; }
.news-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
  color: var(--text-100);
  text-wrap: balance;
}
.news-body p {
  margin: 0;
  color: var(--text-300);
  font-size: .9rem;
  line-height: 1.55;
  flex: 1;
}
.news-body .btn-link {
  margin-top: .35rem;
  font-size: .85rem;
  font-weight: 600;
  align-self: flex-start;
}

.news-cta-row {
  margin-top: 3rem;
  text-align: center;
}

/* LIGHT THEME for news cards */
[data-theme="light"] .news-card-v {
  background: linear-gradient(180deg, #FFFFFF, rgba(255,255,255,.85));
  border-color: var(--line-soft);
}
[data-theme="light"] .news-card-v:hover {
  border-color: rgba(44,122,75,.45);
  box-shadow: 0 18px 50px rgba(20,57,31,.15);
}
[data-theme="light"] .news-thumb { background: #FAF6EC; }
[data-theme="light"] .news-thumb::after {
  background: linear-gradient(180deg, transparent 60%, rgba(20,57,31,.35) 100%);
}
[data-theme="light"] .news-body h3 { color: var(--text-100); }
[data-theme="light"] .news-body p { color: var(--text-300); }
[data-theme="light"] .news-date { color: var(--text-400); }
[data-theme="light"] .news-cat { color: var(--brand-600); }

/* RESPONSIVE */
@media (max-width: 980px) {
  .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
}
@media (max-width: 600px) {
  .news-grid { grid-template-columns: 1fr; gap: 1rem; }
  .news-body { padding: 1.25rem 1.1rem; }
  .news-body h3 { font-size: 1.1rem; }
  .news-cta-row { margin-top: 2rem; }
}


/* =================================================================
   34. FORM HONEYPOT + ERROR STATES (server-rendered messages)
   ================================================================= */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-error,
.enq-error {
  grid-column: 1 / -1;
  margin: .5rem 0 0;
  padding: .85rem 1rem;
  border-radius: 12px;
  background: rgba(229, 57, 53, 0.10);
  border: 1px solid rgba(229, 57, 53, 0.40);
  color: #B0302C;
  font-size: .92rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  line-height: 1.4;
  animation: errorSlide .4s var(--ease-out) backwards;
}
@keyframes errorSlide {
  0%   { opacity: 0; transform: translateY(-6px); }
  100% { opacity: 1; transform: translateY(0); }
}
.form-error i,
.enq-error i { color: #B0302C; flex-shrink: 0; }
[data-theme="dark"] .form-error,
[data-theme="dark"] .enq-error {
  background: rgba(229, 57, 53, 0.18);
  color: #F5A8A5;
}
[data-theme="dark"] .form-error i,
[data-theme="dark"] .enq-error i { color: #F5A8A5; }

.field.has-error input,
.field.has-error select,
.field.has-error textarea,
.enq-form .field.has-error input,
.enq-form .field.has-error select,
.enq-form .field.has-error textarea {
  border-color: rgba(229, 57, 53, 0.55) !important;
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.12) !important;
}

.btn.is-loading {
  pointer-events: none;
  opacity: .85;
  position: relative;
}
.btn.is-loading > span,
.btn.is-loading > i { opacity: 0; }
.btn.is-loading::after {
  content: "";
  position: absolute;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: #FFFFFF;
  animation: btnSpin .8s linear infinite;
}
@keyframes btnSpin { to { transform: rotate(360deg); } }

/* =================================================================
   35. HERO BACKGROUND VIDEO
   ================================================================= */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: .55;
  pointer-events: none;
}
[data-theme="light"] .hero-video { opacity: .22; mix-blend-mode: multiply; }
@media (prefers-reduced-motion: reduce) { .hero-video { display: none; } }

/* =================================================================
   36. WALKTHROUGH — PREMIUM 4-CARD VIDEO SHOWCASE
   ================================================================= */
.walkthrough {
  background:
    radial-gradient(ellipse at top, rgba(44,122,75,.06), transparent 60%),
    var(--bg-1);
}
.video-showcase {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}
.video-card {
  position: relative;
  margin: 0;
  display: flex;
  flex-direction: column;
  border-radius: var(--r-lg);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,0)),
    rgba(18, 23, 38, 0.55);
  border: 1px solid var(--line-soft);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 18px 44px rgba(20,57,31,.18);
  transition: transform var(--t-base) var(--ease),
              box-shadow var(--t-base) var(--ease),
              border-color var(--t-base) var(--ease);
}
.video-card:hover {
  transform: translateY(-6px);
  border-color: rgba(44,122,75,.4);
  box-shadow: 0 28px 60px rgba(20,57,31,.28);
}
.video-card::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(44,122,75,.35), rgba(255,255,255,.04) 40%, rgba(44,122,75,0) 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.vc-label {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: .35rem .8rem;
  border-radius: 999px;
  background: rgba(7,9,15,.55);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #FFFFFF;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
[data-theme="light"] .vc-label {
  background: rgba(255,255,255,.92);
  color: var(--brand-deep);
  border-color: rgba(44,122,75,.18);
}

.vc-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #050811;
  overflow: hidden;
}
.vc-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #050811;
  border-radius: 0;
}

.vc-body {
  padding: 1.1rem 1.15rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1;
}
.vc-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-100);
  margin: 0;
}
.vc-body p {
  margin: 0;
  font-size: .85rem;
  line-height: 1.55;
  color: var(--text-300);
  flex: 1;
}
.vc-cta {
  margin-top: .35rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--brand-300);
  text-decoration: none;
  transition: gap var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
  align-self: flex-start;
}
.vc-cta:hover { gap: .6rem; color: var(--brand-100); }
[data-theme="light"] .vc-cta { color: var(--brand-600); }
[data-theme="light"] .vc-cta:hover { color: var(--brand-deep); }

/* Light theme card surface */
[data-theme="light"] .video-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.55)),
    rgba(255,255,255,.7);
  box-shadow: 0 14px 36px rgba(20,57,31,.10);
}
[data-theme="light"] .video-card:hover {
  box-shadow: 0 22px 50px rgba(20,57,31,.18);
}
[data-theme="light"] .vc-body h3 { color: var(--text-100); }
[data-theme="light"] .vc-body p { color: var(--text-300); }

/* Responsive — 4 → 2 → 1 columns */
@media (max-width: 1180px) {
  .video-showcase { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
}
@media (max-width: 620px) {
  .video-showcase { grid-template-columns: 1fr; gap: 1rem; }
  .vc-frame { aspect-ratio: 16 / 11; }
  .vc-body { padding: 1rem 1rem 1.1rem; }
  .vc-body h3 { font-size: 1.05rem; }
  .vc-body p  { font-size: .82rem; }
}

/* =================================================================
   37. PRICING — strike-through + new-price highlight
   ================================================================= */
.price-strip {
  display: inline-flex !important;
  align-items: baseline;
  gap: .45rem;
  white-space: nowrap !important;
  font-family: var(--font-display);
}
.price-strip .price-old {
  font-size: .65em;
  color: var(--text-400);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(229,57,53,.65);
  opacity: .8;
  font-weight: 400;
}
.price-strip .price-new {
  font-weight: 700;
  background: linear-gradient(135deg, #2C7A4B, #14391F);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
[data-theme="dark"] .price-strip .price-new {
  background: linear-gradient(135deg, #8FCBA8, #2C7A4B);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-card.stat-price { position: relative; }
.stat-price-old {
  position: absolute;
  top: .85rem; right: 1rem;
  font-family: var(--font-body);
  font-size: .85rem;
  color: var(--text-400);
  text-decoration: line-through;
  text-decoration-color: rgba(229,57,53,.7);
  text-decoration-thickness: 1.5px;
  font-weight: 500;
  padding: .2rem .5rem;
  border-radius: 6px;
  background: rgba(229,57,53,.07);
}
.sub-price-old {
  display: inline-block;
  margin-right: .35rem;
  color: var(--text-400);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(229,57,53,.6);
  font-weight: 500;
}
.sub-price-new {
  font-weight: 700;
  color: var(--brand-600);
}
[data-theme="dark"] .sub-price-new { color: #8FCBA8; }

/* =================================================================
   38. FLOATING PRICE-UPDATE CLOUD
   ================================================================= */
.price-cloud {
  position: fixed;
  left: 18px;
  bottom: 22px;
  z-index: 65;
  max-width: 320px;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(44,122,75,.55), rgba(20,57,31,.4));
  box-shadow: 0 18px 50px rgba(20,57,31,.30);
  animation: cloudIn .8s var(--ease-out) .8s backwards, cloudFloat 5s ease-in-out 2s infinite;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.price-cloud.is-dismissed {
  opacity: 0;
  transform: translateY(20px) scale(.96);
  pointer-events: none;
}
@keyframes cloudIn {
  from { opacity: 0; transform: translateY(40px) scale(.92); }
  to   { opacity: 1; transform: translateY(0)    scale(1);   }
}
@keyframes cloudFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}
.price-cloud-inner {
  position: relative;
  border-radius: 17px;
  padding: .9rem 1rem .85rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,252,244,.95)),
    rgba(255,255,255,.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
[data-theme="dark"] .price-cloud-inner {
  background: linear-gradient(180deg, rgba(20,30,40,.85), rgba(7,12,18,.92));
}
.price-cloud-tag {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .25rem .65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2C7A4B, #14391F);
  color: #FFFFFF;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: .55rem;
}
.price-cloud-tag i {
  font-size: .65rem;
  color: #FFE9B3;
  animation: pulseBolt 1.4s ease-in-out infinite;
}
@keyframes pulseBolt {
  0%, 100% { opacity: 1;   transform: scale(1);    }
  50%      { opacity: .55; transform: scale(1.18); }
}
.price-cloud-text {
  margin: 0 0 .55rem;
  font-size: .85rem;
  line-height: 1.45;
  color: var(--text-200);
}
.price-cloud-text strong { color: var(--brand-600); font-weight: 700; }
[data-theme="dark"] .price-cloud-text { color: #F5F1EA; }
[data-theme="dark"] .price-cloud-text strong { color: #8FCBA8; }
.price-cloud-amount {
  display: inline-block;
  padding: 1px 7px;
  border-radius: 6px;
  background: rgba(229,57,53,.10);
  color: #B0302C !important;
  border: 1px solid rgba(229,57,53,.30);
}
[data-theme="dark"] .price-cloud-amount {
  background: rgba(229,57,53,.18);
  color: #F5A8A5 !important;
}
.price-cloud-cta {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--brand-600);
  text-decoration: none;
  transition: gap var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
[data-theme="dark"] .price-cloud-cta { color: #8FCBA8; }
.price-cloud-cta:hover { color: var(--brand-deep); gap: .55rem; }
[data-theme="dark"] .price-cloud-cta:hover { color: #BFE0CC; }
.price-cloud-close {
  position: absolute;
  top: 8px; right: 8px;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(20,57,31,.10);
  color: var(--text-300);
  font-size: .8rem;
  border: 0;
  cursor: pointer;
  z-index: 3;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.price-cloud-close:hover { background: rgba(229,57,53,.18); color: #B0302C; transform: rotate(90deg); }
[data-theme="dark"] .price-cloud-close {
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.85);
}

@media (max-width: 720px) {
  /* Sits above the mobile-cta-bar (≈ 64 px tall + 12 px gap = ~76 px from
     viewport bottom). 96 px gives clean clearance. */
  .price-cloud {
    left: 10px;
    right: 10px;
    bottom: 96px;
    max-width: none;
  }
  .price-cloud-inner {
    padding: .8rem 1rem .75rem;
    /* Extra right padding so text doesn't sit beneath the close button. */
    padding-right: 2.6rem;
  }
  .price-cloud-text  { font-size: .82rem; }
  /* Larger touch target on mobile */
  .price-cloud-close {
    width: 32px; height: 32px;
    top: 8px; right: 8px;
    font-size: .85rem;
  }
}
@media (max-width: 480px) {
  .price-cloud {
    left: 8px;
    right: 8px;
    /* Mobile bar at bottom:8 + ~60px tall + 12px gap = ~80 */
    bottom: 84px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .price-cloud { animation: none; }
}
