/* ==========================================================================
   Vastusankalp Group — static rebuild
   Palette sampled from the brand logo + the source theme's own CSS variables.
   ========================================================================== */

/* Montserrat (headings + body) loads from Google Fonts — see the <link> in each page head. */

:root {
  /* --- brand palette (sampled, not guessed) --- */
  --green: #06752e; /* primary — logo mid-green + theme color-1 */
  --green-dark: #04561f;
  --green-accent: #1bae70; /* theme color-0 */
  --rust: #964b00; /* every section heading on the source */
  --rust-dark: #7a3d00;
  --deep: #14261c; /* footer — theme color-2 */
  --body: #4e5652; /* theme color-3 */
  --muted: #6b736e;
  --surface: #f4f6f4; /* theme color-4 */
  --surface-2: #ffffff;
  --line: #e3e8e4;
  --white: #fff;

  /* --- typography --- */
  --font-head:
    "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-body:
    "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  /* --- layout --- */
  --hero-h: 70vh; /* hero slider height */
  --container: 1380px;
  --gutter: 24px;
  --header-h: 88px;
  --radius: 14px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(20, 38, 28, 0.06);
  --shadow: 0 8px 28px rgba(20, 38, 28, 0.1);
  --shadow-lg: 0 18px 48px rgba(20, 38, 28, 0.16);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* --------------------------------------------------------- reset / base */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--body);
  background: var(--white);
  overflow-x: hidden;
}
img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--green);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
a:hover {
  color: var(--green-accent);
}
ul {
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  color: var(--rust);
  line-height: 1.22;
  margin: 0 0 0.6em;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 {
  font-size: clamp(2rem, 4.6vw, 3.35rem);
}
h2 {
  font-size: clamp(1.65rem, 3.4vw, 2.5rem);
}
h3 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}
h4 {
  font-size: 1.05rem;
}
p {
  margin: 0 0 1.1em;
}
p:last-child {
  margin-bottom: 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section {
  padding: clamp(56px, 7vw, 104px) 0;
}
.section--surface {
  background: var(--surface);
}
.section--deep {
  background: var(--deep);
  color: #c9d3cc;
}
.section--deep h2,
.section--deep h3 {
  color: var(--white);
}

.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: -9999px;
  top: 0;
  z-index: 2000;
  background: var(--green);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
  color: #fff;
}

:focus-visible {
  outline: 3px solid var(--green-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ------------------------------------------------------ section heading */
.sec-head {
  text-align: center;
  margin-bottom: clamp(34px, 4.5vw, 48px);
}
.sec-head--left {
  text-align: left;
}
.sec-head h2,
.sec-head h1 {
  margin-bottom: 0.35em;
}
.sec-head .rule {
  display: block;
  width: 74px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--green-accent), var(--green));
  margin: 0 auto;
}
.sec-head--left .rule {
  margin-inline: 0;
}
.sec-head .lede {
  max-width: 760px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 1rem;
}
.sec-head--left .lede {
  margin-inline: 0;
}

/* ---------------------------------------------------------------- header
   The logo PNG has a transparent background, so the bar is plain white and
   the tile has no visible edge. Opaque + identical in both scroll states. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s var(--ease);
}
.site-header.is-stuck {
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-h);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand img {
  height: 54px;
  width: auto;
  border-radius: 0;
} /* no radius on header logo */
.brand span {
  font-weight: 700;
  color: var(--green);
  font-size: 1.05rem;
  line-height: 1.15;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  display: block;
  padding: 10px 15px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--deep);
  transition:
    background 0.2s var(--ease),
    color 0.2s var(--ease);
}
.nav a:hover,
.nav a:focus-visible {
  background: var(--surface);
  color: var(--green);
  border-radius: 50px;
}
.nav a[aria-current="page"] {
  color: var(--rust);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  transition:
    background 0.2s var(--ease),
    transform 0.2s var(--ease);
}
.header-cta:hover {
  background: var(--green-dark);
  color: #fff;
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 11px;
  color: var(--deep);
  font-size: 1.2rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.2s var(--ease);
}
.hamburger:hover {
  background: var(--surface);
}


/* ---------------------------------------------------------------- icons
   Lucide, inlined as SVG (no icon font, no CDN request). Sized in em so the
   surrounding font-size controls them exactly as the old icon font did.
   NOTE: the class is .lucide, not .ico — .ico is already the green tile
   container in .feature / .info-item and the two must not collide.
   Brand marks (WhatsApp / Facebook / Instagram) are official filled logos;
   Lucide ships no brand icons by design. */
.lucide {
  display: inline-block;
  vertical-align: -0.125em;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lucide-brand {
  fill: currentColor;
  stroke: none;
}
/* the footer "made with love" mark reads better filled */
.footer-bottom .lucide-heart {
  fill: currentColor;
  stroke: none;
  vertical-align: -0.18em;
  margin: 0 0.28em;
}
/* lighter strokes at large sizes so big icons don't look heavy */
.feature .ico .lucide,
.info-item .ico .lucide {
  stroke-width: 1.75;
}

/* ---------------------------------------------------------- mobile drawer */
.scrim {
  position: fixed;
  inset: 0;
  background: rgba(20, 38, 28, 0.55);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s var(--ease),
    visibility 0.3s var(--ease);
  z-index: 1100;
}
.scrim.is-open {
  opacity: 1;
  visibility: visible;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(340px, 86vw);
  background: var(--white);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.34s var(--ease);
  display: flex;
  flex-direction: column;
  /* clear the fixed header bar so the close button is never hidden behind it */
  padding:  16px 22px 28px;
  overflow-y: auto;
  box-shadow: -10px 0 40px rgba(20, 38, 28, 0.2);
}
.drawer.is-open {
  transform: translateX(0);
}
.drawer-close {
  position: absolute;
  top:  12px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--deep);
  font-size: 1.15rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s var(--ease),
    transform 0.2s var(--ease);
}
.drawer-close:hover {
  background: var(--green);
  color: #fff;
  transform: rotate(90deg);
}
.drawer nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 26px;
}
.drawer nav a {
  padding: 14px 12px;
  border-radius: 10px;
  font-weight: 600;
  color: var(--deep);
  border-bottom: 1px solid var(--line);
}
.drawer nav a:hover {
  background: var(--surface);
  color: var(--green);
}
.drawer .drawer-cta {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.drawer .drawer-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
}
.drawer .drawer-cta .c-call {
  background: var(--green);
  color: #fff;
}
.drawer .drawer-cta .c-wa {
  background: #25d366;
  color: #fff;
}
body.no-scroll {
  overflow: hidden;
}

/* ------------------------------------------------------------------- hero */
.hero {
  position: relative;
  background: var(--green);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: var(--hero-h);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 5vw, 72px) clamp(24px, 4vw, 60px);
  /* background: linear-gradient(135deg, #5e8a5a 0%, #4e7a4c 100%); */
  color: #fff;
}
.hero-copy .kicker {
  color: #f0a868;
  font-weight: 700;
  font-size: clamp(1.05rem, 1.9vw, 1.45rem);
  margin-bottom: 0.5em;
  line-height: 1.35;
}
.hero-copy h1,
.hero-copy .hero-title {
  color: #fff;
  margin: 0 0 0.45em;
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.01em;
  font-size: clamp(1.9rem, 4.2vw, 3.1rem);
}
.hero-copy .sub {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  max-width: 34ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero-media {
  position: relative;
  background: #2c3f2c;
  overflow: hidden;
}
/* absolutely positioned so the photo's own aspect ratio can never drive the
   hero's height — one slide image is square and was forcing an 80vh hero. */
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media .stamp {
  position: absolute;
  right: 16px;
  bottom: 16px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  padding: 6px 12px;
  border-radius: 6px;
}

/* slide rotation */
.hero-slides {
  display: grid;
}
.hero-slide {
  grid-area: 1/1;
  opacity: 0;
  visibility: hidden;
  height: 100%;
  transition:
    opacity 0.7s var(--ease),
    visibility 0.7s;
}
.hero-slide .hero-grid {
  height: 100%;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
  z-index: 5;
}
.hero-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.45);
  transition:
    background 0.25s var(--ease),
    width 0.25s var(--ease);
}
.hero-dots button[aria-selected="true"] {
  background: #fff;
  width: 26px;
  border-radius: 6px;
}

/* ------------------------------------------------------------------ buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    transform 0.2s var(--ease),
    background 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}
.btn:hover {
  transform: translateY(-3px);
}
.btn-primary {
  background: var(--green-accent);
  color: #fff;
  box-shadow: 0 6px 18px rgba(27, 174, 112, 0.32);
}
.btn-primary:hover {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 26px rgba(6, 117, 46, 0.34);
}
.btn-wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.32);
}
.btn-wa:hover {
  background: #1da851;
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}
.btn-outline:hover {
  background: #fff;
  color: var(--green);
}
.btn-ghost {
  background: var(--white);
  color: var(--green);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

/* -------------------------------------------------------------- stats bar */
.stats {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  text-align: center;
  padding: clamp(24px, 3vw, 38px) 14px;
  border-right: 1px solid var(--line);
}
.stat:last-child {
  border-right: 0;
}
.stat .num {
  font-size: clamp(1.7rem, 3.2vw, 3rem);
  font-weight: 700;
  color: var(--rust);
  line-height: 1;
  font-family: var(--font-head);
}
.stat .lbl {
  display: block;
  margin-top: 9px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--body);
}
.section--deep .stat {
  border-color: rgba(255, 255, 255, 0.14);
}
.section--deep .stat .num {
  color: #fff;
}
.section--deep .stat .lbl {
  color: rgba(255, 255, 255, 0.8);
}

/* --------------------------------------------------------------- two-col */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.split--narrow {
  grid-template-columns: 0.9fr 1.1fr;
}
.split img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* ----------------------------------------------------------------- cards */
.grid {
  display: grid;
  gap: clamp(18px, 2.2vw, 28px);
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card-media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--surface);
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.card:hover .card-media img {
  transform: scale(1.06);
}
.card-body {
  padding: 22px 22px 26px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}
/* card titles: the "Recent Projects" cards are <h2> for heading order and the
   past-project cards are <h3>, so both are pinned to the same visual size. */
.card-body h2,
.card-body h3 {
  margin-bottom: 0.4em;
  color: var(--deep);
  font-size: 1.25rem; /* 20px */
  line-height: 1.3;
  letter-spacing: 0;
}
.card-body p {
  color: var(--muted);
  font-size: 0.92rem;
}
.card-body .btn {
  margin-top: auto;
  align-self: center;
}

/* project logo cards (logo on white, not a photo) */
.card--logo .card-media {
  aspect-ratio: 16/9;
  background: #fff;
  display: grid;
  place-items: center;
  padding: 22px;
  min-height: 0;
}
.card--logo .card-media img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  min-height: 0;
  object-fit: contain;
}

/* feature / USP cards */
.feature {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.feature .ico {
  position: relative;
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--green-accent) 0%, var(--green) 100%);
  color: #fff;
  font-size: 1.65rem;
  box-shadow:
    0 8px 20px rgba(6, 117, 46, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
/* soft halo that grows on hover */
.feature .ico::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 1px solid var(--green-accent);
  opacity: 0;
  transform: scale(0.85);
  transition:
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease);
}
.feature:hover .ico {
  transform: translateY(-4px) scale(1.06) rotate(-4deg);
  box-shadow:
    0 14px 30px rgba(27, 174, 112, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.feature:hover .ico::after {
  opacity: 0.55;
  transform: scale(1);
}
.feature h3 {
  color: var(--deep);
  font-size: 1.08rem;
  margin-bottom: 0.45em;
}
.feature p {
  font-size: 0.9rem;
  color: var(--muted);
}
.section--deep .feature {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}
/* on the dark band the green tile needs a rim to separate from the background */
.section--deep .feature .ico {
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.38),
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.section--deep .feature:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(27, 174, 112, 0.45);
}
.section--deep .feature h3 {
  color: #fff;
}
.section--deep .feature p {
  color: rgba(255, 255, 255, 0.78);
}

/* amenity / legal tiles */
.tile {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-2);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.tile img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
/* Location-overview media (layout plans, site maps, brochures) must never be
   cropped — a 4/3 cover crop cuts the plot numbers and area tables off. */
.tile--full {
  background: var(--surface-2);
  display: flex;
}
.tile--full img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}
.tile .cap {
  padding: 16px 14px;
  text-align: center;
  font-weight: 700;
  color: var(--deep);
  font-size: 1rem;
  font-family: var(--font-head);
}

/* checklist */
.checks {
  list-style: none;
  display: grid;
  gap: 10px;
}
.checks li {
  position: relative;
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--deep);
  padding: 13px 18px 13px 16px;
  border-radius: 14px;
  overflow: hidden;
  background:
    linear-gradient(
      100deg,
      rgba(27, 174, 112, 0.14) 0%,
      rgba(27, 174, 112, 0.06) 45%,
      rgba(244, 246, 244, 0.85) 100%
    );
  box-shadow: inset 0 0 0 1px rgba(6, 117, 46, 0.12);
  transition:
    transform 0.28s var(--ease),
    box-shadow 0.28s var(--ease),
    background 0.28s var(--ease);
}
/* green accent rail down the left edge */
.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--green-accent), var(--green));
  opacity: 0.9;
}
.checks li:hover {
  transform: translateX(6px);
  background:
    linear-gradient(
      100deg,
      rgba(27, 174, 112, 0.24) 0%,
      rgba(27, 174, 112, 0.1) 50%,
      rgba(255, 255, 255, 0.9) 100%
    );
  box-shadow:
    inset 0 0 0 1px rgba(6, 117, 46, 0.24),
    0 10px 22px rgba(6, 117, 46, 0.14);
}
/* filled gradient badge behind each icon */
.chk-ico {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(140deg, var(--green-accent), var(--green));
  color: #fff;
  font-size: 1.1rem;
  box-shadow:
    0 5px 12px rgba(6, 117, 46, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition:
    transform 0.28s var(--ease),
    box-shadow 0.28s var(--ease);
}
.checks li:hover .chk-ico {
  transform: scale(1.08) rotate(-5deg);
  box-shadow:
    0 8px 18px rgba(27, 174, 112, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.chk-ico .lucide {
  stroke-width: 2;
}

/* vision / mission */
.vm {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 230px;
  display: flex;
  align-items: flex-end;
  padding: 30px;
  color: #fff;
}
.vm img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.vm::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 38, 28, 0.25),
    rgba(20, 38, 28, 0.85)
  );
  z-index: 1;
}
.vm .vm-body {
  position: relative;
  z-index: 2;
}
.vm h3 {
  color: #fff;
  margin-bottom: 0.4em;
}
.vm p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  margin: 0;
}

/* country cards */
.country {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-2);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.country:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.country img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.country .cap {
  padding: 13px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--deep);
}

/* reason-to-invest strip */
.reason {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1/1;
  display: flex;
  align-items: flex-end;
  transition: transform 0.3s var(--ease);
}
.reason:hover {
  transform: translateY(-6px);
}
.reason img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reason::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 38, 28, 0) 40%,
    rgba(20, 38, 28, 0.88) 100%
  );
}
.reason .r-cap {
  position: relative;
  z-index: 2;
  padding: 18px 16px;
  color: #fff;
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.3;
}

/* gallery */
.gallery-grid {
  columns: 3;
  column-gap: 22px;
}
.gal-item {
  break-inside: avoid;
  margin: 0 0 22px;
}
.gal-btn {
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-2);
  cursor: zoom-in;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.gal-btn img {
  width: 100%;
  display: block;
  transition: transform 0.5s var(--ease);
}
.gal-btn:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-accent);
}
.gal-btn:hover img {
  transform: scale(1.04);
}
/* zoom affordance */
.gal-zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(20, 38, 28, 0.72);
  color: #fff;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.gal-btn:hover .gal-zoom,
.gal-btn:focus-visible .gal-zoom {
  opacity: 1;
  transform: none;
}

/* ------------------------------------------------------------- lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 48px);
  background: rgba(10, 20, 14, 0.94);
  opacity: 0;
  transition: opacity 0.28s var(--ease);
}
.lightbox[hidden] {
  display: none;
}
.lightbox.is-open {
  opacity: 1;
}
.lb-stage {
  margin: 0;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.lb-img {
  max-width: min(92vw, 1100px);
  max-height: 78vh;
  width: auto;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
  transform: scale(0.96);
  opacity: 0;
  transition:
    transform 0.32s var(--ease),
    opacity 0.32s var(--ease);
}
.lightbox.is-ready .lb-img {
  transform: none;
  opacity: 1;
}
.lb-cap {
  display: flex;
  gap: 14px;
  align-items: baseline;
  flex-wrap: wrap;
  justify-content: center;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  text-align: center;
}
.lb-count {
  color: rgba(255, 255, 255, 0.55);
  font-variant-numeric: tabular-nums;
}
.lb-close,
.lb-nav {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition:
    background 0.22s var(--ease),
    transform 0.22s var(--ease),
    border-color 0.22s var(--ease);
}
.lb-close:hover,
.lb-nav:hover {
  background: var(--green);
  border-color: var(--green);
  transform: scale(1.08);
}
.lb-close {
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  font-size: 1.3rem;
}
.lb-nav {
  top: 50%;
  margin-top: -26px;
  width: 52px;
  height: 52px;
  font-size: 1.5rem;
}
.lb-prev {
  left: 18px;
}
.lb-next {
  right: 18px;
}
@media (max-width: 760px) {
  .lb-nav {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
  }
  .lb-prev {
    left: 8px;
  }
  .lb-next {
    right: 8px;
  }
  .lb-close {
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
  }
  .lb-img {
    max-height: 68vh;
  }
}

/* media / video */
.media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
}
.media-frame video {
  width: 100%;
  display: block;
}


/* ----------------------------------------------------------------- forms */
.form-wrap{background:var(--surface-2);border:1px solid var(--line);border-radius:var(--radius-lg);
  padding:clamp(24px,3vw,36px);box-shadow:var(--shadow-sm)}
.form-wrap--center{max-width:780px;margin-inline:auto}
.form-title{font-size:1.5rem;margin-bottom:.35em}
.form-lede{color:var(--muted);font-size:.95rem;margin-bottom:22px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:0 18px}
.field{margin-bottom:16px}
.field label{display:block;font-size:.88rem;font-weight:600;color:var(--deep);margin-bottom:6px}
.field .req{color:#c0392b}
.field input,.field textarea{width:100%;font:inherit;font-size:.95rem;color:var(--deep);
  background:var(--surface);border:1px solid var(--line);border-radius:10px;padding:12px 14px;
  transition:border-color .2s var(--ease),box-shadow .2s var(--ease),background .2s var(--ease)}
.field textarea{resize:vertical;min-height:110px}
.field input:focus,.field textarea:focus{outline:none;background:var(--surface-2);
  border-color:var(--green-accent);box-shadow:0 0 0 3px rgba(27,174,112,.18)}
.field input[aria-invalid="true"],.field textarea[aria-invalid="true"]{border-color:#c0392b;background:#fdf3f2}
.field .err{display:block;color:#c0392b;font-size:.8rem;margin-top:5px}
.hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}
.field--turnstile{margin-bottom:18px}
.field--turnstile .cf-turnstile{min-height:65px}
.err-turnstile{display:block;color:#c0392b;font-size:.8rem;margin-top:6px}
.form-submit{position:relative;min-width:180px}
.form-submit[disabled]{opacity:.75;cursor:not-allowed;transform:none}
.spinner{display:none;width:16px;height:16px;border:2px solid rgba(255,255,255,.45);
  border-top-color:#fff;border-radius:50%;animation:spin .7s linear infinite}
.is-sending .spinner{display:inline-block}
@keyframes spin{to{transform:rotate(360deg)}}
.form-status{margin:14px 0 0;font-size:.9rem;font-weight:600;min-height:1.2em}
.form-status.ok{color:var(--green)}
.form-status.bad{color:#c0392b}
@media (max-width:620px){.form-row{grid-template-columns:1fr}}

/* ----------------------------------------------------------- contact info */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3.5vw, 44px);
}
.info-list {
  list-style: none;
  display: grid;
  gap: 26px;
}
.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.info-item .ico {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green-accent);
  color: #fff;
  font-size: 1.05rem;
}
.info-item h3 {
  font-size: 1.02rem;
  color: var(--deep);
  margin-bottom: 0.25em;
}
.info-item p,
.info-item a {
  margin: 0;
  font-size: 0.95rem;
  color: var(--body);
}
.info-item a:hover {
  color: var(--green);
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  line-height: 0;
}
.map-embed iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.cta-band {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(34px, 4.5vw, 56px);
  text-align: center;
  color: #fff;
}
.cta-band h2 {
  color: #fff;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 640px;
  margin: 0 auto 26px;
}
.cta-band .btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------------------------------------------------------------- footer */
.site-footer {
  background: var(--deep);
  color: #afbcb3;
  padding: clamp(50px, 6vw, 80px) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: clamp(28px, 3.5vw, 48px);
}
.site-footer h2 {
  color: #fff;
  font-size: 1.12rem;
  margin-bottom: 1em;
  font-weight: 700;
}
.site-footer p,
.site-footer li,
.site-footer a {
  font-size: 0.92rem;
  color: #afbcb3;
  line-height: 1.8;
}
.site-footer a:hover {
  color: var(--green-accent);
}
.footer-brand img {
  height: 66px;
  width: auto;
  border-radius: 10px;
  margin-bottom: 18px;
} /* footer logo: 10px radius */
.site-footer ul {
  list-style: none;
  display: grid;
  gap: 7px;
}
.footer-contact li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
}
.footer-contact i {
  color: var(--green-accent);
  margin-top: 0.45em;
  flex-shrink: 0;
  width: 15px;
  text-align: center;
}
.socials {
  display: flex;
  gap: 11px;
  margin-top: 20px;
}
.socials a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1rem;
  transition:
    background 0.25s var(--ease),
    transform 0.25s var(--ease);
}
.socials a:hover {
  background: var(--green-accent);
  color: #fff;
  transform: translateY(-3px);
}
.footer-bottom {
  margin-top: clamp(36px, 4vw, 56px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.87rem;
}
.footer-bottom i.fa-heart {
  color: #e2534b;
}

/* --------------------------------------------------- floating call / chat */
.float-call,
.float-wa {
  position: fixed;
  bottom: 26px;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.45rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.float-call {
  left: 26px;
  background: var(--green);
} /* call on the LEFT  */
.float-wa {
  right: 26px;
  background: #25d366;
} /* whatsapp on RIGHT */
.float-call:hover,
.float-wa:hover {
  transform: scale(1.09) translateY(-3px);
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.34);
}

/* ---------------------------------------------------------- scroll reveal */
/* Reveal-on-scroll. Content is ONLY hidden when JS is present (.js on <html>),
   so a disabled, blocked or failed script never leaves a blank page. The inline
   head failsafe adds .reveal-shown after 2s to force everything visible if the
   main script never runs. */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.js .reveal.is-visible,
.reveal-shown .reveal {
  opacity: 1;
  transform: none;
}
.reveal-d1 {
  transition-delay: 0.09s;
}
.reveal-d2 {
  transition-delay: 0.18s;
}
.reveal-d3 {
  transition-delay: 0.27s;
}
.reveal-d4 {
  transition-delay: 0.36s;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* --------------------------------------------------------- prose (policy) */
.prose {
  max-width: 900px;
}
.prose h2 {
  font-size: 1.5rem;
  margin-top: 1.8em;
}
.prose h3 {
  font-size: 1.15rem;
  color: var(--deep);
  margin-top: 1.5em;
}
.prose ul {
  margin: 0 0 1.2em;
  padding-left: 1.3em;
  list-style: disc;
}
.prose li {
  margin-bottom: 0.5em;
}
.prose a {
  text-decoration: underline;
}

.img-process{
width: 100%;
height: 450px;
object-fit: cover;
object-position: center;

}
/* links page */
.link-list {
  list-style: none;
  display: grid;
  gap: 14px;
  max-width: 640px;
}
.link-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 24px;
  font-weight: 600;
  color: var(--deep);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    border-color 0.25s var(--ease);
}
.link-list a:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow);
  border-color: var(--green-accent);
  color: var(--green);
}
.link-list i {
  color: var(--green-accent);
}

/* ======================================================== responsive ==== */
@media (max-width: 1180px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1024px) {
  .nav,
  .header-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .split,
  .split--narrow,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero-media {
    order: -1;
    height: 40vh;
    min-height: 200px;
  }
  .hero-copy {
    padding: clamp(28px, 5vw, 46px) var(--gutter);
  }
  .gallery-grid {
    columns: 2;
  }
}
@media (max-width: 760px) {
  :root {
    --header-h: 70px;
    --gutter: 18px;
  }
  .brand img {
    height: 42px;
  }
  .brand span {
    font-size: 0.95rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat:nth-child(2) {
    border-right: 0;
  }
  .stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .hero-copy .sub {
    max-width: none;
  }
  .hero-media {
    height: 34vh;
    min-height: 180px;
  }
  .hero-copy {
    padding: 26px var(--gutter) 34px;
  }
  .hero-copy h1,
  .hero-copy .hero-title {
    font-size: clamp(1.6rem, 7vw, 2.1rem);
  }
  .hero-copy .kicker {
    font-size: clamp(0.92rem, 3.6vw, 1.05rem);
    margin-bottom: 0.45em;
  }
  .hero-dots {
    bottom: 12px;
  }
}
@media (max-width: 560px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    columns: 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .float-call,
  .float-wa {
    width: 52px;
    height: 52px;
    font-size: 1.3rem;
    bottom: 18px;
  }
  .float-call {
    left: 18px;
  }
  .float-wa {
    right: 18px;
  }
  .map-embed iframe {
    height: 320px;
  }
  .hero-actions .btn {
    width: 100%;
  }
}

@media print {
  .site-header,
  .drawer,
  .scrim,
  .float-call,
  .float-wa,
  .hero-dots {
    display: none !important;
  }
}
