    :root {
    --black:      #0A0A0A;
    --black2:     #111111;
    --charcoal:   #1A1A1A;
    --charcoal2:  #222222;
    --red:        #C8102E;
    --red-dark:   #A00D24;
    --red-bright: #E8192E;
    --white:      #FFFFFF;
    --off-white:  #F0F0F0;
    --grey:       #888888;
    --grey-light: #CCCCCC;
    --border:     rgba(255,255,255,0.08);
    --border-red: rgba(200,16,46,0.3);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Barlow', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
  }

  ::-webkit-scrollbar { width: 5px; }
  ::-webkit-scrollbar-track { background: var(--black); }
  ::-webkit-scrollbar-thumb { background: var(--red); }

  /* ── NAVBAR ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%; height: 72px;
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: height .3s, border-color .3s;
  }
  nav.scrolled { height: 60px; border-bottom-color: var(--border-red); }

.nav-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(200,16,46,0.3));
}

  .nav-links { display: flex; gap: 32px; list-style: none; }
  .nav-links a {
    text-decoration: none; color: var(--grey-light);
    font-size: .75rem; letter-spacing: .14em; text-transform: uppercase;
    font-weight: 500; transition: color .2s; position: relative; padding-bottom: 2px;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1.5px; background: var(--red); transition: width .3s;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-links a:hover::after { width: 100%; }

  .nav-cta {
    background: var(--red); color: var(--white); border: none;
    padding: 10px 24px; font-family: 'Barlow', sans-serif;
    font-size: .75rem; letter-spacing: .14em; text-transform: uppercase;
    font-weight: 600; cursor: pointer;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: background .25s;
  }
  .nav-cta:hover { background: var(--red-bright); }

  /* ── HERO ── */
  #hero {
    min-height: 100vh; display: grid;
    grid-template-columns: 55% 45%;
    position: relative; overflow: hidden;
  }
  #hero::after {
    content: ''; position: absolute;
    top: 0; bottom: 0; left: 55%; width: 80px;
    background: var(--black); transform: skewX(-4deg); z-index: 5;
  }

  .hero-left {
    background: var(--black);
    display: flex; flex-direction: column; justify-content: center;
    padding: 120px 7% 80px; position: relative; z-index: 6; overflow: hidden;
  }
  .hero-left::before {
    content: 'M'; position: absolute; right: -5%; bottom: -10%;
    font-family: 'Cormorant Garamond', serif; font-size: 40vw; font-weight: 700;
    color: rgba(200,16,46,0.04); line-height: 1; pointer-events: none; z-index: 0;
  }
  .hero-left > * { position: relative; z-index: 1; }

  .hero-eyebrow {
    display: flex; align-items: center; gap: 14px;
    font-size: .68rem; letter-spacing: .3em; text-transform: uppercase;
    color: var(--red); margin-bottom: 24px;
    animation: fadeUp .7s ease both;
  }
  .hero-eyebrow .line { display: block; width: 40px; height: 1px; background: var(--red); }

  .hero-h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5.5vw, 5rem);
    font-weight: 300; line-height: 1.05; color: var(--white);
    animation: fadeUp .7s .12s ease both;
  }
  .hero-h1 em { font-style: italic; color: var(--red); display: block; }
  .hero-h1 strong { font-weight: 600; display: block; }

  .hero-sub {
    margin-top: 24px; color: var(--grey);
    font-size: .95rem; line-height: 1.8; max-width: 420px;
    animation: fadeUp .7s .24s ease both;
  }

  .hero-stats {
    display: flex; gap: 0; margin-top: 48px;
    animation: fadeUp .7s .36s ease both;
  }
  .stat-box {
    padding: 20px 28px 20px 0;
    border-right: 1px solid var(--border); margin-right: 28px;
  }
  .stat-box:last-child { border-right: none; margin-right: 0; }
  .stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.2rem; font-weight: 700; color: var(--red); line-height: 1;
  }
  .stat-lbl { font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; color: var(--grey); margin-top: 4px; }

  .hero-strip {
    margin-top: 44px; display: flex; gap: 12px; flex-wrap: wrap;
    animation: fadeUp .7s .48s ease both;
  }
  .strip-tag {
    background: var(--charcoal2); color: var(--grey-light);
    font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
    padding: 8px 16px; font-weight: 500; border-left: 2px solid var(--red);
  }

  /* ── HERO FORM ── */
  .hero-right {
    background: var(--charcoal);
    display: flex; align-items: center; justify-content: center;
    padding: 120px 6% 80px 10%;
    position: relative; z-index: 4;
  }
  .hero-right::before {
    content: ''; position: absolute; inset: 0;
    background: repeating-linear-gradient(
      -45deg, transparent, transparent 20px,
      rgba(200,16,46,0.015) 20px, rgba(200,16,46,0.015) 40px
    );
  }

  .form-wrap {
    width: 100%; max-width: 380px;
    position: relative; z-index: 1;
    animation: fadeUp .8s .2s ease both;
  }
  .form-header-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--red); color: #fff;
    font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
    padding: 6px 14px; font-weight: 600; margin-bottom: 20px;
  }
  .form-header-tag::before { content: '●'; font-size: .5rem; animation: blink 1.5s infinite; }
  @keyframes blink { 0%,100%{opacity:1}50%{opacity:.2} }

  .form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem; font-weight: 400; line-height: 1.2; color: var(--white); margin-bottom: 6px;
  }
  .form-title em { color: var(--red); font-style: italic; }
  .form-desc { font-size: .83rem; color: var(--grey); line-height: 1.7; margin-bottom: 28px; }

  .form-group { margin-bottom: 16px; }
  .form-group label {
    display: block; font-size: .65rem; letter-spacing: .18em;
    text-transform: uppercase; color: var(--grey-light); margin-bottom: 6px; font-weight: 600;
  }
  .form-group input, .form-group textarea {
    width: 100%; padding: 13px 16px;
    background: var(--black2); border: 1px solid var(--border);
    color: var(--white); font-family: 'Barlow', sans-serif; font-size: .9rem;
    outline: none; border-radius: 0; transition: border-color .25s, background .25s;
  }
  .form-group input::placeholder, .form-group textarea::placeholder { color: #444; }
  .form-group input:focus, .form-group textarea:focus { border-color: var(--red); background: #141414; }
  .form-group textarea { min-height: 96px; resize: vertical; }

  .form-submit {
    width: 100%; padding: 15px;
    background: var(--red); color: var(--white); border: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 700;
    cursor: pointer; margin-top: 8px;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    transition: background .25s;
  }
  .form-submit:hover { background: var(--red-bright); }
  .form-trust { display: flex; align-items: center; gap: 8px; margin-top: 14px; font-size: .72rem; color: #555; }
  .form-trust::before { content: '🔒'; font-size: .8rem; }

  #formSuccess { display: none; text-align: center; padding: 40px 0; }
  .success-icon {
    width: 64px; height: 64px; background: var(--red); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; font-size: 1.8rem;
  }

  /* ── SECTIONS COMMON ── */
  .section-eyebrow {
    display: flex; align-items: center; gap: 12px;
    font-size: .68rem; letter-spacing: .28em; text-transform: uppercase;
    color: var(--red); margin-bottom: 14px; font-weight: 600;
  }
  .section-eyebrow .dot { width: 6px; height: 6px; background: var(--red); border-radius: 50%; flex-shrink:0; }
  .section-h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; line-height: 1.15; color: var(--white);
  }
  .section-h2 em { font-style: italic; color: var(--red); }

  /* ── ABOUT ── */
  #about { background: var(--charcoal); display: grid; grid-template-columns: 1fr 1fr; min-height: 580px; }

  .about-img {
    position: relative; overflow: hidden; background: var(--black2);
    display: flex; align-items: center; justify-content: center; min-height: 480px;
  }
  .about-img img { width: 100%; height: 100%; object-fit: cover; display: block; position: absolute; inset: 0; }
  .about-img-ph { display: flex; flex-direction: column; align-items: center; gap: 12px; }
  .about-img-ph span { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: #555; }
  .about-img::after {
    content: ''; position: absolute; bottom: 0; right: 0;
    width: 80px; height: 80px; background: var(--red);
    clip-path: polygon(100% 0%, 100% 100%, 0% 100%); z-index: 2;
  }
  .about-badge {
    position: absolute; top: 32px; left: 32px;
    background: var(--red); color: #fff; padding: 16px 20px; text-align: center; z-index: 3;
  }
  .about-badge .b-num { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 700; line-height: 1; display: block; }
  .about-badge .b-lbl { font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; opacity: .85; margin-top: 4px; display: block; }

  .about-content { padding: 80px 8%; display: flex; flex-direction: column; justify-content: center; }
  .feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
  .feat-item {
    background: var(--black2); border: 1px solid var(--border); padding: 18px 16px;
    border-left: 2px solid var(--red); transition: background .25s;
  }
  .feat-item:hover { background: var(--charcoal2); }
  .feat-item .fi-icon { font-size: 1.3rem; margin-bottom: 8px; display: block; }
  .feat-item .fi-text { font-size: .8rem; color: var(--grey-light); line-height: 1.5; }

  /* ── VILLAS ── */
  #villas { background: var(--black); padding: 100px 6%; position: relative; overflow: hidden; }
  #villas::before {
    content: 'VILLAS'; position: absolute; right: -2%; top: 50%; transform: translateY(-50%);
    font-family: 'Barlow Condensed', sans-serif; font-size: 14rem; font-weight: 700;
    color: rgba(200,16,46,0.04); letter-spacing: .1em; pointer-events: none; line-height: 1;
  }

  .villas-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 56px; flex-wrap: wrap; gap: 24px;
  }
  .villas-note {
    background: var(--charcoal2); border: 1px solid var(--border-red);
    padding: 16px 22px; max-width: 320px;
    font-size: .82rem; color: var(--grey-light); line-height: 1.6;
  }
  .villas-note strong { color: var(--red); }

  .villas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
  .villa-card { background: var(--charcoal); position: relative; overflow: hidden; transition: transform .4s; }
  .villa-card:hover { transform: translateY(-4px); z-index: 2; box-shadow: 0 20px 60px rgba(0,0,0,.5); }

  .villa-img-wrap {
    position: relative; overflow: hidden; aspect-ratio: 16/10;
    background: var(--black2); display: flex; align-items: center; justify-content: center;
  }
  .villa-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s; position: absolute; inset: 0; }
  .villa-card:hover .villa-img-wrap img { transform: scale(1.05); }
  .villa-ph { display: flex; flex-direction: column; align-items: center; gap: 10px; }
  .villa-ph span { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: #555; }

  .villa-price-tag {
    position: absolute; bottom: 0; right: 0;
    background: var(--red); color: #fff; padding: 12px 20px; text-align: right; z-index: 2;
  }
  .villa-price-tag .vp-amt { font-family: 'Barlow Condensed', sans-serif; font-size: 1.5rem; font-weight: 700; line-height: 1; display: block; }
  .villa-price-tag .vp-note { font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; opacity: .8; }
  .villa-number {
    position: absolute; top: 16px; left: 16px;
    font-family: 'Barlow Condensed', sans-serif; font-size: .65rem; font-weight: 700;
    letter-spacing: .2em; text-transform: uppercase;
    background: rgba(0,0,0,.75); color: var(--red);
    padding: 6px 14px; border-left: 2px solid var(--red); z-index: 2;
  }

  .villa-body { padding: 32px 30px 36px; }
  .villa-name { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 400; color: var(--white); margin-bottom: 10px; }
  .villa-meta { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 18px; }
  .vm-item { font-size: .73rem; color: var(--grey); display: flex; align-items: center; gap: 6px; }
  .vm-dot { width: 4px; height: 4px; background: var(--red); border-radius: 50%; display: inline-block; }
  .villa-desc { font-size: .87rem; line-height: 1.8; color: var(--grey); margin-bottom: 24px; }
  .villa-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
  .chip {
    background: var(--black2); border: 1px solid var(--border);
    font-size: .65rem; letter-spacing: .12em; text-transform: uppercase;
    padding: 5px 12px; color: var(--grey-light); transition: border-color .2s;
  }
  .villa-card:hover .chip { border-color: var(--border-red); }
  .villa-cta {
    display: inline-block; background: transparent; border: 1px solid var(--red);
    color: var(--red); padding: 12px 28px; font-family: 'Barlow Condensed', sans-serif;
    font-size: .9rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 600;
    cursor: pointer; text-decoration: none; transition: background .25s, color .25s;
  }
  .villa-cta:hover { background: var(--red); color: var(--white); }

  /* ── PRICING ── */
  #pricing { background: var(--charcoal); padding: 100px 6%; position: relative; overflow: hidden; }
  #pricing::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
  }
  .pricing-header { text-align: center; margin-bottom: 60px; }
  .pricing-header .section-eyebrow { justify-content: center; }

  .pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); }
  .price-card { background: var(--black2); padding: 44px 36px; position: relative; transition: background .3s; }
  .price-card:hover { background: #161616; }
  .price-card.featured { background: var(--red); }
  .price-card.featured:hover { background: var(--red-bright); }
  .price-card.featured .pc-badge,
  .price-card.featured .pc-name,
  .price-card.featured .pc-price,
  .price-card.featured .pc-note,
  .price-card.featured .pc-feature { color: #fff !important; }
  .price-card.featured .pc-feature::before { color: #fff; }
  .price-card.featured .pc-divider { background: rgba(255,255,255,.25); }
  .price-card.featured .pc-cta { background: #fff; color: var(--red); border-color: #fff; }
  .price-card.featured .pc-cta:hover { background: var(--black); color: #fff; border-color: var(--black); }

  .pc-badge {
    font-size: .6rem; letter-spacing: .22em; text-transform: uppercase;
    color: var(--red); font-weight: 700; margin-bottom: 20px;
    display: flex; align-items: center; gap: 8px;
  }
  .pc-badge::after { content: ''; flex: 1; height: 1px; background: currentColor; opacity: .3; }
  .pc-name { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 400; color: var(--white); margin-bottom: 4px; }
  .pc-price { font-family: 'Barlow Condensed', sans-serif; font-size: 3rem; font-weight: 700; color: var(--white); line-height: 1; margin: 12px 0 4px; }
  .pc-note { font-size: .75rem; color: var(--grey); margin-bottom: 28px; }
  .pc-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
  .pc-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
  .pc-feature { font-size: .83rem; color: var(--grey-light); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
  .pc-feature::before { content: '▸'; color: var(--red); flex-shrink: 0; }
  .pc-cta {
    width: 100%; padding: 13px; background: transparent;
    border: 1px solid var(--border-red); color: var(--red);
    font-family: 'Barlow Condensed', sans-serif; font-size: .9rem; letter-spacing: .16em;
    text-transform: uppercase; font-weight: 600; cursor: pointer;
    transition: background .25s, color .25s, border-color .25s;
  }
  .pc-cta:hover { background: var(--red); color: #fff; border-color: var(--red); }

  /* ── GALLERY ── */
  #gallery { background: var(--black); padding: 100px 6%; }
  .gallery-intro {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 24px; margin-bottom: 36px;
  }
  /* ── GALLERY ── */
  .gallery-groups {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
  }
  .gallery-group {
    background: var(--charcoal2);
    border-radius: 8px;
    padding: 24px;
    border: 1px solid var(--border);
  }
  .group-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-red);
  }
  .group-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 140px);
    gap: 12px;
  }
  .gal-item { 
    overflow: hidden; 
    position: relative; 
    background: var(--black2); 
    cursor: pointer;
    border-radius: 6px;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .gal-item:hover { 
    transform: translateY(-4px); 
    box-shadow: 0 12px 30px rgba(200,16,46,0.3);
  }
  .gal-item img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block; 
    transition: transform .5s; 
  }
  .gal-item:hover img { transform: scale(1.07); }
  .gal-overlay {
    position: absolute; inset: 0;
    background: rgba(200,16,46,0);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: all .3s;
  }
  .gal-item:hover .gal-overlay { 
    opacity: 1; 
    background: rgba(200,16,46,0.55); 
  }
  .gal-overlay-text {
    font-family: 'Barlow Condensed', sans-serif; 
    font-size: .7rem; 
    letter-spacing: .2em;
    text-transform: uppercase; 
    color: #fff; 
    border: 1px solid rgba(255,255,255,.7);
    padding: 8px 20px; 
    font-weight: 600;
    backdrop-filter: blur(10px);
  }

  /* ── MODAL ── */
  .modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(8px);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: modalFadeIn 0.3s ease;
  }
  .modal.active { display: flex; }
  @keyframes modalFadeIn {
    from { opacity: 0; } to { opacity: 1; }
  }
  .modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    width: 100%;
    height: 100%;
  }
  #modal-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.8);
  }
  .modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
    font-weight: 300;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
  }
  .modal-close:hover { color: var(--red); background: rgba(255,255,255,0.2); transform: scale(1.1); }
  .modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 2.5rem;
    font-weight: 300;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    user-select: none;
    border: 1px solid rgba(255,255,255,0.2);
  }
  .modal-nav:hover { background: rgba(255,255,255,0.3); transform: translateY(-50%) scale(1.1); }
  .prev { left: -30px; }
  .next { right: -30px; }
  .modal-info {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    backdrop-filter: blur(10px);
    white-space: nowrap;
  }
  #modal-group { display: block; font-size: 0.75rem; opacity: 0.9; margin-top: 2px; }

  /* ── TESTIMONIALS ── */
  #testimonials { background: var(--charcoal); padding: 100px 6%; position: relative; }
  #testimonials::before {
    content: '"'; position: absolute; left: 4%; top: 4%;
    font-family: 'Cormorant Garamond', serif; font-size: 18rem;
    color: rgba(200,16,46,.06); line-height: 1; pointer-events: none;
  }
  .testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 56px; }
  .testi-card {
    background: var(--black2); padding: 36px 32px;
    border-top: 2px solid transparent; transition: border-color .3s, background .3s;
  }
  .testi-card:hover { border-top-color: var(--red); background: #141414; }
  .testi-stars { color: var(--red); font-size: .9rem; letter-spacing: 3px; margin-bottom: 18px; }
  .testi-text {
    font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic;
    font-weight: 300; color: var(--off-white); line-height: 1.75; margin-bottom: 24px;
  }
  .testi-author { font-size: .75rem; font-weight: 600; letter-spacing: .1em; color: var(--white); text-transform: uppercase; }
  .testi-event { font-size: .72rem; color: var(--red); margin-top: 3px; }

  /* ── CTA BAND ── */
  #cta-band {
    background: var(--red); padding: 80px 6%;
    display: flex; align-items: center; justify-content: space-between;
    gap: 40px; flex-wrap: wrap; position: relative; overflow: hidden;
  }
  #cta-band::before {
    content: 'BOOK NOW'; position: absolute; right: 2%; top: 50%; transform: translateY(-50%);
    font-family: 'Barlow Condensed', sans-serif; font-size: 10rem; font-weight: 700;
    color: rgba(255,255,255,.07); line-height: 1; pointer-events: none; letter-spacing: .05em;
    white-space: nowrap;
  }
  .cta-band-text .cta-h {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 300; color: #fff; line-height: 1.2;
  }
  .cta-band-text .cta-h em { font-style: italic; }
  .cta-band-text p { font-size: .88rem; color: rgba(255,255,255,.75); margin-top: 10px; }
  .cta-band-actions { display: flex; gap: 16px; flex-wrap: wrap; }
  .cta-btn-w {
    background: #fff; color: var(--red); padding: 16px 36px; border: none;
    font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; letter-spacing: .18em;
    text-transform: uppercase; font-weight: 700; cursor: pointer; text-decoration: none;
    display: inline-block; transition: background .2s, color .2s;
  }
  .cta-btn-w:hover { background: var(--black); color: #fff; }
  /* .cta-btn-o {
    background: transparent; color: #fff; padding: 15px 32px;
    border: 2px solid rgba(255,255,255,.6); font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 700;
    cursor: pointer; text-decoration: none; display: inline-block;
    transition: border-color .2s, background .2s;
  } */
   .cta-btn-o {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none !important;
  font-weight: 500;
}

.cta-btn-o i {
  font-size: 18px;
}
  .cta-btn-o:hover { border-color: #fff; background: rgba(255,255,255,.1); }

  /* ── CONTACT ── */
  #contact {
    background: var(--black2); padding: 60px 6%;
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 40px; border-top: 1px solid var(--border);
  }
  .ci-label { font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--red); font-weight: 600; margin-bottom: 10px; }
  .ci-value { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--off-white); line-height: 1.5; }
  .ci-value a { color: var(--off-white); text-decoration: none; transition: color .2s; }
  .ci-value a:hover { color: var(--red); }

  /* ── FOOTER ── */
  footer {
    background: var(--black); padding: 36px 6%;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 20px; border-top: 1px solid var(--border);
  }
  .footer-logo { font-family: 'Barlow Condensed', sans-serif; font-size: 1.3rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--white); }
  .footer-logo span { color: var(--red); }
  .footer-copy { font-size: .72rem; color: #444; }
  .footer-links { display: flex; gap: 24px; }
  .footer-links a { font-size: .72rem; color: #555; text-decoration: none; letter-spacing: .1em; text-transform: uppercase; transition: color .2s; }
  .footer-links a:hover { color: var(--red); }

  .whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  text-decoration-line: none;
}

.whatsapp-float a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white !important;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: whatsappFloat 2s infinite ease-in-out;
  backdrop-filter: blur(10px);
  border: 3px solid rgba(255,255,255,0.2);
  line-height: 1;
}

.whatsapp-float a:hover {
  transform: translateY(-6px) scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
  animation-play-state: paused;
}

@keyframes whatsappFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-float a {
    width: 56px;
    height: 56px;
  }
  .whatsapp-float a i {
    font-size: 24px;
  }
}

  /* ── ANIMATIONS ── */
  @keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
  .reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.visible { opacity: 1; transform: none; }

  /* ── WHATSAPP STICKY BUTTON ── */
  .whatsapp-float {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    z-index: 9999 !important;
    width: 70px !important;
    height: 70px !important;
    border-radius: 50% !important;
    background: #25d366 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5) !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    animation: whatsappPulse 2s infinite !important;
  }

  .whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1) !important;
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.7) !important;
    background: #20ba5a !important;
    animation-play-state: paused !important;
  }

  .whatsapp-float i {
    font-size: 32px !important;
    color: white !important;
  }

  @keyframes whatsappPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 960px) {
    #hero { grid-template-columns: 1fr; }
    #hero::after { display: none; }
    .hero-left::before { display: none; }
    .hero-right { padding: 60px 6%; }
    #about { grid-template-columns: 1fr; }
    .villas-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; gap: 2px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .gal-item:nth-child(n) { grid-column: span 1 !important; grid-row: span 1 !important; }
    .gal-ph { min-height: 160px; }
    .testi-grid { grid-template-columns: 1fr; }
    #contact { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
    #villas::before { display: none; }
    .whatsapp-float { bottom: 25px !important; right: 25px !important; width: 60px !important; height: 60px !important; }
    .whatsapp-float i { font-size: 28px !important; }
  }
