/* ============================================
   ARTIK BUILDERS & PROMOTERS
   Midnight Sophistication — Luxury Edition
   Deep Midnight Blue + Champagne Gold + Cream
   Playfair Display (display) + Inter (body)
============================================ */

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

:root {
  --bg: #0e1a2b;
  --bg-soft: #142336;
  --bg-card: #1a2c44;
  --bg-light: #f5efe2;
  --primary: #0e1a2b;
  --primary-dark: #08111d;
  --accent: #c9a961;
  --accent-bright: #d4b577;
  --accent-dark: #a98a4b;
  --text: #f5efe2;
  --text-light: #c8c0ad;
  --text-muted: #8a8270;
  --text-dark: #2a2722;
  --border: rgba(201,169,97,0.18);
  --border-light: rgba(245,239,226,0.1);
  --green: #25D366;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ── GOLD SHIMMER ON HEADINGS ── */
@keyframes goldShimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.shimmer-text {
  background: linear-gradient(
    90deg,
    var(--accent-dark) 20%,
    #f0d898 40%,
    var(--accent-bright) 50%,
    #f0d898 60%,
    var(--accent-dark) 80%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 4s linear infinite;
}

/* ── GOLD LINE ANIMATE ── */
@keyframes lineExpand {
  from { width: 0; }
  to   { width: 60px; }
}
.gold-line {
  display: block;
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin: 18px 0;
  animation: lineExpand 1s ease forwards;
}
.gold-line.center { margin: 18px auto; }

/* ── CURSOR GLOW (subtle) ── */
body { cursor: default; }

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 28px; }

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--text);
}
h1 { font-size: clamp(40px, 5.5vw, 72px); line-height: 1.05; font-weight: 500; }
h2 { font-size: clamp(32px, 4.2vw, 54px); margin-bottom: 22px; font-weight: 500; }
h3 { font-size: 22px; font-weight: 600; }
h4 { font-size: 19px; font-weight: 600; }
em {
  font-style: italic;
  color: var(--accent-bright);
  font-weight: 500;
  font-family: 'Playfair Display', serif;
}

p { color: var(--text-light); font-size: 16px; }

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}
.section-head.center { text-align: center; }
.section-head.center .eyebrow { display: inline-block; }
.section-head { margin-bottom: 64px; }
.section-head p { margin-top: 16px; font-size: 17px; max-width: 580px; color: var(--text-light); }
.section-head.center p { margin-left: auto; margin-right: auto; }

/* SVG ICONS */
.ic { width: 16px; height: 16px; display: inline-block; vertical-align: middle; }
.ic-sm { width: 14px; height: 14px; display: inline-block; vertical-align: middle; }

/* PHOTO PLACEHOLDER */
.photo-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-soft));
  border: 1px dashed var(--border);
  color: var(--text-muted);
  position: relative;
  text-align: center; padding: 24px;
  min-height: 280px;
}
.photo-placeholder::before {
  content: '';
  position: absolute; inset: 12px;
  border: 1px solid var(--border-light);
  pointer-events: none;
}
.photo-placeholder .ph-icon {
  width: 42px; height: 42px;
  color: var(--accent); opacity: 0.6;
  margin-bottom: 18px;
}
.photo-placeholder .ph-label {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 500;
  color: var(--accent-bright);
  margin-bottom: 8px; letter-spacing: 0.02em;
}
.photo-placeholder .ph-hint {
  font-family: 'Inter', sans-serif;
  font-size: 12px; color: var(--text-muted); line-height: 1.6;
}
.photo-placeholder .ph-hint span {
  display: block; margin-top: 6px;
  font-size: 11px; color: var(--text-muted);
  letter-spacing: 0.05em; opacity: 0.7;
}
.photo-placeholder.has-img {
  border: none; padding: 0; background: none; min-height: 0;
  position: relative;
}
.photo-placeholder.has-img::before { display: none; }
.photo-placeholder.has-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.img-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
  color: #f5efe2; font-size: 11px; letter-spacing: 0.05em;
  padding: 18px 14px 8px; text-align: right;
  font-style: italic; pointer-events: none;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--primary-dark);
  color: var(--text-light);
  padding: 11px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--border-light);
}
.topbar .container {
  display: flex; justify-content: center; align-items: center;
  gap: 32px; flex-wrap: wrap;
}
.tb-item { display: inline-flex; align-items: center; gap: 8px; }
.tb-item .ic { color: var(--accent); width: 14px; height: 14px; }
.topbar a { color: var(--text-light); text-decoration: none; transition: color 0.2s; }
.topbar a:hover { color: var(--accent-bright); }

/* ── NAVBAR ── */
.navbar {
  background: rgba(14,26,43,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  position: sticky; top: 0; z-index: 100;
  transition: box-shadow 0.3s, background 0.3s;
}
.navbar.scrolled {
  box-shadow: 0 4px 40px rgba(0,0,0,0.5);
  background: rgba(8,17,29,0.98);
}
.nav-container {
  max-width: 1280px; margin: 0 auto; padding: 12px 28px;
  display: flex; justify-content: space-between; align-items: center;
}
.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo img { height: 54px; width: auto; display: block; }
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--text-light); text-decoration: none;
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s; position: relative; padding: 4px 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent-bright); }
.nav-links a.active::after,
.nav-links a:hover::after {
  content: ''; position: absolute; bottom: -4px;
  left: 0; right: 0; height: 1px; background: var(--accent);
  transform: scaleX(1);
  transition: transform 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px;
  left: 0; right: 0; height: 1px; background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  padding: 11px 22px;
  background: transparent;
  color: var(--accent-bright);
  border: 1px solid var(--accent);
  text-decoration: none; font-size: 13px; font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  position: relative; overflow: hidden;
  isolation: isolate;
}
.nav-cta::before {
  content: '';
  position: absolute; inset: 0;
  z-index: -1;
  background: #b8952e;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}
.nav-cta:hover::before { transform: scaleX(1); }
.nav-cta:hover { color: var(--primary-dark); }
.nav-cta span { position: relative; z-index: 1; }
.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; color: var(--text);
  min-width: 44px; min-height: 44px;
  padding: 10px; margin: -10px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: var(--accent); color: var(--primary-dark);
  text-decoration: none; font-size: 14px; font-weight: 600;
  letter-spacing: 0.04em; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  position: relative; overflow: hidden;
  isolation: isolate; /* fix: own stacking context so ::before can sit behind text */
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  z-index: -1; /* fix: hover overlay paints behind text nodes, above button bg */
  background: #b8952e;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}
.btn-primary:hover::before { transform: scaleX(1); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,0,0,0.35); }
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary.full { width: 100%; justify-content: center; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: transparent; color: var(--accent-bright);
  text-decoration: none; font-size: 14px; font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid var(--accent);
  transition: all 0.3s;
  position: relative; overflow: hidden;
  isolation: isolate;
}
.btn-secondary::before {
  content: '';
  position: absolute; inset: 0;
  z-index: -1;
  background: rgba(201,169,97,0.08);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s;
}
.btn-secondary:hover::before { transform: scaleX(1); }
.btn-secondary:hover { color: var(--text); border-color: var(--accent-bright); }

.btn-text {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent-bright); text-decoration: none;
  font-size: 14px; font-weight: 600; letter-spacing: 0.03em;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--accent);
  transition: all 0.3s;
}
.btn-text:hover { color: var(--text); border-color: var(--text); gap: 10px; }

/* ── HERO ── */
.hero { padding: 90px 0 110px; background: var(--bg); position: relative; overflow: hidden; }
.hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(201,169,97,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px;
  align-items: center;
}
.hero-content .eyebrow { margin-bottom: 24px; }
.hero h1 { margin-bottom: 28px; max-width: 580px; color: var(--text); }
.hero-sub {
  font-size: 18px; color: var(--text-light); line-height: 1.7;
  margin-bottom: 36px; max-width: 480px;
}
.hero-cta { display: flex; gap: 24px; align-items: center; margin-bottom: 56px; flex-wrap: wrap; }
.hero-trust {
  display: flex; gap: 48px; padding-top: 32px;
  border-top: 1px solid var(--border-light);
}
.trust-item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 600; color: var(--accent-bright);
  margin-bottom: 4px;
}
.trust-item span {
  font-size: 11px; color: var(--text-muted);
  letter-spacing: 0.14em; text-transform: uppercase;
}

.hero-visual { position: relative; }
.hero-photo {
  width: 100%; aspect-ratio: 4/5;
  min-height: 480px;
}
.hero-card {
  position: absolute; bottom: -40px; right: -20px;
  background: var(--bg-card);
  padding: 28px 26px;
  width: 320px;
  border: 1px solid var(--border);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.hero-card-tag {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 18px;
}
.hero-card form { display: grid; gap: 10px; }
.hero-card input, .hero-card select {
  padding: 12px 14px; border: 1px solid var(--border);
  background: var(--bg-soft); font-size: 13px;
  font-family: 'Inter', sans-serif; outline: none;
  color: var(--text); transition: border-color 0.2s;
}
.hero-card input::placeholder { color: var(--text-muted); }
.hero-card input:focus, .hero-card select:focus { border-color: var(--accent); }
.hero-card .btn-primary { margin-top: 4px; padding: 12px; font-size: 13px; }

/* ── STATS ── */
.stats {
  padding: 80px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  text-align: center;
}
.stat-item {
  padding: 32px 20px;
  border-right: 1px solid var(--border-light);
}
.stat-item:last-child { border-right: none; }
.stat-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 6vw, 52px); font-weight: 500; color: var(--accent-bright);
  margin-bottom: 6px;
}
.stat-item p { font-size: 13px; color: var(--text-light); letter-spacing: 0.06em; }

/* Counter animation target */
.counter-val { display: inline-block; }

/* ── ABOUT TEASER ── */
.about-teaser { padding: 110px 0; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px;
  align-items: center;
}
.about-img {
  width: 100%; aspect-ratio: 4/5; overflow: hidden;
  position: relative; border: 1px solid var(--border-light);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.85) contrast(1.05); }
.about-content h2 { margin-bottom: 22px; color: var(--text); }
.about-content p {
  font-size: 16px; line-height: 1.85; margin-bottom: 18px;
  color: var(--text-light);
}
.about-content .btn-text { margin-top: 12px; }

/* ── FEATURED PROJECTS ── */
.featured { padding: 110px 0; background: var(--bg-soft); }
.projects-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.project-tile {
  background: var(--bg);
  border: 1px solid var(--border-light);
  transition: all 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.project-tile::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent-bright), var(--accent-dark));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s;
}
.project-tile:hover { transform: translateY(-6px); border-color: rgba(201,169,97,0.45); box-shadow: 0 16px 40px rgba(0,0,0,0.35); }
.project-tile:hover::after { transform: scaleX(1); }
.project-img-wrap { aspect-ratio: 4/3; overflow: hidden; }
.project-photo { min-height: 100%; }
.project-tile-info { padding: 28px 26px; }
.project-loc {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--text-muted);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 14px;
}
.project-loc .ic-sm { color: var(--accent); }
.project-tile-info h3 {
  color: var(--text); font-size: 28px;
  font-family: 'Playfair Display', serif;
  font-weight: 600; margin-bottom: 12px;
}
.project-tile-info p {
  color: var(--text-light); font-size: 14px;
  line-height: 1.7; margin-bottom: 22px;
}
.project-meta {
  display: flex; gap: 20px; padding: 16px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 22px;
}
.project-meta > div { flex: 1; }
.project-meta strong {
  display: block;
  font-family: 'Playfair Display', serif;
  color: var(--accent-bright); font-size: 18px;
  font-weight: 600; margin-bottom: 2px;
}
.project-meta span { font-size: 11px; color: var(--text-muted); letter-spacing: 0.05em; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent-bright); text-decoration: none;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.05em;
  transition: gap 0.3s, color 0.3s;
}
.link-arrow:hover { gap: 10px; color: var(--text); }

/* ── WHY ARTIK ── */
.why-artik { padding: 110px 0; }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px;
}
.why-card {
  padding: 38px 30px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  transition: all 0.35s;
  position: relative; overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent-bright));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover { border-color: rgba(201,169,97,0.45); transform: translateY(-3px); }
.why-icon {
  width: 54px; height: 54px;
  background: rgba(201,169,97,0.1);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--accent-bright);
  border-radius: 50%; transition: all 0.3s;
}
.why-card:hover .why-icon { background: rgba(201,169,97,0.18); border-color: var(--accent); }
.why-icon svg { width: 22px; height: 22px; }
.why-card h4 {
  color: var(--text); margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 600;
}
.why-card p { color: var(--text-light); font-size: 14px; line-height: 1.7; }

/* ── AMENITIES ── */
.amenities { padding: 110px 0; background: var(--bg-soft); }
.amenities-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.amenity {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px;
  background: var(--bg);
  border: 1px solid var(--border-light);
  font-size: 14px; font-weight: 500;
  color: var(--text-light);
  transition: all 0.3s;
}
.amenity:hover { border-color: rgba(201,169,97,0.45); color: var(--text); transform: translateX(3px); }
.amenity .ic { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; transition: transform 0.3s; }
.amenity:hover .ic { transform: scale(1.15); }

/* ── AERIAL GALLERY ── */
.aerial { padding: 110px 0; }
.aerial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 14px;
}
.aerial-img { overflow: hidden; border: 1px solid var(--border-light); }
.aerial-img img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform 0.7s ease, filter 0.4s;
  filter: brightness(0.78) contrast(1.05);
}
.aerial-img:hover img { transform: scale(1.05); filter: brightness(0.9) contrast(1.05); }
.aerial-img.big { grid-column: span 2; grid-row: span 2; }
.aerial-img .photo-placeholder { border: none; }

/* ── CALCULATOR ── */
.calc-section { padding: 110px 0; background: var(--bg-soft); }
.calc-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
}
.calc-info h2 { margin-bottom: 20px; color: var(--text); }
.calc-info p { font-size: 17px; line-height: 1.7; color: var(--text-light); margin-bottom: 24px; }
.calc-list { list-style: none; }
.calc-list li {
  padding: 10px 0; padding-left: 24px; position: relative;
  font-size: 14px; color: var(--text-light);
}
.calc-list li::before { content: '—'; position: absolute; left: 0; color: var(--accent); }
.calc-card {
  background: var(--bg-card);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.calc-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700; color: var(--accent-bright);
  margin-bottom: 22px; font-size: 18px; letter-spacing: 0.03em;
}
.calc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.calc-input { margin-bottom: 18px; }
.calc-input label {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--text-light); margin-bottom: 8px; letter-spacing: 0.05em;
}
.calc-input input {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--border-light);
  background: var(--bg-soft); font-size: 15px;
  font-family: 'Inter', sans-serif; outline: none;
  color: var(--text); transition: border-color 0.2s;
}
.calc-input input::placeholder { color: var(--text-muted); }
.calc-input input:focus { border-color: var(--accent); }
.calc-btn { margin-top: 8px; padding: 14px; }
.calc-result {
  margin-top: 24px; padding: 20px;
  background: var(--bg-soft); border: 1px solid var(--border-light);
}
.result-row {
  display: flex; justify-content: space-between;
  align-items: center; padding: 8px 0;
}
.result-row span { font-size: 13px; color: var(--text-light); }
.result-row strong { color: var(--text); font-weight: 700; font-size: 16px; }
.result-row.highlight {
  border-top: 1px solid var(--border-light);
  margin-top: 8px; padding-top: 16px;
}
.result-row.highlight strong {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 600; color: var(--accent-bright);
}

/* ── TESTIMONIALS ── */
.testimonials { padding: 110px 0; }
.placeholder-note {
  display: inline-block; margin-top: 14px;
  padding: 6px 14px;
  background: rgba(201,169,97,0.08);
  border: 1px solid var(--border);
  color: var(--text-muted); font-size: 12px; font-style: italic;
}
.testimonial-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.testimonial-card {
  background: var(--bg-card);
  padding: 36px 32px;
  border: 1px solid var(--border-light);
  transition: all 0.3s; position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: 20px; right: 28px;
  font-family: 'Playfair Display', serif;
  font-size: 80px; color: var(--accent); opacity: 0.12;
  line-height: 1;
}
.testimonial-card:hover { border-color: rgba(201,169,97,0.45); transform: translateY(-3px); }
.testimonial-card p {
  color: var(--text); font-size: 16px;
  line-height: 1.8; margin-bottom: 24px;
  font-family: 'Playfair Display', serif;
  font-style: italic; font-weight: 400;
}
.testimonial-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px; border-top: 1px solid var(--border-light);
}
.author-avatar {
  width: 44px; height: 44px;
  background: var(--accent); color: var(--primary-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 15px; letter-spacing: 0.05em;
}
.testimonial-author strong {
  display: block; color: var(--text);
  font-size: 14px; margin-bottom: 2px;
  font-family: 'Inter', sans-serif; font-weight: 600;
}
.testimonial-author span { color: var(--text-muted); font-size: 12px; }

/* ── LOCATION ── */
.loc-section { padding: 110px 0; background: var(--bg-soft); }
.loc-grid {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 40px; align-items: stretch;
}
.loc-list-card {
  background: var(--primary); color: var(--text);
  padding: 40px; border: 1px solid var(--border);
}
.loc-list-card h3 {
  color: var(--accent-bright); margin-bottom: 24px;
  font-family: 'Playfair Display', serif;
  font-weight: 600; font-size: 24px;
}
.loc-distances { list-style: none; margin-bottom: 28px; }
.loc-distances li {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid var(--border-light);
}
.loc-distances li:last-child { border-bottom: none; }
.loc-distances .ic {
  width: 36px; height: 36px;
  background: rgba(201,169,97,0.12);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-bright); padding: 8px; flex-shrink: 0;
}
.loc-distances li strong {
  display: block; font-family: 'Playfair Display', serif;
  color: var(--accent-bright); font-size: 20px; font-weight: 600;
}
.loc-distances li span { font-size: 13px; color: var(--text-light); }
.loc-map-card {
  overflow: hidden; border: 1px solid var(--border-light);
  min-height: 540px;
}
.loc-map-card iframe {
  display: block; width: 100%; height: 100%; min-height: 540px;
  filter: invert(0.92) hue-rotate(180deg) brightness(0.95);
}

/* ── CTA ── */
.cta-section { padding: 110px 0; }
.cta-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--primary) 100%);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 90px 60px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-card::before {
  content: ''; position: absolute;
  top: -80px; right: -80px;
  width: 240px; height: 240px; border-radius: 50%;
  background: var(--accent); opacity: 0.08;
}
.cta-card::after {
  content: ''; position: absolute;
  bottom: -80px; left: -80px;
  width: 200px; height: 200px; border-radius: 50%;
  background: var(--accent-bright); opacity: 0.05;
}
.cta-card h2 { color: var(--text); margin-bottom: 16px; position: relative; }
.cta-card p {
  color: var(--text-light); font-size: 18px; margin-bottom: 36px;
  position: relative; max-width: 540px; margin-left: auto; margin-right: auto;
}
.cta-buttons {
  display: flex; gap: 18px; justify-content: center;
  flex-wrap: wrap; position: relative;
}

/* ── FOOTER ── */
.footer {
  background: var(--primary-dark); color: var(--text-light);
  padding: 80px 0 28px; border-top: 1px solid var(--border-light);
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1.5fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid var(--border-light); margin-bottom: 24px;
}
.footer-logo { display: inline-block; text-decoration: none; margin-bottom: 16px; }
.footer-logo img { height: 54px; width: auto; display: block; }
.footer-grid > div p {
  color: var(--text-muted); font-size: 14px; line-height: 1.7; margin-top: 12px;
}
.footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 20px; font-weight: 600;
}
.footer-grid > div > a {
  display: block; color: var(--text-light);
  text-decoration: none; font-size: 14px;
  margin-bottom: 10px; transition: color 0.2s, padding-left 0.2s;
}
.footer-grid > div > a:hover { color: var(--accent-bright); padding-left: 4px; }
.social-icons { display: flex; gap: 10px; margin-top: 16px; }
.social-icons a {
  width: 34px; height: 34px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  display: flex !important;
  align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600;
  margin-bottom: 0 !important;
  transition: all 0.25s;
  letter-spacing: 0.05em; color: var(--text-light);
}
.social-icons a:hover {
  background: var(--accent); color: var(--primary-dark) !important;
  border-color: var(--accent); transform: translateY(-2px);
}
.footer-bottom {
  display: flex; justify-content: space-between;
  font-size: 13px; color: var(--text-muted);
  flex-wrap: wrap; gap: 12px;
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 22px; right: 22px;
  width: 54px; height: 54px;
  background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 99; box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  transition: transform 0.25s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg,
.wa-float svg use,
.wa-float svg path { fill: #ffffff !important; color: #ffffff !important; }

/* ── CHATBOT ── */
.chatbot { position: fixed; bottom: 22px; left: 22px; z-index: 99; }
.chat-toggle {
  width: 54px; height: 54px;
  background: var(--accent); color: var(--primary-dark);
  border: none; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(201,169,97,0.35); transition: transform 0.2s, box-shadow 0.2s;
}
.chat-toggle:hover { transform: scale(1.06); box-shadow: 0 14px 40px rgba(201,169,97,0.5); }
.chat-box {
  position: absolute; bottom: 70px; left: 0; max-width: calc(100vw - 44px);
  width: 340px; max-height: 520px;
  background: var(--bg-card); overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  border: 1px solid var(--border);
  display: none; flex-direction: column;
  animation: chatSlideUp 0.3s ease;
}
@keyframes chatSlideUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.chat-box.active { display: flex; }
.chat-head {
  padding: 18px; background: var(--primary); color: var(--text);
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--border-light);
}
.chat-head-info { display: flex; align-items: center; gap: 12px; }
.chat-avatar { width: 38px; height: 38px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.chat-avatar img { width: 100%; height: 100%; display: block; }
.chat-head strong { display: block; font-size: 14px; font-family: 'Inter', sans-serif; font-weight: 600; color: var(--text); }
.chat-head small { font-size: 11px; color: var(--accent); }
.chat-head > span { cursor: pointer; font-size: 18px; color: var(--text-light); }
.chat-msgs { flex: 1; padding: 18px; overflow-y: auto; max-height: 300px; background: var(--bg-soft); }
.msg {
  padding: 10px 14px; margin-bottom: 10px;
  max-width: 82%; font-size: 13.5px; line-height: 1.55;
  animation: msgIn 0.25s ease;
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.msg.bot { background: var(--bg-card); color: var(--text); border: 1px solid var(--border-light); }
.msg.user { background: var(--accent); color: var(--primary-dark); margin-left: auto; }
.chat-input {
  display: flex; padding: 14px; gap: 8px;
  border-top: 1px solid var(--border-light); background: var(--bg-card);
}
.chat-input input {
  flex: 1; padding: 10px 14px;
  border: 1px solid var(--border-light); background: var(--bg-soft);
  outline: none; font-family: 'Inter', sans-serif; font-size: 13px; color: var(--text);
}
.chat-input input::placeholder { color: var(--text-muted); }
.chat-input button {
  padding: 10px 16px; background: var(--accent); color: var(--primary-dark);
  border: none; cursor: pointer; font-weight: 600; font-size: 12px;
  font-family: 'Inter', sans-serif; letter-spacing: 0.05em;
  transition: background 0.2s;
}
.chat-input button:hover { background: var(--accent-bright); }

/* ── PAGE HEADER ── */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--bg-soft) 100%);
  color: var(--text); padding: 100px 0; text-align: center;
  border-bottom: 1px solid var(--border-light);
  position: relative; overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,97,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-header h1 { color: var(--text); margin-bottom: 16px; position: relative; }
.page-header p { color: var(--text-light); font-size: 17px; max-width: 580px; margin: 0 auto; position: relative; }

/* ── PROJECTS LIST (projects.html) ── */
.projects-list { padding: 80px 0; }
.project-row {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 56px; align-items: center;
  margin-bottom: 80px;
  background: var(--bg-card); border: 1px solid var(--border-light);
  overflow: hidden; transition: border-color 0.35s;
}
.project-row:hover { border-color: rgba(201,169,97,0.45); }
.project-row:nth-child(even) .project-visual { order: 2; }
.project-visual { aspect-ratio: 4/3; overflow: hidden; min-height: 380px; }
.project-content { padding: 48px 40px; }
.project-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px;
}
.project-tags span {
  padding: 5px 12px; background: var(--bg-soft);
  color: var(--accent-bright); font-size: 11px;
  letter-spacing: 0.06em; border: 1px solid var(--border-light);
}
.project-content h2 { color: var(--text); margin-bottom: 16px; font-size: clamp(26px, 4vw, 40px); }
.project-content p { color: var(--text-light); margin-bottom: 24px; line-height: 1.8; }
.project-features { list-style: none; margin-bottom: 28px; }
.project-features li {
  padding: 8px 0 8px 24px;
  color: var(--text-light); font-size: 14.5px; position: relative;
  border-bottom: 1px solid var(--border-light);
}
.project-features li:last-child { border-bottom: none; }
.project-features li::before { content: '—'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* ── ABOUT PAGE ── */
.story-section { padding: 110px 0; }
.story-grid {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 80px; align-items: start;
}
.story-grid p {
  font-size: 16px; line-height: 1.85;
  color: var(--text-light); margin-bottom: 20px;
}
.values-section { padding: 110px 0; background: var(--bg-soft); }
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 56px;
}
.value-card {
  background: var(--bg-card);
  padding: 40px 32px;
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--accent);
  transition: transform 0.3s;
}
.value-card:hover { transform: translateY(-4px); }
.value-card h3 {
  color: var(--text); margin-bottom: 14px;
  font-family: 'Playfair Display', serif; font-weight: 600;
}
.value-card p { color: var(--text-light); font-size: 14.5px; line-height: 1.75; }

/* ── CONTACT PAGE ── */
.contact-section { padding: 90px 0; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 56px; align-items: start;
}
.contact-info h2 { color: var(--text); margin-bottom: 14px; font-size: clamp(26px, 4vw, 38px); }
.contact-info > p { color: var(--text-light); margin-bottom: 32px; }
.contact-detail {
  display: flex; gap: 16px;
  padding: 20px; background: var(--bg-card);
  border: 1px solid var(--border-light);
  margin-bottom: 14px; transition: all 0.3s;
}
.contact-detail:hover { border-color: rgba(201,169,97,0.5); transform: translateX(2px); }
.contact-detail .ci-icon {
  width: 44px; height: 44px;
  background: rgba(201,169,97,0.1);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--accent-bright);
}
.contact-detail .ci-icon svg { width: 20px; height: 20px; }
.contact-detail strong {
  display: block; color: var(--accent);
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; margin-bottom: 6px; font-weight: 700;
}
.contact-detail p, .contact-detail a {
  color: var(--text); text-decoration: none; font-size: 15px; line-height: 1.6;
}
.contact-detail a:hover { color: var(--accent-bright); }
.form-card {
  background: var(--bg-card); padding: 40px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.form-card h2 { color: var(--text); margin-bottom: 22px; font-size: 28px; }
.contact-form { display: grid; gap: 18px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--text-light); margin-bottom: 6px; letter-spacing: 0.05em;
}
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--border-light);
  background: var(--bg-soft);
  font-size: 14.5px; font-family: 'Inter', sans-serif;
  outline: none; transition: border 0.2s; color: var(--text);
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--text-muted); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: var(--accent);
}
.contact-form textarea { resize: vertical; min-height: 100px; }

/* ══════════════════════════════════════════
   INVEST / BUY-BACK SCHEME PAGE
══════════════════════════════════════════ */

/* Hero */
.invest-hero {
  padding: 110px 0 90px;
  background: var(--bg);
  position: relative; overflow: hidden;
  text-align: center;
}
.invest-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201,169,97,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.invest-hero .eyebrow { margin-bottom: 20px; }
.invest-hero h1 { max-width: 780px; margin: 0 auto 24px; }
.invest-hero p {
  font-size: 18px; max-width: 600px; margin: 0 auto 40px;
  color: var(--text-light); line-height: 1.75;
}
.invest-hero-badges {
  display: flex; justify-content: center; gap: 18px;
  flex-wrap: wrap; margin-top: 20px;
}
.invest-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  background: rgba(201,169,97,0.08);
  border: 1px solid var(--border);
  color: var(--accent-bright);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.invest-badge svg { width: 15px; height: 15px; color: var(--accent); }

/* Scheme overview strip */
.invest-overview {
  padding: 80px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.overview-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
}
.overview-item {
  background: var(--bg-card);
  padding: 44px 36px;
  text-align: center;
  position: relative; overflow: hidden;
  transition: background 0.35s;
}
.overview-item:hover { background: var(--bg); }
.overview-item::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent-bright));
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.4s;
}
.overview-item:hover::after { transform: scaleX(1); }
.overview-num {
  font-family: 'Playfair Display', serif;
  font-size: 13px; font-weight: 600;
  color: var(--accent); letter-spacing: 0.3em;
  margin-bottom: 20px; display: block;
}
.overview-icon {
  width: 60px; height: 60px; margin: 0 auto 22px;
  background: rgba(201,169,97,0.1);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-bright);
  transition: all 0.35s;
}
.overview-item:hover .overview-icon {
  background: rgba(201,169,97,0.18);
  border-color: var(--accent);
  transform: scale(1.06);
}
.overview-icon svg { width: 26px; height: 26px; }
.overview-item h3 {
  color: var(--text); font-size: 22px;
  font-family: 'Playfair Display', serif;
  font-weight: 600; margin-bottom: 14px;
}
.overview-item p {
  color: var(--text-light); font-size: 14.5px;
  line-height: 1.75; max-width: 260px; margin: 0 auto;
}

/* How it works */
.how-section { padding: 110px 0; }
.how-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start;
}
.how-steps { margin-top: 8px; }
.step {
  display: flex; gap: 24px; margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-light);
  position: relative;
}
.step:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.step::before {
  content: '';
  position: absolute; left: 19px; top: 40px; bottom: -40px;
  width: 1px; background: var(--border-light);
}
.step:last-child::before { display: none; }
.step-num {
  width: 40px; height: 40px;
  background: rgba(201,169,97,0.1);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 600;
  color: var(--accent-bright);
  flex-shrink: 0;
}
.step-body h4 {
  color: var(--text); font-size: 18px;
  font-family: 'Playfair Display', serif;
  font-weight: 600; margin-bottom: 8px;
}
.step-body p {
  color: var(--text-light); font-size: 14.5px; line-height: 1.75;
}

/* Security / assurance card */
.security-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 44px 40px;
  position: sticky; top: 100px;
}
.security-card-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px; padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}
.security-card-head .sc-icon {
  width: 52px; height: 52px;
  background: rgba(201,169,97,0.12);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-bright); flex-shrink: 0;
}
.security-card-head .sc-icon svg { width: 24px; height: 24px; }
.security-card-head h3 {
  font-family: 'Playfair Display', serif;
  color: var(--accent-bright); font-size: 22px; font-weight: 600;
}
.security-card-head p { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

.security-point {
  display: flex; gap: 14px; margin-bottom: 22px;
  padding-bottom: 22px; border-bottom: 1px solid var(--border-light);
}
.security-point:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.security-point .sp-icon {
  width: 32px; height: 32px;
  background: rgba(201,169,97,0.08);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-bright); flex-shrink: 0;
}
.security-point .sp-icon svg { width: 15px; height: 15px; }
.security-point h5 {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 700;
  color: var(--text); letter-spacing: 0.04em;
  margin-bottom: 3px;
}
.security-point p { font-size: 12.5px; color: var(--text-muted); line-height: 1.6; }

/* Disclosure note */
.disclosure-section { padding: 80px 0; background: var(--bg-soft); }
.disclosure-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 48px 52px;
  max-width: 860px; margin: 0 auto;
  text-align: center;
  position: relative; overflow: hidden;
}
.disclosure-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,169,97,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.disclosure-card h2 { color: var(--text); margin-bottom: 20px; font-size: clamp(26px, 4vw, 38px); }
.disclosure-card p {
  font-size: 17px; color: var(--text-light);
  line-height: 1.8; margin-bottom: 16px; position: relative;
}
.disclosure-card p:last-of-type { margin-bottom: 36px; }
.disclosure-note {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid var(--border);
  background: rgba(201,169,97,0.06);
  color: var(--text-muted); font-size: 12.5px;
  line-height: 1.65; max-width: 600px;
  text-align: center; margin: 0 auto 32px; display: block;
}

/* Enquiry form on invest page */
.invest-form-section { padding: 90px 0; }
.invest-form-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start;
}
.invest-form-info h2 { color: var(--text); margin-bottom: 16px; }
.invest-form-info p { color: var(--text-light); font-size: 15.5px; line-height: 1.8; margin-bottom: 20px; }
.invest-form-info ul { list-style: none; }
.invest-form-info ul li {
  padding: 8px 0 8px 24px; position: relative;
  color: var(--text-light); font-size: 14.5px;
  border-bottom: 1px solid var(--border-light);
}
.invest-form-info ul li:last-child { border-bottom: none; }
.invest-form-info ul li::before { content: '—'; position: absolute; left: 0; color: var(--accent); }

/* ── RESPONSIVE ── */
@media (max-width: 968px) {
  .topbar .container { gap: 12px; font-size: 12px; }
  .hide-sm { display: none; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .logo img { height: 44px; }

  .hero-grid, .about-grid, .calc-grid, .loc-grid,
  .contact-grid, .story-grid, .how-grid, .invest-form-grid {
    grid-template-columns: 1fr; gap: 48px;
  }
  .stats-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border-light); }
  .stat-item:last-child { border-right: none; }

  .projects-grid, .testimonial-grid, .why-grid,
  .values-grid, .overview-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }

  .aerial-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .aerial-img { min-height: 200px; }
  .aerial-img.big { grid-column: span 2; grid-row: auto; }

  .hero-card { position: static; width: 100%; margin-top: 24px; }
  .project-row { grid-template-columns: 1fr; }
  .project-row:nth-child(even) .project-visual { order: 0; }
  .project-content { padding: 32px 24px; }

  .calc-row, .contact-form .form-row { grid-template-columns: 1fr; }
  .cta-card { padding: 60px 28px; }
  .calc-card, .form-card { padding: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .security-card { position: static; }
  .disclosure-card { padding: 32px 24px; }
}
@media (max-width: 600px) {
  .amenities-grid { grid-template-columns: 1fr; }
  .invest-hero-badges { flex-direction: column; align-items: center; }
  .overview-item { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { justify-content: center; text-align: center; }
}
