:root {
    --forest: #1B3A2D;
    --forest-deep: #0F2219;
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --cream: #F7F3EC;
    --cream-warm: #EDE6D8;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-mid: #4A4A4A;
    --text-light: #7A7A7A;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --serif-display: 'DM Serif Display', Georgia, serif;
    --sans: 'DM Sans', sans-serif;
    --radius: 2px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    color: var(--text-dark);
    background: var(--cream);
    overflow-x: hidden;
  }

  /* ── NAVBAR ── */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 60px;
    background: rgb(250 251 250);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(201,168,76,0.2);
    transition: var(--transition);
  }
  .navbar.scrolled {
    padding: 12px 60px;
    background: rgb(247 243 236);
  }
  .nav-logo img { height: 54px; filter: brightness(1.1); }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgb(5 97 47);
    text-decoration: none;
    transition: color 0.25s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    background: var(--gold);
    color: var(--forest-deep) !important;
    padding: 10px 24px;
    border-radius: var(--radius);
    font-weight: 600 !important;
  }
  .nav-cta:hover { background: var(--gold-light) !important; color: var(--forest-deep) !important; }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
  .hamburger span { width: 26px; height: 2px; background: var(--white); transition: var(--transition); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--forest-deep);
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://www.greenwoodldh.com/wp-content/uploads/2024/11/v1-scaled-1.jpg') center/cover no-repeat;
    transform: scale(1.06);
    animation: slowzoom 18s ease-out forwards;
  }
  @keyframes slowzoom { from { transform: scale(1.06); } to { transform: scale(1.0); } }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg,
      rgba(10,25,16,0.90) 0%,
      rgba(15,34,25,0.72) 55%,
      rgba(15,34,25,0.35) 100%);
  }
  .hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 140px 60px 80px;
    width: 100%;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }
  .hero-eyebrow::before {
    content: '';
    width: 32px; height: 1px;
    background: var(--gold);
  }
  .hero-title {
    font-family: var(--serif-display);
    font-size: clamp(44px, 5.5vw, 76px);
    font-weight: 400;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 24px;
  }
  .hero-title em {
    font-style: italic;
    color: var(--gold-light);
  }
  .hero-sub {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.72);
    max-width: 480px;
    margin-bottom: 40px;
  }
  .hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 42px;
  }
  .badge {
    padding: 7px 16px;
    border: 1px solid rgba(201,168,76,0.5);
    border-radius: 30px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--gold-light);
    background: rgba(201,168,76,0.08);
  }
  .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--forest-deep);
    padding: 15px 32px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.35); }
  .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    padding: 14px 32px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

  /* Hero Enquiry Form */
  .hero-form-card {
    background: rgba(255,255,255,0.97);
    border-radius: 4px;
    padding: 36px 32px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
    border-top: 4px solid var(--gold);
  }
  .form-title {
    font-family: var(--serif-display);
    font-size: 24px;
    color: var(--forest-deep);
    margin-bottom: 6px;
  }
  .form-sub {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 24px;
    letter-spacing: 0.04em;
  }
  .form-group { margin-bottom: 14px; }
  .form-group label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 6px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #DDD;
    border-radius: 2px;
    font-family: var(--sans);
    font-size: 14px;
    color: var(--text-dark);
    background: var(--cream);
    transition: border-color 0.25s;
    outline: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--forest); background: #fff; }
  .form-group textarea { resize: none; height: 70px; }
  .form-submit {
    width: 100%;
    padding: 14px;
    background: var(--forest);
    color: var(--white);
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    margin-top: 4px;
  }
  .form-submit:hover { background: var(--gold); color: var(--forest-deep); }
  .form-note {
    text-align: center;
    font-size: 11px;
    color: var(--text-light);
    margin-top: 10px;
  }

  /* Stats Strip */
  .stats-strip {
    background: var(--forest);
    padding: 28px 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-bottom: 1px solid rgba(201,168,76,0.2);
  }
  .stat-item {
    text-align: center;
    padding: 16px;
    border-right: 1px solid rgba(255,255,255,0.1);
  }
  .stat-item:last-child { border-right: none; }
  .stat-num {
    font-family: var(--serif);
    font-size: 38px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    display: block;
  }
  .stat-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-top: 6px;
    display: block;
  }

  /* ── SECTION UTILITIES ── */
  .section { padding: 100px 60px; }
  .section-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
  }
  .section-eyebrow::after {
    content: '';
    flex: 1;
    max-width: 40px;
    height: 1px;
    background: var(--gold);
  }
  .section-title {
    font-family: var(--serif-display);
    font-size: clamp(32px, 3.8vw, 52px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--forest-deep);
    margin-bottom: 16px;
  }
  .section-title.white { color: var(--white); }
  .section-desc {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-mid);
    max-width: 560px;
  }
  .section-desc.white { color: rgba(255,255,255,0.72); }
  .container { max-width: 1280px; margin: 0 auto; }

  /* ── ABOUT ── */
  .about { background: var(--cream); }
  .about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 180px;
    gap: 12px;
    position: relative;
  }
  .about-img {
    border-radius: 2px;
    overflow: hidden;
    background: #DDD;
  }
  .about-img:first-child { grid-column: 1/3; }
  .about-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
  .about-img:hover img { transform: scale(1.04); }
  .about-badge-float {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: var(--forest);
    color: var(--white);
    padding: 16px 24px;
    border-left: 3px solid var(--gold);
    font-size: 13px;
    z-index: 2;
  }
  .about-badge-float strong { display: block; font-family: var(--serif); font-size: 22px; color: var(--gold); }
  .about-content { padding-left: 20px; }
  .about-points { list-style: none; margin: 28px 0; display: flex; flex-direction: column; gap: 12px; }
  .about-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-mid);
  }
  .about-points li::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* ── VILLAS ── */
  .villas { background: var(--forest-deep); }
  .villas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 60px;
  }
  .villa-card {
    background: rgba(255,255,255,0.04);
    padding: 50px 44px;
    border: 1px solid rgba(201,168,76,0.12);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
  }
  .villa-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 0;
    background: var(--gold);
    transition: height 0.5s;
  }
  .villa-card:hover::before { height: 100%; }
  .villa-card:hover { background: rgba(255,255,255,0.07); }
  .villa-type {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
  }
  .villa-name {
    font-family: var(--serif-display);
    font-size: 30px;
    color: var(--white);
    margin-bottom: 28px;
    line-height: 1.25;
  }
  .villa-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 34px; }
  .villa-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
  }
  .villa-features li i { color: var(--gold); font-size: 12px; width: 14px; }
  .villa-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 2px;
    margin-bottom: 28px;
    filter: brightness(0.85);
    transition: filter 0.4s;
  }
  .villa-card:hover .villa-img { filter: brightness(0.95); }

  /* ── WHY CHOOSE ── */
  .why { background: var(--cream-warm); }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px;
  }
  .why-card {
    background: var(--white);
    padding: 36px 30px;
    border-radius: 2px;
    border-bottom: 3px solid transparent;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    position: relative;
  }
  .why-card:hover {
    border-bottom-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.1);
  }
  .why-icon {
    width: 56px; height: 56px;
    background: var(--forest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
  }
  .why-icon i { color: var(--gold); font-size: 20px; }
  .why-card h3 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--forest-deep);
    margin-bottom: 10px;
  }
  .why-card p { font-size: 14px; color: var(--text-mid); line-height: 1.75; }

  /* ── VIDEO SECTION ── */
  .videos-section { background: var(--forest-deep); }
  .videos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 56px;
  }
  .video-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background: #111;
    aspect-ratio: 16/9;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    cursor: pointer;
  }
  .video-wrapper video,
  .video-wrapper iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
  }
  .video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--forest), #0a1a10);
    color: var(--white);
    gap: 16px;
    border: 1px solid rgba(201,168,76,0.2);
  }
  .video-placeholder .play-btn {
    width: 72px; height: 72px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }
  .video-placeholder:hover .play-btn { transform: scale(1.1); background: var(--gold-light); }
  .video-placeholder .play-btn i { color: var(--forest-deep); font-size: 24px; margin-left: 4px; }
  .video-placeholder p { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
  .video-label {
    position: absolute;
    bottom: 16px; left: 16px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    padding: 7px 14px;
    border-radius: 2px;
    font-size: 12px;
    color: var(--white);
    font-weight: 500;
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .video-label i { color: var(--gold); }

  /* ── GALLERY ── */
  .gallery { background: var(--cream); }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 8px;
    margin-top: 56px;
  }
  .gallery-item {
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    background: var(--cream-warm);
  }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(5) { grid-column: span 2; }
  .gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--transition);
  }
  .gallery-item:hover img { transform: scale(1.06); }
  .gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15,34,25,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.35s;
  }
  .gallery-item:hover .gallery-item-overlay { background: rgba(15,34,25,0.45); }
  .gallery-item-overlay i {
    color: var(--white);
    font-size: 28px;
    opacity: 0;
    transform: scale(0.7);
    transition: 0.3s;
  }
  .gallery-item:hover .gallery-item-overlay i { opacity: 1; transform: scale(1); }

  /* LIGHTBOX */
  .lightbox {
    position: fixed;
    inset: 0;
    background: rgba(5,15,10,0.96);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
  }
  .lightbox.active { display: flex; }
  .lightbox-content {
    position: relative;
    max-width: 900px;
    width: 92%;
  }
  .lightbox-img {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 2px;
    display: block;
  }
  .lightbox-close {
    position: absolute;
    top: -44px; right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
  }
  .lightbox-close:hover { color: var(--gold); }
  .lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 20px;
    width: 50px; height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .lightbox-prev { left: -66px; }
  .lightbox-next { right: -66px; }
  .lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); border-color: var(--gold); color: var(--forest-deep); }
  .lightbox-counter {
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    margin-top: 14px;
    letter-spacing: 0.1em;
  }

  /* ── CTA STRIPS ── */
  .cta-strip-1 {
    background: var(--gold);
    padding: 36px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .cta-strip-text h3 {
    font-family: var(--serif-display);
    font-size: 26px;
    color: var(--forest-deep);
  }
  .cta-strip-text p { font-size: 14px; color: rgba(15,34,25,0.75); margin-top: 4px; }
  .btn-forest {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--forest-deep);
    color: var(--white);
    padding: 14px 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--radius);
    flex-shrink: 0;
    transition: var(--transition);
  }
  .btn-forest:hover { background: var(--forest); transform: translateY(-2px); }

  .cta-strip-2 {
    background: var(--forest);
    padding: 36px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .cta-strip-2 .cta-strip-text h3 { color: var(--white); }
  .cta-strip-2 .cta-strip-text p { color: rgba(255,255,255,0.65); }
  .btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--white);
    padding: 14px 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-radius: var(--radius);
    flex-shrink: 0;
    transition: var(--transition);
  }
  .btn-wa:hover { background: #1fb356; transform: translateY(-2px); }

  /* Big CTA Section */
  .cta-big {
    background: var(--forest-deep);
    padding: 100px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-big::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://www.greenwoodldh.com/wp-content/uploads/2024/11/v2-scaled-1.jpg') center/cover;
    opacity: 0.12;
  }
  .cta-big-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
  .cta-big h2 {
    font-family: var(--serif-display);
    font-size: clamp(36px, 4vw, 60px);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
  }
  .cta-big p { font-size: 15px; color: rgba(255,255,255,0.65); margin-bottom: 44px; line-height: 1.8; }
  .cta-big-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

  .cta-bottom {
    background: var(--gold);
    padding: 28px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    text-align: center;
  }
  .cta-bottom p { font-size: 15px; font-weight: 600; color: var(--forest-deep); }
  .cta-bottom a {
    color: var(--forest-deep);
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    border-bottom: 2px solid var(--forest-deep);
    padding-bottom: 2px;
  }

  /* ── LOCATION ── */
  .location { background: var(--cream); }
  .location-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }
  .location-sites { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
  .site-card {
    display: flex;
    gap: 18px;
    padding: 22px 24px;
    background: var(--white);
    border-left: 3px solid var(--gold);
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  }
  .site-num {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 600;
    color: var(--gold);
    opacity: 0.4;
    line-height: 1;
    flex-shrink: 0;
  }
  .site-info h4 { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--forest-deep); margin-bottom: 6px; }
  .site-info p { font-size: 13px; color: var(--text-mid); line-height: 1.7; }
  .contact-details { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
  .contact-row {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: var(--text-mid);
  }
  .contact-row i { color: var(--gold); font-size: 16px; width: 20px; }
  .contact-row a { color: var(--text-mid); text-decoration: none; }
  .contact-row a:hover { color: var(--forest); }
  .map-embed {
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  }
  .map-embed iframe { width: 100%; height: 420px; border: none; display: block; }

  /* ── FOOTER ── */
  .footer {
    background: var(--forest-deep);
    padding: 64px 60px 32px;
    border-top: 1px solid rgba(201,168,76,0.15);
  }
  .footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 32px;
  }
  .footer-logo img { height: 56px; margin-bottom: 18px; filter: brightness(1.1); }
  .footer-about { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.85; margin-bottom: 24px; }
  .footer-social { display: flex; gap: 10px; }
  .social-btn {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
  }
  .social-btn:hover { border-color: var(--gold); color: var(--gold); }
  .footer-col h4 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
  }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-links a { font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--gold-light); }
  .footer-contact-item { display: flex; gap: 12px; font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 12px; }
  .footer-contact-item i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    flex-wrap: wrap;
    gap: 12px;
  }

  /* ── FLOATING BTNS ── */
  .float-wa {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px; height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    z-index: 999;
    transition: transform 0.3s;
  }
  .float-wa:hover { transform: scale(1.12); }
  .float-call {
    position: fixed;
    bottom: 100px;
    right: 28px;
    width: 58px; height: 58px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-deep);
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(201,168,76,0.4);
    z-index: 999;
    transition: transform 0.3s;
  }
  .float-call:hover { transform: scale(1.12); }

  /* APPROVALS BANNER */
  .approvals {
    background: var(--cream-warm);
    padding: 24px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  .approval-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--forest);
    letter-spacing: 0.04em;
  }
  .approval-tag i { color: var(--gold); font-size: 18px; }

  /* Scroll reveal */
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal-left.visible { opacity: 1; transform: translateX(0); }
  .reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal-right.visible { opacity: 1; transform: translateX(0); }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; padding: 130px 30px 60px; }
    .hero-form-card { max-width: 520px; }
    .about-inner { grid-template-columns: 1fr; gap: 50px; }
    .about-content { padding-left: 0; }
    .villas-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(3,1fr); }
    .gallery-item:first-child { grid-column: span 3; }
    .gallery-item:nth-child(5) { grid-column: span 1; }
    .location-inner { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .stats-strip { grid-template-columns: repeat(2,1fr); padding: 20px 30px; }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.1); }
  }
  @media (max-width: 768px) {
    .navbar { padding: 16px 24px; }
    .navbar.scrolled { padding: 12px 24px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .section { padding: 70px 24px; }
    .videos-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 160px; }
    .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
    .gallery-item:nth-child(5) { grid-column: span 2; }
    .cta-strip-1, .cta-strip-2 { flex-direction: column; padding: 28px 24px; text-align: center; }
    .cta-big { padding: 70px 24px; }
    .cta-big-btns { flex-direction: column; align-items: center; }
    .footer { padding: 50px 24px 24px; }
    .footer-inner { grid-template-columns: 1fr; gap: 36px; }
    .approvals { padding: 20px 24px; gap: 24px; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
    .location-inner { gap: 36px; }
  }
  @media (max-width: 480px) {
    .stats-strip { padding: 16px; gap: 0; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .hero-title { font-size: 38px; }
    .cta-bottom { flex-direction: column; padding: 24px; }
  }