:root {
  /* Premium natural real-estate palette */
  --white: #ffffff;
  --cream: #f7f3eb;
  --cream-dark: #ebe4d6;
  --green-dark: #002b1e;
  --green: #1a4a3a;
  --green-mid: #2d6a4f;
  --green-light: #74a882;
  --green-soft: #e8f2ec;
  --gold: #c5a059;
  --gold-soft: #f3ead8;
  --charcoal: #2a2a2a;
  --muted: #5c635e;
  --border: #ddd6c8;
  --shadow: 0 8px 28px rgba(0, 43, 30, 0.08);
  --radius: 14px;
  --header-h: 78px;
  --font: "DM Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--cream);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 600;
  color: var(--green-dark);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.section-lead {
  color: var(--muted);
  max-width: 640px;
  margin: 0 0 2.25rem;
  font-size: 1.05rem;
}

.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-head .section-lead {
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  font-family: inherit;
  line-height: 1.2;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--green-dark);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--green-dark);
}

.btn-outline-dark {
  background: transparent;
  border-color: var(--green-dark);
  color: var(--green-dark);
}

.btn-outline-dark:hover {
  background: var(--green-dark);
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: #a68448;
  color: var(--white);
}

.btn-call {
  background: var(--gold);
  color: var(--green-dark);
  padding: 0.7rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.btn-call:hover {
  background: #d4af6a;
  color: var(--green-dark);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #1ebe57;
  color: #fff;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid rgba(0, 43, 30, 0.08);
  height: var(--header-h);
  box-shadow: 0 2px 18px rgba(0, 43, 30, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--green-dark);
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  height: 46px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.drawer-brand-logo {
  display: block;
  height: 36px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--green-dark), var(--green-mid));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--green-dark);
}

.brand-place {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.15rem;
}

.brand-place::before,
.brand-place::after {
  content: "";
  width: 14px;
  height: 1px;
  background: var(--gold);
  opacity: 0.85;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav a {
  padding: 0.55rem 0.95rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green);
  border-radius: 999px;
  transition: color 0.15s, background 0.15s;
}

.nav a:hover {
  color: var(--green-dark);
  background: var(--green-soft);
}

.nav a.active {
  color: #fff;
  background: var(--green-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--green-dark);
  cursor: pointer;
  padding: 0.35rem;
}

/* Mobile drawer — opens from right (hamburger side) */
.nav-overlay,
.mobile-drawer {
  display: none;
}

body.menu-open {
  overflow: hidden;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: stretch;
  color: var(--white);
  overflow: hidden;
  background: var(--green-dark);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(0, 20, 14, 0.94) 0%, rgba(0, 35, 24, 0.82) 36%, rgba(0, 43, 30, 0.45) 62%, rgba(0, 43, 30, 0.22) 100%),
    url("../images/hero-gate.png") right center / cover no-repeat;
  z-index: 0;
}

.hero-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 4rem 0 0;
  gap: 3rem;
  flex: 1;
}

.hero-content {
  position: relative;
  max-width: 620px;
  margin: 0;
  padding: 1.5rem 0 2rem;
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(0, 30, 22, 0.7);
  border: 1px solid rgba(197, 160, 89, 0.45);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 1.35rem;
  backdrop-filter: blur(8px);
}

.hero-badge i {
  color: var(--gold);
}

.hero-project {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.75rem;
  font-weight: 700;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5.2vw, 3.55rem);
  line-height: 1.12;
  margin: 0 0 0.35rem;
  font-weight: 650;
  letter-spacing: -0.03em;
  color: #fff;
}

.hero h1 em {
  display: inline;
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

.hero-leaf {
  display: inline-flex;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1.1rem;
  opacity: 0.95;
}

.hero-sub {
  font-size: 1.05rem;
  opacity: 0.92;
  margin: 0 0 2rem;
  max-width: 460px;
  line-height: 1.6;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: flex-start;
}

.btn-hero-primary {
  background: rgba(0, 43, 30, 0.85);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}

.btn-hero-primary:hover {
  background: var(--green-dark);
  color: #fff;
  border-color: var(--gold);
}

.btn-hero-gold {
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
  font-weight: 700;
}

.btn-hero-gold:hover {
  background: #d4af6a;
  color: var(--green-dark);
}

/* Hero features strip — curved top like reference */
.hero-features-wrap {
  margin-top: auto;
  background: transparent;
  padding: 0;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.25rem;
  padding: 1.6rem 1.1rem 1.35rem;
  border-radius: 28px 28px 0 0;
  background: #002a1e;
  border: 1px solid rgba(197, 160, 89, 0.5);
  border-bottom: none;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
  position: relative;
}

.hero-features::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 0;
  height: 3px;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 20%, var(--gold) 80%, transparent 100%);
  opacity: 0.9;
}

.hero-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.45rem 0.5rem;
  position: relative;
}

.hero-feature + .hero-feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: rgba(197, 160, 89, 0.28);
}

.hero-feature-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
  background: rgba(197, 160, 89, 0.08);
}

.hero-feature-icon i {
  display: block;
  line-height: 1;
}

.hero-feature strong {
  display: block;
  font-size: 0.84rem;
  color: #fff;
  margin-bottom: 0.18rem;
  line-height: 1.25;
}

.hero-feature > div > span {
  display: block;
  font-size: 0.72rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
}

/* About Project section */
.about-section {
  position: relative;
  overflow: hidden;
  background: #f9f8f0;
  padding: 5rem 0 4.75rem;
}

.about-section-bg {
  position: absolute;
  inset: 0;
  background: url("../images/about-bg.png") center bottom / cover no-repeat;
  pointer-events: none;
  z-index: 0;
}

.about-leaves {
  position: absolute;
  color: rgba(26, 60, 52, 0.12);
  font-size: 4.5rem;
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}

.about-leaves-tl {
  top: 1.25rem;
  left: 1rem;
  transform: rotate(-18deg);
}

.about-leaves-bl {
  bottom: 3.5rem;
  left: 2rem;
  font-size: 5rem;
  color: rgba(26, 60, 52, 0.1);
}

.about-section-inner {
  position: relative;
  z-index: 1;
}

.about-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 2.75rem;
  align-items: center;
}

.about-eyebrow {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.about-eyebrow > span:first-child {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.about-eyebrow-line {
  display: inline-flex;
  align-items: center;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(197, 160, 89, 0.15));
  position: relative;
  color: var(--gold);
}

.about-eyebrow-line i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #f9f8f0;
  padding: 0 0.35rem;
  font-size: 0.75rem;
}

.about-text .section-title {
  color: #1a3c34;
  margin-bottom: 1rem;
  max-width: 18ch;
}

.about-text p {
  color: #3d524b;
  margin: 0 0 1.15rem;
  line-height: 1.75;
  font-size: 0.98rem;
}

.btn-about {
  background: #1a3c34;
  color: #fff;
  border: 1.5px solid var(--gold);
  margin-top: 0.5rem;
}

.btn-about:hover {
  background: #244a40;
  color: #fff;
  border-color: #d4af6a;
}

.about-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.about-mini-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  padding: 1.25rem 0.85rem 1.15rem;
  text-align: center;
  box-shadow: 0 8px 22px rgba(26, 60, 52, 0.06);
  border: 1px solid rgba(220, 214, 198, 0.8);
  transition: transform 0.2s, box-shadow 0.2s;
}

.about-mini-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(26, 60, 52, 0.1);
}

.about-mini-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: #1a3c34;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1;
}

.about-mini-icon i {
  display: block;
  line-height: 1;
  color: var(--gold);
}

.about-mini-icon img {
  width: 22px;
  height: 22px;
}

.about-mini-line {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 0.75rem;
  border-radius: 2px;
  opacity: 0.85;
}

.about-mini-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a3c34;
  line-height: 1.3;
}

/* Legacy highlight (unused on home, keep safe) */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.highlight-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.1rem;
  text-align: center;
}

.highlight-card .icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.85rem;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green-dark);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
}

.highlight-card h3 {
  margin: 0;
  font-size: 0.98rem;
  color: var(--green-dark);
}

/* Why Choose Us / Highlights */
.why-section {
  position: relative;
  overflow: hidden;
  background: #f7f3eb;
  padding: 5rem 0 4.75rem;
}

.why-section-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(26, 60, 52, 0.05) 0 1px, transparent 1.5px) 0 0 / 18px 18px,
    radial-gradient(circle at 92% 82%, rgba(26, 60, 52, 0.05) 0 1px, transparent 1.5px) 0 0 / 18px 18px,
    linear-gradient(180deg, #f9f6ee 0%, #f3efe4 100%);
}

.why-section-bg::before,
.why-section-bg::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(116, 168, 130, 0.12), transparent 70%);
}

.why-section-bg::before {
  top: -40px;
  left: -50px;
}

.why-section-bg::after {
  bottom: -60px;
  right: -40px;
}

.why-section-inner {
  position: relative;
  z-index: 1;
}

.why-head {
  margin-bottom: 2.5rem;
}

.why-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.why-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.why-section .section-title {
  color: #1a3c34;
  margin-bottom: 0.85rem;
}

.why-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  color: var(--gold);
  margin-bottom: 0.9rem;
  font-size: 0.9rem;
}

.why-divider span {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.why-section .section-lead {
  color: #3d524b;
  max-width: 520px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.why-card {
  background: #fffcf5;
  border-radius: 16px;
  padding: 1.75rem 1.15rem 1.5rem;
  text-align: center;
  box-shadow: 0 10px 28px rgba(26, 60, 52, 0.06);
  border: 1px solid rgba(210, 200, 180, 0.75);
  border-bottom: 3px solid #1a3c34;
  transition: transform 0.2s, box-shadow 0.2s;
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(26, 60, 52, 0.1);
}

.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: #1a3c34;
  border: 2px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  line-height: 1;
}

.why-icon i {
  display: block;
  line-height: 1;
  color: var(--gold);
}

.why-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 650;
  color: #1a3c34;
}

.why-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #4a5550;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-card {
  background: var(--green-dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
}

.stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
  color: var(--gold-soft);
}

.stat-card span {
  font-size: 0.88rem;
  opacity: 0.9;
}

/* Amenities section — cream botanical design */
.amenities-section {
  position: relative;
  overflow: hidden;
  background: #f7f3eb;
  padding: 5rem 0 4.5rem;
}

.amenities-section-bg {
  position: absolute;
  inset: 0;
  background: url("../images/amenities-bg.png") center / cover no-repeat;
  opacity: 0.95;
  pointer-events: none;
  z-index: 0;
}

.amenities-section-inner {
  position: relative;
  z-index: 1;
}

.amenities-head {
  margin-bottom: 2.75rem;
}

.amenities-eyebrow {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
  color: var(--gold);
}

.amenities-eyebrow > i {
  font-size: 0.95rem;
}

.amenities-eyebrow > span {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.amenities-eyebrow > span::before,
.amenities-eyebrow > span::after {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.85;
}

.amenities-section .section-title {
  color: #0f3d2e;
}

.amenities-section .section-lead {
  color: #5a635c;
  max-width: 560px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.amenity-card {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(210, 200, 180, 0.9);
  border-radius: 16px;
  padding: 1.55rem 1.3rem 1.7rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 61, 46, 0.05);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.amenity-card:hover {
  box-shadow: 0 14px 32px rgba(15, 61, 46, 0.1);
  border-color: rgba(197, 160, 89, 0.55);
  transform: translateY(-2px);
}

.amenity-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #0f3d2e;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.amenity-card .icon i {
  display: block;
  line-height: 1;
  color: var(--gold);
}

.amenity-card .icon img {
  width: 24px;
  height: 24px;
  filter: none;
}

.amenity-card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  color: #0f3d2e;
  position: relative;
  z-index: 1;
}

.amenity-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #6a736c;
  position: relative;
  z-index: 1;
  max-width: 92%;
}

.amenity-watermark {
  position: absolute;
  right: 0.6rem;
  bottom: 0.2rem;
  font-size: 3.4rem;
  color: rgba(15, 61, 46, 0.07);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.amenities-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.btn-amenities {
  background: #0f3d2e;
  color: #fff;
  border: 1.5px solid var(--gold);
  padding: 0.9rem 1.75rem;
  gap: 0.65rem;
}

.btn-amenities:hover {
  background: #164a38;
  color: #fff;
  border-color: #d4af6a;
}

.btn-amenities .bi-flower1 {
  color: var(--gold);
}

.amenities-page {
  padding-top: 4rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream-dark);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item .caption {
  position: absolute;
  inset: auto 0 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(transparent, rgba(15, 40, 30, 0.75));
  color: #fff;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.25s;
}

.gallery-item:hover .caption {
  opacity: 1;
}

.gallery-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted);
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px dashed var(--border);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 20, 16, 0.92);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(960px, 100%);
  max-height: 85vh;
  border-radius: 8px;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
}

.lightbox-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 0.95rem;
}

/* Location section */
.location-section {
  position: relative;
  overflow: hidden;
  background: #f7f4eb;
  padding: 5rem 0 4.75rem;
}

.location-section-bg {
  position: absolute;
  inset: 0;
  background:
    url("../images/location-decor.svg") center / cover no-repeat;
  pointer-events: none;
  z-index: 0;
}

.location-section-bg::before,
.location-section-bg::after {
  content: "";
  position: absolute;
  width: min(42vw, 420px);
  height: min(42vw, 420px);
  pointer-events: none;
  opacity: 0.55;
}

.location-section-bg::before {
  top: -12%;
  right: -8%;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(184, 192, 168, 0.55) 0%, transparent 62%),
    radial-gradient(ellipse at 70% 70%, rgba(200, 206, 182, 0.4) 0%, transparent 55%);
}

.location-section-bg::after {
  bottom: -18%;
  left: -10%;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(184, 192, 168, 0.5) 0%, transparent 60%),
    radial-gradient(ellipse at 30% 70%, rgba(200, 206, 182, 0.35) 0%, transparent 55%);
}

.location-section-inner {
  position: relative;
  z-index: 1;
}

.location-head {
  margin-bottom: 2.25rem;
}

.location-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.location-eyebrow-line {
  width: 52px;
  height: 1px;
  background: rgba(26, 60, 52, 0.35);
}

.location-eyebrow-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #1a3c34;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  line-height: 1;
}

.location-eyebrow-badge i {
  display: block;
  line-height: 1;
}

.location-eyebrow-text {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #4a5550;
}

.location-title {
  color: #1a3c34;
  position: relative;
  display: inline-block;
  margin-bottom: 0;
}

.location-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 0.7rem auto 0;
  border-radius: 4px;
  background: #1a3c34;
}

.location-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 1.25rem;
  background: #fffcf5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(26, 60, 52, 0.1);
  border: 1px solid rgba(210, 200, 180, 0.7);
  padding: 1.35rem;
  align-items: stretch;
}

.location-corner {
  position: absolute;
  top: 0;
  left: 0;
  width: 78px;
  height: 78px;
  background: #1a3c34;
  border-bottom-right-radius: 78%;
  color: var(--gold);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0.95rem 0 0 0.95rem;
  font-size: 1.15rem;
  z-index: 2;
  line-height: 1;
  pointer-events: none;
}

.location-corner::after {
  content: "";
  position: absolute;
  left: 10px;
  width: 42px;
  bottom: 10px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: rotate(-22deg);
  transform-origin: left center;
  opacity: 0.85;
}

.location-corner i {
  display: block;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.location-info {
  position: relative;
  z-index: 1;
  padding: 1.5rem 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-info h3 {
  font-family: var(--font-display);
  color: #1a3c34;
  margin: 0 0 0.85rem;
  padding-left: 0.15rem;
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 650;
  line-height: 1.25;
}

.location-info p {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #5c635e;
  margin: 0 0 1.5rem;
  line-height: 1.6;
  font-size: 0.98rem;
}

.location-info p i {
  color: #1a3c34;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.btn-location {
  align-self: flex-start;
  background: linear-gradient(135deg, #1a3c34, #245447);
  color: #fff;
  border: none;
  box-shadow: 0 10px 22px rgba(26, 60, 52, 0.22);
}

.btn-location:hover {
  background: linear-gradient(135deg, #214840, #2c6454);
  color: #fff;
}

.map-frame {
  min-height: 300px;
  background: #ebe6da;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(200, 190, 170, 0.8);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
  display: block;
}

.map-placeholder {
  height: 100%;
  min-height: 300px;
  display: grid;
  place-items: center;
  padding: 2rem;
  text-align: center;
  color: var(--muted);
}

@media (max-width: 768px) {
  .location-card {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .location-corner {
    width: 64px;
    height: 64px;
    padding: 0.75rem 0 0 0.75rem;
    font-size: 1rem;
  }

  .location-corner::after {
    width: 28px;
    bottom: 8px;
  }

  .location-info {
    padding: 1.35rem 0.75rem 1rem;
  }

  .location-info h3 {
    padding-top: 0.15rem;
    margin-left: 3.25rem;
    font-size: 1.28rem;
  }

  .btn-location {
    width: 100%;
  }
}

/* Promoter card section */
.promoter-section {
  position: relative;
  overflow: hidden;
  background: #f6f3ea;
  padding: 4.75rem 0;
}

.promoter-section-bg {
  position: absolute;
  inset: 0;
  background: url("../images/promoter-bg.png") center / cover no-repeat;
  opacity: 0.95;
  pointer-events: none;
  z-index: 0;
}

.promoter-section .container {
  position: relative;
  z-index: 1;
}

.promoter-card {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr;
  align-items: stretch;
  background: #fffcf6;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(26, 60, 52, 0.12);
  border: 1px solid rgba(210, 200, 180, 0.65);
  min-height: 280px;
}

.promoter-info {
  padding: 2.4rem 2.25rem 2.25rem;
  color: #1a3c34;
}

.promoter-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.promoter-label i {
  font-size: 0.9rem;
}

.promoter-label-line {
  width: 42px;
  height: 1px;
  background: var(--gold);
  position: relative;
}

.promoter-label-line::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}

.promoter-name {
  font-family: var(--font-display);
  margin: 0 0 1.15rem;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 650;
  color: #1a3c34;
  letter-spacing: -0.02em;
}

.promoter-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: grid;
  gap: 0.7rem;
}

.promoter-meta li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.98rem;
  color: #2f4a42;
}

.promoter-meta a {
  color: inherit;
}

.promoter-meta a:hover {
  color: var(--gold);
}

.promoter-meta-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  background: #1a3c34;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  line-height: 1;
}

.promoter-meta-icon i {
  display: block;
  line-height: 1;
}

.promoter-sep {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.35rem;
  color: var(--gold);
  font-size: 0.85rem;
}

.promoter-sep span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(197, 160, 89, 0.15), var(--gold), rgba(197, 160, 89, 0.15));
  max-width: 140px;
}

.promoter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-promoter-call {
  background: linear-gradient(135deg, #c5a059, #a88645);
  color: #fff;
  border: none;
  box-shadow: 0 8px 18px rgba(168, 134, 69, 0.28);
}

.btn-promoter-call:hover {
  background: linear-gradient(135deg, #d4af6a, #b8975a);
  color: #fff;
}

.btn-promoter-wa {
  background: linear-gradient(135deg, #2fce67, #22a955);
  color: #fff;
  border: none;
  box-shadow: 0 8px 18px rgba(34, 169, 85, 0.28);
}

.btn-promoter-wa:hover {
  background: linear-gradient(135deg, #39d973, #28b85f);
  color: #fff;
}

.promoter-aside {
  position: relative;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.06), transparent 45%),
    #1a3c34;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 18% 100%, 0 50%);
  border-left: 2px solid var(--gold);
}

.promoter-aside::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 80%, rgba(197, 160, 89, 0.12), transparent 40%),
    radial-gradient(circle at 40% 30%, rgba(255, 255, 255, 0.05), transparent 35%);
  pointer-events: none;
}

.promoter-avatar {
  position: relative;
  z-index: 1;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #f7f3eb;
  border: 2px solid var(--gold);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 3rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.promoter-avatar i {
  display: block;
  line-height: 1;
}

@media (max-width: 768px) {
  .promoter-section {
    padding: 2.5rem 1rem 3rem;
    background: #f3ebd8;
  }

  .promoter-section-bg {
    background: url("../images/promoter-decor-mobile.svg") center / cover no-repeat;
    opacity: 1;
  }

  .promoter-section .container {
    width: 100%;
    max-width: 440px;
    padding: 0;
  }

  .promoter-card {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 28px;
    box-shadow: 0 22px 50px rgba(26, 60, 52, 0.16);
    border: none;
    background: #fdf8e6;
  }

  .promoter-info {
    order: 1;
    padding: 1.85rem 1.4rem 1.5rem;
    text-align: left;
  }

  .promoter-name {
    font-size: 1.7rem;
    line-height: 1.2;
  }

  .promoter-meta li {
    font-size: 0.95rem;
  }

  .promoter-sep {
    justify-content: center;
  }

  .promoter-sep span {
    max-width: none;
    flex: 1;
  }

  .promoter-actions {
    flex-direction: column;
  }

  .btn-promoter-call,
  .btn-promoter-wa {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1.2rem;
  }

  .promoter-aside {
    order: 2;
    clip-path: polygon(0 22%, 12% 8%, 50% 0, 88% 8%, 100% 22%, 100% 100%, 0 100%);
    min-height: 200px;
    border-left: none;
    border-top: none;
    box-shadow: inset 0 2px 0 rgba(197, 160, 89, 0.85);
  }

  .promoter-aside::after {
    content: "";
    position: absolute;
    top: 14%;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.7;
    z-index: 1;
  }

  .promoter-avatar {
    width: 108px;
    height: 108px;
    font-size: 2.6rem;
  }
}

/* Get in Touch CTA card */
.cta-section {
  background: #f4f1e8;
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before,
.cta-section::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(197, 160, 89, 0.18);
  pointer-events: none;
}

.cta-section::before {
  top: -80px;
  left: -60px;
}

.cta-section::after {
  bottom: -100px;
  right: -40px;
  width: 320px;
  height: 320px;
}

.cta-card {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: #fffcf5;
  border-radius: 28px;
  padding: 2.75rem 2rem 2.5rem;
  box-shadow: 0 18px 48px rgba(26, 60, 52, 0.08);
  border: 1px solid rgba(220, 210, 190, 0.7);
}

.cta-ornament,
.cta-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}

.cta-line {
  display: block;
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  position: relative;
}

.cta-line::before,
.cta-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}

.cta-line::before { left: 0; }
.cta-line::after { right: 0; }

.cta-house {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #e6efe9;
  color: #1a3c34;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  line-height: 1;
}

.cta-house i {
  display: block;
  line-height: 1;
}

.cta-label {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.cta-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  color: #1a3c34;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.cta-divider {
  margin-bottom: 1rem;
  color: #2d6a4f;
  font-size: 0.9rem;
}

.cta-divider .cta-line {
  width: 48px;
}

.cta-text {
  margin: 0 auto 1.75rem;
  max-width: 380px;
  color: #5c635e;
  font-size: 1rem;
  line-height: 1.65;
}

.btn-cta {
  background: #1a3c34;
  color: #fff;
  border: none;
  padding: 0.55rem 1.35rem 0.55rem 0.55rem;
  gap: 0.75rem;
  box-shadow: 0 10px 24px rgba(26, 60, 52, 0.22);
}

.btn-cta:hover {
  background: #244a40;
  color: #fff;
}

.btn-cta-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e8f2ec;
  color: #1a3c34;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.btn-cta-icon i {
  display: block;
  line-height: 1;
}

@media (max-width: 480px) {
  .cta-card {
    padding: 2.15rem 1.25rem 2rem;
    border-radius: 22px;
  }

  .cta-line {
    width: 40px;
  }
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
}

.contact-info-box {
  background: var(--green-soft);
  border-radius: var(--radius);
  padding: 2rem;
}

.contact-info-box h3 {
  color: var(--green-dark);
  margin: 0 0 1rem;
  font-family: var(--font-display);
}

.contact-info-box ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.contact-info-box li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--muted);
}

.contact-info-box li i {
  color: var(--green);
  margin-top: 0.2rem;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
  background: var(--cream);
  color: var(--charcoal);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(116, 168, 130, 0.25);
  background: #fff;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
}

.alert {
  padding: 0.9rem 1.1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.alert-success {
  background: #e6f6ec;
  color: #1a5c38;
  border: 1px solid #b8e0c8;
}

.alert-error {
  background: #fdecea;
  color: #8a1f1a;
  border: 1px solid #f0c4c0;
}

/* Footer — premium dark green + gold */
.site-footer {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  padding: 3.75rem 0 1.5rem;
  overflow: hidden;
  background: #0d241c;
}

.footer-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 28, 22, 0.55) 0%, rgba(8, 28, 22, 0.35) 40%, rgba(8, 28, 22, 0.5) 100%),
    url("../images/footer-bg.png") center / cover no-repeat;
  pointer-events: none;
  z-index: 0;
}

.footer-inner {
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 2rem 2.5rem;
  padding-bottom: 2.25rem;
  align-items: start;
}

.footer-col {
  position: relative;
}

.footer-col + .footer-col::before {
  content: "";
  position: absolute;
  left: -1.25rem;
  top: 0.25rem;
  bottom: 0.25rem;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(184, 151, 90, 0.45), transparent);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
}

.footer-logo-mark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 1.35rem;
  flex-shrink: 0;
  background: rgba(184, 151, 90, 0.08);
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.footer-logo-name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.footer-logo-sub {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.footer-logo-img {
  display: block;
  height: 56px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.footer-about {
  margin: 0 0 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.55;
  max-width: 28ch;
}

.footer-location {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.footer-location i {
  color: var(--gold);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.footer-heading {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.1rem;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.footer-heading::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  background: var(--gold);
  margin-left: 0.15rem;
  border-radius: 2px;
  opacity: 0.85;
}

.footer-heading i {
  font-size: 1rem;
}

.footer-promoter-name {
  margin: 0 0 0.85rem;
  font-size: 1.08rem;
  font-weight: 700;
  color: #fff;
}

.footer-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.footer-meta li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.footer-meta i {
  color: var(--gold);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.footer-meta a {
  color: inherit;
}

.footer-meta a:hover {
  color: var(--gold);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.35rem;
}

.footer-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.4rem 0.15rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(184, 151, 90, 0.12);
  transition: color 0.15s, padding-left 0.15s;
}

.footer-links a span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.footer-links a span i,
.footer-links a > .bi-chevron-right {
  color: var(--gold);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 0.35rem;
  text-decoration: none;
}

.footer-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0.5rem 0 1.75rem;
  padding: 1.35rem 1rem;
  border-radius: 16px;
  background: rgba(8, 28, 22, 0.55);
  border: 1px solid rgba(184, 151, 90, 0.35);
  backdrop-filter: blur(4px);
}

.footer-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.35rem 1rem;
  position: relative;
}

.footer-feature + .footer-feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: rgba(184, 151, 90, 0.35);
}

.footer-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.15rem;
  line-height: 1;
  flex-shrink: 0;
  background: rgba(184, 151, 90, 0.08);
}

.footer-feature-icon i {
  display: block;
  line-height: 1;
  font-size: 1.15rem;
}

.footer-feature strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.footer-feature > div > span {
  display: block;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.7);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 1.35rem;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 1.1rem;
  transition: background 0.15s, color 0.15s, transform 0.15s;
}

.footer-social a:hover {
  background: var(--gold);
  color: #0d241c;
  transform: translateY(-2px);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(184, 151, 90, 0.4);
  padding-top: 1.15rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-leaf {
  display: inline-block;
  margin-top: 0.65rem;
  color: var(--gold);
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Floating buttons */
.float-actions {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.25rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  transition: transform 0.15s;
}

.float-btn:hover {
  transform: scale(1.06);
  color: #fff;
}

.float-call {
  background: var(--green-dark);
}

.float-wa {
  background: #25d366;
}

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(120deg, var(--green-dark), #2a5f4a);
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.page-hero p {
  margin: 0;
  opacity: 0.9;
}

@media (max-width: 1100px) {
  .nav a {
    padding: 0.5rem 0.65rem;
    font-size: 0.84rem;
  }

  .hero-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
    border-radius: 22px 22px 0 0;
  }

  .hero-feature + .hero-feature::before {
    display: none;
  }
}

@media (max-width: 992px) {
  .highlight-grid,
  .amenities-grid,
  .stats-row,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-layout,
  .location-card,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-text .section-title {
    max-width: none;
  }

  .about-highlights-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-col + .footer-col::before {
    display: none;
  }

  .footer-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.25rem;
  }

  .footer-feature + .footer-feature::before {
    display: none;
  }

  .footer-feature {
    padding: 0.5rem 0.35rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .desktop-nav {
    display: none !important;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(8, 24, 18, 0.45);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
  }

  .nav-overlay.open {
    opacity: 1;
    visibility: visible;
  }

  .mobile-drawer {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: min(88vw, 360px);
    height: 100%;
    height: 100dvh;
    z-index: 1200;
    background: #1a3c34;
    transform: translateX(105%);
    transition: transform 0.3s ease;
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    visibility: visible;
    pointer-events: none;
  }

  .mobile-drawer.open {
    transform: translateX(0);
    pointer-events: auto;
  }

  .drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1.15rem 1rem 1.35rem;
    background:
      radial-gradient(circle at 90% 10%, rgba(197, 160, 89, 0.12), transparent 40%),
      #1a3c34;
  }

  .drawer-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: #fff;
    min-width: 0;
  }

  .drawer-brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1.5px solid var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
  }

  .drawer-brand strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
  }

  .drawer-brand small {
    display: block;
    color: var(--gold);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-top: 0.15rem;
  }

  .drawer-head-actions {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
  }

  .drawer-call-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gold);
    color: #1a3c34;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .drawer-close {
    width: 38px;
    height: 38px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .drawer-panel {
    flex: 1;
    background: #f7f3eb;
    border-radius: 22px 22px 0 0;
    margin-top: 0.15rem;
    padding: 1.25rem 1rem 1.35rem;
    overflow-y: auto;
    position: relative;
    display: flex;
    flex-direction: column;
  }

  .drawer-panel::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 18px;
    background: #f7f3eb;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
  }

  .drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1.25rem;
  }

  .drawer-nav a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 0.75rem;
    border-radius: 12px;
    color: #0f2e28;
    font-weight: 700;
    font-size: 0.98rem;
    border-bottom: 1px solid rgba(26, 60, 52, 0.1);
    background: rgba(255, 255, 255, 0.55);
  }

  .drawer-nav a:last-child {
    border-bottom: none;
  }

  .drawer-nav a > span:nth-child(2) {
    color: #0f2e28;
    font-weight: 700;
  }

  .drawer-nav a .bi-chevron-right {
    margin-left: auto;
    color: #1a3c34;
    font-size: 1rem;
    opacity: 0.55;
    font-weight: 700;
  }

  .drawer-ico {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: #1a3c34;
    color: #f3ead8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.15rem;
    line-height: 1;
  }

  .drawer-ico i {
    display: block;
    line-height: 1;
    color: #f3ead8;
    font-size: 1.15rem;
    -webkit-text-stroke: 0;
  }

  .drawer-nav a.active {
    background: #1a3c34;
    color: #fff;
    border-bottom-color: transparent;
  }

  .drawer-nav a.active > span:nth-child(2) {
    color: #fff;
  }

  .drawer-nav a.active .drawer-ico {
    background: rgba(197, 160, 89, 0.22);
    color: var(--gold);
  }

  .drawer-nav a.active .drawer-ico i {
    color: var(--gold);
  }

  .drawer-nav a.active .bi-chevron-right {
    color: rgba(255, 255, 255, 0.85);
    opacity: 1;
  }

  .drawer-help {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem;
    border: 1px solid rgba(26, 60, 52, 0.14);
    border-radius: 14px;
    background: #fff;
    margin-bottom: 0.9rem;
  }

  .drawer-help-ico {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: #1a3c34;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
  }

  .drawer-help-ico svg {
    display: block;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }

  .drawer-help strong {
    display: block;
    color: #0f2e28;
    font-size: 0.98rem;
    font-weight: 700;
  }

  .drawer-help span {
    display: block;
    color: #4a5550;
    font-size: 0.82rem;
    font-weight: 500;
  }

  .btn-drawer-call {
    width: 100%;
    justify-content: center;
    background: linear-gradient(135deg, #c5a059, #a88645);
    color: #fff;
    border: none;
    margin-top: auto;
    box-shadow: 0 8px 20px rgba(168, 134, 69, 0.28);
  }

  .btn-drawer-call:hover {
    background: linear-gradient(135deg, #d4af6a, #b8975a);
    color: #fff;
  }

  .header-actions .btn-call span {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-wrap {
    padding: 1.75rem 0 0;
    gap: 1.5rem;
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0.25rem 0 0.75rem;
    text-align: center;
  }

  .hero-badge {
    margin-bottom: 0.85rem;
    padding: 0.35rem 0.85rem;
    font-size: 0.78rem;
  }

  .hero-project {
    letter-spacing: 0.12em;
    font-size: 0.7rem;
    margin-bottom: 0.45rem;
  }

  .hero h1 {
    font-size: clamp(1.7rem, 7vw, 2.15rem);
    line-height: 1.18;
    margin-bottom: 0.25rem;
  }

  .hero-leaf {
    margin-bottom: 0.65rem;
    font-size: 0.85rem;
  }

  .hero-sub {
    margin: 0 auto 1.25rem;
    max-width: 320px;
    font-size: 0.92rem;
    line-height: 1.5;
    opacity: 0.88;
  }

  .hero-actions {
    justify-content: center;
    gap: 0.65rem;
  }

  .hero-actions .btn {
    flex: 1 1 calc(50% - 0.4rem);
    max-width: 180px;
    padding: 0.7rem 0.85rem;
    font-size: 0.86rem;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(0, 18, 12, 0.82) 0%, rgba(0, 32, 22, 0.68) 45%, rgba(0, 36, 26, 0.92) 100%),
      url("../images/hero-gate.png") center 40% / cover no-repeat;
  }

  .hero-features-wrap .container {
    width: min(100%, calc(100% - 1rem));
  }

  .hero-features {
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem 0.35rem;
    padding: 1.15rem 0.65rem 1rem;
    border-radius: 20px 20px 0 0;
  }

  .hero-feature {
    padding: 0.35rem 0.25rem;
    align-items: center;
  }

  .hero-feature-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 0.85rem;
  }

  .hero-feature strong {
    font-size: 0.78rem;
    margin-bottom: 0;
  }

  .hero-feature > div > span {
    display: none;
  }

  .highlight-grid,
  .amenities-grid,
  .stats-row,
  .gallery-grid,
  .footer-features,
  .about-highlights-grid,
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 3.25rem 0;
  }

  .site-footer {
    padding: 2.75rem 0 1.25rem;
  }

  .footer-logo-name {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .hero-wrap {
    padding-top: 1.35rem;
    gap: 1.25rem;
  }

  .hero-actions {
    flex-direction: row;
  }

  .hero-actions .btn {
    width: auto;
    flex: 1 1 0;
    max-width: none;
  }

  .hero-features {
    grid-template-columns: 1fr 1fr;
  }

  .about-highlights-grid,
  .amenities-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .brand-name {
    font-size: 0.98rem;
  }
}
