
    :root {
      --navy: #0f2347;
      --navy-mid: #162d58;
      --navy-light: #122050;
      --gold: #c8972a;
      --gold-light: #f5c96e;
      --gold-dim: rgba(200,151,42,0.12);
      --cream: #f5f0e8;
      --white: #ffffff;
      --gray: #7a7f9a;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Montserrat', sans-serif; background: var(--navy); color: var(--white); overflow-x: hidden; cursor: none; }

    /* ── CURSOR ── */
    #cursor { width:8px; height:8px; background:var(--gold); border-radius:50%; position:fixed; pointer-events:none; z-index:9999; transform:translate(-50%,-50%); }
    #cursor-ring { width:38px; height:38px; border:1px solid rgba(200,151,42,.45); border-radius:50%; position:fixed; pointer-events:none; z-index:9998; transform:translate(-50%,-50%); transition:width .2s,height .2s,border-color .2s; }
    body:has(a:hover) #cursor-ring, body:has(button:hover) #cursor-ring { width:56px; height:56px; border-color:rgba(200,151,42,.8); }

    /* ── NAV ── */
    nav { position:fixed; top:0; left:0; right:0; z-index:1000; padding:1.4rem 4rem; display:flex; align-items:center; justify-content:space-between; background:linear-gradient(to bottom,rgba(15,35,71,.96) 0%,transparent 100%); transition:background .3s,padding .3s; }
    nav.scrolled { background:rgba(15,35,71,.97); backdrop-filter:blur(16px); padding:1rem 4rem; border-bottom:1px solid rgba(200,151,42,.1); }
    .nav-logo { text-decoration:none; display:flex; align-items:center; }
    .nav-logo img { height:50px; width:auto; object-fit:contain; }
    .nav-links { display:flex; gap:2.5rem; list-style:none; }
    .nav-links a { color:rgba(255,255,255,.75); text-decoration:none; font-size:.72rem; font-weight:500; letter-spacing:.15em; text-transform:uppercase; transition:color .2s; }
    .nav-links a:hover, .nav-links a.active { color:var(--gold-light); }
    .nav-cta { background:transparent; border:1px solid var(--gold); color:var(--gold-light); padding:.6rem 1.5rem; font-family:'Montserrat',sans-serif; font-size:.68rem; font-weight:500; letter-spacing:.14em; text-transform:uppercase; cursor:none; transition:all .3s; text-decoration:none; }
    .nav-cta:hover { background:var(--gold); color:var(--navy); }

    /* ── HERO ── */
    .hero { height:100vh; position:relative; overflow:hidden; display:flex; align-items:center; justify-content:center; }
    #three-canvas { position:absolute; inset:0; z-index:1; }
    .hero-bg { position:absolute; inset:0; z-index:0; background:url('https://images.pexels.com/photos/16226231/pexels-photo-16226231.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat; }
    .hero-overlay { position:absolute; inset:0; z-index:2; background:linear-gradient(135deg,rgba(15,35,71,.85) 0%,rgba(15,35,71,.52) 55%,rgba(15,35,71,.80) 100%); }
    .hero-content { position:relative; z-index:3; text-align:center; max-width:920px; padding:2rem; }
    .hero-eyebrow { font-size:.65rem; font-weight:500; letter-spacing:.4em; text-transform:uppercase; color:var(--gold); margin-bottom:1.5rem; opacity:0; animation:fadeUp .8s .3s forwards; }
    .hero-title { font-family:'Cormorant Garamond',serif; font-size:clamp(3rem,8vw,7rem); font-weight:300; line-height:1.05; color:var(--white); margin-bottom:1.5rem; opacity:0; animation:fadeUp .9s .5s forwards; }
    .hero-title em { font-style:italic; color:var(--gold-light); }
    .hero-sub { font-size:.85rem; font-weight:300; letter-spacing:.07em; color:rgba(255,255,255,.72); max-width:560px; margin:0 auto 3rem; line-height:1.9; opacity:0; animation:fadeUp .9s .7s forwards; }
    .hero-btns { display:flex; gap:1.5rem; justify-content:center; flex-wrap:wrap; opacity:0; animation:fadeUp .9s .9s forwards; }
    .btn-primary { background:var(--gold); color:var(--navy); padding:1rem 2.5rem; font-size:.72rem; font-weight:600; letter-spacing:.15em; text-transform:uppercase; text-decoration:none; transition:all .3s; cursor:none; clip-path:polygon(0 0,calc(100% - 10px) 0,100% 10px,100% 100%,10px 100%,0 calc(100% - 10px)); }
    .btn-primary:hover { background:var(--gold-light); transform:translateY(-3px); box-shadow:0 15px 40px rgba(200,151,42,.35); }
    .btn-secondary { border:1px solid rgba(255,255,255,.35); color:var(--white); padding:1rem 2.5rem; font-size:.72rem; font-weight:400; letter-spacing:.15em; text-transform:uppercase; text-decoration:none; transition:all .3s; cursor:none; }
    .btn-secondary:hover { border-color:var(--gold); color:var(--gold-light); }
    .hero-scroll { position:absolute; bottom:2.5rem; left:50%; transform:translateX(-50%); z-index:3; display:flex; flex-direction:column; align-items:center; gap:.5rem; opacity:.6; }
    .hero-scroll span { font-size:.58rem; letter-spacing:.28em; text-transform:uppercase; }
    .scroll-line { width:1px; height:50px; background:linear-gradient(to bottom,var(--gold),transparent); animation:scrollPulse 1.6s ease-in-out infinite; }

    /* ── SECTION COMMONS ── */
    section { padding:7rem 4rem; }
    .section-label { font-size:.62rem; font-weight:500; letter-spacing:.38em; text-transform:uppercase; color:var(--gold); margin-bottom:1rem; }
    .section-title { font-family:'Cormorant Garamond',serif; font-size:clamp(2.2rem,5vw,4rem); font-weight:300; line-height:1.12; color:var(--white); }
    .section-title em { font-style:italic; color:var(--gold-light); }
    .gold-divider { width:60px; height:1px; background:var(--gold); margin:1.5rem 0; }
    .section-header-center { text-align:center; margin-bottom:4rem; }
    .section-header-center .gold-divider { margin:1.5rem auto; }

    /* ── INTRO ── */
    .intro { background:linear-gradient(160deg,var(--navy-mid) 0%,var(--navy) 100%); }
    .intro-inner { max-width:1220px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:6rem; align-items:center; }
    .intro-text p { font-size:.88rem; line-height:1.95; color:rgba(255,255,255,.72); margin-bottom:1.2rem; }
    .intro-stats { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; }
    .stat-box { border:1px solid rgba(200,151,42,.2); padding:2rem; background:rgba(200,151,42,.04); transition:all .3s; }
    .stat-box:hover { border-color:rgba(200,151,42,.5); background:rgba(200,151,42,.09); transform:translateY(-4px); }
    .stat-num { font-family:'Cormorant Garamond',serif; font-size:3rem; font-weight:300; color:var(--gold-light); line-height:1; }
    .stat-label { font-size:.6rem; letter-spacing:.22em; text-transform:uppercase; color:var(--gray); margin-top:.4rem; }

    /* ── PACKAGES ── */
    .packages { background:var(--navy); }
    .packages-grid { max-width:1320px; margin:0 auto; display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; }
    .pkg-card {
      background:linear-gradient(145deg,rgba(18,32,80,.95) 0%,rgba(22,45,88,.98) 100%);
      border:1px solid rgba(200,151,42,.12);
      overflow:hidden; position:relative;
      transform-style:preserve-3d;
      transition:transform .08s linear, box-shadow .3s, border-color .3s;
      will-change:transform; cursor:none;
    }
    .pkg-card:hover { border-color:rgba(200,151,42,.4); box-shadow:0 30px 80px rgba(0,0,0,.55); }
    .pkg-card::after { content:''; position:absolute; bottom:0; left:0; right:0; height:2px; background:linear-gradient(to right,var(--gold),var(--gold-light)); transform:scaleX(0); transform-origin:left; transition:transform .4s; }
    .pkg-card:hover::after { transform:scaleX(1); }
    .pkg-img { height:240px; overflow:hidden; position:relative; }
    .pkg-img img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .8s ease; }
    .pkg-card:hover .pkg-img img { transform:scale(1.08); }
    .pkg-season-tag { position:absolute; top:1rem; left:1rem; background:rgba(200,151,42,.9); color:var(--navy); font-size:.58rem; font-weight:600; letter-spacing:.18em; text-transform:uppercase; padding:.35rem .85rem; }
    .pkg-body { padding:2rem 2.2rem 2.4rem; transform:translateZ(12px); }
    .pkg-body h3 { font-family:'Cormorant Garamond',serif; font-size:1.75rem; font-weight:400; color:var(--white); margin-bottom:.7rem; line-height:1.2; }
    .pkg-meta { display:flex; gap:1.5rem; margin-bottom:1.4rem; }
    .pkg-meta span { font-size:.65rem; letter-spacing:.12em; text-transform:uppercase; color:var(--gold); display:flex; align-items:center; gap:.4rem; }
    .pkg-meta svg { width:13px; height:13px; stroke:currentColor; fill:none; stroke-width:2; flex-shrink:0; }
    .pkg-highlights { list-style:none; margin-bottom:1.8rem; display:flex; flex-direction:column; gap:.55rem; }
    .pkg-highlights li { font-size:.78rem; color:rgba(255,255,255,.6); padding-left:1rem; position:relative; line-height:1.6; }
    .pkg-highlights li::before { content:''; position:absolute; left:0; top:.55em; width:4px; height:4px; background:var(--gold); border-radius:50%; }
    .pkg-footer { display:flex; align-items:center; justify-content:space-between; padding-top:1.4rem; border-top:1px solid rgba(255,255,255,.07); }
    .pkg-price { font-size:.65rem; color:var(--gray); letter-spacing:.1em; text-transform:uppercase; }
    .pkg-price strong { display:block; font-family:'Cormorant Garamond',serif; font-size:1.3rem; color:var(--gold-light); font-weight:300; letter-spacing:0; text-transform:none; }
    .pkg-cta { background:transparent; border:1px solid rgba(200,151,42,.4); color:var(--gold-light); padding:.6rem 1.3rem; font-family:'Montserrat',sans-serif; font-size:.62rem; font-weight:500; letter-spacing:.14em; text-transform:uppercase; text-decoration:none; transition:all .3s; cursor:none; }
    .pkg-cta:hover { background:var(--gold); color:var(--navy); border-color:var(--gold); }

    /* ── SEASONAL STRIP ── */
    .seasons { background:var(--navy-mid); padding:5rem 0; overflow:hidden; }
    .seasons-header { text-align:center; padding:0 4rem 4rem; }
    .season-track-wrap { overflow:hidden; }
    .season-track { display:flex; gap:0; width:max-content; animation:scrollLeft 40s linear infinite; }
    .season-track-wrap:hover .season-track { animation-play-state:paused; }
    .season-card { width:420px; height:280px; flex-shrink:0; position:relative; overflow:hidden; }
    .season-card img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .7s ease; }
    .season-card:hover img { transform:scale(1.08); }
    .season-label { position:absolute; bottom:1.5rem; left:1.8rem; }
    .season-label .s-tag { font-size:.58rem; letter-spacing:.28em; text-transform:uppercase; color:var(--gold); display:block; margin-bottom:.25rem; }
    .season-label .s-name { font-family:'Cormorant Garamond',serif; font-size:2rem; font-weight:300; color:var(--white); text-shadow:0 2px 12px rgba(0,0,0,.6); }
    .season-card::before { content:''; position:absolute; inset:0; background:linear-gradient(to top,rgba(15,35,71,.75) 0%,rgba(15,35,71,.1) 55%,transparent 100%); pointer-events:none; }

    /* ── INCLUSIONS ── */
    .inclusions { background:linear-gradient(160deg,var(--navy) 0%,var(--navy-mid) 100%); }
    .inclusions-inner { max-width:1220px; margin:0 auto; }
    .inclusions-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:2rem; margin-top:4rem; }
    .inc-item { border:1px solid rgba(200,151,42,.14); padding:2.4rem 2rem; text-align:center; transition:all .3s; background:rgba(200,151,42,.03); }
    .inc-item:hover { border-color:rgba(200,151,42,.45); background:rgba(200,151,42,.08); transform:translateY(-5px); }
    .inc-icon { width:52px; height:52px; border:1px solid rgba(200,151,42,.25); border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 1.4rem; }
    .inc-icon svg { width:22px; height:22px; stroke:var(--gold); fill:none; stroke-width:1.5; }
    .inc-item h4 { font-family:'Cormorant Garamond',serif; font-size:1.25rem; font-weight:400; color:var(--white); margin-bottom:.6rem; }
    .inc-item p { font-size:.74rem; color:rgba(255,255,255,.52); line-height:1.75; }

    /* ── PERSONAS / COMMERCIALS / GLOSSARY / FAQ ── */
    .persona-grid { max-width:1220px; margin:4rem auto 0; display:grid; grid-template-columns:repeat(2,1fr); gap:1.5rem; }
    .persona-card { border:1px solid rgba(200,151,42,.16); padding:2.2rem 2rem; background:rgba(200,151,42,.03); }
    .persona-card h3 { font-family:'Cormorant Garamond',serif; font-size:1.3rem; color:var(--gold-light); font-weight:400; margin-bottom:.6rem; }
    .persona-card p { font-size:.82rem; line-height:1.85; color:rgba(255,255,255,.62); }
    .commercial-block { max-width:820px; margin:4rem auto 0; }
    .commercial-block h3 { font-family:'Cormorant Garamond',serif; font-size:1.3rem; font-weight:400; color:var(--white); margin:1.8rem 0 .7rem; }
    .commercial-block h3:first-child { margin-top:0; }
    .commercial-block p { font-size:.86rem; line-height:2; color:rgba(255,255,255,.72); }
    .term-grid { max-width:1220px; margin:4rem auto 0; display:grid; grid-template-columns:repeat(2,1fr); gap:1.5rem; }
    .term-card { border:1px solid rgba(200,151,42,.16); padding:1.8rem 2rem; background:rgba(200,151,42,.03); }
    .term-card h3 { font-size:.72rem; font-weight:600; letter-spacing:.14em; text-transform:uppercase; color:var(--gold); margin-bottom:.6rem; }
    .term-card p { font-size:.82rem; line-height:1.85; color:rgba(255,255,255,.62); }
    .faq-wrap { max-width:820px; margin:4rem auto 0; }
    .faq-row { border-bottom:1px solid rgba(200,151,42,.14); }
    .faq-row summary { padding:1.3rem 0; font-size:.9rem; font-weight:500; color:var(--white); cursor:pointer; list-style:none; }
    .faq-row summary::-webkit-details-marker { display:none; }
    .faq-row p { font-size:.84rem; line-height:1.85; color:rgba(255,255,255,.65); padding-bottom:1.3rem; max-width:700px; }
    .ch-contact { background:linear-gradient(160deg,var(--navy-mid) 0%,var(--navy-light) 100%); }
    .ch-contact-inner { max-width:700px; margin:0 auto; text-align:center; }
    .ch-contact-inner p.sub { font-size:.85rem; color:rgba(255,255,255,.62); line-height:1.85; margin-bottom:2.5rem; }
    .ch-form { display:grid; grid-template-columns:1fr 1fr; gap:1.2rem; text-align:left; }
    .ch-field { display:flex; flex-direction:column; gap:.4rem; }
    .ch-field.full { grid-column:span 2; }
    .ch-field label { font-size:.6rem; letter-spacing:.22em; text-transform:uppercase; color:var(--gray); }
    .ch-field input, .ch-field select, .ch-field textarea { background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.09); color:var(--white); padding:.9rem 1rem; font-family:'Montserrat',sans-serif; font-size:.8rem; outline:none; resize:none; }
    .ch-field input:focus, .ch-field select:focus, .ch-field textarea:focus { border-color:var(--gold); background:rgba(200,151,42,.04); }
    .ch-field select option { background:var(--navy-mid); }
    .ch-submit { grid-column:span 2; text-align:center; margin-top:.5rem; }
    .ch-submit button { background:var(--gold); color:var(--navy); border:none; padding:1rem 3rem; font-family:'Montserrat',sans-serif; font-size:.72rem; font-weight:600; letter-spacing:.16em; text-transform:uppercase; cursor:pointer; transition:all .3s; }
    .ch-submit button:hover { background:var(--gold-light); }
    @media(max-width:768px) { .persona-grid, .term-grid { grid-template-columns:1fr; } .ch-form { grid-template-columns:1fr; } .ch-field.full, .ch-submit { grid-column:span 1; } }

    /* ── TAILOR-MADE CTA ── */
    .tailor-cta { background:linear-gradient(135deg,var(--navy-light) 0%,var(--navy-mid) 100%); padding:7rem 4rem; text-align:center; position:relative; overflow:hidden; }
    .tailor-cta::before { content:''; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:600px; height:600px; border-radius:50%; background:radial-gradient(circle,rgba(200,151,42,.08) 0%,transparent 70%); pointer-events:none; }
    .tailor-cta-inner { position:relative; z-index:1; max-width:680px; margin:0 auto; }
    .tailor-cta p { font-size:.88rem; color:rgba(255,255,255,.65); line-height:1.95; margin-bottom:2.5rem; }

    /* ── FOOTER ── */
    footer { background:#030913; padding:4rem; border-top:1px solid rgba(200,151,42,.08); }
    .footer-inner { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:3rem; }
    .footer-brand .nav-logo { display:inline-flex; margin-bottom:1.2rem; }
    .footer-brand .nav-logo img { height:42px; }
    .footer-brand p { font-size:.76rem; color:var(--gray); line-height:1.85; max-width:260px; }
    .footer-col h4 { font-size:.6rem; letter-spacing:.28em; text-transform:uppercase; color:var(--gold); margin-bottom:1.3rem; }
    .footer-col ul { list-style:none; display:flex; flex-direction:column; gap:.75rem; }
    .footer-col ul a { color:var(--gray); text-decoration:none; font-size:.78rem; transition:color .2s; }
    .footer-col ul a:hover { color:var(--white); }
    .footer-bottom { max-width:1200px; margin:3rem auto 0; padding-top:2rem; border-top:1px solid rgba(255,255,255,.05); display:flex; justify-content:space-between; align-items:center; }
    .footer-bottom p { font-size:.7rem; color:var(--gray); }

    /* ── REVEAL ── */
    .reveal { opacity:0; transform:translateY(32px); transition:opacity .75s ease,transform .75s ease; }
    .reveal.visible { opacity:1; transform:translateY(0); }
    .reveal-delay-1 { transition-delay:.1s; }
    .reveal-delay-2 { transition-delay:.22s; }
    .reveal-delay-3 { transition-delay:.34s; }
    .reveal-delay-4 { transition-delay:.46s; }
    .reveal-delay-5 { transition-delay:.58s; }
    .reveal-delay-6 { transition-delay:.70s; }

    /* ── KEYFRAMES ── */
    @keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
    @keyframes scrollPulse { 0%,100%{opacity:.3} 50%{opacity:1} }
    @keyframes scrollLeft { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

    /* ── RESPONSIVE ── */
    @media(max-width:1200px) {
      .packages-grid { grid-template-columns:repeat(2,1fr); }
      .inclusions-grid { grid-template-columns:repeat(2,1fr); }
    }
    @media(max-width:1024px) {
      nav { padding:1.2rem 2rem; }
      nav.scrolled { padding:.9rem 2rem; }
      section { padding:5rem 2rem; }
      .intro-inner { grid-template-columns:1fr; gap:3rem; }
      .footer-inner { grid-template-columns:1fr 1fr; gap:2rem; }
    }
    @media(max-width:768px) {
      .packages-grid { grid-template-columns:1fr; }
      .inclusions-grid { grid-template-columns:1fr 1fr; }
    }
    @media(max-width:640px) {
      .nav-links { display:none; }
      .inclusions-grid { grid-template-columns:1fr; }
      .footer-inner { grid-template-columns:1fr; }
      .hero-btns { flex-direction:column; align-items:center; }
      .intro-stats { grid-template-columns:1fr 1fr; }
    }
  
  .nav-toggle{display:none;background:none;border:none;cursor:pointer;padding:.4rem;flex-direction:column;gap:5px;z-index:1001;position:relative}
  .nav-toggle span{display:block;width:24px;height:2px;background:var(--gold-light,#f5c96e);transition:all .3s}
  .nav-toggle.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
  .nav-toggle.open span:nth-child(2){opacity:0}
  .nav-toggle.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
  .nav-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.5);z-index:999}
  .nav-overlay.open{display:block}
  @media(max-width:768px){
    .nav-toggle{display:flex}
    .nav-links{display:none !important;position:fixed;top:0;right:0;bottom:0;width:78vw;max-width:320px;background:var(--navy,#0f2347);flex-direction:column;align-items:flex-start;justify-content:flex-start;gap:0;padding:6rem 2rem 2rem;box-shadow:-8px 0 40px rgba(0,0,0,.5);overflow-y:auto;z-index:1000}
    .nav-links.mobile-open{display:flex !important}
    .nav-links li{list-style:none;width:100%}
    .nav-links a{display:block;width:100%;padding:.9rem 0;border-bottom:1px solid rgba(255,255,255,.08);font-size:.78rem}
  }

.whatsapp-float{position:fixed;bottom:28px;right:28px;z-index:9999;background:#25D366;width:58px;height:58px;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 20px rgba(37,211,102,.45);transition:transform .2s,box-shadow .2s;text-decoration:none;}.whatsapp-float:hover{transform:scale(1.1);box-shadow:0 6px 28px rgba(37,211,102,.6);}.whatsapp-float svg{width:30px;height:30px;}