:root{
    --navy:#152A4E;
    --navy-2:#1D3A6B;
    --orange:#F4801E;
    --orange-2:#EF6C1B;
    --paper:#EAF1F8;
    --paper-2:#F4F7FB;
    --ink:#1B2A44;
    --gray:#5B6B84;
    --gray-light:#8B98AC;
    --line:#DDE6F0;
    --white:#FFFFFF;
    --radius:4px;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{font-family:'Open Sans', sans-serif; color:var(--ink); background:var(--white);}
  h1,h2,h3,h4{font-family:'Poppins', sans-serif; font-weight:700; color:var(--navy);}
  a{color:inherit; text-decoration:none;}
  img{max-width:100%; display:block;}
  .wrap{max-width:1240px; margin:0 auto; padding:0 32px;}
  :focus-visible{outline:2px solid var(--orange); outline-offset:3px;}

  /* eyebrow */
  .eyebrow{
    font-family:'Poppins'; font-size:13px; font-weight:700; letter-spacing:0.12em; text-transform:uppercase;
    color:var(--orange); margin-bottom:10px;
  }
  .section-title{font-size:30px; margin-bottom:6px;}
  .title-rule{width:56px; height:3px; background:var(--orange); margin:14px auto 0;}
  .head-center{text-align:center; max-width:640px; margin:0 auto 46px;}

  /* buttons */
  .btn{
    font-family:'Poppins'; font-size:13px; font-weight:600; letter-spacing:0.04em;
    padding:14px 26px; border-radius:var(--radius); cursor:pointer; border:1.5px solid transparent;
    display:inline-flex; align-items:center; gap:10px; white-space:nowrap; transition:all .18s ease;
  }
  .btn-navy{background:var(--navy); color:#fff;}
  .btn-navy:hover{background:var(--navy-2);}
  .btn-outline-navy{border-color:var(--navy); color:var(--navy); background:#fff;}
  .btn-outline-navy:hover{background:var(--navy); color:#fff;}
  .btn-outline-white{border-color:rgba(255,255,255,0.7); color:#fff; background:transparent;}
  .btn-outline-white:hover{background:#fff; color:var(--navy);}
  .btn-orange{background:var(--orange); color:#fff;}
  .btn-orange:hover{background:var(--orange-2);}

  /* ---------- HEADER ---------- */
  header{background:#fff; border-bottom:1px solid var(--line); position:sticky; top:0; z-index:100;}
  nav.wrap{display:flex; align-items:center; justify-content:space-between; height:84px;}
  .brand{display:flex; align-items:center; gap:12px;}
  .brand .mark{width:44px; height:44px; position:relative;}
  .brand .mark svg{width:100%; height:100%;}
  .brand .name{font-family:'Poppins'; font-weight:700; font-size:16px; color:var(--navy); line-height:1.2; letter-spacing:0.01em;}
  .brand .name span{display:block; font-size:16px;}
  .navlinks{display:flex; gap:34px; align-items:center;}
  .navlinks a{font-family:'Poppins'; font-size:14px; font-weight:500; color:var(--navy); position:relative; padding:8px 0;}
  .navlinks a.active{color:var(--orange);}
  .navlinks a.active::after{content:""; position:absolute; left:0; right:0; bottom:0; height:2px; background:var(--orange);}
  .navlinks a .car{font-size:10px; margin-left:4px;}
  .navcta{display:flex; align-items:center; gap:20px;}
  .icon-btn{width:20px; height:20px; color:var(--navy); background:none; border:none; cursor:pointer;}
  @media(max-width:980px){ .navlinks{display:none;} }

  /* ---------- HERO ---------- */
  .hero{
    position:relative; color:#fff; overflow:hidden;
    background:
      linear-gradient(100deg, rgba(21,42,78,0.94) 0%, rgba(21,42,78,0.72) 38%, rgba(21,42,78,0.15) 62%, rgba(21,42,78,0.05) 100%),
      linear-gradient(180deg, #frag 0%, transparent 40%);
  }
  .hero-bg{position:absolute; inset:0; z-index:0;}
  .hero-bg svg{width:100%; height:100%;}
  .hero .wrap{position:relative; z-index:2; padding:96px 32px 90px;}
  .hero-inner{max-width:560px;}
  .hero h1{font-size:42px; line-height:1.18; text-transform:uppercase; margin-bottom:20px; color:#fff;}
  .hero p{font-size:16px; line-height:1.7; color:#DCE4F0; max-width:460px; margin-bottom:34px;}
  .hero-ctas{display:flex; gap:16px; flex-wrap:wrap;}

  /* ---------- STATS + LOCATIONS (paper section) ---------- */
  .locsec{background:var(--paper); padding:80px 0;}
  .stats-row{display:flex; justify-content:center; gap:64px; flex-wrap:wrap; padding:36px 0 34px; border-bottom:1px solid #D3DFEE; margin-bottom:38px;}
  .stat{display:flex; align-items:center; gap:14px;}
  .stat svg{width:34px; height:34px; flex-shrink:0; color:var(--navy);}
  .stat .n{font-family:'Poppins'; font-weight:700; font-size:19px; color:var(--navy); line-height:1.2;}
  .stat .l{font-size:13px; color:var(--gray);}

  .loc-grid{
    display:grid; grid-template-columns:repeat(7,1fr); gap:0 18px;
  }
  .loc-col{display:flex; flex-direction:column; gap:12px;}
  .loc-item{display:flex; align-items:flex-start; gap:7px; font-size:13.5px; color:var(--ink);}
  .loc-item svg{width:13px; height:13px; margin-top:2px; color:var(--orange); flex-shrink:0;}
  .loc-more{text-align:center; margin-top:38px;}
  @media(max-width:1100px){ .loc-grid{grid-template-columns:repeat(4,1fr); gap:12px 18px;} }
  @media(max-width:700px){ .loc-grid{grid-template-columns:repeat(2,1fr);} .stats-row{gap:30px 40px;} }

  /* ---------- WHY (kept from brief, styled to match) ---------- */
  .why{background:#fff; padding:84px 0;}
  .why-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:10px;}
  .why-card{border:1px solid var(--line); border-radius:var(--radius); padding:30px 26px; transition:box-shadow .2s ease, transform .2s ease;}
  .why-card:hover{box-shadow:0 14px 30px rgba(21,42,78,0.08); transform:translateY(-3px);}
  .why-card svg{width:36px; height:36px; color:var(--orange); margin-bottom:18px;}
  .why-card h3{font-size:16.5px; margin-bottom:9px;}
  .why-card p{font-size:13.5px; line-height:1.65; color:var(--gray); font-family:'Open Sans';}
  @media(max-width:900px){ .why-grid{grid-template-columns:1fr;} }

  /* ---------- DESTINATIONS CAROUSEL ---------- */
  .destinations{background:#fff; padding:0 0 90px;}
  .carousel-wrap{position:relative;}
  .carousel{display:flex; gap:20px; overflow-x:auto; scroll-snap-type:x mandatory; padding-bottom:6px;}
  .carousel::-webkit-scrollbar{display:none;}
  .dest-card{
    flex:0 0 226px; scroll-snap-align:start; height:280px; position:relative; border-radius:var(--radius); overflow:hidden;
  }
  .dest-card .skyline{position:absolute; inset:0;}
  .dest-card .fade{position:absolute; inset:0; background:linear-gradient(0deg, rgba(11,20,38,0.92) 0%, rgba(11,20,38,0.15) 55%, rgba(11,20,38,0) 75%);}
  .dest-card .label{position:absolute; left:18px; bottom:16px; color:#fff;}
  .dest-card .label .l1{font-family:'Poppins'; font-weight:600; font-size:13.5px;}
  .dest-card .label .l2{font-size:12px; color:#C6D2E4; margin-top:2px;}
  .car-arrow{
    position:absolute; top:50%; transform:translateY(-50%); width:42px; height:42px; border-radius:50%;
    background:#fff; border:1px solid var(--line); display:flex; align-items:center; justify-content:center; cursor:pointer;
    box-shadow:0 6px 16px rgba(21,42,78,0.12); color:var(--navy); z-index:3;
  }
  .car-arrow.left{left:-21px;}
  .car-arrow.right{right:-21px;}
  @media(max-width:700px){ .car-arrow{display:none;} }
  .dest-more{text-align:center; margin-top:38px;}

  /* ---------- FIND / FILTER (kept from brief) ---------- */
  .find{background:var(--paper); padding:84px 0;}
  .find .wrap{display:grid; grid-template-columns:0.9fr 1.1fr; gap:56px; align-items:center;}
  .find-panel{background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:30px;}
  .find-row{display:grid; grid-template-columns:repeat(2,1fr); gap:14px; margin-bottom:14px;}
  .find-field{display:flex; flex-direction:column; gap:7px;}
  .find-field label{font-family:'Poppins'; font-size:11px; font-weight:600; letter-spacing:0.04em; text-transform:uppercase; color:var(--gray-light);}
  .find-field select, .find-field input{
    border:1px solid var(--line); padding:11px 12px; font-family:'Open Sans'; font-size:13.5px; border-radius:var(--radius); background:#fff; color:var(--ink);
  }
  .find-panel .btn{width:100%; justify-content:center; margin-top:6px;}
  @media(max-width:900px){ .find .wrap{grid-template-columns:1fr;} }

  /* ---------- FAQ ---------- */
  .faq{background:var(--paper); padding:84px 0;}
  .faq-list{max-width:900px; margin:0 auto;}
  .faq-item{background:#fff; border:1px solid var(--line); border-radius:var(--radius); margin-bottom:12px; overflow:hidden;}
  .faq-q{
    display:flex; justify-content:space-between; align-items:center; gap:20px; width:100%; text-align:left;
    padding:20px 24px; cursor:pointer; background:none; border:none;
    font-family:'Poppins'; font-size:15px; font-weight:600; color:var(--navy);
  }
  .faq-q .circ{
    width:26px; height:26px; border-radius:50%; border:1.5px solid var(--navy); flex-shrink:0; position:relative;
  }
  .faq-q .circ::before, .faq-q .circ::after{content:""; position:absolute; background:var(--navy); top:50%; left:50%; transform:translate(-50%,-50%);}
  .faq-q .circ::before{width:10px; height:1.6px;}
  .faq-q .circ::after{width:1.6px; height:10px; transition:opacity .2s ease;}
  .faq-item.open .circ{background:var(--navy);}
  .faq-item.open .circ::before, .faq-item.open .circ::after{background:#fff;}
  .faq-item.open .circ::after{opacity:0;}
  .faq-a{max-height:0; overflow:hidden; transition:max-height .3s ease;}
  .faq-a p{padding:0 24px 22px; color:var(--gray); font-size:14px; line-height:1.7;}

  /* ---------- CTA BAND ---------- */
  .cta-band{background:linear-gradient(100deg, var(--navy) 0%, var(--navy-2) 100%); color:#fff;}
  .cta-band .wrap{display:flex; justify-content:space-between; align-items:center; gap:30px; padding:56px 32px; flex-wrap:wrap;}
  .cta-band h2{font-size:25px; max-width:480px; color:#fff;}
  .cta-band p{color:#C6D2E4; margin-top:10px; max-width:440px; font-size:14px; line-height:1.6;}
  .cta-actions{display:flex; gap:14px; flex-wrap:wrap;}

  /* ---------- FOOTER ---------- */
  footer{background:var(--navy); color:#B9C4D8; padding-top:64px;}
  .foot-grid{display:grid; grid-template-columns:1.5fr 1fr 1fr 1.15fr 1.15fr; gap:34px; padding-bottom:44px; border-bottom:1px solid rgba(255,255,255,0.12);}
  .foot-brand .brand .name{color:#fff;}
  .foot-brand p{font-size:13.5px; line-height:1.7; margin-top:16px; max-width:280px; color:#9FADC4;}
  .foot-social{display:flex; gap:9px; margin-top:20px;}
  .foot-social a{width:32px; height:32px; border:1px solid rgba(255,255,255,0.25); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:12px;}
  footer h4{font-family:'Poppins'; font-size:14px; font-weight:600; color:#fff; margin-bottom:18px;}
  footer ul{list-style:none;}
  footer li{margin-bottom:11px; font-size:13.5px;}
  footer li a:hover{color:#fff;}
  .foot-contact li{display:flex; gap:10px; align-items:flex-start; color:#B9C4D8;}
  .foot-sub{display:flex; margin-top:10px; border-radius:var(--radius); overflow:hidden;}
  .foot-sub input{flex:1; background:#fff; border:none; padding:12px; color:var(--ink); font-size:13px; font-family:'Open Sans';}
  .foot-sub button{background:var(--orange); border:none; padding:0 18px; font-family:'Poppins'; font-weight:600; font-size:12px; color:#fff; cursor:pointer;}
  .foot-bottom{display:flex; justify-content:space-between; padding:22px 0; font-size:12px; color:#8393AE; flex-wrap:wrap; gap:10px;}
  @media(max-width:900px){ .foot-grid{grid-template-columns:1fr 1fr;} }

  @media(max-width:900px){
    .hero h1{font-size:30px;}
  }
