    /* ─── RESET & BASE ─── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --gold: #b8965a;
      --gold-lt: #d4af6a;
      --dark: #111;
      --dark2: #1a1a1a;
      --dark3: #222;
      --cream: #f9f5ef;
      --cream2: #f2ece2;
      --text: #222;
      --text-muted: #666;
      --border: #e0d8cc;
      --white: #fff;
      --radius: 12px;
      --shadow: 0 4px 24px rgba(0,0,0,0.10);
    }
    html { scroll-behavior: smooth; }
    body { font-family: 'Poppins', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    button { cursor: pointer; font-family: inherit; }

    /* ─── KEYWORD HIGHLIGHT ─── */
    /* .kw { background: linear-gradient(120deg, #fff3cd 0%, #ffe69c 100%); padding: 1px 4px; border-radius: 3px; font-weight: 600; } */

    /* ─── TICKER ─── */
    .ticker-bar { background: linear-gradient(90deg, #CE9B46 0%, #FDE99C 50%, #B8741D 100%); color: var(--dark3); font-size: 12px; font-weight: 500; overflow: hidden; white-space: nowrap; padding: 8px 0; position: relative; z-index: 200; }
    .ticker-track { display: inline-block; animation: ticker 30s linear infinite; }
    .ticker-track span { padding: 0 40px; }
    @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* ─── NAVBAR ─── */
    .navbar { position: sticky; top: 0; z-index: 999; background: var(--dark); border-bottom: 1px solid #333; }
    .nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 64px; }
    .nav-brand img,.ch-partner-nav-brand img { height: 44px; object-fit: contain; }
    .nav-links { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
    .nav-links a { color: var(--white); font-size: 13px; font-weight: 500; padding: 6px 12px; border-radius: 6px; transition: color .2s, background .2s; display: flex; align-items: center; gap: 5px; }
    .nav-links a:hover { color: var(--gold); background: rgba(184,150,90,.1); }
    .nav-enq-btn { background: var(--gold) !important; color: var(--dark) !important; font-weight: 700 !important; border-radius: 6px !important; }
    .nav-enq-btn:hover { background: var(--gold-lt) !important; }
    .nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
    .nav-hamburger span { width: 24px; height: 2px; background: var(--gold); border-radius: 2px; }
    @media(max-width:900px){
      .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--dark2); flex-direction: column; align-items: flex-start; padding: 12px; gap: 4px; }
      .nav-links.open { display: flex; }
      .nav-hamburger { display: flex; }
    }

    /* ─── HERO ─── */
    .hero { position: relative; min-height: 92vh; display: flex; align-items: center; background: var(--dark); overflow: hidden; }
    .hero-bg { position: absolute; inset: 0; z-index: 0; }
    .slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1s ease; }
    .slide.active { opacity: 1; }
    .hero-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.35) 100%); z-index: 1; }
    .hero-content { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: 60px 24px; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
    .hero-badge-pill { display: inline-block; background: rgba(184,150,90,.18); border: 1px solid var(--gold); color: var(--gold); font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 5px 14px; border-radius: 99px; margin-bottom: 16px; }
    .hero-eyebrow { color: var(--gold-lt); font-size: 13px; font-weight: 500; margin-bottom: 10px; }
    .hero-h1 { font-family: 'Playfair Display', serif; font-size: clamp(32px,5vw,60px); color: var(--white); line-height: 1.1; margin-bottom: 16px; }
    .hero-h1 em { color: var(--gold); font-style: normal; }
    .hero-p { color: #ccc; font-size: 15px; line-height: 1.7; margin-bottom: 24px; }
    .hero-tags { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
    .hero-tag-item { background: rgba(184,150,90,.12); border: 1px solid rgba(184,150,90,.3); border-radius: 8px; padding: 8px 14px; color: var(--white); font-size: 12px; text-align: center; }
    .hero-tag-item strong { display: block; font-size: 18px; color: var(--gold); }
    .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
    .btn-g { background: var(--gold); color: var(--dark); font-size: 14px; font-weight: 700; padding: 12px 24px; border-radius: 8px; border: none; display: inline-flex; align-items: center; gap: 7px; transition: background .2s, transform .15s; }
    .btn-g:hover { background: var(--gold-lt); transform: translateY(-2px); }
    .btn-ow { border: 2px solid rgba(255,255,255,.35); color: var(--white); font-size: 14px; font-weight: 600; padding: 11px 22px; border-radius: 8px; transition: border-color .2s, color .2s; }
    .btn-ow:hover { border-color: var(--gold); color: var(--gold); }
    .hero-right { display: flex; flex-direction: column; gap: 12px; }
    .hero-stat-box { background: rgba(255,255,255,.06); border: 1px solid rgba(184,150,90,.25); border-radius: 14px; padding: 24px; backdrop-filter: blur(8px); }
    .hero-stat-box h3 { color: var(--gold); font-family: 'Playfair Display', serif; font-size: 20px; margin-bottom: 16px; }
    .hsb-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .hsb-item { background: rgba(255,255,255,.05); border-radius: 8px; padding: 12px; }
    .hsb-val { color: var(--white); font-size: 20px; font-weight: 700; }
    .hsb-lbl { color: #aaa; font-size: 11px; margin-top: 2px; }
    @media(max-width:768px){
      .hero-content { grid-template-columns: 1fr; }
      .hero-right { display: none; }
    }

    /* ─── INFO STRIP ─── */
    .info-strip { background: var(--gold); padding: 12px 0; }
    .info-strip-in { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
    .isi { font-size: 12px; font-weight: 600; color: var(--dark); }

    /* ─── LAUNCH SECTION ─── */
    .launch-section { background: var(--cream2); padding: 40px 24px; }
    .launch-box { max-width: 1100px; margin: 0 auto; border: 1px solid rgba(184,150,90,.3); border-radius: 16px; overflow: hidden; }
    .launch-hd { background: linear-gradient(135deg, var(--gold) 0%, #8a6a30 100%); padding: 24px 32px; text-align: center; }
    .launch-hd h2 { color: var(--dark); font-size: 22px; font-weight: 800; margin-bottom: 6px; }
    .launch-hd p { color: rgba(0,0,0,.7); font-size: 13px; margin-bottom: 14px; }
    .launch-book { background: var(--dark); color: var(--gold); font-weight: 700; font-size: 14px; padding: 10px 24px; border-radius: 8px; border: none; }
    .launch-body { display: grid; grid-template-columns: 1fr 1fr; gap: 0;background-color: var(--white); }
    .launch-col { padding: 28px 32px; }
    .launch-col:last-child { border-left: 1px solid rgba(184,150,90,.2); background: rgba(184,150,90,.04); }
    .launch-col-hd { font-size: 14px; font-weight: 700; color: var(--gold); margin-bottom: 14px; text-transform: uppercase; letter-spacing: .5px; }
    .ll { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .ll li { font-size: 13px; color: var(--text-muted); padding-left: 18px; position: relative; }
    .ll li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: 10px; top: 2px; }
    .off-row { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
    .off-price { font-size: 22px; font-weight: 800; color: var(--text-muted); margin-bottom: 12px; }
    .off-price strong { color: var(--gold); }
    .enq-btn { background: var(--gold); color: var(--dark); font-weight: 700; font-size: 14px; padding: 12px 28px; border-radius: 8px; border: none; }
    @media(max-width:650px){ .launch-body { grid-template-columns: 1fr; } .launch-col:last-child { border-left: none; border-top: 1px solid rgba(184,150,90,.2); } }

    /* ─── SECTIONS ─── */
    .section { padding: 70px 0; }
    .section-alt { background: var(--cream); }
    .section-dark { background: var(--dark2); }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .sec-head { text-align: center; margin-bottom: 40px; }
    .sec-label { display: inline-block; background: rgba(184,150,90,.12); border: 1px solid rgba(184,150,90,.3); color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 14px; border-radius: 99px; margin-bottom: 10px; }
    .sec-title { font-family: 'Playfair Display', serif; font-size: clamp(26px,4vw,40px); color: var(--text); margin-bottom: 12px; }
    .section-dark .sec-title { color: var(--white); }
    .sec-line { width: 48px; height: 3px; background: var(--gold); margin: 0 auto; border-radius: 2px; }

    /* ─── OVERVIEW ─── */
    .ov-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
    .ov-title { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
    .ov-sub { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--text); margin-bottom: 16px; line-height: 1.3; }
    .ov-p { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; }
    .ov-dl { background: var(--dark); color: var(--white); font-size: 13px; font-weight: 600; padding: 11px 22px; border-radius: 8px; border: 2px solid var(--gold); display: inline-flex; align-items: center; gap: 7px; margin-top: 8px; transition: background .2s; }
    .ov-dl:hover { background: var(--gold); color: var(--dark); }
    .ov-card { background: var(--cream2); border: 1px solid var(--border); border-radius: 16px; padding: 28px; }
    .ov-card-title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 18px; }
    .ov-feat { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text); padding: 8px 0; border-bottom: 1px solid var(--border); }
    .ov-feat:last-of-type { border-bottom: none; }
    .ov-feat span svg { color: var(--gold); }
    .ov-price-box { margin-top: 18px; background: var(--dark); border-radius: 10px; padding: 18px 20px; text-align: center; }
    .ov-price-lbl { color: #aaa; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }
    .ov-price-num { color: var(--gold); font-size: 28px; font-weight: 800; }
    .ov-price-sub { color: #888; font-size: 11px; margin-top: 4px; }
    @media(max-width:768px){ .ov-grid { grid-template-columns: 1fr; } }

    /* ─── STATS STRIP ─── */
    .stats-strip { background: var(--dark); padding: 40px 0; }
    .stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
    .stat-item { text-align: center; padding: 20px; border-right: 1px solid rgba(255,255,255,.08); }
    .stat-item:last-child { border-right: none; }
    .stat-num { font-size: 32px; font-weight: 800; color: var(--gold); }
    .stat-num span { font-size: 18px; }
    .stat-lbl { font-size: 12px; color: #aaa; margin-top: 4px; line-height: 1.4; }
    @media(max-width:768px){ .stats-grid { grid-template-columns: repeat(2,1fr); gap: 1px; background: rgba(255,255,255,.05); } .stat-item { background: var(--dark); } }

    /* ─── AMENITIES ─── */
    .am-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 16px; }
    .am-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 20px 14px; text-align: center; transition: box-shadow .2s, transform .2s; }
    .am-card:hover { box-shadow: 0 6px 24px rgba(184,150,90,.15); transform: translateY(-3px); }
    .am-emoji { font-size: 30px; margin-bottom: 8px; }
    .am-name { font-size: 12px; font-weight: 600; color: var(--text); }

    /* ─── PRICE TABLE ─── */
    .price-wrap { overflow-x: auto; }
    .price-tbl { width: 100%; border-collapse: collapse; font-size: 14px; }
    .price-tbl th { background: var(--dark); color: var(--gold); text-align: left; padding: 14px 18px; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .5px; }
    .price-tbl td { padding: 14px 18px; border-bottom: 1px solid var(--border); vertical-align: middle; }
    .price-tbl tr:hover td { background: var(--cream); }
    .price-val { color: var(--gold); font-weight: 700; font-size: 16px; }
    .price-btn { background: transparent; border: 1.5px solid var(--gold); color: var(--gold); font-size: 12px; font-weight: 600; padding: 7px 16px; border-radius: 6px; transition: background .2s, color .2s; }
    .price-btn:hover { background: var(--gold); color: var(--dark); }

    /* ─── HIGHLIGHTS ─── */
    .hl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
    .hl-list { display: flex; flex-direction: column; gap: 12px; }
    .hl-item {
      font-size: 14px;
      color: var(--text);
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      background: var(--cream2);
      border-radius: 8px;
      border: 1px solid var(--border);
    }
    .hl-ck { width: 22px; height: 22px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--dark); font-size: 11px; font-weight: 800; flex-shrink: 0; margin-top: 1px; }
    .hl-img img { border-radius: 14px; width: 100%; object-fit: cover; max-height: 380px; }
    @media(max-width:768px){ .hl-grid { grid-template-columns: 1fr; } .hl-img { display: none; } }

    /* ─── GALLERY ─── */
    .gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
    .gal-item { position: relative; border-radius: 10px; overflow: hidden; aspect-ratio: 4/3; }
    .gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
    .gal-item:hover img { transform: scale(1.05); }
    .gal-ov{
  position:absolute;inset:0;
  background:rgba(14,26,14,.5);
  display:flex;align-items:center;justify-content:center;
  opacity:0;transition:var(--transition);color:#fff;font-size:var(--fs-3xl);
}
.gal-item:hover .gal-ov{opacity:1}
    @media(max-width:600px){ .gal-grid { grid-template-columns: 1fr 1fr; } }

    /* ─── FLOOR PLAN ─── */
    .fp-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
    .fp-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); }
    .fp-img{height:250px;background:var(--clr-green-bg);display:flex;align-items:center;justify-content:center;font-size:var(--fs-4xl)}
.fp-img img{width:100%;height:100%;object-fit:contain}
    /* .fp-img { background: var(--cream2); padding: 16px; }
    .fp-img img { width: 100%; border-radius: 8px; } */
    .fp-body { padding: 16px 20px; }
    .fp-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 10px; line-height: 1.4; }
    .fp-btn { width: 100%; background: var(--dark); color: var(--gold); font-size: 13px; font-weight: 700; padding: 10px; border-radius: 7px; border: none; transition: background .2s; }
    .fp-btn:hover { background: var(--gold); color: var(--dark); }

    /* ─── LOCATION ─── */
    .loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
    .loc-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
    .loc-item { display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: var(--cream2); border-radius: 8px; border: 1px solid var(--border); }
    .loc-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
    .loc-txt { flex: 1; font-size: 13px; font-weight: 500; }
    .loc-time { font-size: 12px; color: var(--gold); font-weight: 700; }
    .map-box img { width: 100%; border-radius: 14px; }
    @media(max-width:768px){ .loc-grid { grid-template-columns: 1fr; } }

    /* ─── FAQ ─── */
    .faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 24px; }
    .faq-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 20px 22px; }
    .faq-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
    .faq-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

    /* ─── STICKY FORM BAR ─── */
    .sticky-form-bar {
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
      background: var(--dark); border-top: 2px solid var(--gold);
      padding: 10px 16px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
      box-shadow: 0 -4px 20px rgba(0,0,0,.3);
    }
    .sfb-label { color: var(--gold); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; }
    .sfb-inputs { display: flex; gap: 8px; flex: 1; flex-wrap: wrap; }
    .sfb-input { flex: 1; min-width: 120px; background: rgba(255,255,255,.08); border: 1px solid rgba(184,150,90,.3); color: var(--white); font-size: 13px; padding: 9px 12px; border-radius: 7px; outline: none; }
    .sfb-input::placeholder { color: #888; }
    .sfb-input:focus { border-color: var(--gold); }
    .sfb-select { flex: 1; min-width: 130px; background: rgba(255,255,255,.08); border: 1px solid rgba(184,150,90,.3); color: #888; font-size: 13px; padding: 9px 12px; border-radius: 7px; outline: none; }
    .sfb-select option { background: var(--dark); color: var(--white); }
    .sfb-btn { background: var(--gold); color: var(--dark); font-size: 13px; font-weight: 700; padding: 9px 20px; border-radius: 7px; border: none; white-space: nowrap; transition: background .2s; flex-shrink: 0; }
    .sfb-btn:hover { background: var(--gold-lt); }
    @media(max-width:600px){ .sfb-inputs { flex-direction: column; } .sfb-input, .sfb-select { min-width: 100%; } }

    /* ─── FOOTER FORM ─── */
    .footer-form-section { background: var(--dark2); padding: 60px 0; border-top: 1px solid rgba(184,150,90,.2); }
    .ff-wrap { max-width: 900px; margin: 0 auto; padding: 0 24px; }
    .ff-title { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--white); text-align: center; margin-bottom: 6px; }
    .ff-sub { text-align: center; color: #aaa; font-size: 13px; margin-bottom: 32px; }
    .ff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .ff-full { grid-column: 1 / -1; }
    .ff-input { width: 100%; background: rgba(255,255,255,.06); border: 1px solid rgba(184,150,90,.3); color: var(--white); font-size: 14px; padding: 12px 16px; border-radius: 8px; outline: none; font-family: inherit; }
    .ff-input::placeholder { color: #666; }
    .ff-input:focus { border-color: var(--gold); }
    .ff-select { width: 100%; background: rgba(255,255,255,.06); border: 1px solid rgba(184,150,90,.3); color: #888; font-size: 14px; padding: 12px 16px; border-radius: 8px; outline: none; font-family: inherit; }
    .ff-select option { background: var(--dark2); color: var(--white); }
    .ff-check { display: flex; align-items: flex-start; gap: 10px; font-size: 12px; color: #aaa; line-height: 1.6; }
    .ff-check input { margin-top: 2px; accent-color: var(--gold); }
    .ff-submit { width: 100%; background: var(--gold); color: var(--dark); font-size: 15px; font-weight: 700; padding: 14px; border-radius: 8px; border: none; transition: background .2s; display: flex; align-items: center; justify-content: center; gap: 8px; }
    .ff-submit:hover { background: var(--gold-lt); }
    .error-msg { color: #e05555; font-size: 11px; margin-top: 4px; display: none; }
    @media(max-width:580px){ .ff-grid { grid-template-columns: 1fr; } .ff-full { grid-column: 1; } }

    /* ─── FOOTER ─── */
    .footer { background: var(--dark); padding: 32px 0 100px; }
    .footer-in { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .footer-top { display: flex; gap: 24px; flex-wrap: wrap; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 16px; }
    .footer-rera { font-size: 12px; color: #aaa; line-height: 1.7; flex: 1; min-width: 200px; }
    .footer-rera strong { color: var(--gold); }
    .footer-disc { font-size: 11px; color: #666; line-height: 1.7; flex: 2; min-width: 200px; }
    .footer-copy { text-align: center; font-size: 11px; color: #555; margin-top: 12px; }
    .footer-kw { text-align: center; font-size: 11px; color: #444; line-height: 1.8; margin-bottom: 10px; }

    /* ─── SIDE CTA ─── */
    .side-cta { position: fixed; right: 0; top: 50%; transform: translateY(-50%); z-index: 900; display: flex; flex-direction: column; gap: 1px; }
    .side-btn { writing-mode: vertical-rl; transform: rotate(180deg); background: var(--dark); color: var(--gold); border: 1px solid var(--gold); font-size: 12px; font-weight: 700; padding: 14px 8px; border-radius: 0; cursor: pointer; transition: background .2s; letter-spacing: 1px; }
    .side-btn:hover, .side-btn.gold { background: var(--gold); color: var(--dark); }
    @media(max-width:768px){ .side-cta { display: none; } }

    /* ─── FLOAT BAR ─── */
    .float-bar { position: fixed; bottom: 0px; left: 0; right: 0; z-index: 997; background: var(--dark); border-top: 1px solid #333; display: flex; }
    .fb-call, .fb-enq, .fb-wa { flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 12px; font-weight: 700; padding: 11px 6px; color: var(--white); border: none; background: transparent; cursor: pointer; transition: background .2s; }
    .fb-call:hover { background: rgba(255,255,255,.05); color: var(--gold); }
    .fb-enq { background: var(--gold); color: var(--dark); }
    .fb-enq:hover { background: var(--gold-lt); }
    .fb-wa { color: #25d366; }
    .fb-wa:hover { background: rgba(37,211,102,.08); }
    @media(min-width:769px){ .float-bar { display: none; } }

    /* ─── MODAL ─── */
    .modal-ov { position: fixed; inset: 0; background: rgba(0,0,0,.75); z-index: 10000; display: none; align-items: center; justify-content: center; padding: 20px; }
    .modal-ov.open { display: flex; }
    .modal { background: var(--white); border-radius: 16px; overflow: hidden; width: 100%; max-width: 760px; position: relative; box-shadow: 0 24px 80px rgba(0,0,0,.35); }
    .modal-x { position: absolute; top: 12px; right: 12px; z-index: 10; width: 32px; height: 32px; background: var(--dark); color: var(--white); border: none; border-radius: 50%; font-size: 14px; display: flex; align-items: center; justify-content: center; }
    .modal-body { display: grid; grid-template-columns: 260px 1fr; }
    .modal-left { background: var(--dark); padding: 32px 24px; display: flex; flex-direction: column; align-items: flex-start; }
    .modal-logo-img { height: 50px; object-fit: contain; margin-bottom: 20px; }
    .modal-we-promise { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
    .modal-promise-item { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; color: var(--white); font-size: 13px; font-weight: 500; }
    .mp-icon { width: 44px; height: 44px; background: rgba(184,150,90,.15); border: 1px solid rgba(184,150,90,.3); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
    .mp-icon svg { width: 24px; height: 24px; }
    .modal-right { padding: 28px 28px 24px; background: var(--cream); }
    .modal-title { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--text); margin-bottom: 6px; }
    .modal-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
    .frow { margin-bottom: 12px; }
    .frow input, .frow select { width: 100%; background: var(--white); border: 1.5px solid var(--border); color: var(--text); font-size: 14px; padding: 12px 14px; border-radius: 8px; outline: none; font-family: inherit; transition: border-color .2s; }
    .frow input:focus, .frow select:focus { border-color: var(--gold); }
    .frow input.error-field, .frow select.error-field { border-color: #e05555; }
    .modal-check { display: flex; align-items: flex-start; gap: 8px; font-size: 11px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
    .modal-check input { margin-top: 2px; accent-color: var(--gold); }
    .modal-submit { width: 100%; background: var(--dark); color: var(--gold); font-size: 14px; font-weight: 700; padding: 13px; border-radius: 8px; border: none; display: flex; align-items: center; justify-content: center; gap: 8px; transition: background .2s; }
    .modal-submit:hover { background: var(--gold); color: var(--dark); }
    .modal-phone-bar { background: var(--dark2); padding: 12px 28px; display: flex; align-items: center; gap: 10px; color: var(--gold); font-size: 14px; font-weight: 600; }
    @media(max-width:580px){ .modal-body { grid-template-columns: 1fr; } .modal-left { display: none; } }

    /* ─── TOAST ─── */
    .toast-message { position: fixed; top: 80px; right: 20px; z-index: 99999; background: var(--dark); color: var(--white); border-left: 4px solid var(--gold); padding: 14px 20px; border-radius: 8px; font-size: 13px; max-width: 360px; display: flex; align-items: center; gap: 10px; box-shadow: 0 8px 32px rgba(0,0,0,.3); animation: slideIn .3s ease; }
    .toast-message.success { border-color: #4caf50; }
    .toast-message.error { border-color: #e05555; }
    .toast-message.hide { opacity: 0; transform: translateX(20px); transition: .3s; }
    @keyframes slideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

    /* ─── REVEAL ─── */
    .reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s, transform .6s; }
    .reveal.visible { opacity: 1; transform: none; }

  .apt-section {
    background: var(--cream2);
    padding: 3rem 1.5rem 2.5rem;
    font-family: 'Jost', sans-serif;
  }
  .apt-sec-head {
    text-align: center;
    margin-bottom: 2.5rem;
  }
  .apt-sec-label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 0.45rem;
  }
  .apt-sec-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.04em;
    margin-bottom: 0.6rem;
  }
  .apt-sec-line {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto;
  }
  .apt-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.5rem;
    justify-content: center;
  }
  .apt-card {
    background: var(--white);
    min-width: 230px;
    width: 100%;
    border-radius: 3px;
    box-shadow: 0 2px 18px rgba(100,60,10,0.10);
    display: flex;
    flex-direction: column;
    overflow: visible;
    position: relative;
  }
  .apt-card-header {
    padding: 1rem 1rem 0.7rem;
    text-align: center;
    border-bottom: 1.5px dashed var(--border);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text);
  }
  .apt-card-body {
    padding: 0.85rem 0;
    display: flex;
  }
  .apt-detail {
    flex: 1;
    text-align: center;
    padding: 0 0.75rem;
  }
  .apt-detail + .apt-detail {
    border-left: 1.5px dashed var(--border);
  }
  .apt-detail-label {
    font-size: 11.5px;
    color: var(--text-muted);
    margin-bottom: 4px;
    font-weight: 400;
  }
  .apt-detail-value {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
  }
  .apt-detail-sub {
    font-size: 10.5px;
    color: var(--text-muted);
    margin-top: 2px;
    font-weight: 300;
  }
  .apt-card-extra {
    border-top: 1.5px dashed var(--border);
    padding: 0.7rem 0;
    display: flex;
  }
  .apt-price-block {
    background: var(--gold);
    padding: 0.9rem 1rem 1.3rem;
    text-align: center;
    position: relative;
  }
  .apt-price-block::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 26px solid transparent;
    border-right: 26px solid transparent;
    border-top: 20px solid var(--gold);
  }
  .apt-price-label {
    font-size: 11.5px;
    color: rgba(255,255,255,0.80);
    letter-spacing: 0.05em;
    margin-bottom: 4px;
  }
  .apt-price-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
    letter-spacing: 0.02em;
  }
  .apt-cta-wrap {
    padding: 2.6rem 1rem 1.2rem;
    text-align: center;
  }
  .apt-cta-btn {
    background: var(--gold);
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.55rem 1.5rem;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.2s;
  }
  .apt-cta-btn:hover { background: var(--gold-lt); }
  .apt-disclaimer {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    line-height: 1.7;
  }

.hero-content .ov-price-box {
    width: 100%;
    background: var(--white);
    text-align: start;
    order: 3;
    margin: 10px 0 20px 0;
    border-left: 4px solid var(--gold);
}

.hero-content .ov-price-lbl , .hero-content .ov-price-sub {
  color: var(--dark);
  font-size: 14px;
  font-weight: 500;
}

@media(max-width:768px){
  .apt-grid {
    display: grid;
    grid-template-columns: repeat(1,1fr);
    gap: 1.5rem;
    justify-content: center;
  }
  .nav-links a {
    width: 100%;
}

/* .hl-item {
    padding-bottom: 10px;
    background: var(--gold);
    padding: 11px;
} */

  .hero {
    display: flex;
    flex-direction: column;
  }
  .hero-overlay {
    opacity: 0;
  }

  .hero-bg {
    position: relative;
    inset: 0;
    z-index: 0;
    width: 100%;
    min-height: 250px;
    flex-grow: 1;
  }
  .hero-content {
    padding: 12px 24px;
  }

  .hero-p,.hero-badge-pill {
    display: none;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero-h1 {
    order: 1;
  }
  .hero-eyebrow {
    order: 2;
  }

  .hero-tags {
    order: 3;
  }

  .hero-btns {
    order: 4;
  }

  .info-strip,.launch-section {
    display: none;
  }
  body #chat-square {
      bottom: 50px !important;
  }
}
.icon.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}