* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; }
::selection { background: #DDA84A; color: #0C1026; }

@keyframes mt-float { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-12px) rotate(-2deg); } }
@keyframes mt-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes mt-twinkle { 0%,100% { opacity: 0.25; } 50% { opacity: 0.9; } }

/* Hover states (the mockups used a non-standard style-hover attribute) */
.cta-gold:hover { background: #EBC477 !important; }
.cta-dark:hover { background: #2E1A47 !important; }
.cta-outline:hover { border-color: #DDA84A !important; }
.cta-ghost:hover { background: #14122B !important; color: #F4EDDF !important; }
.foot-link:hover { color: #DDA84A !important; }
/* declutter headers on small screens — the footer still credits Draconx */
@media (max-width: 560px) { .nav-draconx { display: none !important; } }

/* Site footer */
.site-footer {
  background: #080B1C;
  padding: 56px clamp(20px, 5vw, 64px);
  border-top: 1px solid #1C1840;
}
.site-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 28px 20px;
  justify-content: space-between;
  align-items: center;
}
.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-footer__logo {
  font-family: 'Newsreader', serif;
  font-size: 20px;
}
.site-footer__logo-a { color: #F4EDDF; }
.site-footer__logo-b { color: #DDA84A; }
.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  font-size: 14px;
}
.site-footer__nav .foot-link {
  color: #8C88A8;
  text-decoration: none;
}
.site-footer__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.site-footer__draconx {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: #8C88A8;
  font-size: 13px;
  flex: none;
}
.site-footer__draconx span { letter-spacing: 0.04em; }
.site-footer__draconx img {
  height: 24px;
  width: auto;
  display: block;
  opacity: 0.9;
}
.site-footer__divider {
  width: 1px;
  height: 18px;
  background: #2A2650;
  flex: none;
}
.site-footer__copy {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #5A5676;
  line-height: 1.5;
}

.site-footer--simple { padding: 40px clamp(20px, 5vw, 48px); text-align: center; }
.site-footer--simple .site-footer__inner { justify-content: center; }

@media (max-width: 720px) {
  .site-footer { padding: 40px 20px 36px; }
  .site-footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }
  .site-footer__nav {
    justify-content: center;
    gap: 10px 20px;
  }
  .site-footer__meta {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 320px;
  }
  .site-footer__divider { display: none; }
  .site-footer__copy {
    letter-spacing: 0.04em;
    text-wrap: balance;
  }
}

/* Avatar fallback for reveal stories */
.mt-avatar {
  width: 60px; height: 60px; flex: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  font-family: 'Newsreader', serif; font-size: 22px; color: #14122B;
  background: radial-gradient(circle at 38% 34%, #EBC477, #C2882E);
}
.mt-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mt-avatar--rosa img { object-position: 50% 35%; }
.mt-avatar--daniel img { object-position: 72% 40%; }
.mt-avatar--aisha img { object-position: 28% 40%; }

.hero-trust__faces {
  display: flex;
  align-items: center;
}
.hero-trust__face {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #0C1026;
  display: block;
  background: #14122B;
}
.hero-trust__face + .hero-trust__face { margin-left: -9px; }
.hero-trust__face--rosa { object-position: 50% 35%; }
.hero-trust__face--daniel { object-position: 72% 40%; }
.hero-trust__face--aisha { object-position: 28% 40%; }

/* Quiz form */
.q-field { margin-bottom: 26px; }
.q-label { display: block; font-size: 14px; font-weight: 600; color: #F4EDDF; margin-bottom: 9px; }
.q-hint { font-size: 13px; color: #8C88A8; margin: -2px 0 9px; }
.q-input, .q-textarea, .q-select {
  width: 100%; background: #100C2A; border: 1px solid #2A2650; border-radius: 12px;
  color: #F4EDDF; font-family: 'Hanken Grotesk', sans-serif; font-size: 15px;
  padding: 13px 15px; outline: none; transition: border-color 0.2s ease;
}
.q-input:focus, .q-textarea:focus, .q-select:focus { border-color: #DDA84A; }
.q-input::placeholder, .q-textarea::placeholder { color: #6B6788; }
.q-textarea { min-height: 96px; resize: vertical; }
.q-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .q-row { grid-template-columns: 1fr; } }

.q-choices { display: flex; flex-wrap: wrap; gap: 10px; }
.q-chip { position: relative; }
.q-chip input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.q-chip span {
  display: inline-block; padding: 10px 16px; border-radius: 999px;
  border: 1px solid #2A2650; background: #100C2A; color: #C7C3D6;
  font-size: 14px; cursor: pointer; transition: all 0.15s ease; user-select: none;
}
.q-chip input:checked + span { border-color: #DDA84A; background: rgba(221,168,74,0.14); color: #F4EDDF; }
.q-chip input:focus-visible + span { outline: 2px solid #DDA84A; outline-offset: 2px; }

.q-pkg { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .q-pkg { grid-template-columns: 1fr; } }
.q-pkg label { position: relative; cursor: pointer; }
.q-pkg input { position: absolute; opacity: 0; }
.q-pkg .card {
  border: 1px solid #2A2650; background: #100C2A; border-radius: 16px; padding: 22px 22px 20px;
  transition: all 0.15s ease; height: 100%;
}
.q-pkg input:checked + .card { border-color: #DDA84A; background: rgba(221,168,74,0.08); }
.q-pkg .card .name { font-family: 'Newsreader', serif; font-size: 22px; color: #F4EDDF; }
.q-pkg .card .price { color: #DDA84A; font-size: 15px; margin: 4px 0 8px; }
.q-pkg .card .desc { font-size: 13px; color: #9A95B5; line-height: 1.5; }

.q-error { color: #E58A8A; font-size: 14px; margin: 0 0 18px; }
.btn-submit {
  width: 100%; background: #DDA84A; color: #14122B; font-weight: 600; font-size: 16px;
  border: none; padding: 17px; border-radius: 999px; cursor: pointer; transition: background 0.2s ease;
  font-family: 'Hanken Grotesk', sans-serif;
}
.btn-submit:hover { background: #EBC477; }
.btn-submit:disabled { opacity: 0.6; cursor: default; }

/* ---- Responsive: stack fixed two-column sections & contain fixed-width cards ---- */
/* Cap fixed-width cards so they never overflow narrow screens */
.hero-pass { max-width: 100%; }
.included-card { max-width: 100%; }
img, svg { max-width: 100%; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr !important; gap: 44px !important; }
  .included-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
}

/* ============ Journey / four steps ============ */
.journey {
  position: relative;
  background: #F4EDDF;
  color: #14122B;
  padding: clamp(80px, 11vw, 140px) clamp(20px, 5vw, 64px);
  overflow: hidden;
}
.journey__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(221,168,74,0.12), transparent 55%),
    radial-gradient(ellipse 40% 35% at 100% 80%, rgba(154,123,51,0.08), transparent 50%);
  pointer-events: none;
}
.journey__inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
}
.journey__head {
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 72px);
}
.journey__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: 17px;
  color: #9A7B33;
}
.journey__eyebrow span {
  width: 30px;
  height: 1px;
  background: #9A7B33;
}
.journey__title {
  font-family: 'Newsreader', serif;
  font-weight: 400;
  font-size: clamp(32px, 5vw, 58px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 18px;
  color: #14122B;
  text-wrap: balance;
}
.journey__lede {
  max-width: 560px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.65;
  color: #4A4660;
}
.journey__track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.journey-step {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 24px;
  padding-bottom: 40px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.journey-step.is-visible {
  opacity: 1;
  transform: none;
}
.journey-step:last-child { padding-bottom: 0; }
.journey-step::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(154,123,51,0.45), rgba(154,123,51,0.12));
}
.journey-step:last-child::before { display: none; }
.journey-step__node {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid rgba(154,123,51,0.35);
  box-shadow: 0 4px 16px rgba(20,18,43,0.08);
}
.journey-step__node span {
  font-family: 'Newsreader', serif;
  font-size: 18px;
  font-weight: 500;
  color: #9A7B33;
  letter-spacing: 0.04em;
}
.journey-step__node--finale {
  background: linear-gradient(145deg, #DDA84A, #B07F2E);
  border-color: #EBC477;
  box-shadow: 0 8px 24px rgba(221,168,74,0.35);
  animation: journey-pulse 2.8s ease-in-out infinite;
}
.journey-step__node--finale span { color: #14122B; }
@keyframes journey-pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(221,168,74,0.28); }
  50% { box-shadow: 0 10px 32px rgba(221,168,74,0.45); }
}
.journey-step__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 0;
  background: #fff;
  border: 1px solid rgba(20,18,43,0.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(20,18,43,0.08);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.journey-step__card:hover {
  border-color: rgba(221,168,74,0.35);
  transform: translateY(-2px);
  box-shadow: 0 20px 56px rgba(20,18,43,0.12);
}
.journey-step__card--finale {
  background: linear-gradient(145deg, #fff, #FFF9EE);
  border-color: rgba(221,168,74,0.35);
}
.journey-step--reverse .journey-step__card {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
}
.journey-step--reverse .journey-step__art { order: 2; }
.journey-step--reverse .journey-step__body { order: 1; }
.journey-step__art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  min-height: 260px;
  background: transparent;
  border-right: 1px solid rgba(20,18,43,0.06);
}
.journey-step--reverse .journey-step__art {
  border-right: none;
  border-left: 1px solid rgba(20,18,43,0.06);
}
.journey-step__img {
  width: 100%;
  max-width: 320px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}
.journey-step__badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(255,255,255,0.92);
  color: #14122B;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(20,18,43,0.08);
  backdrop-filter: blur(8px);
}
.journey-step__badge--gold {
  background: rgba(221,168,74,0.18);
  border-color: rgba(221,168,74,0.4);
  color: #14122B;
}
.journey-step__body {
  padding: clamp(24px, 4vw, 36px) clamp(22px, 4vw, 32px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.journey-step__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: 15px;
  color: #9A7B33;
}
.journey-step__label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: #9A7B33;
}
.journey-step__heading {
  font-family: 'Newsreader', serif;
  font-weight: 400;
  font-size: clamp(24px, 3.2vw, 34px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 12px;
  color: #14122B;
}
.journey-step__text {
  font-size: 15px;
  line-height: 1.7;
  color: #4A4660;
  margin: 0 0 18px;
}
.journey-step__perk {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #9A7B33;
}
.journey-step__perk span:first-child { color: #7BA86A; }
.journey__cta {
  text-align: center;
  margin-top: clamp(48px, 7vw, 64px);
}
.journey__cta-btn {
  display: inline-block;
  background: #14122B;
  color: #F4EDDF;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 34px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.journey__cta-btn:hover {
  background: #2E1A47;
  transform: translateY(-1px);
}

@media (max-width: 720px) {
  .journey-step {
    grid-template-columns: 44px 1fr;
    gap: 0 16px;
    padding-bottom: 32px;
  }
  .journey-step::before { left: 21px; top: 44px; }
  .journey-step__node {
    width: 44px;
    height: 44px;
  }
  .journey-step__node span { font-size: 15px; }
  .journey-step__card,
  .journey-step--reverse .journey-step__card {
    grid-template-columns: 1fr;
  }
  .journey-step--reverse .journey-step__art,
  .journey-step--reverse .journey-step__body { order: unset; }
  .journey-step__art {
    min-height: 180px;
    border-right: none;
    border-bottom: 1px solid rgba(244,237,223,0.06);
  }
  .journey-step--reverse .journey-step__art {
    border-left: none;
    border-bottom: 1px solid rgba(244,237,223,0.06);
  }
  .journey__title br { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .journey-step {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .journey-step__node--finale { animation: none; }
}

/* Hero fits the viewport even on short (laptop) screens — tighten vertical
   rhythm progressively as the window gets shorter so nothing spills the fold. */
@media (max-height: 820px) {
  #top { padding-top: clamp(16px,2.4vh,40px) !important; padding-bottom: clamp(16px,2.4vh,40px) !important; }
  .hero-title { margin-bottom: 16px !important; }
  .hero-copy { margin-bottom: 22px !important; }
  .hero-trust { margin-top: 20px !important; }
}
@media (max-height: 680px) {
  .hero-copy { font-size: 15px !important; line-height: 1.5 !important; margin-bottom: 16px !important; }
  .hero-trust { margin-top: 14px !important; }
}

/* ============ One-question-per-page wizard ============ */
.wz-shell { min-height: 100vh; display: flex; flex-direction: column; }
.wz-top {
  position: sticky; top: 0; z-index: 30; background: rgba(12,16,38,0.9); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(221,168,74,0.14);
}
.wz-topbar { display: flex; align-items: center; justify-content: space-between; padding: 14px clamp(20px,5vw,48px); }
.wz-progress { height: 3px; background: #1C1840; }
.wz-bar { height: 100%; width: 0; background: linear-gradient(90deg, #B07F2E, #DDA84A); transition: width 0.4s ease; }

.wz-main { flex: 1; display: flex; padding: clamp(32px,6vh,72px) clamp(20px,5vw,40px) clamp(28px,5vw,48px); }
.wz-stage { width: 100%; max-width: 620px; margin: 0 auto; }
.wz-step { animation: wz-in 0.35s ease; }
@keyframes wz-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

.wz-eyebrow { font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; color: #DDA84A; font-weight: 600; margin-bottom: 18px; }
.wz-q { font-family: 'Newsreader', serif; font-weight: 400; font-size: clamp(26px,4.2vw,40px); line-height: 1.15; letter-spacing: -0.015em; color: #F4EDDF; margin: 0 0 12px; }
.wz-hint { font-size: 14px; line-height: 1.6; color: #9A95B5; margin: 0 0 26px; }
.wz-required { color: #DDA84A; }

/* choices reuse .q-chip; stack them as full-width rows for single-select clarity */
.wz-options { display: flex; flex-direction: column; gap: 12px; }
.wz-opt { position: relative; }
.wz-opt input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.wz-opt > span {
  display: flex; align-items: center; gap: 14px; padding: 16px 20px; border-radius: 14px;
  border: 1px solid #2A2650; background: #100C2A; color: #D7D3E4; font-size: 16px; cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.wz-opt > span::before {
  content: ''; width: 20px; height: 20px; border-radius: 50%; border: 2px solid #3C3766; flex: none; transition: all 0.15s ease;
}
.wz-opt.multi > span::before { border-radius: 6px; }
.wz-opt input:checked + span { border-color: #DDA84A; background: rgba(221,168,74,0.1); color: #F4EDDF; }
.wz-opt input:checked + span::before { border-color: #DDA84A; background: #DDA84A; box-shadow: inset 0 0 0 4px #100C2A; }
.wz-opt input:focus-visible + span { outline: 2px solid #DDA84A; outline-offset: 2px; }

/* compact pill grid for long option lists (countries, airports, traits) */
.wz-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.wz-grid .wz-opt > span { padding: 11px 16px; border-radius: 999px; font-size: 14px; }
.wz-grid .wz-opt > span::before { display: none; }

/* rating 1-5 */
.wz-rating { display: flex; gap: 10px; }
.wz-rating .wz-opt { flex: 1; }
.wz-rating .wz-opt > span { justify-content: center; padding: 18px 0; font-family: 'Newsreader', serif; font-size: 22px; }
.wz-rating .wz-opt > span::before { display: none; }
.wz-scale { display: flex; justify-content: space-between; font-size: 12px; color: #6B6788; margin-top: 10px; letter-spacing: 0.04em; }

.wz-note { display: flex; gap: 12px; align-items: flex-start; background: rgba(221,168,74,0.08); border: 1px solid rgba(221,168,74,0.24); border-radius: 12px; padding: 14px 16px; margin-top: 20px; font-size: 13px; line-height: 1.55; color: #D6CDE2; }
.wz-error { color: #E58A8A; font-size: 14px; margin: 16px 0 0; min-height: 18px; }

/* section / intro screens */
.wz-section { text-align: center; }
.wz-illus { width: 100%; max-width: 320px; margin: 0 auto 26px; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.wz-illus img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wz-illus--rating { max-width: 200px; aspect-ratio: 1/1; margin: 0 0 22px; border-radius: 16px; }

/* action block — sits directly below the question */
.wz-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; margin-top: 30px; }
.wz-actions.center { align-items: center; }
.wz-next {
  background: #DDA84A; color: #14122B; font-weight: 600; font-size: 16px; border: none;
  padding: 15px 40px; border-radius: 999px; cursor: pointer; font-family: 'Hanken Grotesk', sans-serif;
  transition: background 0.2s ease;
}
.wz-next:hover { background: #EBC477; }
.wz-next:disabled { opacity: 0.55; cursor: default; }
.wz-back { background: none; border: none; color: #9A95B5; font-family: 'Hanken Grotesk', sans-serif; font-size: 14px; cursor: pointer; padding: 4px 2px; }
.wz-back:hover { color: #F4EDDF; }
.wz-back[hidden] { display: none; }

/* consent */
.wz-consent { display: flex; gap: 14px; align-items: flex-start; background: #100C2A; border: 1px solid #2A2650; border-radius: 14px; padding: 20px; cursor: pointer; }
.wz-consent input { width: 20px; height: 20px; margin-top: 2px; accent-color: #DDA84A; flex: none; }
.wz-consent a { color: #DDA84A; }

@media (max-width: 480px) {
  .wz-rating { gap: 7px; }
  .wz-rating .wz-opt > span { padding: 14px 0; font-size: 19px; }
}

/* On small phones, tighten the boarding-pass card so it fits with margins */
@media (max-width: 380px) {
  .hero-pass { width: 100% !important; }
}
