:root {
  --forest-dark: #0d2818;
  --forest-primary: #1b4332;
  --forest-medium: #2d6a4f;
  --sage-light: #95d5b2;
  --gold-accent: #c9a24b;
  --gold-light: #e8d9a8;
  --cream-bg: #f8f6ef;
  --ivory-card: #fdfcf7;
  --text-dark: #1a1a1a;
  --text-muted: #5a5a52;
  --accent-orange: #d97b3f;

  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Jost", "Inter", system-ui, sans-serif;

  --container: 1240px;
  --radius: 14px;
  --shadow-card: 0 14px 40px rgba(13, 40, 24, 0.12);
  --shadow-dark: 0 18px 50px rgba(0, 0, 0, 0.35);
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--cream-bg);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  width: min(var(--container), 92%);
  margin-inline: auto;
}

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-accent), var(--gold-light));
  z-index: 1001;
  transition: width 0.1s linear;
}

/* ---------- Navbar ---------- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.site-nav.scrolled {
  background: rgba(13, 40, 24, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(201, 162, 75, 0.2);
}

.nav-inner {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-inline: clamp(20px, 3vw, 40px);
  transition: height 0.4s ease;
}

.site-nav.scrolled .nav-inner {
  height: 64px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  flex-shrink: 0;
}

.logo-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
  transform: rotate(-8deg) scale(1.05);
}

.logo-word {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.15;
  transition: color 0.3s ease;
}

.logo:hover .logo-word {
  color: var(--gold-light);
}

.logo-tag {
  display: block;
  font-size: 0.5rem;
  font-family: var(--font-sans);
  letter-spacing: 0.32em;
  color: var(--gold-light);
  text-transform: uppercase;
  opacity: 0.7;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a:not(.nav-cta):not(.nav-phone) {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.3s ease, background 0.3s ease;
}

.nav-links a:not(.nav-cta):not(.nav-phone):hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 8px 14px 8px 12px;
  border: 1px solid rgba(201, 162, 75, 0.3);
  border-radius: 40px;
  background: rgba(13, 40, 24, 0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-phone i {
  animation: phone-ring 2.2s ease-in-out infinite;
  font-size: 0.85rem;
}

.nav-phone:hover {
  background: rgba(201, 162, 75, 0.15);
  border-color: var(--gold-accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(201, 162, 75, 0.2);
}

@keyframes phone-ring {
  0%, 100% { transform: rotate(0); }
  10% { transform: rotate(14deg); }
  20% { transform: rotate(-12deg); }
  30% { transform: rotate(8deg); }
  40% { transform: rotate(-6deg); }
  50% { transform: rotate(0); }
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold-accent), #b8883a);
  color: #fff;
  padding: 9px 20px;
  border-radius: 40px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201, 162, 75, 0.45);
}

.nav-cta:hover::before {
  opacity: 1;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1002;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(9, 26, 17, 0.98);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.mobile-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold-accent);
  transition: width 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--gold-light);
}

.mobile-menu a:hover::after {
  width: 60%;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

/* === Background layers === */
.hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  animation: hero-kenburns 30s ease-in-out infinite alternate;
}

@keyframes hero-kenburns {
  0%   { transform: scale(1.03) translateY(0); }
  100% { transform: scale(1.15) translateY(-1.5%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(9, 26, 17, 0.85) 0%,
    rgba(9, 26, 17, 0.4) 45%,
    rgba(13, 40, 24, 0.7) 100%
  );
}

.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 80% 20%, rgba(201, 162, 75, 0.08), transparent 60%);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 100% 80% at 50% 100%, rgba(9, 26, 17, 0.5), transparent 70%);
  pointer-events: none;
}

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

/* === Animated gradient blobs === */
.hero-blob {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.5;
}

.hero-blob--1 {
  width: 500px;
  height: 500px;
  left: -120px;
  top: 10%;
  background: radial-gradient(circle, rgba(201, 162, 75, 0.3), transparent 65%);
  animation: blob-drift 14s ease-in-out infinite alternate;
}

.hero-blob--2 {
  width: 600px;
  height: 600px;
  right: -180px;
  bottom: -80px;
  background: radial-gradient(circle, rgba(45, 106, 79, 0.4), transparent 65%);
  animation: blob-drift 18s ease-in-out infinite alternate-reverse;
}

@keyframes blob-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(50px, -40px, 0) scale(1.15); }
}

/* === Floating particles === */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold-accent);
  border-radius: 50%;
  box-shadow: 0 0 6px 2px rgba(201, 162, 75, 0.3);
  animation: particle-float 10s ease-in-out infinite;
  opacity: 0;
}

@keyframes particle-float {
  0%   { transform: translateY(0) translateX(0) scale(0); opacity: 0; }
  10%  { opacity: 0.8; }
  50%  { transform: translateY(-60vh) translateX(40px) scale(1); opacity: 0.6; }
  90%  { opacity: 0.8; }
  100% { transform: translateY(-120vh) translateX(-20px) scale(0); opacity: 0; }
}

/* === Hero deco rings === */
.hero-deco {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-ring {
  position: absolute;
  border: 1px solid rgba(232, 217, 168, 0.2);
  border-radius: 50%;
  animation: ring-pulse 10s ease-in-out infinite;
}

.hero-ring--1 { width: 380px; height: 380px; top: 8%; right: -80px; }
.hero-ring--2 { width: 600px; height: 600px; top: -120px; right: -40px; animation-delay: 3s; }

@keyframes ring-pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50%      { transform: scale(1.1); opacity: 0.7; }
}

/* === Hero floating leaves === */
.hero-leaf {
  position: absolute;
  color: var(--gold-light);
  opacity: 0.35;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
  animation: leaf-drift 8s ease-in-out infinite;
}

.hero-leaf--1 { top: 22%; left: 5%;  font-size: 1.5rem; }
.hero-leaf--2 { top: 35%; right: 7%; font-size: 1.1rem; animation-delay: 2s; }
.hero-leaf--3 { bottom: 30%; left: 12%; font-size: 1rem; animation-delay: 4s; }
.hero-leaf--4 { bottom: 22%; right: 4%; font-size: 1.3rem; animation-delay: 6s; }

@keyframes leaf-drift {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  50%      { transform: translateY(-22px) rotate(12deg) scale(1.05); }
}

/* === Hero inner layout === */
.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  padding: 160px 0 140px;
}

/* === Hero left: text content === */
.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 8px 18px;
  border: 1px solid rgba(201, 162, 75, 0.3);
  border-radius: 40px;
  background: rgba(13, 40, 24, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  animation: hero-fade-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

.hero-eyebrow i {
  font-size: 0.65rem;
  color: var(--gold-accent);
}

.hero-title {
  font-family: "Fraunces", var(--font-serif);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.005em;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  margin-top: 32px;
  margin-bottom: 0;
}

.hero-title .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.24em;
  margin-bottom: -0.24em;
}

.hero-title .line-inner {
  display: block;
  transform: translateY(115%);
  animation: hero-line-rise 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-title .line:nth-child(1) .line-inner { animation-delay: 0.35s; }
.hero-title .line:nth-child(2) .line-inner { animation-delay: 0.5s; }
.hero-title .line:nth-child(3) .line-inner { animation-delay: 0.65s; }

@keyframes hero-line-rise {
  to { transform: translateY(0); }
}

@keyframes hero-fade-in {
  to { opacity: 1; }
}

/* Emphasized words — solid white for contrast, gold underline swipe */
.hero-title em {
  font-style: italic;
  font-weight: 600;
  position: relative;
  color: #fff;
}

.hero-title em::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.12em;
  width: 100%;
  height: 0.18em;
  border-radius: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
  z-index: -1;
  animation: gold-underline 1s cubic-bezier(0.22, 1, 0.36, 1) 1.5s backwards;
  transform-origin: left;
}

@keyframes gold-underline {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}

.hero-sub {
  margin-top: 30px;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Fraunces", var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.7;
  letter-spacing: 0.01em;
  opacity: 0;
  animation: hero-fade-in 1s cubic-bezier(0.22, 1, 0.36, 1) 0.85s forwards;
}

@media (min-width: 901px) {
  .hero-sub {
    border-left: 2px solid rgba(201, 162, 75, 0.4);
    padding-left: 22px;
  }
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  opacity: 0;
  animation: hero-fade-in 1s cubic-bezier(0.22, 1, 0.36, 1) 1.1s forwards;
}

.hero-cta-row .btn {
  padding: 14px 28px;
  font-size: 0.78rem;
}

.hero-cta-row .btn-gold i {
  transition: transform 0.3s ease;
}

.hero-cta-row .btn-gold:hover i {
  transform: translateX(4px);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

/* Trust row */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  opacity: 0;
  animation: hero-fade-in 1s cubic-bezier(0.22, 1, 0.36, 1) 1.3s forwards;
}

.trust-avatars {
  display: flex;
}

.trust-avatars span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid rgba(13, 40, 24, 0.6);
  margin-right: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: #fff;
  background: var(--gold-accent);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.trust-avatars span:nth-child(1) { background: #14532d; z-index: 4; }
.trust-avatars span:nth-child(2) { background: #1b7a44; z-index: 3; }
.trust-avatars span:nth-child(3) { background: #22c55e; z-index: 2; }
.trust-avatars span:nth-child(4) { background: var(--gold-accent); z-index: 1; font-size: 0.6rem; }

.hero-trust-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

.hero-trust-text strong {
  color: var(--gold-light);
  font-weight: 600;
}

/* === Hero right: visual cards === */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

/* Main investment card */
.hero-card--main {
  width: min(380px, 100%);
  padding: 32px 30px 30px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  opacity: 0;
  animation: hero-fade-in 1s cubic-bezier(0.22, 1, 0.36, 1) 1.5s forwards;
  transition: transform 0.2s ease;
}

.hero-card--main:hover {
  transform: translateY(-4px);
}

.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.card-head span:first-child {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #22c55e;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-live i {
  font-size: 0.45rem;
  animation: live-pulse 1.4s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.card-amount {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}

.card-amount .stat-num {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}

.card-amount .card-note {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

/* Progress ring */
.card-ring-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 18px 0 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.card-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: conic-gradient(var(--gold-accent) 0% 75%, rgba(255, 255, 255, 0.1) 75% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  animation: ring-spin 2s ease-out forwards;
}

@keyframes ring-spin {
  from { background: conic-gradient(var(--gold-accent) 0% 0%, rgba(255, 255, 255, 0.1) 0% 100%); }
  to   { background: conic-gradient(var(--gold-accent) 0% 75%, rgba(255, 255, 255, 0.1) 75% 100%); }
}

.card-ring-inner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(13, 40, 24, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}

.card-ring-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  line-height: 1.5;
}

.card-ring-text strong {
  color: #fff;
  font-weight: 500;
}

/* Progress bar */
.card-bar {
  margin-top: 6px;
}

.card-bar-label {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.card-bar-track {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.card-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-accent), var(--gold-light));
  border-radius: 4px;
  animation: bar-fill 1.8s cubic-bezier(0.22, 1, 0.36, 1) 1.7s forwards;
}

@keyframes bar-fill {
  to { width: 78%; }
}

/* Mini floating cards */
.hero-card--mini {
  position: absolute;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: hero-fade-in 0.8s ease forwards;
  transition: transform 0.3s ease;
}

.hero-card--mini:hover {
  transform: translateY(-4px) scale(1.02);
}

.hero-card--mini i {
  font-size: 1.2rem;
  color: var(--gold-accent);
}

.hero-card--mini .mini-num {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  display: block;
  line-height: 1.1;
}

.hero-card--mini .mini-label {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.card--mini-1 {
  top: -10px;
  right: -20px;
  animation-delay: 1.7s;
}

.card--mini-2 {
  bottom: 30px;
  left: -30px;
  animation-delay: 1.9s;
}

.card--mini-3 {
  bottom: -20px;
  right: 10px;
  animation-delay: 2.1s;
  padding: 10px 16px;
}

/* === Stats strip === */
.hero-stats-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 4;
  padding: 18px 0;
  background: rgba(248, 246, 239, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--gold-accent);
}

.hero-stats-strip .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.hero-stats-strip .stat-item {
  position: relative;
  padding: 6px 12px;
}

.hero-stats-strip .stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50%;
  background: rgba(13, 40, 24, 0.1);
}

.hero-stats-strip .stat-num {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--forest-primary);
  line-height: 1.1;
}

.hero-stats-strip .stat-label {
  display: block;
  margin-top: 2px;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* === Scroll indicator === */
.hero-scroll {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: hero-fade-in 1.2s ease 2.3s forwards;
}

.hero-scroll i {
  color: var(--gold-light);
  font-size: 1rem;
  animation: scroll-bounce 2s ease-in-out infinite;
}

.hero-scroll span {
  font-size: 0.55rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50%      { transform: translateY(8px); opacity: 1; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 40px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: var(--transition);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-accent), #b8883a);
  color: #fff;
  box-shadow: 0 10px 28px rgba(201, 162, 75, 0.35);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(201, 162, 75, 0.5);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

/* ---------- Section scaffolding ---------- */
.section {
  padding: clamp(70px, 10vw, 120px) 0;
  position: relative;
}

.section--dark {
  background: var(--forest-dark);
  color: #fff;
}

.section--cream {
  background: var(--cream-bg);
}

.section--ivory {
  background: var(--ivory-card);
}

.section--medium {
  background: var(--forest-medium);
  color: #fff;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4.2vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.03em;
  color: inherit;
}

.section--dark .section-title,
.section--medium .section-title {
  color: #fff;
}

.section-sub {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 60ch;
}

.section--dark .section-sub {
  color: rgba(255, 255, 255, 0.7);
}

/* Divider with leaf motif */
.divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0 34px;
}

.divider::before,
.divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
}

.divider i {
  color: var(--gold-accent);
  font-size: 1rem;
}

.section--dark .divider::before,
.section--dark .divider::after {
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

/* Corner botanical decoration */
.corner-deco::before {
  content: "\f6fc";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 26px;
  left: 26px;
  font-size: 3rem;
  opacity: 0.07;
  transform: rotate(0deg);
}

/* ---------- Badges / pills ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--forest-primary);
  color: var(--cream-bg);
  border-radius: 40px;
  padding: 8px 20px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pill i {
  color: var(--gold-accent);
}

/* ---------- Section header ---------- */
.section-head {
  text-align: center;
  margin-bottom: 56px;
}

.section-head .divider {
  max-width: 420px;
  margin-inline: auto;
}

/* ---------- About split ---------- */
.about-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-dark);
}

.about-text {
  background: var(--forest-primary);
  color: #fff;
  padding: clamp(34px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text .section-title {
  color: #fff;
}

.about-copy p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 18px;
  font-weight: 300;
}

.quote-pill {
  margin-top: 26px;
  align-self: flex-start;
  background: rgba(201, 162, 75, 0.15);
  border: 1px solid var(--gold-accent);
  color: var(--gold-light);
}

.about-image {
  position: relative;
  min-height: 420px;
}

.about-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Icon grid ---------- */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.icon-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.icon-item {
  text-align: center;
  padding: 26px 16px;
}

.icon-item h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 1.15rem;
}

.icon-badge {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--forest-primary);
  color: var(--gold-light);
  font-size: 1.7rem;
  border: 1px solid var(--gold-accent);
  box-shadow: 0 0 0 6px rgba(201, 162, 75, 0.12);
  transition: var(--transition);
}

.icon-item:hover .icon-badge {
  transform: translateY(-6px);
  box-shadow: 0 0 0 8px rgba(201, 162, 75, 0.18);
}

.gold-bordered {
  border: 1px solid var(--gold-accent);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.03);
}

.icon-grid-4 .icon-item h3 {
  font-size: 1rem;
}

/* ---------- Comparison table ---------- */
.comparison-card {
  background: var(--ivory-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  border: 1px solid rgba(201, 162, 75, 0.25);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table thead th {
  background: var(--forest-primary);
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-align: left;
  padding: 20px 24px;
}

.comparison-table thead th:first-child {
  color: #fff;
}

.comparison-table tbody td {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(13, 40, 24, 0.08);
  font-size: 0.95rem;
  color: var(--text-muted);
}

.comparison-table tbody td:first-child {
  font-weight: 600;
  color: var(--forest-primary);
  font-family: var(--font-serif);
  font-size: 1rem;
}

.comparison-table tbody tr:hover {
  background: rgba(149, 213, 178, 0.12);
}

.comparison-footer {
  text-align: center;
  padding: 26px;
  border-top: 1px solid rgba(13, 40, 24, 0.08);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--forest-primary);
}

/* ---------- Charts ---------- */
.chart-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.chart-box {
  background: var(--ivory-card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(201, 162, 75, 0.2);
  position: relative;
}

.chart-canvas {
  position: relative;
  height: 340px;
}

.chart-source {
  margin-top: 18px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
  justify-content: center;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.legend-item::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--color, var(--forest-medium));
}

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.cta-banner > img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 40, 24, 0.78), rgba(13, 40, 24, 0.6));
}

.cta-banner .container {
  position: relative;
  z-index: 2;
}

.cta-banner .section-title {
  color: #fff;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 48px;
}

.feature-row-3 {
  grid-template-columns: repeat(3, 1fr);
}

.feature-row-5 {
  grid-template-columns: repeat(5, 1fr);
}

.feature {
  text-align: center;
}

.feature .icon-badge {
  width: 66px;
  height: 66px;
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(201, 162, 75, 0.6);
}

.feature h4 {
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-top: 14px;
  color: #fff;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.gallery-col h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--forest-primary);
}

.gallery-col h3 i {
  color: var(--gold-accent);
  font-size: 1rem;
}

.gallery-col img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 18px;
  cursor: zoom-in;
  transition: transform 0.5s ease;
}

.gallery-col img:hover {
  transform: scale(1.03);
}

.gallery-col img:nth-of-type(2) {
  height: 300px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(13, 40, 24, 0.94);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-dark);
}

.lightbox-close {
  position: absolute;
  top: 28px;
  right: 34px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
}

.lightbox-caption {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
}

/* ---------- Projects ---------- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.project-card {
  background: var(--ivory-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border: 1px solid rgba(201, 162, 75, 0.18);
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(13, 40, 24, 0.2);
}

.project-img {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.project-card:hover .project-img img {
  transform: scale(1.05);
}

.project-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13, 40, 24, 0.75));
  opacity: 0;
  transition: opacity var(--transition);
}

.project-card:hover .project-img::after {
  opacity: 1;
}

.project-tags {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.tag {
  background: rgba(13, 40, 24, 0.85);
  color: var(--gold-light);
  backdrop-filter: blur(6px);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(201, 162, 75, 0.4);
}

.project-body {
  padding: 26px 26px 30px;
}

.project-body h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--forest-primary);
}

.project-body p {
  color: var(--text-muted);
  font-size: 0.93rem;
  margin: 10px 0 18px;
}

.project-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  border-top: 1px dashed rgba(13, 40, 24, 0.15);
  padding-top: 18px;
}

.project-lists h4 {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 10px;
}

.project-lists li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
  margin-bottom: 6px;
}

.project-lists li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--forest-medium);
  font-size: 0.7rem;
}

/* ---------- Stats ---------- */
.stats-bar {
  background: linear-gradient(135deg, var(--forest-primary), var(--forest-dark));
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1.1;
}

.stat-label {
  margin-top: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.stat-item {
  position: relative;
}

.stat-item::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: rgba(201, 162, 75, 0.3);
}

.stat-item:last-child::after {
  display: none;
}

/* ---------- Featured project deep dive ---------- */
.featured-panel {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}

.map-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-dark);
}

.map-frame img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.map-outline {
  position: absolute;
  inset: 14%;
  border: 3px solid #e9c966;
  border-radius: 8px;
  animation: pulse-outline 2.6s ease-in-out infinite;
}

@keyframes pulse-outline {
  0%, 100% { opacity: 0.9; }
  50% { opacity: 0.45; }
}

.map-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(13, 40, 24, 0.85);
  color: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.featured-info h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--forest-primary);
  font-weight: 600;
}

.quick-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 26px;
}

.quick-stat {
  background: var(--ivory-card);
  border: 1px solid rgba(201, 162, 75, 0.3);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
}

.quick-stat b {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--forest-primary);
  font-weight: 600;
}

.quick-stat span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---------- Site plan / renders ---------- */
.render-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.render-grid figure img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.render-grid figcaption {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 12px;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.feature-tags .pill {
  background: var(--ivory-card);
  border: 1px solid var(--gold-accent);
  color: var(--forest-primary);
}

/* ---------- Pricing ---------- */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.plan-card {
  background: var(--ivory-card);
  border: 1px solid rgba(13, 40, 24, 0.12);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.plan-card.featured {
  border: 2px solid var(--gold-accent);
  box-shadow: 0 16px 44px rgba(201, 162, 75, 0.28);
}

.plan-flag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-accent), #b8883a);
  color: #fff;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--forest-primary);
  font-weight: 600;
}

.plan-range {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 12px 0 4px;
}

.plan-period {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.plan-roi {
  margin: 18px auto 20px;
  background: var(--forest-primary);
  color: var(--gold-light);
  padding: 12px;
  border-radius: 30px;
  font-family: var(--font-serif);
  font-size: 1.15rem;
}

.plan-card.featured .plan-roi {
  background: linear-gradient(135deg, var(--gold-accent), #b8883a);
  color: #fff;
}

/* ---------- Form ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1px solid rgba(13, 40, 24, 0.18);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
  color: var(--text-dark);
  transition: border var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-accent);
  box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.18);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #c0392b;
}

.form-error {
  color: #c0392b;
  font-size: 0.78rem;
  min-height: 16px;
}

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(45, 106, 79, 0.12);
  border: 1px solid var(--forest-medium);
  color: var(--forest-primary);
  padding: 14px 20px;
  border-radius: 8px;
  margin-top: 18px;
  font-weight: 500;
}

.form-success.show {
  display: flex;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--forest-dark);
  color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 44px;
}

.footer-grid h4 {
  font-family: var(--font-serif);
  color: var(--gold-light);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 18px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.92rem;
}

.footer-contact i {
  color: var(--gold-accent);
  margin-top: 4px;
  width: 16px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-legal {
  display: flex;
  gap: 22px;
}

.footer-legal a:hover {
  color: var(--gold-light);
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201, 162, 75, 0.3);
  margin-top: 26px;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
  filter: grayscale(0.4) contrast(1.05);
}

/* ---------- Floating buttons ---------- */
.floating-cta {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 1500;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-accent), #b8883a);
  color: #fff;
  border: none;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(201, 162, 75, 0.5);
  animation: cta-pulse 2.4s ease-in-out infinite;
  transition: transform var(--transition);
}

.floating-cta:hover {
  transform: scale(1.08);
}

@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(201, 162, 75, 0.5); }
  50% { box-shadow: 0 10px 44px rgba(201, 162, 75, 0.85); }
}

.whatsapp-btn {
  position: fixed;
  bottom: 26px;
  left: 26px;
  z-index: 1500;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition);
}

.whatsapp-btn:hover {
  transform: scale(1.08);
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 110px;
  right: 26px;
  background: var(--forest-primary);
  color: #fff;
  padding: 16px 26px;
  border-radius: 10px;
  border-left: 4px solid var(--gold-accent);
  box-shadow: var(--shadow-dark);
  z-index: 2000;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: var(--transition);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav-phone-num {
    display: none;
  }

  .nav-links a:not(.nav-cta):not(.nav-phone) {
    letter-spacing: 0.1em;
    padding: 8px 10px;
  }

  .hero-inner {
    grid-template-columns: 1fr 0.9fr;
    gap: 40px;
  }

  .card--mini-1 { right: 0; }
  .card--mini-2 { left: 0; }

  .icon-grid,
  .icon-grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-row,
  .feature-row-5 {
    grid-template-columns: repeat(3, 1fr);
  }

  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 70px;
    padding: 150px 0 160px;
  }

  .hero-copy {
    align-items: center;
  }

  .hero-sub {
    margin-inline: auto;
  }

  .hero-cta-row {
    justify-content: center;
  }

  .hero-visual {
    min-height: 420px;
    max-width: 460px;
    margin-inline: auto;
  }

  .hero-scroll {
    bottom: 110px;
  }

  .hero-stats-strip .stat-item:not(:last-child)::after {
    display: none;
  }

  .hero-stats-strip .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .hero-stats-strip .stat-num {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-inner {
    padding: 130px 0 140px;
  }

  .hero-leaf--1 { left: 3%; }
  .hero-leaf--4 { right: 3%; }

  .card--mini-1 { right: -4px; }
  .card--mini-2 { left: -4px; }
  .card--mini-3 { right: 0; }

  .hero-stats-strip {
    padding: 14px 0;
  }

  .hero-stats-strip .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 0;
  }

  .hero-stats-strip .stat-item::after {
    display: none;
  }

  .about-split,
  .featured-panel {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 320px;
  }

  .icon-grid,
  .icon-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-row,
  .feature-row-3,
  .feature-row-5 {
    grid-template-columns: repeat(2, 1fr);
  }

  .chart-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .render-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item::after {
    display: none;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 480px) {
  .icon-grid,
  .icon-grid-4,
  .feature-row,
  .feature-row-3,
  .feature-row-5 {
    grid-template-columns: 1fr;
  }

  .plans-grid {
    grid-template-columns: 1fr;
  }

  .quick-stats,
  .project-lists {
    grid-template-columns: 1fr;
  }
}
