/* =========================================================
   SR Meadows — Design System
   ========================================================= */

@media (prefers-color-scheme: dark) {
  :root { color-scheme: dark light; }
}

:root {
  --forest-950: #051d08;
  --forest-900: #094F0D;
  --forest-800: #0d6614;
  --forest-700: #147a1c;
  --lime-400: #DBE905;
  --lime-300: #e8f24f;
  --gold-500: #c9a227;
  --cream-50: #FAF8F0;
  --cream-100: #F3EFDF;
  --ink-900: #101610;
  --ink-700: #3a423a;
  --ink-500: #5a6156;
  --white: #ffffff;

  --bg: var(--cream-50);
  --surface: #ffffff;
  --text: var(--ink-900);
  --text-muted: var(--ink-500);
  --line: rgba(9, 79, 13, 0.12);

  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-bg-dark: rgba(9, 26, 10, 0.45);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-blur: 18px;

  --font-display: 'Fraunces', ui-serif, Georgia, serif;
  --font-body: 'Manrope', ui-sans-serif, system-ui, sans-serif;

  --container: 1240px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-in-out: cubic-bezier(.65,0,.35,1);
  --dur-fast: .25s;
  --dur-med: .5s;
  --dur-slow: .9s;

  --shadow-sm: 0 4px 16px rgba(9, 30, 12, .08);
  --shadow-md: 0 12px 40px rgba(9, 30, 12, .12);
  --shadow-lg: 0 24px 70px rgba(9, 30, 12, .18);
}

/* =========================================================
   Reset
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: auto; }
html.has-lenis { overflow: hidden; height: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
table { border-collapse: collapse; width: 100%; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; letter-spacing: -.01em; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 1rem; top: -60px;
  background: var(--forest-900); color: #fff; padding: .75rem 1.25rem;
  border-radius: var(--radius-sm); z-index: 999; transition: top .2s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 2px solid var(--lime-400);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

/* =========================================================
   Grain overlay + preloader
   ========================================================= */
.grain-overlay {
  position: fixed; inset: 0; z-index: 3;
  pointer-events: none; opacity: .035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--forest-950);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.5rem;
  transition: opacity .6s var(--ease-out), visibility .6s;
}
.preloader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__mark { animation: preloaderPulse 1.6s ease-in-out infinite; border-radius: 50%; overflow: hidden; }
.preloader__mark img { border-radius: 50%; }
.preloader__bar { width: 180px; height: 3px; background: rgba(255,255,255,.15); border-radius: 3px; overflow: hidden; }
.preloader__bar span { display: block; height: 100%; width: 0%; background: var(--lime-400); border-radius: 3px; }
@keyframes preloaderPulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.06); opacity: .8; } }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.7rem;
  border-radius: var(--radius-pill);
  font-weight: 700; font-size: .95rem; letter-spacing: .01em;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background var(--dur-fast);
  white-space: nowrap;
  isolation: isolate;
  overflow: hidden;
}
.btn svg { flex-shrink: 0; transition: transform .3s var(--ease-out); }
.btn:hover svg { transform: translateX(3px); }
.btn--primary {
  background: linear-gradient(135deg, var(--lime-400), var(--lime-300));
  color: var(--forest-950);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--primary:active { transform: translateY(0); }
.btn--ghost {
  background: rgba(9, 79, 13, .06);
  color: var(--forest-900);
  border: 1px solid var(--line);
}
.btn--ghost:hover { background: rgba(9, 79, 13, .12); }
.btn--on-dark.btn--ghost { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.25); }
.btn--on-dark.btn--ghost:hover { background: rgba(255,255,255,.18); }
.btn--sm { padding: .65rem 1.2rem; font-size: .85rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .7; pointer-events: none; }
.btn__lottie { width: 22px; height: 22px; display: inline-block; }

/* =========================================================
   Header / Nav (WordPress Theme Resilient)
   ========================================================= */
body.admin-bar .site-header {
  top: 32px !important;
}
@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px !important;
  }
}

.sr-meadows-page .site-header,
.site-header {
  position: fixed !important;
  inset-inline: 0 !important;
  top: 0;
  z-index: 500 !important;
  padding-block: 1.1rem;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  transition: padding var(--dur-fast) var(--ease-out), background var(--dur-fast), box-shadow var(--dur-fast);
}

.sr-meadows-page .site-header.is-scrolled,
.site-header.is-scrolled {
  padding-block: .6rem !important;
  background: rgba(250, 248, 240, .95) !important;
  backdrop-filter: blur(var(--glass-blur)) !important;
  -webkit-backdrop-filter: blur(var(--glass-blur)) !important;
  box-shadow: var(--shadow-sm) !important;
}

.site-header__inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1.5rem !important;
}

.sr-meadows-page .brand,
.brand {
  display: inline-flex !important;
  align-items: center !important;
  gap: .6rem !important;
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  font-size: 1.15rem !important;
  color: #ffffff !important;
  text-decoration: none !important;
  transition: color var(--dur-fast);
}
.brand img { border-radius: 50%; }
.sr-meadows-page .site-header.is-scrolled .brand,
.site-header.is-scrolled .brand {
  color: var(--forest-950) !important;
}

.sr-meadows-page .main-nav ul,
.main-nav ul {
  display: flex !important;
  align-items: center !important;
  gap: 2.1rem !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.sr-meadows-page .main-nav li,
.main-nav li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.sr-meadows-page .nav-link,
.nav-link {
  position: relative !important;
  font-weight: 600 !important;
  font-size: .93rem !important;
  color: rgba(255,255,255,.9) !important;
  text-decoration: none !important;
  padding-block: .3rem !important;
  transition: color var(--dur-fast);
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: #fff; transition: width var(--dur-fast) var(--ease-out), background var(--dur-fast);
}
.sr-meadows-page .nav-link:hover,
.sr-meadows-page .nav-link.is-active,
.nav-link:hover,
.nav-link.is-active {
  color: #ffffff !important;
}
.nav-link:hover::after, .nav-link.is-active::after { width: 100%; }

.sr-meadows-page .site-header.is-scrolled .nav-link,
.site-header.is-scrolled .nav-link {
  color: var(--ink-700) !important;
}
.site-header.is-scrolled .nav-link::after { background: var(--forest-900); }
.sr-meadows-page .site-header.is-scrolled .nav-link:hover,
.sr-meadows-page .site-header.is-scrolled .nav-link.is-active,
.site-header.is-scrolled .nav-link:hover,
.site-header.is-scrolled .nav-link.is-active {
  color: var(--forest-950) !important;
}

.site-header__actions { display: flex !important; align-items: center !important; gap: 1rem !important; }

.sr-meadows-page .tel-chip,
.tel-chip {
  display: inline-flex !important;
  align-items: center !important;
  gap: .5rem !important;
  font-weight: 700 !important;
  font-size: .88rem !important;
  color: #ffffff !important;
  text-decoration: none !important;
  transition: color var(--dur-fast);
}
.sr-meadows-page .site-header.is-scrolled .tel-chip,
.site-header.is-scrolled .tel-chip {
  color: var(--forest-900) !important;
}

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  cursor: pointer;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: #fff !important; margin-inline: auto; transition: transform .3s var(--ease-out), opacity .3s, background var(--dur-fast); }
.site-header.is-scrolled .nav-toggle { background: rgba(9,79,13,.08); border-color: rgba(9,79,13,.15); }
.site-header.is-scrolled .nav-toggle span { background: var(--forest-950) !important; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 6rem;
  color: #fff;
}
.hero__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.no-js .hero__media img { transform: scale(1.12); }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5,29,8,.55) 0%, rgba(5,29,8,.45) 35%, rgba(5,29,8,.8) 100%),
    linear-gradient(90deg, rgba(5,29,8,.7) 0%, rgba(5,29,8,.15) 60%);
}
.hero__fx { position: absolute; inset: 0; z-index: 1; opacity: .7; pointer-events: none; }

.hero__grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(2rem, 6vw, 4rem);
  width: 100%;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 700; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--forest-800);
  margin-bottom: 1rem;
}
.hero .eyebrow, .why-choose .eyebrow, .callback .eyebrow { color: var(--lime-400); }
.hero__title {
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  color: #fff;
  margin-bottom: 1.3rem;
  max-width: 16ch;
  word-break: keep-all;
}
@media (max-width: 480px) {
  .hero__title { max-width: none; }
}
.hero__title .char { display: inline-block; will-change: transform, opacity; }
.hero__title .word { display: inline-block; overflow: hidden; white-space: nowrap; }
.hero__title .line { overflow: hidden; }
[data-split] .line { overflow: hidden; display: block; }
.hero__subtitle { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: rgba(255,255,255,.85); max-width: 42ch; margin-bottom: 2.2rem; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.6rem; }
.hero__cta .btn--ghost { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.3); }
.hero__cta .btn--ghost:hover { background: rgba(255,255,255,.18); }

.hero__meta { display: flex; flex-wrap: wrap; gap: clamp(1.2rem, 3vw, 2.5rem); }
.hero__meta li { font-size: .85rem; color: rgba(255,255,255,.75); }
.hero__meta strong { display: block; font-family: var(--font-display); font-size: 1.6rem; color: #fff; }

.hero__form-card {
  padding: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--text);
}
.hero__form-card h2 { font-size: 1.5rem; margin-bottom: .4rem; color: var(--forest-950); }
.hero__form-card > p { color: var(--text-muted); font-size: .9rem; margin-bottom: 1.4rem; }

.scroll-hint {
  position: absolute; left: 50%; bottom: clamp(1.2rem, 3vw, 2.2rem); transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .6rem;
  color: rgba(255,255,255,.75); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
}
.scroll-hint__mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.6); border-radius: 14px; display: flex; justify-content: center; padding-top: 6px; }
.scroll-hint__mouse span { width: 3px; height: 8px; background: var(--lime-400); border-radius: 2px; animation: scrollDot 1.8s infinite; }
@keyframes scrollDot { 0% { opacity: 1; transform: translateY(0); } 70% { opacity: 0; transform: translateY(10px); } 100% { opacity: 0; } }

/* =========================================================
   Glass card
   ========================================================= */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
  box-shadow: var(--shadow-md);
}

/* =========================================================
   Forms
   ========================================================= */
.lead-form .field { margin-bottom: 1rem; }
.lead-form label { display: block; font-size: .8rem; font-weight: 700; margin-bottom: .4rem; color: var(--text-muted); }
.lead-form input, .lead-form select {
  width: 100%; padding: .85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.7);
  font-size: .95rem;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.lead-form input:focus, .lead-form select:focus {
  border-color: var(--forest-800); box-shadow: 0 0 0 4px rgba(9,79,13,.12); background: #fff;
  outline: none;
}
.lead-form input:invalid[data-touched], .lead-form select:invalid[data-touched] { border-color: #c0392b; }
.lead-form select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%233a423a' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.form-note { font-size: .72rem; color: var(--text-muted); text-align: center; margin-top: .8rem; }
.form-status { min-height: 1.4em; margin-top: .8rem; font-size: .85rem; font-weight: 700; text-align: center; }
.form-status.is-success { color: var(--forest-800); }
.form-status.is-error { color: #c0392b; }

/* =========================================================
   Stats
   ========================================================= */
.stats { padding-block: clamp(3rem, 6vw, 5rem); background: var(--forest-950); color: #fff; }
.stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); text-align: center; gap: 2rem; }
.stat__value { display: block; font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--lime-400); }
.stat__label { font-size: .85rem; letter-spacing: .04em; color: rgba(255,255,255,.7); }

/* =========================================================
   Location marquee
   ========================================================= */
.location-strip { background: var(--forest-900); padding-block: 1.1rem; overflow: hidden; border-block: 1px solid rgba(255,255,255,.08); }
.location-strip__track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.location-strip__row { display: flex; gap: 3rem; padding-right: 3rem; }
.location-strip__row li {
  font-size: .85rem; font-weight: 700; color: #fff; white-space: nowrap;
  display: flex; align-items: center; gap: .6rem;
}
.location-strip__row li::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--lime-400); flex-shrink: 0;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.location-strip:hover .location-strip__track { animation-play-state: paused; }

/* =========================================================
   Section head
   ========================================================= */
.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: .9rem; color: var(--forest-950); }
.section-head__desc { color: var(--text-muted); font-size: 1.02rem; max-width: 42rem; }
.section-head--center .section-head__desc { margin-inline: auto; }
.lead-text { font-size: 1.08rem; color: var(--ink-700); }

/* =========================================================
   About
   ========================================================= */
.about { padding-block: clamp(4rem, 8vw, 7rem); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.about__media { position: relative; }
.about__media > img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/3.2; object-fit: cover; }
.about__floating-card {
  position: absolute; left: -8%; bottom: -8%;
  display: flex; align-items: center; gap: .9rem;
  padding: .8rem 1.2rem .8rem .8rem;
  max-width: 260px;
}
.about__floating-card img { width: 56px; height: 72px; object-fit: cover; border-radius: var(--radius-sm); }
.about__floating-card strong { display: block; font-family: var(--font-display); font-size: 1rem; color: var(--forest-950); }
.about__floating-card span { font-size: .78rem; color: var(--text-muted); }
.about__floating-card--pool { left: auto; right: -6%; top: -6%; bottom: auto; padding: .6rem; }
.about__floating-card--pool img { width: 90px; height: 68px; }

.about__content .tick-list { margin-top: 1.6rem; display: grid; grid-template-columns: 1fr 1fr; gap: .8rem 1rem; }
.tick-list li { display: flex; align-items: center; gap: .6rem; font-weight: 600; font-size: .92rem; }
.tick-list li::before {
  content: "";
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  background: var(--forest-900) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='9'%3E%3Cpath d='M1 4.5l3 3 7-7' stroke='%23DBE905' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/10px no-repeat;
}
.about__content p + p { margin-top: 1rem; }

/* =========================================================
   Pricing
   ========================================================= */
.pricing { padding-block: clamp(4rem, 8vw, 7rem); background: var(--cream-100); }
.pricing__tabs { display: inline-flex; gap: .4rem; padding: .35rem; background: #fff; border-radius: var(--radius-pill); box-shadow: var(--shadow-sm); margin-bottom: 2.2rem; }
.pricing__tab {
  padding: .7rem 1.4rem; border-radius: var(--radius-pill); font-weight: 700; font-size: .88rem;
  color: var(--text-muted); transition: background .25s, color .25s;
}
.pricing__tab.is-active { background: var(--forest-900); color: #fff; }

.pricing__panel { display: none; }
.pricing__panel.is-active { display: block; }
.price-table { background: #fff; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.price-table th, .price-table td { text-align: left; padding: 1.05rem 1.5rem; font-size: .95rem; }
.price-table thead th { background: var(--forest-900); color: #fff; font-weight: 700; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; }
.price-table tbody tr:nth-child(even) { background: rgba(9,79,13,.04); }
.price-table tbody td:last-child { font-weight: 800; color: var(--forest-900); font-family: var(--font-display); font-size: 1.05rem; }
.price-table tbody tr { transition: background .2s; }
.price-table tbody tr:hover { background: rgba(219,233,5,.18); }

.cost-sheet-cta {
  margin-top: 2.5rem; padding: clamp(1.6rem, 3vw, 2.4rem);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.cost-sheet-cta h3 { font-size: 1.3rem; margin-bottom: .3rem; color: var(--forest-950); }
.cost-sheet-cta p { color: var(--text-muted); font-size: .92rem; }

/* Features */
.features { margin-top: clamp(4rem, 8vw, 6rem); }
.features__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.1rem; }
.feature-card {
  display: flex; align-items: center; gap: 1rem;
  background: #fff; border-radius: var(--radius-md); padding: 1.2rem 1.3rem;
  font-weight: 700; font-size: .95rem; color: var(--ink-700);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-card__icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--forest-900), var(--forest-700));
  display: flex; align-items: center; justify-content: center; position: relative;
}
.feature-card__icon::after {
  content: ""; width: 20px; height: 20px; background: var(--lime-400);
  -webkit-mask: var(--icon-mask) center/contain no-repeat; mask: var(--icon-mask) center/contain no-repeat;
}
.feature-card__icon[data-icon="title"] { --icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 4h16v4H4zM4 10h10v10H4zM16 10h4v10h-4z'/%3E%3C/svg%3E"); }
.feature-card__icon[data-icon="loan"] { --icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 10l9-6 9 6v2H3zM5 12h2v7H5zm4 0h2v7H9zm4 0h2v7h-2zm4 0h2v7h-2zM3 21h18v2H3z'/%3E%3C/svg%3E"); }
.feature-card__icon[data-icon="security"] { --icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l8 4v6c0 5-3.4 8.7-8 10-4.6-1.3-8-5-8-10V6z'/%3E%3C/svg%3E"); }
.feature-card__icon[data-icon="road"] { --icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 2h2l-1 20H8zm4 0h2l1 20h-2zm-1 6h.01M12 12h.01M12 16h.01'/%3E%3C/svg%3E"); }
.feature-card__icon[data-icon="light"] { --icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a5 5 0 015 5c0 2.2-1.4 3.4-2.3 4.6-.6.8-.7 1.4-.7 2.4H10c0-1-.1-1.6-.7-2.4C8.4 10.4 7 9.2 7 7a5 5 0 015-5zM9 16h6v2H9zm1 4h4v2h-4z'/%3E%3C/svg%3E"); }
.feature-card__icon[data-icon="water"] { --icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2s7 8 7 13a7 7 0 11-14 0c0-5 7-13 7-13z'/%3E%3C/svg%3E"); }
.feature-card__icon[data-icon="wifi"] { --icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 20a1.6 1.6 0 100-3.2 1.6 1.6 0 000 3.2zM8.3 14a5.5 5.5 0 017.4 0l-1.6 1.7a3.1 3.1 0 00-4.2 0zM5 10.7a10 10 0 0114 0l-1.7 1.7a7.6 7.6 0 00-10.6 0z'/%3E%3C/svg%3E"); }
.feature-card__icon[data-icon="pool"] { --icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 17c1 1 2 1 3 0s2-1 3 0 2 1 3 0 2-1 3 0 2 1 3 0 2-1 3 0M4 13h16v2H4zM7 4h10v7H7z'/%3E%3C/svg%3E"); }
.feature-card__icon[data-icon="play"] { --icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='5' r='2'/%3E%3Cpath d='M12 8v6l-4 6m4-6l4 6M6 12l6 2 6-2'/%3E%3C/svg%3E"); }
.feature-card__icon[data-icon="home"] { --icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 11l9-8 9 8v10a1 1 0 01-1 1h-5v-7H9v7H4a1 1 0 01-1-1z'/%3E%3C/svg%3E"); }

/* =========================================================
   Why choose us
   ========================================================= */
.why-choose { position: relative; padding-block: clamp(4rem, 8vw, 7rem); overflow: hidden; background: var(--forest-950); color: #fff; }
.why-choose__bg {
  position: absolute; inset: 0; z-index: 0;
  background: url("../img/about-green-pathway.webp") center/cover;
  opacity: .18; will-change: transform;
}
.why-choose::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(120% 100% at 10% 0%, rgba(219,233,5,.12), transparent 60%),
              linear-gradient(180deg, var(--forest-950), #030f04);
}
.why-choose__grid { position: relative; z-index: 1; }
.why-choose .section-head h2 { color: #fff; }
.why-choose .lead-text { color: rgba(255,255,255,.78); }
.why-choose .glass-card { background: var(--glass-bg-dark); border-color: rgba(255,255,255,.14); }

.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-block: 2.5rem; }
.pillar-card { padding: 2rem 1.7rem; color: #fff; }
.pillar-card__num { font-family: var(--font-display); font-size: 1.6rem; color: var(--lime-400); display: block; margin-bottom: .8rem; }
.pillar-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.pillar-card p { color: rgba(255,255,255,.7); font-size: .92rem; }

.developer-strip {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
  padding: 1.8rem 2rem; color: #fff;
}
.developer-strip p { max-width: 42ch; color: rgba(255,255,255,.85); }
.developer-strip ul { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.developer-strip li { font-size: .85rem; font-weight: 700; color: var(--lime-400); position: relative; padding-left: 1.2rem; }
.developer-strip li::before { content: "✓"; position: absolute; left: 0; }

/* =========================================================
   Gallery / Swiper
   ========================================================= */
.gallery { padding-block: clamp(4rem, 8vw, 7rem); }
.gallery-swiper { padding-inline: clamp(1.25rem, 4vw, 2.5rem); position: relative; }
.gallery-swiper .swiper-slide { width: min(420px, 78vw); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; }
.gallery-swiper .swiper-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.gallery-swiper .swiper-slide:hover img { transform: scale(1.08); }
.gallery-swiper .swiper-pagination { position: static; margin-top: 1.6rem; }

.swiper-nav {
  position: absolute; top: 40%; z-index: 5; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center; color: var(--forest-900);
  transition: background .2s, transform .2s;
}
.swiper-nav:hover { background: var(--lime-400); }
.swiper-nav--prev { left: clamp(.5rem, 2vw, 1.5rem); }
.swiper-nav--next { right: clamp(.5rem, 2vw, 1.5rem); }
.swiper-pagination-bullet { background: var(--forest-900); opacity: .3; }
.swiper-pagination-bullet-active { opacity: 1; background: var(--forest-900); }

/* Testimonials */
.testimonials { padding-block: clamp(4rem, 8vw, 7rem); background: var(--cream-100); }
.testimonials-swiper { padding-bottom: 3rem; }
.testimonial-card { padding: clamp(1.6rem, 3vw, 2.2rem); height: 100%; display: flex; flex-direction: column; gap: 1.1rem; }
.testimonial-card__stars { width: 110px; }
.testimonial-card p { font-size: 1.02rem; color: var(--ink-700); font-style: italic; flex-grow: 1; }
.testimonial-card footer { display: flex; flex-direction: column; }
.testimonial-card footer strong { font-family: var(--font-display); color: var(--forest-950); }
.testimonial-card footer span { font-size: .8rem; color: var(--text-muted); }
.testimonials-swiper .swiper-pagination-bullet { background: var(--forest-900); }

/* =========================================================
   Process
   ========================================================= */
.process { padding-block: clamp(4rem, 8vw, 7rem); }
.process__list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; position: relative; counter-reset: step; }
.process__list::before {
  content: ""; position: absolute; top: 26px; left: 8%; right: 8%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 10px, transparent 10px 18px);
  z-index: 0;
}
.process__step { position: relative; z-index: 1; background: #fff; border-radius: var(--radius-md); padding: 1.8rem 1.5rem; box-shadow: var(--shadow-sm); }
.process__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--forest-900), var(--forest-700));
  color: var(--lime-400); font-family: var(--font-display); font-size: 1.2rem;
  margin-bottom: 1.1rem;
}
.process__step h3 { font-size: 1.1rem; margin-bottom: .5rem; color: var(--forest-950); }
.process__step p { font-size: .88rem; color: var(--text-muted); }

/* =========================================================
   Callback
   ========================================================= */
.callback { position: relative; padding-block: clamp(4rem, 8vw, 7rem); overflow: hidden; color: #fff; }
.callback__bg {
  position: absolute; inset: 0; z-index: 0;
  background: url("../img/hero-meadow-hills.webp") center 30%/cover;
  will-change: transform;
}
.callback::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(120deg, rgba(5,29,8,.92), rgba(9,79,13,.75));
}
.callback__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.callback .eyebrow { color: var(--lime-400); }
.callback__copy h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.6rem); margin-block: .8rem 1rem; }
.callback__copy p { color: rgba(255,255,255,.82); margin-bottom: 1.6rem; max-width: 36ch; }
.callback .lead-form { padding: clamp(1.6rem, 3vw, 2.2rem); color: var(--text); }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--forest-950); color: rgba(255,255,255,.8); padding-top: clamp(3rem, 6vw, 4.5rem); }
.site-footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.site-footer .brand { color: #fff; margin-bottom: .9rem; }
.site-footer__brand p { max-width: 32ch; font-size: .9rem; }
.site-footer__links h3, .site-footer__contact h3 { color: #fff; font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 1rem; }
.site-footer__links li { margin-bottom: .6rem; font-size: .9rem; }
.site-footer__links a:hover { color: var(--lime-400); }
.site-footer__contact address { font-style: normal; font-size: .9rem; margin-bottom: .8rem; line-height: 1.7; }
.site-footer__contact a { font-weight: 700; color: var(--lime-400); }
.site-footer__bottom { padding-block: 1.6rem; text-align: center; font-size: .82rem; }
.site-footer__bottom a { text-decoration: underline; }

/* WhatsApp float */
.whatsapp-fab {
  position: fixed; right: clamp(1rem, 3vw, 1.8rem); bottom: clamp(1rem, 3vw, 1.8rem); z-index: 400;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .45);
  animation: fabPulse 2.6s ease-in-out infinite;
}
.whatsapp-fab:hover { transform: scale(1.08); }
@keyframes fabPulse { 0%,100% { box-shadow: 0 10px 30px rgba(37,211,102,.45); } 50% { box-shadow: 0 10px 40px rgba(37,211,102,.7); } }

/* =========================================================
   Modal
   ========================================================= */
.modal { position: fixed; inset: 0; z-index: 800; display: grid; place-items: center; padding: 1.5rem; visibility: hidden; opacity: 0; transition: opacity .3s var(--ease-out), visibility .3s; }
.modal.is-open { visibility: visible; opacity: 1; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(5,29,8,.65); backdrop-filter: blur(6px); }
.modal__panel {
  position: relative; width: min(460px, 100%); max-height: 90vh; overflow-y: auto;
  padding: clamp(1.8rem, 4vw, 2.6rem);
  background: rgba(255,255,255,.92);
  transform: translateY(30px) scale(.97); opacity: 0;
  transition: transform .4s var(--ease-out), opacity .4s var(--ease-out);
}
.modal.is-open .modal__panel { transform: translateY(0) scale(1); opacity: 1; }
.modal__panel h2 { font-size: 1.5rem; color: var(--forest-950); margin-bottom: .4rem; }
.modal__panel > p { color: var(--text-muted); font-size: .9rem; margin-bottom: 1.4rem; }
.modal__close {
  position: absolute; top: 1.2rem; right: 1.2rem; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(9,79,13,.08); font-size: 1.3rem; line-height: 1; color: var(--forest-900);
}
.modal__close:hover { background: rgba(9,79,13,.16); }

/* =========================================================
   Custom cursor (fine pointer only)
   ========================================================= */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 900; pointer-events: none;
  border-radius: 50%; transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor-dot { width: 7px; height: 7px; background: var(--lime-400); }
.cursor-ring { width: 34px; height: 34px; border: 1.5px solid rgba(219,233,5,.7); transition: width .2s, height .2s, border-color .2s; }
.cursor-ring.is-active { width: 54px; height: 54px; border-color: rgba(255,255,255,.8); }
@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* =========================================================
   Reveal animation base state
   ========================================================= */
[data-reveal] { opacity: 0; transform: translateY(28px); }
[data-reveal].is-revealed { opacity: 1; transform: none; transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.no-js [data-reveal] { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1080px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__form-card { max-width: 480px; }
  .about__grid, .callback__inner { grid-template-columns: 1fr; }
  .about__media { margin-bottom: 2rem; }
  .pillar-grid { grid-template-columns: 1fr 1fr; }
  .process__list { grid-template-columns: 1fr 1fr; }
  .process__list::before { display: none; }
}

@media (max-width: 860px) {
  .main-nav { position: fixed; inset: 0; top: 0; left: 0; z-index: 450; background: rgba(5,29,8,.97); backdrop-filter: blur(20px);
    display: flex; align-items: center; justify-content: center;
    width: 100vw; height: 100vh; max-height: 100dvh;
    transform: translateY(-100vh); visibility: hidden;
    transition: transform .45s var(--ease-in-out), visibility 0s linear .45s; }
  .main-nav.is-open { transform: translateY(0); visibility: visible; transition: transform .45s var(--ease-in-out); }
  .main-nav ul { flex-direction: column; gap: 2rem; text-align: center; }
  .main-nav.is-open .nav-link { color: #fff !important; font-size: 1.4rem; font-family: var(--font-display); }
  .main-nav.is-open .nav-link::after { background: var(--lime-400) !important; }
  .nav-toggle { display: flex; }
  .tel-chip { display: none; }
  .site-header .btn--sm { display: none; }
  .stats__grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .developer-strip { flex-direction: column; align-items: flex-start; }
  .site-footer__inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 620px) {
  .pillar-grid, .process__list { grid-template-columns: 1fr; }
  .about__content .tick-list { grid-template-columns: 1fr; }
  .about__floating-card { position: static; margin-top: 1rem; max-width: none; }
  .about__floating-card--pool { display: none; }
  .cost-sheet-cta { flex-direction: column; align-items: flex-start; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
}

/* =========================================================
   Elementor form embed — re-skin Elementor Pro's default
   Form widget markup to match the design system. Elementor's
   own stylesheet can have equal/higher specificity depending
   on the active Kit, so a few declarations use !important —
   scoped tightly to .elementor-form-embed, never global.
   ========================================================= */
.elementor-form-embed .elementor-form-fields-wrapper { display: block !important; }
.elementor-form-embed .elementor-field-group { margin-bottom: 1rem !important; padding: 0 !important; width: 100% !important; }
.elementor-form-embed .elementor-field-label {
  display: block !important; font-family: var(--font-body) !important; font-size: .8rem !important;
  font-weight: 700 !important; color: var(--text-muted) !important; margin-bottom: .4rem !important;
}
.elementor-form-embed .elementor-field,
.elementor-form-embed select.elementor-field,
.elementor-form-embed textarea.elementor-field {
  width: 100% !important; padding: .85rem 1rem !important;
  border-radius: var(--radius-sm) !important; border: 1px solid var(--line) !important;
  background: rgba(255,255,255,.7) !important; font-family: var(--font-body) !important;
  font-size: .95rem !important; color: var(--text) !important; box-shadow: none !important;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.elementor-form-embed .elementor-field:focus,
.elementor-form-embed select.elementor-field:focus {
  border-color: var(--forest-800) !important; box-shadow: 0 0 0 4px rgba(9,79,13,.12) !important;
  background: #fff !important; outline: none !important;
}
.elementor-form-embed .elementor-button-wrapper { margin-top: .4rem !important; }
.elementor-form-embed .elementor-button {
  width: 100% !important; display: inline-flex !important; align-items: center !important; justify-content: center !important;
  padding: .95rem 1.7rem !important; border-radius: var(--radius-pill) !important;
  background: linear-gradient(135deg, var(--lime-400), var(--lime-300)) !important;
  color: var(--forest-950) !important; font-weight: 700 !important; font-size: .95rem !important;
  border: none !important; box-shadow: var(--shadow-sm) !important; transition: transform var(--dur-fast) var(--ease-out) !important;
}
.elementor-form-embed .elementor-button:hover { transform: translateY(-2px) !important; box-shadow: var(--shadow-md) !important; }
.elementor-form-embed .elementor-message { font-size: .85rem !important; font-weight: 700 !important; margin-top: .8rem !important; }
.elementor-form-embed .elementor-message.elementor-message-success { color: var(--forest-800) !important; }
.elementor-form-embed .elementor-message.elementor-message-danger { color: #c0392b !important; }
.callback .elementor-form-embed .elementor-field-label { color: var(--text-muted) !important; }