:root{
      --bg:#f6f9fc;
      --bg-2:#edf4fa;
      --card:rgba(255,255,255,.88);
      --line:#d9e4ee;
      --text:#203142;
      --muted:#5f7488;
      --muted-2:#7b8ea0;
      --blue:#4da8da;
      --blue-deep:#2f78b7;
      --shadow:0 18px 44px rgba(28,54,79,.10);
      --shadow-soft:0 8px 20px rgba(28,54,79,.06);
      --radius-xl:24px;
      --radius-lg:18px;
      --radius-md:14px;
      --max:1280px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Inter,Roboto,Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at top left, rgba(77,168,218,.10), transparent 22%),
        radial-gradient(circle at 92% 8%, rgba(239,215,163,.14), transparent 18%),
        linear-gradient(180deg, var(--bg-2), var(--bg));
    }

    body.preload-quiz .quiz-shell{
      opacity:0;
      visibility:hidden;
    }

    body.preload-quiz .question-stage,
    body.preload-quiz .progress-wrap,
    body.preload-quiz .controls,
    body.preload-quiz .unlock-screen{
      visibility:hidden;
    }

    body.quiz-ready .quiz-shell{
      opacity:1;
      visibility:visible;
    }

    body.quiz-ready .question-stage,
    body.quiz-ready .progress-wrap,
    body.quiz-ready .controls,
    body.quiz-ready .unlock-screen{
      visibility:visible;
    }

    a{text-decoration:none;color:inherit}
    section[id],
    aside[id]{
      scroll-margin-top:150px;
    }
    button,input,textarea,select{font:inherit}
    .page{
      max-width:var(--max);
      margin:0 auto;
      padding:100px 20px 40px;
      position:relative;
    }

    .topbar{
      display:flex;
      align-items:center;
      justify-content:space-between;
      position:fixed;
      top:0;
      left:50%;
      transform:translateX(-50%);
      width:min(calc(100% - 32px), 1280px);
      height:60px;
      padding:0 20px;
      background:#ffffff;
      border-radius:16px;
      box-shadow:0 8px 20px rgba(28,54,79,.08);
      z-index:1000;
      gap:20px;
      overflow:hidden;
    }
    .topbar::before{
      display:none;
    }
    .topbar::after{
      content:"";
      position:absolute;
      inset:0;
      border-radius:22px;
      border:1px solid rgba(255,255,255,.32);
      pointer-events:none;
    }

    .brand{
      display:flex;
      align-items:center;
      justify-content:flex-start;
      gap:8px;
      flex:0 0 auto;
      min-width:0;
      margin-right:6px;
      height:100%;
      overflow:hidden;
      position:relative;
      z-index:2;
    }

    .brand img{
      display:block;
      opacity:1;
      visibility:visible;
      height:90%;
      width:auto;
      
      max-width:1100px;
      object-fit:contain; background:transparent;
      object-position:center;
      image-rendering:-webkit-optimize-contrast;
      image-rendering:crisp-edges;
      transform:translateY(0);
      flex:0 0 auto;
    }

    .brand-text{
      display:none;
    }

    .brand-top{
      font-size:1rem;
      font-weight:800;
      letter-spacing:.02em;
      color:#203142;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }

    .brand-bottom{
      font-size:.83rem;
      color:#5f7488;
      font-weight:700;
      letter-spacing:.03em;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }

    .site-logo{display:none !important;}

    .nav{
      display:flex;
      gap:12px;
      flex-wrap:nowrap;
      justify-content:flex-end;
      align-items:center;
      margin-left:12px;
      position:relative;
      z-index:2;
      width:auto;
      padding-left:0;
      flex:1 1 auto;
      min-width:0;
      max-width:100%;
      overflow:visible;
      scrollbar-width:none;
      -ms-overflow-style:none;
    }
    .nav::-webkit-scrollbar{display:none;}
    .nav a{
      white-space:nowrap;
      flex:0 0 auto;
      padding:12px 22px;
      font-size:1.05rem;
      border-radius:999px;
      background:#f3f7fb;
      border:1px solid #dbe7f2;
      color:#203142;
      font-weight:800;
      line-height:1;
      min-height:42px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      box-shadow:0 8px 18px rgba(28,54,79,.09);
      transition:all .18s ease;
    }
    .nav a:hover{
      transform:translateY(-1px);
      background:#eaf3fb;
      border-color:#cfe2f3;
    }

    .hero{
      display:grid;
      grid-template-columns:minmax(0,1fr) minmax(0,1fr);
      gap:18px;
      align-items:stretch;
    }

    .panel{
      background:var(--card);
      backdrop-filter:blur(12px);
      border:1px solid var(--line);
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow);
      overflow:hidden;
      min-height:560px;
    }

    .builder,
    .form-panel{
      padding:24px;
      display:flex;
      flex-direction:column;
      height:100%;
    justify-content:flex-start;
    }

    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      background:#f3f9fd;
      border:1px solid var(--line);
      color:var(--blue-deep);
      font-size:.8rem;
      font-weight:700;
      text-transform:uppercase;
      letter-spacing:.08em;
      width:max-content;
    }
    .eyebrow .dot{
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--blue);
    }

    .builder-intro{
      margin:14px 0 0;
      color:var(--muted);
      line-height:1.65;
      max-width:62ch;
    }

    .quiz-shell{
      margin-top:8px;
      border:1px solid var(--line);
      border-radius:20px;
      background:linear-gradient(180deg,#ffffff,#fbfdff);
      padding:18px;
      display:flex;
      flex-direction:column;
      flex:1;
      min-height:0;
      position:relative;
      transition:opacity .12s ease;
    }

    .progress-wrap{
      margin:0 0 18px;
      flex:0 0 auto;
    }
    .progress-row{
      display:flex;
      justify-content:space-between;
      gap:10px;
      margin-bottom:10px;
      color:var(--muted);
      font-size:.92rem;
      font-weight:600;
    }
    .progress{
      height:10px;
      background:#e8f0f7;
      border-radius:999px;
      overflow:hidden;
    }
    .progress-fill{
      height:100%;
      width:20%;
      border-radius:999px;
      background:linear-gradient(90deg,var(--blue),#79c5e9);
      transition:width .28s ease;
    }

    .question-stage{
      transition:opacity .22s ease, transform .22s ease;
      display:flex;
      flex-direction:column;
      flex:0 0 auto;
      min-height:auto;
    }
    .question-stage.is-switching{
      opacity:.45;
      transform:translateY(6px);
    }

    .question-main{
      display:flex;
      flex-direction:column;
      justify-content:flex-start;
      flex:1;
      min-height:0;
    }

    

    .question-title{
  margin:0 0 4px;
  font-size:clamp(2rem,3vw,2.6rem);
  line-height:1.05;
  font-weight:700;
  letter-spacing:-0.02em;
  max-width:520px;
}
    .question-copy{
      margin:0;
      color:var(--muted);
      line-height:1.65;
      max-width:54ch;
    }

    .choices-wrap{
      margin-top:auto;
      padding-top:28px;
    }

    .choices{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:10px;
      align-items:end;
    }

    .choice{
  height:110px;
  border:1px solid var(--line);
  border-radius:16px;
  background:linear-gradient(180deg,#ffffff,#f9fcff);
  padding:14px;
  text-align:left;
  cursor:pointer;

  display:flex;
  flex-direction:column;
  justify-content:center;

  transition:all .15s ease;
}
    .choice:hover{
      transform:translateY(-2px);
      border-color:#c2d7e6;
      box-shadow:0 10px 20px rgba(28,54,79,.06);
    }
    .choice.active{
      border:2px solid var(--blue);
      background:linear-gradient(180deg,#ffffff,#eef7fc);
      box-shadow:0 12px 28px rgba(77,168,218,.18);
      transform:translateY(-2px);
      animation:choicePop .18s ease;
    }
    .choice.active:after{
      content:"✓";
      position:absolute;
      top:10px;
      right:10px;
      width:24px;
      height:24px;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:var(--blue);
      color:#203142;
      font-size:.82rem;
      font-weight:800;
      box-shadow:0 8px 18px rgba(77,168,218,.24);
    }
    .choice-emoji{
      display:block;
      font-size:1.05rem;
      margin-bottom:6px;
    }
    .choice-title{
  font-size:0.95rem;
  font-weight:700;
  margin-bottom:4px;
}
    .choice-sub{
  font-size:0.82rem;
  color:var(--muted);
}

    .controls{
      position:sticky;
      bottom:0;
      display:flex;
      justify-content:space-between;
      gap:10px;
      flex-wrap:wrap;
      align-items:center;
      margin-top:18px;
      padding-top:16px;
      background:linear-gradient(180deg,rgba(255,255,255,0),#ffffff 45%);
      flex:0 0 auto;
    }

    .btn{
      border:none;
      border-radius:12px;
      padding:12px 18px;
      font-weight:600;
      cursor:pointer;
      transition:transform .15s ease,opacity .15s ease,background .15s ease;
    }
    .btn:hover{transform:translateY(-1px)}
    .btn:disabled{opacity:.45;cursor:not-allowed;transform:none}
    .btn.primary{background:var(--blue);color:#fff}
    .btn.secondary{background:#eef5fa;color:var(--text)}

    .helper{
      color:var(--muted-2);
      font-size:.82rem;
      text-align:center;
      flex:1;
    }

    .question-title .highlight{
  display:block;
  color:#4da8da;
  font-weight:800;
}

@keyframes choicePop{
      0%{transform:scale(.985)}
      100%{transform:scale(1)}
    }

    .unlock-screen{
      display:none;
      flex:1;
      align-items:center;
      justify-content:center;
      text-align:center;
      padding:12px 4px;
      position:relative;
      overflow:hidden;
      min-height:320px;
    }
    .unlock-screen.show{
      display:flex;
      animation:fadeIn .35s ease;
    }
    .unlock-card{
      max-width:520px;
      margin:0 auto;
      padding:30px 24px;
      border:1px solid var(--line);
      border-radius:22px;
      background:linear-gradient(180deg,#ffffff,#f7fbfe);
      box-shadow:0 18px 40px rgba(28,54,79,.10);
      position:relative;
      z-index:2;
    }
    .unlock-badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid var(--line);
      background:#f3f9fd;
      color:var(--blue-deep);
      font-size:.8rem;
      font-weight:700;
      text-transform:uppercase;
      letter-spacing:.08em;
      margin-bottom:14px;
    }
    .unlock-title{
      margin:0 0 10px;
      font-size:clamp(2rem,3vw,2.8rem);
      line-height:1.02;
    }
    .unlock-copy{
      margin:0;
      color:var(--muted);
      line-height:1.7;
      font-size:1rem;
    }

    .confetti{
      position:absolute;
      width:10px;
      height:16px;
      border-radius:3px;
      opacity:0;
      top:-30px;
      animation:confettiFall 2.8s ease-in forwards;
      z-index:1;
    }
    @keyframes confettiFall{
      0%{transform:translateY(-30px) rotate(0deg);opacity:0}
      10%{opacity:1}
      100%{transform:translateY(560px) rotate(540deg);opacity:0}
    }
    @keyframes fadeIn{
      from{opacity:0;transform:translateY(8px)}
      to{opacity:1;transform:translateY(0)}
    }

    .section-kicker{
      color:var(--muted-2);
      font-size:.8rem;
      font-weight:700;
      text-transform:uppercase;
      letter-spacing:.06em;
      margin:0 0 10px;
    }
    .section-title{
      margin:0 0 8px;
      font-size:clamp(1.6rem,2.5vw,2.2rem);
      line-height:1.08;
    }
    .section-copy{
      margin:0 0 18px;
      color:var(--muted);
      line-height:1.65;
    }

    .summary-line{
      margin:0 0 18px;
      padding:13px 14px;
      border:1px solid var(--line);
      border-radius:14px;
      background:linear-gradient(180deg,#ffffff,#f9fcff);
      color:var(--muted);
      font-size:.95rem;
      line-height:1.55;
    }
    .summary-line strong{color:var(--text)}

    .inquiry{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:14px;
      align-items:start;
      align-content:start;
    }

    .field{
      display:grid;
      gap:6px;
    }
    .field.full{grid-column:1 / -1}
    .field label{
      color:var(--muted);
      font-size:.83rem;
      font-weight:600;
    }
    .field select{
      width:100%;
      border:1px solid var(--line);
      background:#fff;
      color:var(--text);
      border-radius:12px;
      padding:14px;
      min-height:50px;
      outline:none;
      appearance:none;
      cursor:pointer;
    }

    .field select:focus{
      border-color:#b5d3e6;
      box-shadow:0 0 0 4px rgba(77,168,218,.10);
    }

    .field input,
    .field textarea{
      width:100%;
      border:1px solid var(--line);
      background:#fff;
      color:var(--text);
      border-radius:12px;
      padding:14px;
      outline:none;
      transition:border-color .15s ease,box-shadow .15s ease,background .15s ease;
      min-height:50px;
    }
    .field input::placeholder,
    .field textarea::placeholder{color:#8da0b2}
    .field textarea{
      min-height:140px;
      resize:vertical;
    }
    .field input:focus,
    .field textarea:focus{
      border-color:#b5d3e6;
      box-shadow:0 0 0 4px rgba(77,168,218,.10);
      background:#fff;
    }

    .form-actions{
      grid-column:1 / -1;
      display:flex;
      justify-content:flex-end;
      gap:14px;
      align-items:center;
      flex-wrap:wrap;
      padding-top:0;
      margin-top:4px;
    }

    .footer{
      margin-top:18px;
      padding:16px 18px;
      border-radius:18px;
      background:rgba(255,255,255,.86);
      border:1px solid var(--line);
      box-shadow:var(--shadow);
      display:flex;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
      color:var(--muted);
      font-size:.95rem;
    }

    .success-overlay{
      position:fixed;
      inset:0;
      display:flex;
      align-items:center;
      justify-content:center;
      padding:24px;
      background:rgba(12,24,38,.48);
      backdrop-filter:blur(10px);
      -webkit-backdrop-filter:blur(10px);
      opacity:0;
      visibility:hidden;
      pointer-events:none;
      transition:opacity .28s ease, visibility .28s ease;
      z-index:2000;
    }

    .success-overlay.show{
      opacity:1;
      visibility:visible;
      pointer-events:auto;
    }

    .success-panel{
      position:relative;
      width:min(100%, 620px);
      padding:34px 28px 28px;
      border-radius:28px;
      background:linear-gradient(180deg,#ffffff,#f7fbfe);
      border:1px solid rgba(255,255,255,.75);
      box-shadow:0 24px 60px rgba(12,24,38,.22);
      text-align:center;
      overflow:hidden;
    }

    .success-confetti{
      position:absolute;
      inset:0;
      pointer-events:none;
      overflow:hidden;
      z-index:1;
    }

    .success-panel > *:not(.success-confetti){
      position:relative;
      z-index:2;
    }

    .success-badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 14px;
      border-radius:999px;
      background:#f3f9fd;
      border:1px solid var(--line);
      color:var(--blue-deep);
      font-size:.78rem;
      font-weight:800;
      text-transform:uppercase;
      letter-spacing:.08em;
      margin-bottom:14px;
    }

    .success-title{
      margin:0 0 10px;
      font-size:clamp(2rem,4vw,3rem);
      line-height:1;
      color:var(--text);
    }

    .success-copy{
      margin:0 auto 18px;
      max-width:42ch;
      color:var(--muted);
      line-height:1.7;
      font-size:1rem;
    }

    .success-actions{
      display:flex;
      justify-content:center;
      gap:12px;
      flex-wrap:wrap;
      margin-top:12px;
    }

    .success-close{
      min-width:160px;
    }

    .toast{
      position:fixed;
      left:50%;
      bottom:20px;
      transform:translateX(-50%) translateY(20px);
      background:#203142;
      color:#203142;
      border-radius:999px;
      padding:12px 16px;
      box-shadow:0 12px 28px rgba(32,49,66,.18);
      opacity:0;
      pointer-events:none;
      transition:.22s ease;
      z-index:40;
      font-weight:600;
    }
    .toast.show{
      opacity:1;
      transform:translateX(-50%) translateY(0);
    }

    
    .past-trips{
      margin-top:28px;
      padding:28px 24px;
      border-radius:var(--radius-xl);
      background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(247,251,254,.96));
      border:1px solid var(--line);
      box-shadow:var(--shadow);
    }

    .past-trips-header{
      display:flex;
      justify-content:space-between;
      align-items:end;
      gap:18px;
      flex-wrap:wrap;
      margin-bottom:8px;
    }

    .past-trips-grid{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:16px;
    }

    .trip-card{
      position:relative;
      overflow:hidden;
      min-height:188px;
      padding:16px;
      border-radius:22px;
      border:1px solid rgba(255,255,255,.8);
      box-shadow:0 12px 28px rgba(28,54,79,.10);
      background:#fff;
      transition:transform .16s ease, box-shadow .16s ease;
      display:flex;
      align-items:flex-end;
    }

    .trip-card:hover{
      transform:translateY(-4px) rotate(-.3deg);
      box-shadow:0 18px 34px rgba(28,54,79,.14);
    }

    .trip-card::before{
      content:"";
      position:absolute;
      inset:0;
      opacity:1;
      background-size:cover;
      background-position:center;
      background-repeat:no-repeat;
      filter:brightness(.86) saturate(1.04);
      transform:scale(1);
      transition:transform .35s ease;
    }

    .trip-card:hover::before{
      transform:scale(1.04);
    }

    .trip-card::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(18,28,40,.08) 32%, rgba(14,24,36,.28) 62%, rgba(10,18,28,.46) 100%);
      z-index:1;
    }

    .trip-card.is-hawaii::before{ background-image:url('../images/hawaii-sunset-palms-selected.webp'); }
    .trip-card.is-dr::before{ background-image:url('../images/puntacana-v107.webp'); }
    .trip-card.is-mexico::before{ background-image:url('../images/mexico.webp'); }
    .trip-card.is-sanjuan::before{ background-image:url('../images/sanjuan.webp'); }
    .trip-card.is-stmartin::before{ background-image:url('../images/saintmartin-selected-aerial.webp'); background-position:center 45%; }
    .trip-card.is-universal::before{ background-image:url('../images/universal.webp'); }
    .trip-card.is-vegas::before{ background-image:url('../images/lasvegas.webp'); }
    .trip-card.is-bahamas::before{ background-image:url('../images/bahamas.webp'); }
    .trip-card.is-jewel::before{ background-image:url('../images/cruise-v107.webp'); }
    .trip-card.is-jamaica::before{ background-image:url('../images/jamaica-selected-aerial.webp'); }
    .trip-card.is-puertorico::before{ background-image:url('../images/puertorico-v107.webp'); }
    .trip-card.is-aruba::before{ background-image:url('../images/aruba.webp'); }
    .trip-card.is-disney::before{ background-image:url('../images/disney.webp'); }
    .trip-card.is-newhampshire::before{ background-image:url('../images/Newhampshire.webp'); }
    .trip-card.is-colorado::before{ background-image:url('../images/colorado.webp'); }
    .trip-card.is-parkcity::before{ background-image:url('../images/utah-v107.webp'); }
    .trip-card.is-banff::before{ background-image:url('../images/banff-card.webp'); }

    .trip-illustration{ display:none; }

.trip-illustration .snowcap{
      position:absolute;
      bottom:86px;
      right:20px;
      width:0;
      height:0;
      border-left:12px solid transparent;
      border-right:12px solid transparent;
      border-bottom:18px solid rgba(255,255,255,.82);
      z-index:2;
    }

    .trip-illustration .snowcap.small{
      right:56px;
      bottom:70px;
      border-left-width:9px;
      border-right-width:9px;
      border-bottom-width:14px;
    }

    .trip-illustration{
      position:absolute;
      inset:0;
      pointer-events:none;
      z-index:1;
    }

    .trip-illustration .sun,
    .trip-illustration .moon{
      position:absolute;
      top:18px;
      right:18px;
      width:24px;
      height:24px;
      border-radius:50%;
      background:rgba(255,255,255,.85);
      box-shadow:0 0 0 8px rgba(255,255,255,.14);
    }

    .trip-illustration .palm{
      position:absolute;
      bottom:44px;
      width:12px;
      height:56px;
      background:rgba(108,76,41,.35);
      border-radius:20px;
      transform-origin:bottom center;
    }

    .trip-illustration .palm::before,
    .trip-illustration .palm::after{
      content:"";
      position:absolute;
      left:-18px;
      top:-8px;
      width:46px;
      height:18px;
      background:rgba(69,152,94,.55);
      border-radius:30px 30px 8px 30px;
      transform:rotate(-26deg);
    }

    .trip-illustration .palm::after{
      left:-10px;
      top:-2px;
      transform:rotate(18deg);
    }

    .trip-illustration .wave{
      position:absolute;
      bottom:32px;
      left:18px;
      width:78px;
      height:18px;
      border-radius:999px;
      border:3px solid rgba(255,255,255,.5);
      border-color:rgba(255,255,255,.5) transparent transparent transparent;
      transform:rotate(-6deg);
    }

    .trip-illustration .mountain{
      position:absolute;
      bottom:40px;
      right:20px;
      width:0;
      height:0;
      border-left:28px solid transparent;
      border-right:28px solid transparent;
      border-bottom:56px solid rgba(73,109,171,.45);
    }

    .trip-illustration .mountain.small{
      right:52px;
      bottom:38px;
      border-left-width:20px;
      border-right-width:20px;
      border-bottom-width:38px;
      border-bottom-color:rgba(120,156,211,.45);
    }

    .trip-illustration .castle{
      position:absolute;
      right:28px;
      bottom:36px;
      width:44px;
      height:48px;
      background:rgba(255,255,255,.35);
      border-radius:10px 10px 4px 4px;
    }

    .trip-illustration .castle::before,
    .trip-illustration .castle::after{
      content:"";
      position:absolute;
      top:-12px;
      width:12px;
      height:20px;
      background:rgba(255,255,255,.35);
      border-radius:6px 6px 0 0;
    }

    .trip-illustration .castle::before{left:4px}
    .trip-illustration .castle::after{right:4px}

    .trip-illustration .building{
      position:absolute;
      bottom:34px;
      right:16px;
      display:flex;
      gap:6px;
      align-items:flex-end;
    }

    .trip-illustration .building span{
      width:16px;
      background:rgba(255,255,255,.34);
      border-radius:6px 6px 0 0;
      display:block;
    }

    .trip-illustration .building span:nth-child(1){height:42px}
    .trip-illustration .building span:nth-child(2){height:60px}
    .trip-illustration .building span:nth-child(3){height:34px}

    .trip-content{
      position:relative;
      z-index:2;
      width:100%;
      padding:14px;
      border-radius:18px;
      background:rgba(12,20,32,.34);
      backdrop-filter:blur(8px);
      border:1px solid rgba(255,255,255,.22);
      box-shadow:0 10px 24px rgba(0,0,0,.18);
    }

    .trip-tag{
      display:inline-block;
      margin-bottom:8px;
      padding:6px 10px;
      border-radius:999px;
      background:rgba(255,255,255,.88);
      color:#204465;
      font-size:.72rem;
      font-weight:800;
      text-transform:uppercase;
      letter-spacing:.08em;
    }

    .trip-name{
      margin:0 0 6px;
      font-size:1.05rem;
      line-height:1.1;
      color:#203142;
    }

    .trip-copy{
      margin:0;
      color:#4e6477;
      font-size:.88rem;
      line-height:1.4;
    }

    /* Past trips hover fix */
    .trip-card{
      aspect-ratio:4 / 3;
      min-height:0;
      isolation:isolate;
      transform:translateZ(0);
      will-change:transform;
    }

    .trip-card::before,
    .trip-card::after,
    .trip-content{
      border-radius:inherit;
    }

    .trip-card:hover{
      transform:translateY(-4px);
    }

    .trip-card:hover::before{
      transform:scale(1.03);
    }
    .trip-card-link{
      display:block;
      text-decoration:none;
      color:inherit;
    }
    .trip-card-link:hover,
    .trip-card-link:focus-visible{
      text-decoration:none;
    }
    .trip-card-link:focus-visible .trip-card{
      outline:3px solid rgba(77,168,218,.45);
      outline-offset:4px;
    }

    
    .privacy-policy{
      margin-top:28px;
      padding:28px 24px;
      border-radius:var(--radius-xl);
      background:linear-gradient(180deg, rgba(255,255,255,.94), rgba(245,250,253,.98));
      border:1px solid var(--line);
      box-shadow:var(--shadow);
    }

    .privacy-inner{
      max-width:880px;
    }

    .privacy-copy{
      margin:0 0 12px;
      color:var(--muted);
      line-height:1.7;
      font-size:.97rem;
    }

    .privacy-copy:last-child{
      margin-bottom:0;
    }

    
    .info-section{
      margin-top:28px;
      padding:28px 24px;
      border-radius:var(--radius-xl);
      background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(247,251,254,.96));
      border:1px solid var(--line);
      box-shadow:var(--shadow);
    }

    .trust-grid,
    .reviews-grid,
    .faq-grid{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:16px;
      margin-top:14px;
    }

    .reviews-grid{
      grid-template-columns:repeat(3,minmax(0,1fr));
    }

    .trust-card,
    .review-card,
    .faq-card{
      background:linear-gradient(180deg,#ffffff,#f8fbfe);
      border:1px solid var(--line);
      border-radius:20px;
      padding:18px;
      box-shadow:0 10px 24px rgba(28,54,79,.06);
    }

    .trust-icon{
      width:46px;
      height:46px;
      border-radius:14px;
      display:grid;
      place-items:center;
      font-size:1.3rem;
      margin-bottom:12px;
      background:linear-gradient(180deg,#eef7fc,#ffffff);
      border:1px solid var(--line);
      box-shadow:0 8px 18px rgba(77,168,218,.08);
    }

    .trust-card h3,
    .review-card h3,
    .faq-card h3{
      margin:0 0 8px;
      font-size:1.05rem;
      line-height:1.15;
    }

    .trust-card p,
    .review-card p,
    .faq-card p{
      margin:0;
      color:var(--muted);
      line-height:1.6;
      font-size:.93rem;
    }

    .stars{
      margin-bottom:10px;
      color:#d39f35;
      letter-spacing:.08em;
      font-size:1rem;
      font-weight:700;
    }

    .review-name{
      margin-top:12px;
      font-size:.85rem;
      color:var(--muted-2);
      font-weight:700;
      text-transform:uppercase;
      letter-spacing:.06em;
    }

    .about-wrap{
      display:grid;
      grid-template-columns:360px minmax(0,1fr);
      gap:24px;
      align-items:start;
      margin-top:14px;
    }

    .about-photo{
      position:relative;
      overflow:hidden;
      border-radius:28px;
      border:1px solid rgba(255,255,255,.85);
      background:linear-gradient(180deg,#edf7fc,#f9fcff);
      box-shadow:0 18px 40px rgba(28,54,79,.12);
      min-height:460px;
      max-width:360px;
      width:100%;
      margin:0 auto;
      isolation:isolate;
    }

    .about-photo img{
      width:100%;
      height:460px;
      display:block;
      object-fit:cover;
      object-position:center top;
      transform:scale(1.01);
      filter:brightness(.96) contrast(1.04) saturate(1.03);
    }

    .about-photo::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(180deg, rgba(255,255,255,.10) 0%, rgba(255,255,255,.05) 28%, rgba(255,255,255,0) 45%, rgba(8,20,34,.12) 68%, rgba(8,20,34,.32) 100%);
      z-index:1;
      pointer-events:none;
    }

    .about-photo::after{
      content:"";
      position:absolute;
      inset:14px;
      border-radius:22px;
      border:1px solid rgba(255,255,255,.34);
      z-index:2;
      pointer-events:none;
    }

    .about-photo-badge{
      position:absolute;
      top:16px;
      left:16px;
      z-index:3;
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:9px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.86);
      border:1px solid rgba(255,255,255,.82);
      color:var(--blue-deep);
      font-size:.76rem;
      font-weight:800;
      letter-spacing:.08em;
      text-transform:uppercase;
      box-shadow:0 10px 24px rgba(28,54,79,.10);
      backdrop-filter:blur(10px);
    }

    .about-photo-badge .dot{
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--blue);
      flex:0 0 auto;
    }

    .about-photo-overlay{
      position:absolute;
      left:18px;
      right:18px;
      bottom:18px;
      z-index:3;
      padding:16px 18px;
      border-radius:20px;
      background:linear-gradient(180deg, rgba(255,255,255,.90), rgba(255,255,255,.82));
      border:1px solid rgba(255,255,255,.72);
      box-shadow:0 16px 32px rgba(12,24,38,.22);
      backdrop-filter:blur(12px);
      -webkit-backdrop-filter:blur(12px);
      color:#172a3a;
    }

    .about-photo-name{
      margin:0 0 6px;
      font-size:1.2rem;
      font-weight:800;
      line-height:1.1;
      letter-spacing:-0.01em;
      color:#16314a;
      text-shadow:0 1px 0 rgba(255,255,255,.35);
    }

    .about-photo-role{
      margin:0;
      font-size:.92rem;
      line-height:1.45;
      color:#36556f;
      text-shadow:0 1px 0 rgba(255,255,255,.28);
    }

    .about-content{
      display:flex;
      flex-direction:column;
      gap:14px;
    }

    .about-card{
      background:linear-gradient(180deg,#ffffff,#f8fbfe);
      border:1px solid var(--line);
      border-radius:20px;
      padding:18px;
      box-shadow:0 10px 24px rgba(28,54,79,.06);
    }

    .about-card-full{
      margin-top:18px;
    }

    .about-list{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:12px;
    }

    .about-pill{
      padding:12px 14px;
      border-radius:16px;
      background:#fff;
      border:1px solid var(--line);
      color:var(--text);
      font-weight:600;
      font-size:.92rem;
    }

    .faq-grid{
      grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .faq-card h3{
      font-size:1rem;
    }

    @media (max-width:1180px){
      .topbar{
        height:auto;
        min-height:120px;
        align-items:flex-start;
        padding:12px 18px;
      }
      .brand{
        margin-right:8px;
      }
      .brand img{
        height:150px;
        max-width:min(38vw, 420px);
      }
      .brand-top{font-size:.95rem;}
      .brand-bottom{font-size:.76rem;}
    }

    @media (max-width:1180px){
      .topbar{height:auto; min-height:108px; padding:12px 16px;}
      .brand img{max-width:min(70vw, 520px); height:96px; min-width:220px;}
      .brand-top{font-size:.94rem;}
      .brand-bottom{font-size:.76rem;}
      .nav a{padding:12px 18px; font-size:.95rem;}
    }

    @media (max-width:980px){
      .topbar{
        position:sticky;
        top:10px;
        width:calc(100% - 20px);
        flex-direction:column;
        align-items:stretch;
        gap:12px;
        padding:14px;
      }
      .page{padding:178px 14px 32px;}
      .brand{
        width:100%;
        justify-content:flex-start;
        margin-right:0;
      }
      .brand img{
        height:118px;
        max-width:180px;
      }
      .brand-text{
        min-width:0;
      }
      .brand-top,
      .brand-bottom{
        white-space:normal;
      }
      .nav{
        width:100%;
        justify-content:flex-start;
        margin-left:0;
      }
      .past-trips-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      .trust-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      .reviews-grid{grid-template-columns:1fr}
      .about-wrap{grid-template-columns:1fr}
      .faq-grid{grid-template-columns:1fr}
    }

      .hero{grid-template-columns:1fr}
      .panel{min-height:auto}
      .builder,.form-panel{min-height:auto}
      .choices-wrap{margin-top:24px;padding-top:0}
    }
    
    @media (max-width:980px){
      .brand-text{
        max-width:260px;
      }
      .brand-title{
      margin:0;
      font-size:18px;
      font-weight:700;
      letter-spacing:1.5px;
      color:#000000;
      white-space:nowrap;
    }
      .brand-subtitle{
      margin-top:4px;
      font-size:12px;
      color:#555555;
      white-space:nowrap;
    }
      .nav{
        padding-left:0;
      }
    }

    @media (max-width:860px){
      .hero{grid-template-columns:1fr}
      .panel{min-height:auto}
      .builder,.form-panel{min-height:auto}
      .past-trips-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      .trust-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      .reviews-grid{grid-template-columns:1fr}
      .about-wrap{grid-template-columns:1fr}
      .faq-grid{grid-template-columns:1fr}
    }

    @media (max-width:740px){
      .topbar{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      position:fixed;
      top:0;
      left:50%;
      transform:translateX(-50%);
      width:min(calc(100% - 32px), 1432px);
      height:70px;
      padding:6px 12px;
      background:#ffffff;
      border-radius:18px;
      box-shadow:0 10px 24px rgba(28,54,79,.10);
      z-index:1000;
    }
      .past-trips{padding:20px 18px}
      .past-trips-grid{grid-template-columns:1fr}
      .trust-grid,.reviews-grid,.faq-grid,.about-list{grid-template-columns:1fr}
      .nav{justify-content:flex-start; gap:6px; padding-left:0;}
      .choices,.inquiry{grid-template-columns:1fr}
      .builder,.form-panel,.quiz-shell{padding:18px}
      .summary-line{font-size:.9rem}
      .helper{display:none}
      .controls{justify-content:space-between}
      .question-title{
  margin:0 0 4px;
  font-size:clamp(2rem,3vw,2.8rem);
  line-height:1.05;
  font-weight:700;
  letter-spacing:-0.02em;max-width:none}
      .choice{min-height:88px}
    }
  

.footer{
  margin-top:18px;
  padding:10px 14px;
  border-top:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

.footer-left,
.footer-right{
  display:flex;
  align-items:center;
}

.footer-left{
  gap:8px;
  flex-wrap:wrap;
}

.footer-right{
  justify-content:flex-end;
  gap:8px;
}

.footer-icon{
  width:32px;
  height:32px;
  border-radius:10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(180deg,#ffffff,#eef6fb);
  border:1px solid var(--line);
  box-shadow:0 4px 10px rgba(28,54,79,.05);
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.footer-icon:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 20px rgba(28,54,79,.10);
  background:linear-gradient(180deg,#ffffff,#e8f2f9);
}

.footer-icon svg{
  width:16px;
  height:16px;
  fill:var(--text);
  display:block;
}

.footer-privacy{
  font-size:.82rem;
  color:var(--muted-2);
  transition:color .18s ease;
  white-space:nowrap;
}

.footer-privacy:hover{
  color:var(--text);
}

.footer-separator{
  color:var(--muted-2);
  font-size:.82rem;
}

@media (max-width: 640px){
  .footer{
    justify-content:center;
  }

  .footer-left,
  .footer-right{
    width:100%;
    justify-content:center;
  }
}

/* v2.3 image-fit corrections */
.trip-card.is-banff::before{
  background-image:linear-gradient(180deg,rgba(12,24,38,.16),rgba(12,24,38,.44)),url('../images/banff-card.webp')!important;
  background-size:cover!important;
  background-position:center!important;
}
.about-photo{
  height:460px!important;
  min-height:460px!important;
  background:#fff!important;
}
.about-photo img{
  width:100%!important;
  height:100%!important;
  min-height:100%!important;
  max-height:none!important;
  object-fit:cover!important;
  object-position:center center!important;
  transform:scale(1.035)!important;
}
.hero-image,.image-box,.photo-box,.trip-image,.trip-photo,.media-box{
  overflow:hidden!important;
}
.hero-image img,.image-box img,.photo-box img,.trip-image img,.trip-photo img,.media-box img{
  width:100%!important;
  height:100%!important;
  object-fit:cover!important;
  object-position:center!important;
}

    /* Real photos for past trip destination cards */
    .trip-card::before{
      background-size:cover !important;
      background-position:center center !important;
      background-repeat:no-repeat !important;
    }

    .trip-card.is-hawaii::before{background-image:linear-gradient(180deg, rgba(12,24,38,.18), rgba(12,24,38,.42)), url('../images/hawaii-sunset-palms-selected.webp') !important;}
    .trip-card.is-dr::before{background-image:linear-gradient(180deg, rgba(12,24,38,.18), rgba(12,24,38,.42)), url('../images/puntacana-v107.webp') !important;}
    .trip-card.is-mexico::before{background-image:linear-gradient(180deg, rgba(12,24,38,.18), rgba(12,24,38,.42)), url('../images/mexico.webp') !important;}
    .trip-card.is-sanjuan::before{background-image:linear-gradient(180deg, rgba(12,24,38,.18), rgba(12,24,38,.42)), url('../images/sanjuan.webp') !important;}
    .trip-card.is-universal::before{background-image:linear-gradient(180deg, rgba(12,24,38,.18), rgba(12,24,38,.42)), url('../images/universal.webp') !important;}
    .trip-card.is-vegas::before{background-image:linear-gradient(180deg, rgba(12,24,38,.18), rgba(12,24,38,.50)), url('../images/lasvegas.webp') !important;}
    .trip-card.is-bahamas::before{background-image:linear-gradient(180deg, rgba(12,24,38,.18), rgba(12,24,38,.42)), url('../images/bahamas.webp') !important;}
    .trip-card.is-jewel::before{background-image:linear-gradient(180deg, rgba(12,24,38,.18), rgba(12,24,38,.42)), url('../images/cruise-v107.webp') !important;}
    .trip-card.is-jamaica::before{background-image:linear-gradient(180deg, rgba(12,24,38,.18), rgba(12,24,38,.42)), url('../images/jamaica-selected-aerial.webp') !important;}
    .trip-card.is-puertorico::before{background-image:linear-gradient(180deg, rgba(12,24,38,.18), rgba(12,24,38,.42)), url('../images/puertorico-v107.webp') !important;}

    /* Make text read better over photos */
    .trip-content{
      background:rgba(255,255,255,.86) !important;
      backdrop-filter:blur(10px) !important;
    }

    @media (max-width: 980px){
      .topbar{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      position:fixed;
      top:0;
      left:50%;
      transform:translateX(-50%);
      width:min(calc(100% - 32px), 1432px);
      height:62px;
      padding:6px 14px;
      background:#ffffff;
      border-radius:18px;
      box-shadow:0 10px 24px rgba(28,54,79,.10);
      z-index:1000;
    }
      .topbar::before{display:none;}
      .nav{max-width:100%; gap:6px;}
      .nav a{
      white-space:nowrap;
      flex:0 0 auto;
      padding:11px 18px;
      font-size:.95rem;
      border-radius:999px;
      background:#f3f7fb;
      border:1px solid #dbe7f2;
      color:#203142;
      font-weight:600;
      box-shadow:0 4px 10px rgba(28,54,79,.06);
      transition:all .15s ease;
    }
      .page{padding-top:86px;}
    }

    @media (max-width: 720px){
      .topbar{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      position:fixed;
      top:0;
      left:50%;
      transform:translateX(-50%);
      width:min(calc(100% - 32px), 1432px);
      height:62px;
      padding:6px 14px;
      background:#ffffff;
      border-radius:18px;
      box-shadow:0 10px 24px rgba(28,54,79,.10);
      z-index:1000;
    }

/* v2.3 final image-fit overrides: keep these after lazy-image fallback rules. */
html.js .trip-card.is-banff::before,
.trip-card.is-banff::before{
  background-image:linear-gradient(180deg,rgba(12,24,38,.16),rgba(12,24,38,.44)),url('../images/banff-card.webp')!important;
  background-size:cover!important;
  background-position:center!important;
  background-repeat:no-repeat!important;
}

.about-photo{
  overflow:hidden!important;
  background:#fff!important;
}

.about-photo > img{
  display:block!important;
  width:100%!important;
  height:100%!important;
  max-height:none!important;
  object-fit:cover!important;
  object-position:center center!important;
  transform:scale(1.035)!important;
}
      .topbar::before{display:none;}
      .brand-text{
        left:10px;
        max-width:215px;
      }
      .brand-title{
      margin:0;
      font-size:18px;
      font-weight:700;
      letter-spacing:1.5px;
      color:#000000;
      white-space:nowrap;
    }
      .brand-subtitle{
      margin-top:4px;
      font-size:12px;
      color:#555555;
      white-space:nowrap;
    }
      .nav{
        max-width:100%;
        justify-content:flex-start;
        gap:6px;
        padding-left:0;
      }
      .nav a{
      white-space:nowrap;
      flex:0 0 auto;
      padding:11px 18px;
      font-size:.95rem;
      border-radius:999px;
      background:#f3f7fb;
      border:1px solid #dbe7f2;
      color:#203142;
      font-weight:600;
      box-shadow:0 4px 10px rgba(28,54,79,.06);
      transition:all .15s ease;
    }
      .page{padding-top:96px;}
    }

    /* ==== FINAL HEADER FIX OVERRIDES ==== */
    section[id],
    aside[id]{scroll-margin-top:110px !important;}

    .page{
      padding:136px 20px 40px !important;
    }

    .topbar{
      display:flex !important;
      align-items:center !important;
      justify-content:space-between !important;
      position:fixed !important;
      top:10px !important;
      left:50% !important;
      transform:translateX(-50%) !important;
      width:min(calc(100% - 24px), 1280px) !important;
      height:112px !important;
      min-height:112px !important;
      padding:0 20px !important;
      background:#ffffff !important;
      border-radius:18px !important;
      box-shadow:0 12px 30px rgba(28,54,79,.12) !important;
      overflow:hidden !important;
      gap:18px !important;
      flex-direction:row !important;
    }

    .brand{
      display:flex !important;
      align-items:center !important;
      gap:0 !important;
      flex:0 0 auto !important;
      min-width:0 !important;
      margin-right:14px !important;
      height:100% !important;
      overflow:hidden !important;
    }

    .brand img{
      display:block !important;
      height:112px !important;
      width:auto !important;
      max-width:min(52vw, 760px) !important;
      min-width:280px !important;
      object-fit:contain !important;
      object-position:left center !important;
      image-rendering:auto !important;
      transform:none !important;
      flex:0 0 auto !important;
      filter:contrast(1.02) saturate(1.02) !important;
    }

    .brand-text{
      display:flex !important;
      flex-direction:column !important;
      justify-content:center !important;
      gap:4px !important;
      min-width:0 !important;
      line-height:1.1 !important;
      margin-left:12px !important;
      flex:0 1 auto !important;
    }

    .brand-top{
      font-size:1rem !important;
      font-weight:800 !important;
      letter-spacing:.02em !important;
      color:#203142 !important;
      white-space:nowrap !important;
      overflow:hidden !important;
      text-overflow:ellipsis !important;
    }

    .brand-bottom{
      font-size:.83rem !important;
      color:#5f7488 !important;
      font-weight:700 !important;
      letter-spacing:.02em !important;
      white-space:nowrap !important;
      overflow:hidden !important;
      text-overflow:ellipsis !important;
    }

    .nav{
      display:flex !important;
      align-items:center !important;
      justify-content:flex-end !important;
      gap:10px !important;
      margin-left:auto !important;
      flex:1 1 auto !important;
      min-width:0 !important;
      max-width:100% !important;
      overflow-x:auto !important;
      overflow-y:hidden !important;
      padding-left:0 !important;
      padding-bottom:2px !important;
      flex-wrap:nowrap !important;
      scrollbar-width:none !important;
      -ms-overflow-style:none !important;
    }

    .nav::-webkit-scrollbar{display:none !important;}

    .nav a{
      display:inline-flex !important;
      align-items:center !important;
      justify-content:center !important;
      white-space:nowrap !important;
      text-align:center !important;
      text-decoration:none !important;
      line-height:1.05 !important;
      flex:0 0 auto !important;
      padding:12px 18px !important;
      font-size:.95rem !important;
      border-radius:999px !important;
      background:#f3f7fb !important;
      border:1px solid #dbe7f2 !important;
      color:#203142 !important;
      font-weight:700 !important;
      box-shadow:0 6px 14px rgba(28,54,79,.08) !important;
      transition:all .18s ease !important;
      min-height:44px !important;
    }

    .nav a:hover{
      transform:translateY(-1px) !important;
      background:#eaf3fb !important;
      border-color:#cfe2f3 !important;
    }

    @media (max-width: 1180px){
      .page{padding-top:106px !important;}
      .topbar{
        height:96px !important;
        min-height:96px !important;
        padding:0 14px !important;
        gap:12px !important;
      }
      .brand img{
        height:76px !important;
        max-width:min(30vw, 360px) !important;
      }
      .nav{gap:8px !important;}
      .nav a{
        padding:11px 15px !important;
        font-size:.9rem !important;
      }
    }

    @media (max-width: 980px){
      .page{padding:116px 14px 32px !important;}
      .topbar{
        width:calc(100% - 20px) !important;
        height:88px !important;
        min-height:88px !important;
        padding:0 12px !important;
        gap:10px !important;
      }
      .brand{
        margin-right:0 !important;
      }
      .brand img{
        height:64px !important;
        max-width:260px !important;
      }
      .brand-text{
        margin-left:10px !important;
        max-width:260px !important;
      }
      .brand-top{font-size:.9rem !important;}
      .brand-bottom{font-size:.74rem !important;}
      .nav{gap:6px !important;}
      .nav a{
        padding:10px 12px !important;
        font-size:.84rem !important;
      }
    }

    @media (max-width: 740px){
      section[id],
      aside[id]{scroll-margin-top:92px !important;}
      .page{padding:98px 12px 28px !important;}
      .topbar{
        width:calc(100% - 16px) !important;
        height:74px !important;
        min-height:74px !important;
        padding:0 10px !important;
        gap:0 !important;
        flex-direction:row !important;
        align-items:center !important;
        justify-content:center !important;
        top:8px !important;
      }
      .brand{
        width:100% !important;
        margin-right:0 !important;
        justify-content:center !important;
      }
      .brand img{
        height:100% !important;
        max-height:62px !important;
        max-width:100% !important;
        width:auto !important;
        min-width:0 !important;
        margin:0 auto !important;
      }
      .brand-text{
        display:none !important;
      }
      .nav{
        display:none !important;
      }
    }

    @media (max-width: 520px){
      .page{padding-top:94px !important;}
      .topbar{
        width:calc(100% - 12px) !important;
        height:70px !important;
        min-height:70px !important;
      }
      .brand img{
        max-height:58px !important;
        max-width:100% !important;
      }
    }

    /* Added favicon support + extra mobile optimization */
    body{
      overflow-x:hidden;
    }

    img{
      max-width:100%;
      height:auto;
    }

    .floating-text-btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
    }

    @media (max-width: 980px){
      .page{
        padding:88px 14px 28px;
      }

      .topbar{
        width:min(calc(100% - 16px), 1280px);
        padding:10px 12px;
        height:auto;
        min-height:64px;
        gap:10px;
      }

      .brand{
        height:44px;
        margin-right:8px;
      }

      .brand img{
        min-width:0;
        max-width:42vw;
        height:100%;
      }

      .nav{
        gap:8px;
      }

      .nav a{
        padding:10px 14px;
        font-size:.92rem;
        min-height:40px;
      }
    }

    @media (max-width: 740px){
      .topbar{
        flex-wrap:wrap;
        justify-content:center;
      }

      .brand{
        width:100%;
        justify-content:center;
        margin-right:0;
      }

      .brand img{
        max-width:min(88vw, 420px);
      }

      .nav{
        width:100%;
        justify-content:center;
        flex-wrap:wrap;
      }

      .nav a{
        flex:1 1 calc(50% - 8px);
        min-width:140px;
      }

      .hero{
        grid-template-columns:1fr;
      }

      .panel{
        min-height:unset;
      }

      .builder,
      .form-panel{
        padding:18px;
      }

      .inquiry{
        grid-template-columns:1fr;
      }

      .form-actions{
        justify-content:stretch;
      }

      .form-actions .btn,
      .form-actions button,
      .form-actions a{
        width:100%;
      }

      .past-trips-grid,
      .trust-grid,
      .reviews-grid,
      .faq-grid,
      .about-wrap{
        grid-template-columns:1fr;
      }

      .floating-text-btn{
        left:12px;
        right:12px;
        bottom:12px;
        width:auto;
        text-align:center;
        border-radius:14px;
      }
    }

    @media (max-width: 520px){
      .page{
        padding:84px 10px 24px;
      }

      .topbar{
        width:min(calc(100% - 12px), 1280px);
        border-radius:14px;
      }

      .nav a{
        width:100%;
        flex:1 1 100%;
        font-size:.9rem;
        padding:10px 12px;
      }

      .question-title{
        font-size:clamp(1.55rem, 7vw, 2rem);
      }

      .choices{
        grid-template-columns:1fr;
      }

      .choice{
        height:auto;
        min-height:92px;
      }

      .success-panel,
      .unlock-card{
        padding:22px 16px;
      }

      .footer{
        padding:14px;
      }
    }

  
/* MOBILE FIXES: remove button + center logo */
@media (max-width: 700px){

  .topbar{
    justify-content:center !important;
  }

  .brand{
    margin:0 auto !important;
    justify-content:center !important;
  }

  .brand img{
    object-position:center center !important;
    min-width:0 !important;
    max-width:90vw !important;
  }

  .nav{
    display:none !important;
  }
}

/* Header cleanup override */
.topbar{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  position:fixed !important;
  top:12px !important;
  left:50% !important;
  transform:translateX(-50%) !important;
  width:min(calc(100% - 28px), 1280px) !important;
  min-height:0 !important;
  height:72px !important;
  padding:8px 16px !important;
  background:#ffffff !important;
  border-radius:18px !important;
  box-shadow:0 10px 26px rgba(28,54,79,.10) !important;
  gap:14px !important;
  overflow:hidden !important;
}
.topbar::after{
  border-radius:18px !important;
  border:1px solid rgba(217,228,238,.95) !important;
}
.page{
  padding-top:108px !important;
}
.brand{
  display:flex !important;
  align-items:center !important;
  justify-content:flex-start !important;
  gap:0 !important;
  flex:0 1 auto !important;
  min-width:0 !important;
  width:auto !important;
  height:100% !important;
  margin-right:6px !important;
  overflow:hidden !important;
}
.brand img{
  display:block !important;
  height:100% !important;
  width:auto !important;
  max-width:min(44vw, 560px) !important;
  min-width:0 !important;
  object-fit:contain !important;
  object-position:left center !important;
  background:transparent !important;
}
.nav{
  display:flex !important;
  align-items:center !important;
  justify-content:flex-end !important;
  flex:1 1 auto !important;
  min-width:0 !important;
  gap:10px !important;
  margin-left:auto !important;
  overflow-x:auto !important;
  overflow-y:hidden !important;
  white-space:nowrap !important;
  scrollbar-width:none !important;
}
.nav::-webkit-scrollbar{
  display:none !important;
}
.nav a{
  flex:0 0 auto !important;
  padding:11px 18px !important;
  min-height:40px !important;
  font-size:.96rem !important;
  line-height:1 !important;
}
@media (max-width: 1100px){
  .topbar{
    height:68px !important;
    padding:8px 14px !important;
  }
  .brand img{
    max-width:min(42vw, 460px) !important;
  }
  .nav{
    gap:8px !important;
  }
  .nav a{
    padding:10px 15px !important;
    font-size:.9rem !important;
  }
}
@media (max-width: 860px){
  .topbar{
    height:64px !important;
    width:calc(100% - 18px) !important;
    padding:7px 12px !important;
    gap:10px !important;
  }
  .page{
    padding-top:98px !important;
  }
  .brand{
    flex:1 1 auto !important;
    margin-right:0 !important;
  }
  .brand img{
    max-width:min(62vw, 360px) !important;
    object-position:left center !important;
  }
  .nav{
    flex:0 0 auto !important;
    margin-left:0 !important;
    gap:6px !important;
  }
  .nav a{
    padding:9px 13px !important;
    font-size:.85rem !important;
    min-height:36px !important;
  }
}
@media (max-width: 640px){
  .topbar{
    justify-content:center !important;
    height:70px !important;
    padding:6px 12px !important;
  }
  .page{
    padding-top:94px !important;
  }
  .brand{
    width:100% !important;
    justify-content:center !important;
    margin:0 !important;
  }
  .brand img{
    max-width:min(86vw, 360px) !important;
    height:100% !important;
    object-position:center !important;
  }
  .nav{
    display:none !important;
  }
}

    /* Final cleanup + mobile fixes */
    .choice{
      position:relative;
    }

    .toast{
      color:#ffffff;
      background:#203142;
    }

    .site-footer{
      align-items:center;
    }

    .floating-text-btn{
      position:fixed;
      right:20px;
      bottom:20px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:14px 18px;
      border-radius:14px;
      background:#4da8da;
      color:#203142;
      font-weight:700;
      text-decoration:none;
      box-shadow:0 10px 20px rgba(0,0,0,.15);
      z-index:999;
      transition:transform .18s ease, box-shadow .18s ease, bottom .22s ease;
    }

    .floating-text-btn:hover{
      transform:translateY(-2px);
      box-shadow:0 14px 24px rgba(0,0,0,.18);
    }

    .floating-text-btn.is-above-footer{
      bottom:110px;
    }

    @media (max-width: 640px){
      .page{
        padding-top:96px !important;
        padding-bottom:112px;
      }

      .topbar{
        width:calc(100% - 14px) !important;
        height:72px !important;
        padding:8px 12px !important;
        justify-content:center !important;
      }

      .brand{
        width:100% !important;
        justify-content:center !important;
        margin:0 !important;
      }

      .brand img{
        width:auto !important;
        height:100% !important;
        max-width:min(90vw, 380px) !important;
        object-position:center center !important;
      }

      .quiz-shell{
        padding:16px;
      }

      .question-stage{
        gap:14px;
      }

      .choices{
        grid-template-columns:1fr !important;
        gap:12px;
      }

      .choice{
        min-height:96px;
        height:auto;
      }

      .controls{
        position:static;
        display:grid;
        grid-template-columns:1fr;
        gap:10px;
        background:none;
        padding-top:14px;
      }

      .controls .btn,
      .controls button{
        width:100%;
      }

      .helper{
        order:3;
        text-align:center;
      }

      .site-footer{
        padding-bottom:18px;
      }

      .footer-right{
        justify-content:center;
      }

      .topbar{
        top:0 !important;
        left:0 !important;
        transform:none !important;
        width:100% !important;
        max-width:none !important;
        border-radius:0 0 18px 18px !important;
        padding-top:calc(env(safe-area-inset-top, 0px) + 8px) !important;
        z-index:2000 !important;
      }

      .page{
        padding-top:104px !important;
        padding-bottom:156px !important;
      }

      .floating-text-btn{
        left:12px;
        right:12px;
        bottom:12px;
        width:auto;
        border-radius:16px;
        z-index:2200;
      }

      .floating-text-btn.is-above-footer{
        bottom:12px;
      }
    }

/* Final header + SEO polish */
.hero-h1{
  margin:12px 0 0;
  font-size:clamp(1.7rem,2.7vw,2.55rem);
  line-height:1.05;
  letter-spacing:-.03em;
  color:#18324a;
}
.topbar{
  top:12px !important;
  height:84px !important;
  padding:10px 16px !important;
  gap:16px !important;
  align-items:center !important;
}
.topbar::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  border:1px solid rgba(217,228,238,.95) !important;
  border-radius:18px !important;
}
.page{
  padding-top:116px !important;
}
.brand{
  gap:10px !important;
  margin-right:6px !important;
  overflow:visible !important;
}
.brand img{
  height:64px !important;
  width:auto !important;
  max-width:220px !important;
  min-width:0 !important;
  object-fit:contain !important;
}
.brand-text{
  display:flex !important;
  flex-direction:column !important;
  justify-content:center !important;
  gap:3px !important;
  margin-left:0 !important;
}
.brand-top{
  font-size:.98rem !important;
  font-weight:800 !important;
}
.brand-bottom{
  font-size:.78rem !important;
  font-weight:700 !important;
  color:#5f7488 !important;
  white-space:normal !important;
  max-width:320px !important;
}
.nav{
  gap:8px !important;
}
.nav a{
  padding:10px 14px !important;
  font-size:.92rem !important;
}
@media (max-width: 1180px){
  .topbar{height:78px !important;}
  .brand img{height:56px !important;max-width:180px !important;}
  .brand-bottom{display:none !important;}
  .nav a{padding:9px 12px !important;font-size:.88rem !important;}
}
@media (max-width: 760px){
  .topbar{height:70px !important;padding:8px 12px !important;}
  .page{padding-top:98px !important;}
  .brand-top{display:none !important;}
  .brand img{height:48px !important;max-width:150px !important;}
  .nav a{padding:8px 10px !important;font-size:.84rem !important;}
  .hero-h1{font-size:clamp(1.45rem,7vw,2rem);}
}

/* Layout fix: keep image boxes level with adjacent content boxes */
.hero-grid{align-items:stretch!important}
.hero-card{height:100%!important}
.hero-copy,.hero-image{height:100%!important}
.hero-image{display:flex!important;align-items:stretch!important}
.hero-image img{width:100%!important;height:100%!important;min-height:360px!important;object-fit:cover!important;display:block!important}

/* Listing / postcard grids */
.trip-grid,.trips-grid,.destination-grid,.card-grid,.postcard-grid,.vacation-grid,.deals-grid{
  display:grid!important;
  align-items:stretch!important;
}
.trip-card,.trip-box,.destination-card,.postcard,.vacation-card,.deal-card,.travel-card,.card{
  height:100%;
}
.trip-card a,.trip-box a,.destination-card a,.postcard a,.vacation-card a,.deal-card a,.travel-card a{
  height:100%;
}
.trip-card img,.trip-box img,.destination-card img,.postcard img,.vacation-card img,.deal-card img,.travel-card img{
  width:100%!important;
  display:block!important;
  aspect-ratio:4/3;
  object-fit:cover!important;
}

/* Two-column sections where image and text need same height */
.split,.split-grid,.two-col,.two-column,.trip-layout,.trip-row,.trip-section{
  align-items:stretch!important;
}
.image-box,.photo-box,.trip-image,.trip-photo,.media-box{
  height:100%!important;
  display:flex!important;
}
.image-box img,.photo-box img,.trip-image img,.trip-photo img,.media-box img{
  width:100%!important;
  height:100%!important;
  object-fit:cover!important;
  display:block!important;
}

@media (max-width: 900px){
  .hero-copy,.hero-image,.hero-card,.image-box,.photo-box,.trip-image,.trip-photo,.media-box{
    height:auto!important;
  }
}

/* Global mobile optimization */
html,body{max-width:100%;overflow-x:hidden}
img,svg,video,canvas,iframe{max-width:100%;height:auto}
input,select,textarea,button{max-width:100%}

@media (max-width: 900px){
  .wrap,.page{width:min(100% - 20px, 100%) !important; padding-left:0 !important; padding-right:0 !important;}
  main{padding:18px 0 28px !important;}
  .hero,.hero-grid,.content-grid,.section-grid,.split,.split-grid,.two-col,.two-column,.trip-layout,.trip-row,.trip-section{
    grid-template-columns:1fr !important;
    gap:14px !important;
  }
  .sidebar{position:static !important; top:auto !important;}
  .hero-image img{min-height:220px !important; max-height:360px !important;}
  .panel,.hero-card,.card{min-height:0 !important;}
  .builder,.form-panel,.hero-copy,.card{padding:18px !important;}
  .card h2{font-size:1.55rem !important;}
  .hero h1,.hero-h1{font-size:clamp(1.7rem,7vw,2.3rem) !important; line-height:1.06 !important;}
  .question-title{font-size:clamp(1.6rem,7vw,2.1rem) !important;}
  .mini-grid,.choices{grid-template-columns:1fr !important;}
  .cta-row,.controls{display:grid !important; grid-template-columns:1fr !important;}
  .cta-row .btn,.controls .btn,.controls button,.btn{width:100% !important;}
  .trip-card img,.trip-box img,.destination-card img,.postcard img,.vacation-card img,.deal-card img,.travel-card img{aspect-ratio:16/11 !important;}
  footer.site-footer,.site-footer{width:min(100% - 20px, 100%) !important; margin:20px auto 14px !important; padding:16px !important; justify-content:center !important; text-align:center !important;}
  .footer-left,.footer-right{justify-content:center !important; width:100% !important;}
}

@media (max-width: 640px){
  body{line-height:1.6 !important;}
  .wrap,.page{width:min(100% - 16px, 100%) !important;}
  .topbar{width:100% !important; left:0 !important; transform:none !important; top:0 !important; border-radius:0 0 16px 16px !important; padding-left:12px !important; padding-right:12px !important;}
  .brand{width:100% !important; justify-content:center !important; margin:0 !important;}
  .brand img{max-width:min(82vw,320px) !important; height:auto !important; max-height:48px !important; object-position:center center !important;}
  .brand-text,.nav{display:none !important;}
  .page{padding-top:96px !important; padding-bottom:132px !important;}
  main{padding:14px 0 24px !important;}
  .hero,.hero-grid,.content-grid,.section-grid,.split,.split-grid,.two-col,.two-column,.trip-layout,.trip-row,.trip-section{gap:12px !important;}
  .hero-copy,.builder,.form-panel,.card{padding:16px !important;}
  .hero-image{padding:12px !important;}
  .hero-image img{min-height:190px !important; max-height:280px !important; border-radius:18px !important;}
  .hero h1,.hero-h1{font-size:clamp(1.5rem,8vw,2rem) !important;}
  .card h2{font-size:1.4rem !important;}
  .card h3{font-size:1.08rem !important;}
  .trip-breadcrumbs,.helper,.question-copy,.mini span,.tip-box p{font-size:.95rem !important;}
  .eyebrow{font-size:.74rem !important; padding:7px 10px !important;}
  .choice{min-height:84px !important; padding:12px !important; border-radius:14px !important;}
  .choice-title{font-size:.92rem !important;}
  .choice-sub{font-size:.8rem !important;}
  .btn,.nav a{min-height:46px !important; padding:12px 14px !important;}
  .mini,.tip-box{padding:14px !important; border-radius:16px !important;}
  .floating-text-btn{left:12px !important; right:12px !important; bottom:12px !important; width:auto !important; border-radius:16px !important;}
}
.footer-x span{font-weight:800;font-size:18px;line-height:1;color:#203142;font-family:Inter,system-ui,sans-serif}

html{scroll-behavior:smooth}a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible,select:focus-visible{outline:3px solid rgba(77,168,218,.35);outline-offset:3px}.nav a{position:relative}.nav a::after{content:"";position:absolute;left:0;bottom:-6px;width:100%;height:2px;background:currentColor;transform:scaleX(0);transform-origin:left;transition:transform .25s ease;opacity:.7}.nav a:hover::after,.nav a:focus-visible::after{transform:scaleX(1)}.hero,.info-section,.why-travel-advisor-section,.past-trips{scroll-margin-top:90px}.eyebrow{display:inline-flex;align-items:center;gap:8px;padding:8px 12px;border-radius:999px;background:#eaf6fd;color:#176c9d;font-size:.8rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase}.elevated-wrap{background:linear-gradient(180deg,#fff,#f8fbfd);border:1px solid rgba(15,23,42,.08);border-radius:28px;box-shadow:0 18px 50px rgba(15,23,42,.08);padding:36px}.process-grid,.trust-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}.process-card,.trust-card{background:#fff;border:1px solid rgba(15,23,42,.08);border-radius:22px;padding:22px;box-shadow:0 10px 30px rgba(15,23,42,.05)}.step-badge{display:inline-flex;align-items:center;justify-content:center;min-width:44px;height:44px;border-radius:999px;background:linear-gradient(135deg,#4da8da,#7bc7ea);color:#fff;font-weight:800}.cta-strip{display:flex;align-items:center;justify-content:space-between;gap:18px;background:linear-gradient(135deg,#103c55,#1d5f84);color:#fff;border-radius:24px;padding:24px 26px;margin-top:8px}.cta-strip-button{display:inline-flex;align-items:center;justify-content:center;padding:14px 18px;border-radius:999px;background:#fff;color:#0d3e5b;font-weight:800;text-decoration:none}.trip-hero-cta{display:flex;flex-wrap:wrap;gap:12px;margin-top:18px}.trip-hero-cta a{display:inline-flex;align-items:center;justify-content:center;padding:13px 18px;border-radius:999px;text-decoration:none;font-weight:800;border:1px solid rgba(255,255,255,.35)}.trip-hero-cta .primary{background:#fff;color:#0d3e5b;border-color:#fff}.trip-hero-cta .secondary{background:rgba(255,255,255,.12);color:#fff}.trip-cta-box{margin-top:22px;padding:20px;border-radius:22px;background:linear-gradient(180deg,#f8fbfd,#eef7fc);border:1px solid rgba(77,168,218,.18)}.trip-cta-actions{display:flex;flex-wrap:wrap;gap:10px}.trip-cta-actions a{display:inline-flex;align-items:center;justify-content:center;padding:12px 16px;border-radius:999px;text-decoration:none;font-weight:800}.trip-cta-actions .primary{background:#103c55;color:#fff}.trip-cta-actions .secondary{background:#fff;color:#103c55;border:1px solid rgba(16,60,85,.12)}.crm-note{margin:6px 0 0;color:#486273;font-size:.95rem;line-height:1.55}.mobile-sticky-cta{display:none}@media (max-width:900px){.process-grid,.trust-grid{grid-template-columns:1fr}.cta-strip{flex-direction:column;align-items:flex-start}.elevated-wrap{padding:24px}}@media (max-width:760px){.mobile-sticky-cta{display:flex;position:fixed;left:12px;right:12px;bottom:12px;z-index:9999;background:rgba(16,60,85,.96);border-radius:18px;padding:10px;gap:10px;box-shadow:0 20px 40px rgba(0,0,0,.22)}.mobile-sticky-cta a{flex:1;display:inline-flex;align-items:center;justify-content:center;text-decoration:none;padding:12px 14px;border-radius:12px;font-weight:800}.mobile-sticky-cta .primary{background:#fff;color:#103c55}.mobile-sticky-cta .secondary{background:rgba(255,255,255,.14);color:#fff}body{padding-bottom:84px}}


.hero,
.info-section,
.why-travel-advisor-section,
.past-trips{
  max-width:1200px;
  margin:0 auto;
  width:100%;
}
.panel.builder,
.form-panel{
  width:100%;
}



:root{
  --main-width:1200px;
}
.hero,
.info-section,
.why-travel-advisor-section,
.past-trips{
  max-width:var(--main-width);
  margin-left:auto;
  margin-right:auto;
  width:100%;
}
@media(max-width:900px){
  :root{
    --main-width:100%;
  }
}



.why-travel-advisor-section{
  margin-top:32px;
}
.why-travel-advisor-section .wrap{
  width:min(100%, 1200px);
  margin:0 auto;
}
.advisor-card{
  padding:34px 34px 30px;
  border-radius:28px;
}
.advisor-card h2{
  margin:0 0 18px;
  line-height:1.15;
}
.advisor-copy p{
  margin:0 0 24px;
  line-height:1.82;
  max-width:72ch;
}
.advisor-points{
  display:grid;
  gap:0;
}
.advisor-points .point{
  display:grid;
  gap:10px;
  padding:18px 0;
  border-top:1px solid rgba(32,49,66,.10);
}
.advisor-points .point:first-child{
  border-top:none;
  padding-top:0;
}
.advisor-points .point strong{
  display:block;
  line-height:1.35;
  letter-spacing:.01em;
}
.advisor-points .point span{
  display:block;
  line-height:1.82;
}
footer.site-footer,
.site-footer{
  max-width:1200px;
  width:100%;
  margin:28px auto 18px !important;
  padding:22px 24px !important;
  gap:16px;
  align-items:center;
  justify-content:space-between;
  text-align:left !important;
}
.site-footer .footer-left,
.site-footer .footer-right{
  width:auto !important;
}
.site-footer .footer-left{
  gap:10px;
}
.site-footer .footer-right{
  gap:10px;
  justify-content:flex-end !important;
}
@media (max-width: 760px){
  .advisor-card{
    padding:24px 20px 22px;
  }
  .advisor-card h2{
    margin-bottom:14px;
  }
  .advisor-copy p{
    margin-bottom:18px;
    line-height:1.72;
  }
  .advisor-points .point{
    gap:8px;
    padding:15px 0;
  }
  footer.site-footer,
  .site-footer{
    text-align:center !important;
    padding:18px 16px !important;
  }
  .site-footer .footer-left,
  .site-footer .footer-right{
    width:100% !important;
    justify-content:center !important;
  }
}



/* ensure hero uses same container width */
.hero{
  max-width: var(--main-width);
  margin-left:auto;
  margin-right:auto;
  width:100%;
}

/* make inner panels span full width of container */
.hero .panel.builder,
.hero .form-panel{
  width:100%;
  max-width:100%;
}

/* remove any accidental inner max-width constraints */
.panel.builder,
.form-panel{
  max-width:100%;
}

/* consistent inner padding */
.hero .panel{
  padding-left:24px;
  padding-right:24px;
}
@media(max-width:900px){
  .hero .panel{
    padding-left:16px;
    padding-right:16px;
  }
}



html,body{max-width:100%;overflow-x:hidden}
img,svg,video,canvas,iframe{max-width:100%;height:auto}
input,select,textarea,button{font:inherit}
@media (max-width: 900px){
  :root{--mobile-gutter:14px}
  .wrap,.page,.container,.hero,.past-trips,.info-section,.why-travel-advisor-section,section,
  .site-footer,footer.site-footer,footer,.topbar{
    width:calc(100% - (var(--mobile-gutter) * 2)) !important;
    max-width:none !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }
  .page{padding-top:92px !important;padding-bottom:108px !important}
  .topbar{
    left:50% !important;transform:translateX(-50%) !important;
    height:68px !important;padding:8px 12px !important;gap:10px !important;
    border-radius:18px !important;justify-content:center !important;
  }
  .brand{width:100% !important;justify-content:center !important;margin:0 !important}
  .brand img{max-width:min(84vw,340px) !important;height:auto !important;max-height:48px !important}
  .nav{display:none !important}
  .hero-grid,.content-grid,.section-grid,.advisor-grid,.split,.split-grid,.two-col,.two-column,
  .trip-layout,.trip-row,.trip-section,.builder-grid,.form-grid{
    grid-template-columns:1fr !important;display:grid !important;gap:14px !important;
  }
  .hero-copy,.hero-image,.hero-card,.panel,.builder,.form-panel,.card,.advisor-card,
  article,.sidebar,.mini,.tip-box,.cta-strip,.trip-card{
    min-height:0 !important;height:auto !important;
  }
  .panel,.builder,.form-panel,.card,.advisor-card,.hero-copy,.hero-image,
  .quiz-shell,.trip-content,.trip-copy,.info-card,.cta-strip{
    padding:18px !important;
  }
  .hero{padding-top:10px !important}
  .hero h1,.hero-h1,h1{font-size:clamp(1.9rem,7.2vw,2.8rem) !important;line-height:1.08 !important}
  h2{font-size:clamp(1.45rem,5.8vw,2.05rem) !important;line-height:1.14 !important}
  h3{font-size:clamp(1.06rem,4.7vw,1.3rem) !important;line-height:1.24 !important}
  p,li,span,label,input,select,textarea{font-size:15px !important;line-height:1.65 !important}
  .builder-intro,.hero p,.advisor-copy p,.section-copy,.question-copy{max-width:none !important}
  .question-title br{display:none}
  .choices,.quiz-options,.choice-grid{
    display:grid !important;grid-template-columns:repeat(2,minmax(0,1fr)) !important;gap:10px !important;
  }
  .choice,.choices button,.quiz-options button,.btn,.button,button[type="submit"]{
    min-height:52px !important;
  }
  .controls{display:grid !important;grid-template-columns:1fr 1fr !important;gap:10px !important}
  .controls .btn,.controls button{width:100% !important}
  .advisor-copy p{margin-bottom:22px !important}
  .advisor-points{gap:2px !important}
  .advisor-points .point{padding:16px 0 !important;gap:8px !important}
  .past-trips-grid,.trip-grid,.trips-grid,.destination-grid,.card-grid,.postcard-grid,.vacation-grid,.deals-grid{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;gap:12px !important;
  }
  .trip-card,.trip-box,.destination-card,.postcard,.vacation-card,.deal-card,.travel-card{min-height:180px !important}
  .trip-card img,.trip-box img,.destination-card img,.postcard img,.vacation-card img,.deal-card img,.travel-card img,
  .hero-image img,.image-box img,.photo-box img,.trip-image img,.trip-photo img,.media-box img{
    width:100% !important;height:auto !important;min-height:220px !important;max-height:320px !important;object-fit:cover !important;
  }
  .sidebar{position:static !important;top:auto !important;order:2 !important}
  .site-footer,footer.site-footer,footer{
    width:calc(100% - 20px) !important;max-width:none !important;
    margin:18px auto 18px !important;padding:18px 16px !important;
    border-radius:18px !important;justify-content:center !important;text-align:center !important;gap:12px !important;
  }
  .site-footer .footer-left,.site-footer .footer-right,.footer-left,.footer-right{
    width:100% !important;justify-content:center !important;gap:10px !important;flex-wrap:wrap !important;
  }
  .footer-separator{display:none !important}
  .footer-icon{width:40px !important;height:40px !important}
}
@media (max-width: 640px){
  :root{--mobile-gutter:10px}
  .page{padding-top:88px !important;padding-bottom:100px !important}
  .topbar{height:64px !important;padding:8px 10px !important}
  .wrap,.page,.container,.hero,.past-trips,.info-section,.why-travel-advisor-section,section,.topbar{
    width:calc(100% - 20px) !important;
  }
  .panel,.builder,.form-panel,.card,.advisor-card,.hero-copy,.hero-image,.quiz-shell,.cta-strip{
    padding:16px !important;border-radius:20px !important;
  }
  .choices,.quiz-options,.choice-grid,
  .past-trips-grid,.trip-grid,.trips-grid,.destination-grid,.card-grid,.postcard-grid,.vacation-grid,.deals-grid{
    grid-template-columns:1fr !important;
  }
  .controls{grid-template-columns:1fr !important}
  .btn,.button,button[type="submit"]{width:100% !important}
  .trip-card,.trip-box,.destination-card,.postcard,.vacation-card,.deal-card,.travel-card{min-height:196px !important}
  .hero-image img,.trip-card img,.trip-box img,.destination-card img,.postcard img,.vacation-card img,.deal-card img,.travel-card img,
  .image-box img,.photo-box img,.trip-image img,.trip-photo img,.media-box img{min-height:210px !important;max-height:280px !important}
  .site-footer,footer.site-footer,footer{width:calc(100% - 16px) !important;padding:16px 14px !important}
}



:focus-visible{outline:3px solid rgba(77,168,218,.45);outline-offset:3px}
img{height:auto}
footer.site-footer,.footer-container{max-width:min(1120px,calc(100% - 32px));margin-left:auto;margin-right:auto}
@media (max-width:640px){footer.site-footer,.footer-container{max-width:calc(100% - 20px)}}



.trust-bar{width:min(1120px,calc(100% - 32px));margin:14px auto 0;padding:12px 16px;border:1px solid rgba(77,168,218,.18);background:linear-gradient(180deg,rgba(255,255,255,.94),rgba(240,248,255,.92));border-radius:18px;box-shadow:0 10px 28px rgba(20,49,72,.06)}
.trust-bar-inner{display:flex;align-items:center;justify-content:center;gap:18px;flex-wrap:wrap;font-size:.95rem;font-weight:700;color:#21465f;text-align:center}
.trust-bar-inner span{display:inline-flex;align-items:center;gap:8px}
.footer-contact{display:inline-flex;align-items:center;gap:8px;font-weight:700;color:inherit;text-decoration:none}
.footer-contact:hover{text-decoration:none;color:var(--text,#173247)}
.footer-contact svg{width:16px;height:16px;fill:currentColor;display:block}
.planner-note{margin:14px 0 0;padding:14px 16px;border-radius:16px;border:1px solid rgba(77,168,218,.14);background:linear-gradient(180deg,rgba(247,251,254,.96),rgba(238,245,251,.96));color:#31566f;font-size:.95rem;line-height:1.6}
.planner-note strong{color:#173247}
.micro-proof{margin-top:12px;font-size:.92rem;color:#5d7487}
@media (max-width:640px){.trust-bar{width:calc(100% - 20px);margin-top:10px;padding:11px 12px}.trust-bar-inner{gap:10px;font-size:.88rem}.planner-note{padding:12px 13px;font-size:.92rem}.footer-contact{justify-content:center}}



input[name="_honey"],
input[name="_gotcha"],
input[name="website"]{
  display:none !important;
  visibility:hidden !important;
  position:absolute !important;
  left:-9999px !important;
}



.unlock-screen.show{
  scroll-margin-top: 96px;
}
