/* Journeys with JB — shared styles (extracted v118). Loaded before each page's inline styles. */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
      /* Natural Light — sage system (2026-07-12) */
      --oat:         #E0D6C5;
      --linen:       #EAE1D2;
      --warmwhite:   #FBF7EF;
      --bone:        #F6F1E7;
      --stone:       #C8BBA6;
      --clay:        #A2957F;
      --cocoa:       #645648;
      --walnut:      #44392D;
      --sage:        #5E6E4A;
      --sage-dk:     #4E5A3E;
      --cream:       #EAE1D2;
      --warm-white:  #FBF7EF;
      --sand:        #C8BBA6;
      --taupe:       #A2957F;
      --gold:        #5E6E4A;
      --gold-light:  #5E6E4A;
      --deep:        #44392D;
      --charcoal:    #645648;
      --muted:       #857A68;
      --muted-text: #6E6353;
      --accent-dark: #EAE1D2;
      --warm-gold:   #5E6E4A;
      --warm-gold-dk: #4E5A3E;
      --error: #b0473e;

      --font-display: 'Playfair Display', Georgia, serif;
      --font-body:    'Raleway', sans-serif;
      --font-elegant: 'Cormorant Garamond', Georgia, serif;
      --text-xs: 0.75rem;
      --text-sm: 0.9rem;
      --text-base: 1rem;
      --text-md: 1.15rem;
      --text-lg: 1.4rem;

      --max-w: 1100px;
      --section-pad: 90px 24px;
    }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
      font-family: var(--font-body);
      background: var(--oat);
      color: var(--charcoal);
      line-height: 1.7;
      font-size: var(--text-base);
      overflow-x: hidden;
    }

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

a, p, li, td, .contact-detail-text { overflow-wrap: break-word; }

header[role="banner"] { position: sticky; top: 0; z-index: 100; }
nav {
      position: sticky; top: 0; z-index: 100;
      background: rgba(251,247,239,0.96);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--sand);
      padding: 0 40px;
    }

.nav-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
    }

.nav-logo {
      font-family: var(--font-display);
      font-size: var(--text-md);
      font-weight: 600;
      letter-spacing: 0.03em;
      color: var(--deep);
    }

.nav-logo span { color: var(--gold); }

.nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none;
    }

.nav-links a {
      font-size: var(--text-xs);
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted-text);
      transition: color 0.2s;
    }

.nav-links a:hover { color: var(--gold); }

.nav-links a.nav-active { color: var(--gold); }

.nav-dropdown { position: relative; }

.nav-dropdown-toggle {
      font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--muted-text);
      cursor: pointer; background: none; border: none; outline: none;
      font-family: var(--font-body); line-height: 1;
      display: flex; align-items: center; gap: 5px;
      padding: 0; transition: color 0.2s;
    }

.nav-dropdown-toggle:focus-visible { outline: 2px solid var(--warm-gold); outline-offset: 3px; border-radius: 2px; }

.nav-dropdown-toggle::after {
      content: ''; display: inline-block;
      width: 0; height: 0;
      border-left: 4px solid transparent;
      border-right: 4px solid transparent;
      border-top: 4px solid currentColor;
      transition: transform 0.2s;
    }

.nav-dropdown:hover .nav-dropdown-toggle,
    .nav-dropdown.open .nav-dropdown-toggle { color: var(--gold); }

.nav-dropdown.open .nav-dropdown-toggle::after { transform: rotate(180deg); }

.nav-dropdown-menu {
      position: absolute;
      top: calc(100% + 14px);
      left: 50%;
      transform: translateX(-50%);
      background: #fff;
      border: 1px solid var(--sand);
      border-radius: 4px;
      box-shadow: 0 8px 28px rgba(68,57,45,0.12);
      min-width: 200px;
      opacity: 0; pointer-events: none;
      transform: translateX(-50%) translateY(-6px);
      transition: opacity 0.2s, transform 0.2s;
      z-index: 200;
    }

.nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown.open .nav-dropdown-menu {
      opacity: 1; pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }

.nav-dropdown-menu a {
      display: block; padding: 11px 18px;
      font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--muted-text);
      border-bottom: 1px solid var(--sand);
      transition: color 0.2s, background 0.2s;
    }

.nav-dropdown-menu a:last-child { border-bottom: none; }

.nav-dropdown-menu a:hover { color: var(--deep); background: var(--cream); }

.nav-dropdown-menu::before {
      content: ''; position: absolute; top: -8px; left: 50%;
      transform: translateX(-50%);
      border-left: 8px solid transparent;
      border-right: 8px solid transparent;
      border-bottom: 8px solid var(--sand);
    }

.nav-dropdown-menu::after {
      content: ''; position: absolute; top: -7px; left: 50%;
      transform: translateX(-50%);
      border-left: 7px solid transparent;
      border-right: 7px solid transparent;
      border-bottom: 7px solid #fff;
    }

.nav-cta {
      background: var(--warm-gold);
      color: var(--bone) !important;
      padding: 9px 22px;
      border-radius: 2px;
      font-size: var(--text-xs) !important;
      font-weight: 600 !important;
      letter-spacing: 0.14em !important;
      transition: background 0.2s !important;
    }

.nav-cta:hover { background: var(--warm-gold-dk) !important; }

.nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 11px;
      background: none;
      border: none;
    }

.nav-hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--charcoal);
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
    }

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }

.nav-hamburger.open span:nth-child(2) { opacity: 0; }

.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
      display: none;
      flex-direction: column;
      background: rgba(251,247,239,0.98);
      border-top: 1px solid var(--sand);
      padding: 24px 28px 28px;
      gap: 4px;
    }

.nav-mobile.open { display: flex; }

.nav-mobile a {
      font-size: var(--text-sm);
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted-text);
      padding: 14px 0;
      border-bottom: 1px solid var(--sand);
      transition: color 0.2s;
    }

.nav-mobile a:last-child { border-bottom: none; }

.nav-mobile .nav-divider { height: 1px; background: var(--sand); margin: 8px 0; }

.nav-mobile a:hover { color: var(--gold); }

.nav-mobile .nav-cta {
      margin-top: 12px;
      text-align: center;
      border-bottom: none !important;
    }

section { padding: var(--section-pad); }

.container {
      max-width: var(--max-w);
      margin: 0 auto;
    }

.section-label {
      font-size: var(--text-xs);
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
      display: block;
    }

.section-title {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 500;
      color: var(--deep);
      line-height: 1.25;
    }

.section-title em {
      font-style: italic;
      color: var(--gold);
    }

.divider {
      width: 48px;
      height: 1px;
      background: var(--gold);
      margin: 20px 0 28px;
    }

.divider.centered { margin: 20px auto 28px; }

.stats-bar {
      background: var(--bone);
      padding: 16px 0;
    }

.stats-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      display: flex;
      align-items: stretch;
      justify-content: center;
      padding: 0 24px;
    }

.stat-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 32px 48px;
      text-align: center;
    }

.stat-number {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 500;
      color: var(--walnut);
      line-height: 1;
      margin-bottom: 6px;
    }

.stat-number span {
      color: var(--warm-gold);
      font-size: var(--text-lg);
    }

.stat-label {
      font-size: var(--text-xs);
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted-text);
    }

.stat-divider {
      width: 1px;
      background: rgba(68,57,45,0.12);
      margin: 20px 0;
      flex-shrink: 0;
    }

@media (max-width: 700px) {
      .stats-inner { flex-wrap: wrap; }
      .stat-item { padding: 24px 28px; flex: 1 1 45%; }
      .stat-divider { display: none; }
      .steps-grid { grid-template-columns: 1fr !important; gap: 0; }
      .steps-grid::before { display: none; }
      .step { display: flex !important; flex-direction: row !important; align-items: flex-start !important; gap: 18px; text-align: left !important; padding: 20px 0 !important; border-bottom: 1px solid var(--sand); }
      .step:last-child { border-bottom: none; }
      .step-number { width: 44px !important; height: 44px !important; flex-shrink: 0; font-size: var(--text-base); margin: 0 !important; }
      .step h3 { margin-bottom: 6px; }
    }

#how-it-works { background: var(--warm-white); text-align: center; padding: 90px 24px; }

.steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      margin-top: 56px;
      position: relative;
    }

.steps-grid::before {
      content: '';
      position: absolute;
      top: 32px;
      left: 12.5%;
      width: 75%;
      height: 1px;
      background: var(--sand);
      z-index: 0;
    }

.step {
      padding: 0 20px;
      position: relative;
      z-index: 1;
    }

.step-number {
      width: 64px; height: 64px;
      background: var(--warm-white);
      border: 1px solid var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 22px;
      font-family: var(--font-display);
      font-size: var(--text-md);
      color: var(--gold);
    }

.step h3 {
      font-family: var(--font-display);
      font-size: var(--text-base);
      font-weight: 500;
      color: var(--deep);
      margin-bottom: 10px;
    }

.step p {
      font-size: var(--text-sm);
      color: var(--charcoal);
      line-height: 1.7;
    }

#about { background: var(--cream); padding: 90px 24px; }

.about-grid {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 72px;
      align-items: center;
    }

.about-img-wrap {
      position: relative;
    }

.about-img-wrap::before {
      content: '';
      position: absolute;
      top: -16px; left: -16px;
      width: 100%; height: 100%;
      border: 1px solid var(--gold);
      border-radius: 2px;
      z-index: 0;
    }

.about-img {
      position: relative; z-index: 1;
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      border-radius: 2px;
      background: var(--sand);
    }

.text-elegant {
      font-family: var(--font-elegant);
      font-style: italic;
      font-size: var(--text-base);
      color: var(--charcoal);
      line-height: 1.75;
    }

.link-gold { color: var(--gold); }

.link-gold:hover { color: var(--warm-gold); }

.quiz-intro-sub { color: var(--muted-text); font-size: var(--text-base); max-width: 520px; margin: 0 auto 2.5rem; line-height: 1.7; }

.faq-a-note { margin-top: 8px; }

.footer-meta { font-size: var(--text-xs); color: var(--clay); line-height: 1.6; }

#trips { background: var(--bone); color: var(--walnut); }

#trips .section-title { color: var(--walnut); }

#trips .section-label { color: var(--warm-gold); }

.trips-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 52px;
    }

.trip-card {
      position: relative;
      overflow: hidden;
      border: none;
      padding: 42px 32px;
      background-size: cover;
      background-position: center;
      transition: transform 0.4s ease;
    }

.trip-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(68,57,45,0.93) 40%, rgba(68,57,45,0.6) 100%);
      z-index: 0;
      transition: background 0.4s;
    }

.trip-card:hover::before { background: linear-gradient(to top, rgba(68,57,45,0.97) 40%, rgba(68,57,45,0.72) 100%); }

.trip-card > * { position: relative; z-index: 1; }

.trips-grid .trip-card:nth-child(1) { background-image: url('../adventure-expedition-travel.webp'); }

.trips-grid .trip-card:nth-child(2) { background-image: url('../honeymoons-milestone-trips.webp'); }

.trips-grid .trip-card:nth-child(3) { background-image: url('../cabo-san-lucas-mexico.webp'); }

.trip-icon {
      width: 48px;
      height: 48px;
      margin-bottom: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(194,206,164,0.6);
      border-radius: 50%;
    }

.trip-icon svg {
      width: 22px;
      height: 22px;
      stroke: #C2CEA4;
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

.trip-card h3 {
      font-family: var(--font-display);
      font-size: var(--text-md);
      font-weight: 500;
      color: #fff;
      margin-bottom: 14px;
      line-height: 1.3;
    }

.trip-card p {
      font-size: var(--text-sm);
      color: rgba(255,255,255,0.72);
      line-height: 1.75;
      margin-bottom: 14px;
    }

.trip-examples {
      font-size: var(--text-xs);
      color: #C2CEA4;
      font-weight: 500;
      letter-spacing: 0.01em;
      line-height: 1.8;
    }

.partners-intro {
      max-width: 700px;
      margin: 0 auto 52px;
      text-align: center;
    }

.partners-intro p { color: var(--muted-text); font-size: var(--text-base); line-height: 1.8; }

.partner-trust-strip {
      display: flex; gap: 16px; justify-content: center;
      margin-bottom: 44px; flex-wrap: wrap;
    }

.partner-trust-badge {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--warm-white); border: 1px solid var(--sand);
      border-radius: 100px; padding: 10px 22px;
      text-decoration: none;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

.partner-trust-badge:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(94,110,74,0.18); }

.partner-trust-badge img {
      height: 22px; width: auto; object-fit: contain;
      filter: grayscale(100%) opacity(0.65); transition: filter 0.3s;
    }

.partner-trust-badge:hover img { filter: grayscale(0%) opacity(1); }

.partner-trust-badge span { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.08em; color: var(--charcoal); }

.logo-cat-label {
      font-size: var(--text-xs); letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--gold); margin: 36px 0 0; display: flex; align-items: center; gap: 14px;
    }

.logo-cat-label::after { content: ''; flex: 1; height: 1px; background: var(--sand); }

.logo-cat-label:first-of-type { margin-top: 0; }

.real-logo-grid {
      display: flex; flex-wrap: wrap;
      justify-content: center; align-items: center;
      column-gap: 22px; row-gap: 14px;
      margin-top: 6px;
    }

.real-logo-cell {
      flex: 0 0 auto;
      width: 215px;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      padding: 22px 16px; min-height: 58px;
      background: transparent; text-decoration: none;
      transition: opacity 0.22s; gap: 8px;
    }

.real-logo-cell img {
      max-width: 158px; max-height: 30px; width: auto; height: auto;
      object-fit: contain;
      opacity: 0.7;
      transition: opacity 0.3s, transform 0.3s;
    }

.real-logo-cell:hover img { opacity: 1; transform: translateY(-2px); }

.logo-grid-wrap {
      border: none; border-radius: 0;
      margin-top: 4px; margin-bottom: 6px;
    }

.faq-item {
      border-top: 1px solid var(--sand);
      padding: 22px 0;
    }

.faq-item:last-child { border-bottom: 1px solid var(--sand); }

.faq-q {
      font-weight: 600;
      font-size: var(--text-base);
      color: var(--charcoal);
      margin-bottom: 10px;
    }

.faq-a {
      font-size: var(--text-sm);
      color: var(--charcoal);
      line-height: 1.8;
    }

#inspiration { background: var(--warm-white); }

.inspiration-intro { max-width: 680px; margin-bottom: 48px; }

.inspiration-intro p { color: var(--muted-text); font-size: var(--text-base); line-height: 1.8; }

.gallery-carousel { position: relative; }

.gallery-track-wrap { overflow: hidden; width: 100%; }

.gallery-track {
      display: flex;
      transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
    }

.gallery-page {
      min-width: 100%;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      align-items: start;
    }

.gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 2px;
      background: var(--sand);
      cursor: pointer;
      display: block;
      text-decoration: none;
      color: inherit;
    }

a.gallery-item:focus-visible {
      outline: 2px solid var(--warm-gold);
      outline-offset: 3px;
    }

.gallery-img {
      width: 100%; height: auto; display: block;
      transition: transform 0.4s ease;
    }

.gallery-item:hover .gallery-img { transform: scale(1.04); }

.gallery-label {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 24px 18px 16px;
      background: linear-gradient(to top, rgba(68,57,45,0.7) 0%, transparent 100%);
      color: #fff;
      font-size: var(--text-xs);
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

.gallery-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-top: 24px;
    }

.gallery-nav-btn {
      background: none;
      border: 1px solid var(--sand);
      border-radius: 50%;
      width: 44px; height: 44px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
    }

.gallery-nav-btn:hover { border-color: var(--warm-gold); background: rgba(94,110,74,0.07); }

.gallery-nav-btn svg { width: 13px; height: 13px; stroke: var(--muted); stroke-width: 2; fill: none; }

.gallery-counter {
      font-size: var(--text-xs);
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted-text);
      min-width: 64px;
      text-align: center;
    }

@media (max-width: 700px) {
      /* Mobile single-photo slide — JS wraps each item in .gallery-mobile-page */
      .gallery-mobile-page {
        min-width: 100%;
        display: block;
        flex-shrink: 0;
      }
      .gallery-mobile-page .gallery-item {
        aspect-ratio: 4/5;
        overflow: hidden;
        width: 100%;
      }
      .gallery-mobile-page .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }

#faqs { background: var(--cream); }

.faq-full-item {
      border-bottom: 1px solid var(--sand);
    }

.faq-full-item:first-child { border-top: 1px solid var(--sand); }

.faq-full-item .faq-q {
      font-family: var(--font-display);
      font-size: var(--text-base);
      color: var(--deep);
      font-weight: 500;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 22px 4px;
      margin: 0;
      gap: 16px;
      user-select: none;
      transition: color 0.2s;
    }

.faq-full-item .faq-q:hover { color: var(--gold); }

.faq-q-icon {
      flex-shrink: 0;
      width: 22px;
      height: 22px;
      border: 1px solid var(--sand);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, border-color 0.2s, transform 0.3s;
    }

.faq-q-icon svg {
      width: 10px; height: 10px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 2.5;
      stroke-linecap: round;
      transition: transform 0.3s;
    }

.faq-full-item.open .faq-q { color: var(--gold); }

.faq-full-item.open .faq-q-icon {
      background: var(--gold);
      border-color: var(--gold);
      transform: rotate(180deg);
    }

.faq-full-item.open .faq-q-icon svg { stroke: #fff; }

.faq-body {
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.35s ease, padding 0.35s ease;
      padding: 0 4px;
    }

.faq-full-item.open .faq-body {
      max-height: 600px;
      padding: 0 4px 22px;
    }

.faq-full-item .faq-a {
      font-size: var(--text-sm);
      color: var(--charcoal);
      line-height: 1.8;
    }

.faq-full-item ul {
      list-style: none;
      margin-top: 8px;
    }

.faq-full-item ul li {
      font-size: var(--text-sm);
      color: var(--charcoal);
      padding-left: 18px;
      position: relative;
      margin-bottom: 4px;
      line-height: 1.7;
    }

.faq-full-item ul li::before {
      content: '•';
      position: absolute;
      left: 0;
      color: var(--gold);
    }

.btn-gold {
      display: inline-block;
      background: var(--warm-gold);
      color: var(--bone);
      font-size: var(--text-xs);
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      padding: 15px 42px;
      border-radius: 2px;
      transition: background 0.2s;
      margin-left: 14px;
    }

.btn-gold:hover { background: var(--warm-gold-dk); }

#inquire {
      position: relative;
      background: linear-gradient(rgba(68,57,45,0.72) 0%, rgba(68,57,45,0.88) 100%), url('../moraine-lake-canada.webp') center/cover no-repeat;
    }

#inquire .section-label { color: var(--warm-gold); }

#inquire .section-title { color: #fff; }

#inquire .section-title em { color: var(--warm-gold); }

#inquire .divider { background: rgba(255,255,255,0.15); }

.inquire-intro {
      max-width: 640px;
      margin: 0 auto 56px;
      text-align: center;
    }

.inquire-intro p { color: rgba(255,255,255,0.72); font-size: var(--text-base); line-height: 1.85; margin-top: 16px; }

.form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

.form-group {
      display: flex;
      flex-direction: column;
      gap: 7px;
      margin-bottom: 20px;
    }

.form-group:last-of-type { margin-bottom: 0; }

.form-group label {
      font-size: var(--text-sm);
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--charcoal);
    }

.form-group input,
    .form-group select,
    .form-group textarea {
      font-family: var(--font-body);
      font-size: var(--text-sm);
      color: var(--deep);
      background: var(--warm-white);
      border: 1px solid var(--sand);
      border-radius: 2px;
      padding: 11px 14px;
      transition: border-color 0.2s, box-shadow 0.2s;
      outline: none;
      width: 100%;
    }

.form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(94,110,74,0.18);
    }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235E6E4A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

.form-submit {
      display: block;
      width: 100%;
      background: var(--warm-gold);
      color: var(--bone);
      font-family: var(--font-body);
      font-size: var(--text-xs);
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 15px 24px;
      border: none;
      border-radius: 2px;
      cursor: pointer;
      margin-top: 28px;
      transition: background 0.2s;
    }

.form-submit:hover { background: var(--warm-gold-dk); }

.form-success {
      display: none;
      text-align: center;
      padding: 32px 0 8px;
    }

.form-success .success-icon {
      width: 48px; height: 48px;
      background: rgba(94,110,74,0.12);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
    }

.form-success .success-icon svg {
      width: 22px; height: 22px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
    }

.form-success p {
      font-family: var(--font-elegant);
      font-size: var(--text-md);
      font-style: italic;
      color: var(--charcoal);
      line-height: 1.7;
    }

@media (max-width: 860px) {
      .form-row { grid-template-columns: 1fr; }
    }

.site-footer {
      background: var(--accent-dark);
      color: var(--cocoa);
      padding: 56px 24px 36px;
      font-family: 'Raleway', sans-serif;
    }

.footer-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 56px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(68,57,45,0.12);
      margin-bottom: 28px;
    }

.footer-brand {
      font-family: var(--font-display);
      font-size: var(--text-lg);
      font-weight: 500;
      color: var(--walnut);
      margin-bottom: 14px;
    }

.footer-brand span { color: var(--gold); }

.footer-tagline {
      font-family: var(--font-elegant);
      font-size: var(--text-base);
      font-style: italic;
      color: var(--clay);
      line-height: 1.6;
      margin-bottom: 18px;
    }

.footer-col h4 {
      font-size: var(--text-xs);
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 18px;
    }

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
      font-size: var(--text-sm);
      color: var(--cocoa);
      transition: color 0.2s;
    }

.footer-col ul li a:hover { color: var(--sage); }

.footer-bottom {
      max-width: var(--max-w);
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: var(--text-xs);
      color: var(--muted-text);
    }

.footer-bottom a {
      font-size: var(--text-xs); letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--muted-text); transition: color 0.2s;
    }

.footer-bottom a:hover { color: var(--warm-gold); }

.partner-trust-strip {
      display: flex;
      gap: 16px;
      justify-content: center;
      margin-bottom: 32px;
      flex-wrap: wrap;
    }

.partner-trust-badge {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: var(--warm-white);
      border: 1px solid var(--sand);
      border-radius: 100px;
      padding: 9px 20px;
      font-size: var(--text-xs);
      font-weight: 600;
      letter-spacing: 0.08em;
      color: var(--charcoal);
      text-decoration: none;
      transition: border-color 0.2s, color 0.2s;
    }

.partner-trust-badge:hover { border-color: var(--gold); color: var(--gold); }

.partner-trust-badge svg { color: var(--gold); }

.reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

.reveal.reveal-left {
      transform: translateX(-32px);
    }

.reveal.reveal-right {
      transform: translateX(32px);
    }

.reveal.visible {
      opacity: 1;
      transform: translate(0, 0);
    }

.reveal-delay-1 { transition-delay: 0.1s; }

.reveal-delay-2 { transition-delay: 0.2s; }

#spotlight { background: var(--bone); color: var(--walnut); overflow: hidden; }

#spotlight .section-label { color: var(--warm-gold); }

#spotlight .section-title { color: var(--walnut); }

.spotlight-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      margin-top: 52px;
      border-radius: 4px;
      overflow: hidden;
    }

.spotlight-image {
      min-height: 520px;
      background:
        linear-gradient(to right, rgba(68,57,45,0.35) 0%, rgba(68,57,45,0) 60%),
        url('../serengeti-tanzania.webp') center/cover no-repeat;
      position: relative;
    }

.spotlight-image-tag {
      position: absolute;
      bottom: 20px;
      left: 20px;
      font-size: var(--text-xs);
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.65);
      background: rgba(0,0,0,0.35);
      padding: 5px 12px;
      border-radius: 2px;
    }

.spotlight-content {
      background: var(--bone);
      border: 1px solid var(--stone);
      padding: 52px 48px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

.spotlight-tag {
      font-size: var(--text-xs);
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--warm-gold);
      margin-bottom: 14px;
    }

.spotlight-content h3 {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 2.5vw, 2.1rem);
      font-weight: 500;
      line-height: 1.25;
      margin-bottom: 20px;
    }

.spotlight-content p {
      font-size: var(--text-sm);
      color: var(--cocoa);
      line-height: 1.8;
      margin-bottom: 18px;
    }

.spotlight-highlights {
      list-style: none;
      margin: 0 0 32px;
    }

.spotlight-highlights li {
      font-size: var(--text-sm);
      color: var(--cocoa);
      padding: 8px 0 8px 20px;
      position: relative;
      border-bottom: 1px solid var(--stone);
    }

.spotlight-highlights li::before {
      content: '→';
      position: absolute;
      left: 0;
      color: var(--gold);
    }

.spotlight-details {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
      margin-bottom: 32px;
    }

.spotlight-detail {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

.spotlight-detail-label {
      font-size: var(--text-xs);
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted-text);
    }

.spotlight-detail-value {
      font-size: var(--text-sm);
      font-weight: 500;
      color: var(--walnut);
    }

.btn-spotlight {
      display: inline-block;
      background: var(--warm-gold);
      color: var(--bone);
      font-size: var(--text-xs);
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      padding: 14px 32px;
      border-radius: 2px;
      transition: background 0.2s;
      align-self: flex-start;
    }

.btn-spotlight:hover { background: var(--warm-gold-dk); }

.spotlight-action-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.spotlight-itinerary-link {
      font-size: var(--text-xs);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--sage);
      text-decoration: none;
      border-bottom: 1px solid var(--stone);
      padding-bottom: 1px;
      transition: color 0.2s, border-color 0.2s;
    }

.spotlight-itinerary-link:hover { color: var(--walnut); border-color: var(--sage); }

.spotlight-tabs {
      display: flex;
      gap: 2px;
      margin-top: 40px;
    }

.spotlight-tab {
      flex: 1;
      padding: 14px 16px;
      background: var(--warmwhite);
      border: 1px solid var(--stone);
      cursor: pointer;
      transition: background 0.2s;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }

.spotlight-tab:hover, .spotlight-tab.active {
      background: rgba(94,110,74,0.14);
      border-color: rgba(94,110,74,0.4);
    }

.spotlight-tab-thumb {
      width: 44px; height: 44px;
      border-radius: 50%;
      background-size: cover;
      background-position: center;
      border: 2px solid var(--stone);
      flex-shrink: 0;
      transition: border-color 0.2s;
    }

.spotlight-tab:hover .spotlight-tab-thumb,
    .spotlight-tab.active .spotlight-tab-thumb { border-color: var(--warm-gold); }

.spotlight-tab-dest {
      font-family: var(--font-display);
      font-size: var(--text-sm);
      color: var(--walnut);
      margin-bottom: 2px;
    }

.spotlight-tab-type {
      font-size: var(--text-xs);
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted-text);
    }

.newsletter-form .nl-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-bottom: 14px;
    }

.newsletter-form input {
      width: 100%;
      padding: 0.85rem 1rem;
      border: 1.5px solid var(--sand);
      border-radius: 2px;
      font-size: var(--text-base);
      font-family: var(--font-body);
      background: #fff;
      color: var(--deep);
      outline: none;
      transition: border-color 0.2s;
    }

.newsletter-form input:focus { border-color: var(--warm-gold); }

.newsletter-form input.nl-error { border-color: var(--error); }

.nl-success .success-icon {
      width: 52px; height: 52px;
      background: var(--warm-gold);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 16px;
    }

.nl-success .success-icon svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

@media (max-width: 900px) {
      .newsletter-form .nl-row { grid-template-columns: 1fr; }
    }

.footer-social {
      display: flex;
      gap: 14px;
      margin-top: 20px;
    }

.social-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border: 1px solid var(--stone);
      border-radius: 50%;
      transition: border-color 0.25s, background 0.25s;
    }

.social-icon:hover {
      border-color: var(--gold-light);
      background: rgba(94,110,74,0.15);
    }

.social-icon svg {
      width: 16px;
      height: 16px;
      fill: none;
      stroke: var(--cocoa);
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: stroke 0.25s;
    }

.social-icon:hover svg { stroke: var(--sage); fill: none; }

#bt-section {
    background: var(--warm-white);
    padding: 4rem 0 5rem;
  }

.tool-wrap { max-width: 780px; margin: 0 auto; padding: 24px 24px 64px; }

.progress-bar-wrap { margin-bottom: 48px; }

.progress-label { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-text); margin-bottom: 10px; display: flex; justify-content: space-between; }

.progress-label span { color: var(--warm-gold); }

.progress-fill { height: 100%; background: var(--warm-gold); border-radius: 99px; transition: width 0.4s ease; }

.bt-step { display: none; animation: fadeUp 0.35s ease; }

.bt-step.active { display: block; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

.step-heading { font-family: var(--font-display); font-size: 1.6rem; color: var(--deep); margin-bottom: 8px; line-height: 1.25; }

.step-sub { font-size: var(--text-sm); color: var(--muted-text); margin-bottom: 32px; line-height: 1.7; }

.budget-input-wrap { position: relative; margin-bottom: 10px; }

.budget-prefix { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); font-family: var(--font-display); font-size: var(--text-lg); color: var(--warm-gold); font-weight: 500; pointer-events: none; }

.budget-input {
    width: 100%; padding: 18px 20px 18px 44px;
    font-family: var(--font-display); font-size: 1.6rem; font-weight: 500;
    color: var(--deep); background: #fff;
    border: 1.5px solid var(--sand); border-radius: 4px;
    outline: none; transition: border-color 0.2s; letter-spacing: 0.02em;
  }

.budget-input:focus { border-color: var(--warm-gold); }

.budget-input::-webkit-outer-spin-button,
  .budget-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.budget-input[type=number] { -moz-appearance: textfield; }

.budget-hint { font-size: var(--text-xs); color: var(--muted-text); margin-top: 6px; }

.budget-warning {
    background: rgba(94,110,74,0.08); border: 1px solid rgba(94,110,74,0.28);
    border-radius: 4px; padding: 12px 16px; margin-top: 14px;
    font-size: var(--text-sm); color: var(--charcoal); line-height: 1.6; display: none;
  }

.budget-warning.show { display: block; }

.budget-warning strong { color: var(--warm-gold-dk); }

.flight-mismatch-alert {
    background: rgba(192,74,74,0.07); border: 1px solid rgba(192,74,74,0.25);
    border-radius: 4px; padding: 16px 20px; margin-bottom: 20px;
    font-size: var(--text-sm); color: var(--charcoal); line-height: 1.65; display: none;
  }

.flight-mismatch-alert.show { display: block; }

.flight-mismatch-alert strong { color: var(--error); }

.budget-viability-alert {
    background: rgba(94,110,74,0.09); border: 1px solid rgba(94,110,74,0.35);
    border-radius: 4px; padding: 16px 20px; margin-bottom: 20px;
    font-size: var(--text-sm); color: var(--charcoal); line-height: 1.65; display: none;
  }

.budget-viability-alert.show { display: block; }

.budget-viability-alert strong { color: var(--warm-gold-dk); }

.budget-viability-alert .viability-actions {
    margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(94,110,74,0.2);
    font-size: var(--text-xs); color: var(--muted-text);
  }

.budget-viability-alert .viability-actions span { display: block; padding: 3px 0 3px 14px; position: relative; }

.budget-viability-alert .viability-actions span::before { content: '→'; position: absolute; left: 0; color: var(--warm-gold); }

.field-label { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 10px; display: block; margin-top: 28px; }

.field-label-opt { font-size: var(--text-xs); font-weight: 300; letter-spacing: 0.04em; text-transform: none; color: var(--muted-text); }

.traveler-row { display: flex; gap: 10px; flex-wrap: wrap; }

.traveler-btn {
    padding: 13px 24px; border: 1.5px solid var(--sand); border-radius: 100px;
    font-family: var(--font-body); font-size: var(--text-sm); font-weight: 500;
    color: var(--muted-text); background: #fff; cursor: pointer; transition: all 0.2s;
  }

.traveler-btn:hover { border-color: var(--warm-gold); color: var(--charcoal); }

.traveler-btn.selected { border-color: var(--warm-gold); background: var(--warm-gold); color: var(--bone); }

.option-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 12px; margin-bottom: 8px; }

#priorityGrid { grid-template-columns: repeat(3, 1fr); }

.field-label.spaced { margin-top: 32px; }

.option-card {
    border: 1.5px solid var(--sand); border-radius: 4px; padding: 20px 18px;
    cursor: pointer; transition: all 0.2s; background: #fff; position: relative; text-align: left;
  }

.option-card:hover { border-color: var(--warm-gold); background: var(--cream); }

.option-card.selected { border-color: var(--warm-gold); background: var(--cream); }

.option-card.selected::after { content: '✓'; position: absolute; top: 10px; right: 12px; font-size: var(--text-xs); color: var(--warm-gold); font-weight: 700; }

.option-icon { font-size: var(--text-md); margin-bottom: 10px; display: block; color: var(--muted-text); }

.option-title { font-family: var(--font-display); font-size: var(--text-base); color: var(--deep); margin-bottom: 4px; }

.option-desc { font-size: var(--text-xs); color: var(--muted-text); line-height: 1.5; }

.step-section-divider { height: 1px; background: var(--sand); margin: 36px 0 0; }

.nights-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }

.nights-btn {
    padding: 13px 20px; border: 1.5px solid var(--sand); border-radius: 4px;
    font-family: var(--font-body); font-size: var(--text-sm); font-weight: 500;
    color: var(--muted-text); background: #fff; cursor: pointer; transition: all 0.2s;
  }

.nights-btn:hover { border-color: var(--warm-gold); color: var(--charcoal); }

.nights-btn.selected { border-color: var(--warm-gold); background: var(--warm-gold); color: var(--bone); }

.email-capture-wrap { margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--sand); }

.email-input {
    width: 100%; padding: 12px 16px;
    font-family: var(--font-body); font-size: var(--text-sm);
    color: var(--deep); background: #fff;
    border: 1.5px solid var(--sand); border-radius: 4px;
    outline: none; transition: border-color 0.2s;
  }

.email-input:focus { border-color: var(--warm-gold); }

.step-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 40px; flex-wrap: wrap; gap: 12px; }

.btn-back-step {
    font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--muted-text); background: none; border: none; cursor: pointer;
    font-family: var(--font-body); transition: color 0.2s; padding: 0;
  }

.btn-back-step:hover { color: var(--warm-gold); }

.btn-next-step {
    background: var(--warm-gold); color: var(--bone); border: none; border-radius: 2px;
    padding: 13px 40px; font-family: var(--font-body); font-size: var(--text-xs);
    font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
    cursor: pointer; transition: background 0.2s;
  }

.btn-next-step:hover { background: var(--warm-gold-dk); }

.btn-next-step:disabled { background: rgba(94,110,74,0.35); cursor: not-allowed; }

.step-error { font-size: var(--text-sm); color: var(--error); margin-top: 6px; display: none; }

.step-error.show { display: block; }

.results-wrap { display: none; animation: fadeUp 0.4s ease; }

.results-wrap.show { display: block; }

.results-actions {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 36px; flex-wrap: wrap; gap: 10px;
  }

.results-actions-right { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }

.btn-edit-answers {
    font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--muted-text); background: none; border: none; cursor: pointer;
    font-family: var(--font-body); transition: color 0.2s; padding: 0;
  }

.btn-edit-answers:hover { color: var(--warm-gold); }

.btn-restart-top {
    font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--muted-text); background: none; border: none; cursor: pointer;
    font-family: var(--font-body); transition: color 0.2s; padding: 0;
  }

.btn-restart-top:hover { color: var(--warm-gold); }

.btn-copy-link {
    font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--muted-text); background: none; border: 1px solid var(--sand); cursor: pointer;
    font-family: var(--font-body); transition: all 0.2s; padding: 8px 14px; border-radius: 2px;
  }

.btn-copy-link:hover { border-color: var(--warm-gold); color: var(--charcoal); }

.btn-copy-link.copied { border-color: var(--warm-gold); color: var(--warm-gold-dk); }

.btn-print-results {
    font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--muted-text); background: none; border: 1px solid var(--sand); cursor: pointer;
    font-family: var(--font-body); transition: all 0.2s; padding: 8px 16px; border-radius: 2px;
  }

.btn-print-results:hover { border-color: var(--warm-gold); color: var(--charcoal); }

.results-intro { text-align: center; margin-bottom: 28px; }

.results-intro h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--deep); margin-bottom: 12px; }

.results-intro p { font-family: var(--font-elegant); font-style: italic; font-size: var(--text-md); color: var(--muted-text); }

.budget-summary {
    display: flex; gap: 0; background: var(--bone); border-radius: 4px;
    margin-bottom: 40px; overflow: hidden; flex-wrap: wrap;
  }

.budget-summary-item { flex: 1; min-width: 110px; padding: 20px 24px; border-right: 1px solid rgba(68,57,45,0.12); }

.budget-summary-item:last-child { border-right: none; }

.bs-label { font-size: var(--text-xs); letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-text); margin-bottom: 6px; }

.bs-value { font-family: var(--font-display); font-size: var(--text-md); color: var(--walnut); font-weight: 500; }

.bs-value.gold { color: var(--warm-gold); }

.bs-note { font-size: var(--text-xs); color: var(--clay); margin-top: 3px; }

.ultra-note {
    background: linear-gradient(135deg, var(--linen) 0%, var(--bone) 100%);
    border: 1px solid rgba(94,110,74,0.3); border-radius: 4px;
    padding: 36px 40px; text-align: center; margin-bottom: 40px;
  }

.ultra-note-eyebrow { font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--warm-gold); margin-bottom: 14px; }

.ultra-note h3 { font-family: var(--font-display); font-size: var(--text-lg); color: var(--walnut); margin-bottom: 10px; }

.ultra-note p { font-family: var(--font-elegant); font-style: italic; font-size: var(--text-base); color: var(--cocoa); }

.tiers-scroll-wrap { margin-bottom: 16px; }

.tiers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.tiers-grid.two-col { grid-template-columns: repeat(2, 1fr); max-width: 580px; margin: 0 auto; }

.tiers-grid.one-col { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }

.tier-card {
    border: 1.5px solid var(--sand); border-radius: 4px; background: #fff;
    overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 0.2s;
  }

.tier-card:hover { box-shadow: 0 8px 32px rgba(68,57,45,0.1); }

.tier-card.featured { border-color: var(--warm-gold); box-shadow: 0 4px 24px rgba(94,110,74,0.18); }

.tier-header { padding: 20px 20px 16px; border-bottom: 1px solid var(--sand); }

.tier-card.dream-card .tier-header {
    background: var(--linen); border-bottom-color: var(--stone);
  }

.tier-card.dream-card .tier-header .tier-name { color: var(--walnut); }

.tier-card.dream-card .tier-header .tier-range { color: var(--muted-text); }

.tier-card.dream-card .tier-header .tier-range strong { color: var(--walnut); }

.tier-card.dream-card .tier-header .tier-badge {
    background: rgba(94,110,74,0.22); color: var(--warm-gold);
    border: 1px solid rgba(94,110,74,0.35);
  }

.tier-badge {
    font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
    padding: 4px 12px; border-radius: 100px; display: inline-block; margin-bottom: 10px;
  }

.badge-current { background: rgba(94,110,74,0.15); color: var(--warm-gold); }

.badge-stretch { background: rgba(68,57,45,0.08); color: var(--charcoal); }

.badge-dream   { background: var(--sage); color: var(--bone); }

.tier-name { font-family: var(--font-display); font-size: var(--text-md); color: var(--deep); margin-bottom: 4px; }

.tier-range { font-size: var(--text-xs); color: var(--muted-text); }

.tier-range strong { color: var(--charcoal); }

.tier-range .tier-range-est { font-weight: 400; color: var(--muted-text); font-size: var(--text-xs); }

.tier-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 16px; }

.tier-section-label { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--warm-gold); margin-bottom: 6px; }

.tier-hotel-desc { font-size: var(--text-sm); color: var(--muted-text); line-height: 1.6; }

.tier-perks { list-style: none; display: flex; flex-direction: column; gap: 6px; }

.tier-perks li { font-size: var(--text-sm); color: var(--charcoal); padding-left: 16px; position: relative; line-height: 1.5; }

.tier-perks li::before { content: '→'; position: absolute; left: 0; color: var(--warm-gold); font-size: var(--text-xs); top: 2px; }

.tier-experience { font-family: var(--font-elegant); font-style: italic; font-size: var(--text-base); color: var(--charcoal); line-height: 1.65; border-left: 2px solid var(--warm-gold); padding-left: 12px; }

.tier-delta { background: var(--cream); border-radius: 2px; padding: 10px 14px; font-size: var(--text-xs); color: var(--charcoal); line-height: 1.5; }

.tier-delta strong { color: var(--warm-gold); }

.tier-booking-note { font-size: var(--text-xs); color: var(--muted-text); margin-top: 6px; font-style: italic; }

.tiers-scroll-hint { display: none; font-size: var(--text-xs); color: var(--muted-text); text-align: center; padding: 8px 0 2px; letter-spacing: 0.06em; }

.estimates-disclaimer {
    font-size: var(--text-xs); color: var(--charcoal); line-height: 1.7;
    margin-top: 20px; margin-bottom: 16px;
    background: var(--cream); border-left: 3px solid var(--warm-gold);
    border-radius: 0 4px 4px 0; padding: 12px 16px;
  }

.estimates-disclaimer strong { color: var(--warm-gold-dk); }

.virtuoso-explainer {
    font-size: var(--text-xs); color: var(--muted-text); text-align: center;
    margin-top: 16px; margin-bottom: 40px; font-style: italic; line-height: 1.6;
  }

.results-cta { background: var(--bone); border-radius: 4px; padding: 44px 40px; text-align: center; }

.results-cta-eyebrow { font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }

.results-cta h3 { font-family: var(--font-display); font-size: 1.6rem; color: var(--walnut); margin-bottom: 12px; line-height: 1.3; }

.results-cta p { font-family: var(--font-elegant); font-style: italic; font-size: var(--text-base); color: var(--cocoa); margin-bottom: 28px; line-height: 1.7; }

.btn-cta-primary {
    display: inline-block; background: var(--warm-gold); color: var(--bone);
    padding: 14px 40px; border-radius: 2px; font-size: var(--text-xs); font-weight: 600;
    letter-spacing: 0.16em; text-transform: uppercase; transition: background 0.2s;
  }

.btn-cta-primary:hover { background: var(--warm-gold-dk); }

.cta-sub-note {
    font-family: var(--font-body); font-style: normal;
    font-size: var(--text-xs); letter-spacing: 0.08em;
    color: var(--clay); margin-top: 10px; margin-bottom: 0;
  }

.email-confirm-note { font-family: var(--font-body); font-style: normal; font-size: var(--text-xs); color: var(--clay); margin-top: 14px; margin-bottom: 0; display: none; }

.btn-restart { display: block; margin: 20px auto 0; font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-text); background: none; border: none; cursor: pointer; font-family: var(--font-body); transition: color 0.2s; }

.btn-restart:hover { color: var(--walnut); }

@media (max-width: 740px) {
    .budget-summary { flex-direction: column; }
    .budget-summary-item { border-right: none; border-bottom: 1px solid rgba(68,57,45,0.12); }
    .budget-summary-item:last-child { border-bottom: none; }
  }

@media (max-width: 720px) {
    .tiers-scroll-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 12px; }
    .tiers-grid { grid-template-columns: repeat(3, 272px); min-width: unset; }
    .tiers-grid.two-col { grid-template-columns: repeat(2, 272px); max-width: unset; }
    .tiers-grid.one-col { grid-template-columns: 1fr; max-width: unset; margin: 0; }
    /* R5: Scroll hint visible when cards are horizontally scrollable */
    .tiers-scroll-hint { display: block; }
    .option-grid { grid-template-columns: 1fr 1fr; }
    .results-cta { padding: 32px 24px; }
    .ultra-note { padding: 28px 20px; }
  }

@media (max-width: 480px) {
    .option-grid { grid-template-columns: 1fr; }
    /* Fix 1: Override the #priorityGrid rule above — id-specificity beats class-specificity
       so this explicit override is required to collapse to 1-col on mobile. */
    #priorityGrid { grid-template-columns: 1fr; }
    .traveler-row { gap: 8px; }
    .nights-row { gap: 8px; }
    .tiers-scroll-wrap { overflow-x: visible; }
    .tiers-grid { grid-template-columns: 1fr; }
    .tiers-grid.two-col { grid-template-columns: 1fr; max-width: unset; margin: 0; }
    /* R5: Cards stack vertically at 480px — scroll hint not needed */
    .tiers-scroll-hint { display: none; }
  }

.guides-callout {
    margin-top: 48px;
    background: linear-gradient(135deg, var(--linen) 0%, var(--bone) 100%);
    border-radius: 4px;
    padding: 2px;
  }

.guides-callout-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background: linear-gradient(135deg, var(--linen) 0%, var(--bone) 100%);
    border-radius: 3px;
    padding: 32px 40px;
  }

.guides-callout-label {
    display: block;
    font-size: var(--text-xs);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--warm-gold);
    margin-bottom: 8px;
  }

.guides-callout-title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--walnut);
    margin-bottom: 10px;
  }

.guides-callout-desc {
    font-size: var(--text-sm);
    color: var(--cocoa);
    line-height: 1.6;
    max-width: 480px;
  }

.guides-callout-btn {
    display: inline-block;
    flex-shrink: 0;
    background: var(--warm-gold);
    color: var(--bone);
    padding: 14px 28px;
    border-radius: 2px;
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background 0.2s;
  }

.guides-callout-btn:hover { background: var(--warm-gold-dk); }

@media (max-width: 700px) {
    .guides-callout-inner { flex-direction: column; align-items: flex-start; padding: 24px; gap: 20px; }
    .guides-callout-btn { width: 100%; text-align: center; }
  }

#resources { background: var(--cream); }

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

@media (max-width: 360px) {
    .btn-print-results { display: none; }
    .results-actions-right { flex-wrap: nowrap; }
  }

.email-capture { background: var(--bone); padding: 80px 24px; }

.email-capture-inner { max-width: 720px; margin: 0 auto; text-align: center; }

.email-capture-label { font-family: var(--font-body); font-size: var(--text-xs); letter-spacing: 0.22em; text-transform: uppercase; color: var(--warm-gold); margin-bottom: 1rem; }

.email-capture-title { font-family: var(--font-display); font-size: 2.2rem; font-weight: 500; color: var(--walnut); margin: 0 0 1rem; line-height: 1.2; }

.email-capture-title em { font-family: var(--font-elegant); font-style: italic; font-weight: 400; color: var(--warm-gold); }

.email-capture-desc { font-family: var(--font-elegant); font-size: var(--text-md); font-style: italic; color: var(--cocoa); line-height: 1.6; margin: 0 0 2rem; }

.kit-form { max-width: 540px; margin: 0 auto; }

.kit-fields { display: flex; gap: 0; }

.kit-input { flex: 1; padding: 14px 18px; font-family: var(--font-body); font-size: var(--text-base); background: var(--warmwhite); border: 1px solid var(--stone); border-right: none; border-radius: 2px 0 0 2px; color: var(--walnut); outline: none; transition: border-color 0.2s, background 0.2s; }

.kit-input::placeholder { color: var(--clay); }

.kit-input:focus { border-color: var(--warm-gold); background: var(--bone); }

.kit-btn { font-family: var(--font-body); font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; padding: 14px 28px; background: var(--warm-gold); color: var(--bone); border: 1px solid var(--warm-gold); border-radius: 0 2px 2px 0; cursor: pointer; transition: background 0.2s, border-color 0.2s; }

.kit-btn:hover { background: var(--warm-gold-dk); border-color: var(--warm-gold-dk); }

.kit-microcopy { font-family: var(--font-body); font-size: var(--text-xs); color: var(--muted-text); margin: 1rem 0 0; line-height: 1.6; }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible { outline: 2px solid var(--warm-gold); outline-offset: 2px; border-radius: 2px; }

.footer-email-wrap { margin-bottom: 10px; }
.footer-email { font-family: 'Raleway', sans-serif; font-size: var(--text-sm); color: var(--muted-text); text-decoration: none; letter-spacing: 0.04em; transition: color 0.2s; }
.footer-email:hover { color: var(--sage); }
