/* =========================================================
   ViaRetreat — styles.css
   ========================================================= */

/* --- Custom Properties --- */
:root {
  --navy:        #16253D;
  --navy-deep:   #0F1E36;
  --navy-mid:    #1E3257;
  --ochre:       #C94A0A;
  --ochre-light: #E05A18;
  --white:       #FFFFFF;
  --off-white:   #F7F8FA;
  --tint:        #EEF1F6;
  --mist:        #D8DDE8;
  --text-body:   #3A4558;
  --text-muted:  #6B7A96;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-label:   'Inter', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  24px;

  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.55, 0, 1, 0.45);

  --shadow-card: 0 4px 24px rgba(15,30,54,.08);
  --shadow-modal: 0 24px 80px rgba(15,30,54,.22);

  --nav-h: 76px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* --- Utility --- */
.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--mist);
  transition: box-shadow .3s var(--ease-out);
}

.site-nav.scrolled {
  box-shadow: 0 2px 24px rgba(15,30,54,.10);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.nav-logo img {
  height: 44px;
  width: auto;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color .2s;
  white-space: nowrap;
}

.nav-link:hover { color: var(--ochre); }

.nav-arrow {
  width: 10px; height: 10px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform .25s var(--ease-out);
}

.nav-item:hover .nav-arrow,
.nav-item.open .nav-arrow {
  transform: rotate(180deg);
}

/* Destinations dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .22s var(--ease-out), transform .22s var(--ease-out);
}

.nav-item:hover .nav-dropdown,
.nav-item.open .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: .875rem;
  font-weight: 400;
  color: var(--text-body);
  transition: background .15s, color .15s;
}

.nav-dropdown a:hover {
  background: var(--tint);
  color: var(--ochre);
}

/* CTA pill */
.nav-cta {
  margin-left: 20px;
  padding: 10px 22px;
  background: var(--ochre);
  color: var(--white) !important;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--ochre-light);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .3s;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--white);
  z-index: 99;
  padding: 24px 24px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .35s var(--ease-out);
}

.mobile-drawer.open { transform: translateX(0); }

.mobile-nav-link {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid var(--tint);
}

.mobile-sub {
  padding-left: 16px;
}

.mobile-sub a {
  display: block;
  padding: 10px 0;
  font-size: .9rem;
  color: var(--text-muted);
}

.mobile-cta {
  display: block;
  margin-top: 24px;
  padding: 14px;
  background: var(--ochre);
  color: var(--white);
  text-align: center;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  background:
    linear-gradient(160deg, #EEF1F6 0%, #F7F8FA 60%, #FFFFFF 100%);
  overflow: hidden;
  position: relative;
}

/* Subtle geometric accent */
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,74,10,.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--mist);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-block: 100px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--ochre);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--navy-deep);
  letter-spacing: -.01em;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--ochre);
}

.hero-sub {
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 40px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 34px;
  background: var(--navy-deep);
  color: var(--white);
  border-radius: 50px;
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: .03em;
  transition: background .25s, transform .25s var(--ease-out), box-shadow .25s;
  box-shadow: 0 8px 32px rgba(15,30,54,.20);
}

.hero-cta:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(15,30,54,.28);
}

.hero-cta svg {
  flex-shrink: 0;
  transition: transform .25s var(--ease-out);
}

.hero-cta:hover svg { transform: translateX(3px); }

/* Hero visual side */
.hero-visual {
  position: relative;
}

.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.dest-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
  background: var(--mist);
  cursor: default;
}

.dest-card:nth-child(1) { grid-row: span 2; aspect-ratio: auto; min-height: 340px; }

.dest-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}

.dest-card:hover .dest-card-img { transform: scale(1.05); }

.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,30,54,.65) 0%, rgba(15,30,54,.10) 60%, transparent 100%);
}

.dest-card-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(15,30,54,.72);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  z-index: 2;
}

/* Hero trust row */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--mist);
}

.trust-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1;
}

.trust-stat span {
  font-size: .75rem;
  color: var(--text-muted);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-top: 3px;
  display: block;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--mist);
}

/* =========================================================
   SECTION SHARED STYLES
   ========================================================= */
.section {
  padding-block: 100px;
}

.section--tint { background: var(--tint); }
.section--navy { background: var(--navy-deep); }

.section-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.18;
  color: var(--navy-deep);
  letter-spacing: -.01em;
  margin-bottom: 16px;
}

.section-title--light { color: var(--white); }

.section-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 560px;
}

.section-head {
  margin-bottom: 64px;
}

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.how-it-works { background: var(--white); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--mist);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.step-card {
  background: var(--white);
  padding: 44px 32px 40px;
  position: relative;
  transition: background .25s;
}

.step-card:hover { background: var(--off-white); }

.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--tint);
  line-height: 1;
  margin-bottom: 20px;
  transition: color .25s;
}

.step-card:hover .step-num { color: rgba(201,74,10,.12); }

.step-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--ochre);
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 12px;
  letter-spacing: -.01em;
}

.step-body {
  font-size: .9rem;
  line-height: 1.72;
  color: var(--text-muted);
}

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why-us { background: var(--navy-deep); }

.why-us .section-label { color: rgba(201,74,10,.9); }
.why-us .section-title { color: var(--white); }
.why-us .section-sub { color: rgba(255,255,255,.55); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.why-card {
  background: rgba(255,255,255,.04);
  padding: 48px 36px 44px;
  border-radius: 0;
  transition: background .3s;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--ochre);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease-out);
}

.why-card:hover { background: rgba(255,255,255,.08); }
.why-card:hover::before { transform: scaleX(1); }

.why-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(201,74,10,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ochre);
  margin-bottom: 24px;
}

.why-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.25;
}

.why-body {
  font-size: .9rem;
  line-height: 1.78;
  color: rgba(255,255,255,.6);
}

/* =========================================================
   DESTINATIONS STRIP
   ========================================================= */
.destinations { background: var(--off-white); }

.dest-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.dest-tile {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 2/3;
  position: relative;
  cursor: pointer;
}

.dest-tile-bg {
  position: absolute;
  inset: 0;
  transition: transform .5s var(--ease-out);
}

.dest-tile:hover .dest-tile-bg { transform: scale(1.06); }

.dest-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,30,54,.75) 0%, transparent 55%);
}

.dest-tile-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 16px 18px;
}

.dest-tile-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 2px;
}

.dest-tile-sub {
  font-size: .7rem;
  color: rgba(255,255,255,.65);
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
}

/* Destination colour themes */
.dest-tile--th .dest-tile-bg { background: linear-gradient(160deg, #7A5C0E 0%, #C9920A 100%); }
.dest-tile--jp .dest-tile-bg { background: linear-gradient(160deg, #5C2A46 0%, #A8507A 100%); }
.dest-tile--kh .dest-tile-bg { background: linear-gradient(160deg, #5C3A1A 0%, #B87540 100%); }
.dest-tile--la .dest-tile-bg { background: linear-gradient(160deg, #1A4D3C 0%, #3A8C6A 100%); }
.dest-tile--sr .dest-tile-bg { background: linear-gradient(160deg, #0E3D6B 0%, #2A7AB8 100%); }
.dest-tile--vn .dest-tile-bg { background: linear-gradient(160deg, #6B1A1A 0%, #B84040 100%); }

.dest-tile-icon {
  font-size: 2.8rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  opacity: .22;
}

/* =========================================================
   FINAL CTA BAND
   ========================================================= */
.cta-band {
  background: var(--ochre);
  padding-block: 88px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFFFFF' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-band-inner { position: relative; }

.cta-band-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-band-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 40px;
  max-width: 480px;
  margin-inline: auto;
  line-height: 1.65;
}

.cta-band-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 38px;
  background: var(--white);
  color: var(--ochre);
  border-radius: 50px;
  font-size: .9375rem;
  font-weight: 700;
  letter-spacing: .02em;
  transition: transform .25s var(--ease-out), box-shadow .25s;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
}

.cta-band-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,0,0,.2);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--navy-deep);
  padding-top: 72px;
  padding-bottom: 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand img { height: 38px; margin-bottom: 20px; filter: brightness(0) invert(1); }

.footer-desc {
  font-size: .875rem;
  line-height: 1.75;
  color: rgba(255,255,255,.5);
  max-width: 260px;
  margin-bottom: 24px;
}

.footer-social { display: flex; gap: 10px; }

.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: .8rem;
  transition: border-color .2s, color .2s;
}

.social-btn:hover { border-color: var(--ochre); color: var(--ochre); }

.footer-col-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 11px; }

.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}

.footer-links a:hover { color: var(--ochre); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
}

.footer-copy {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}

.footer-legal { display: flex; gap: 20px; }

.footer-legal a {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
  transition: color .2s;
}

.footer-legal a:hover { color: rgba(255,255,255,.6); }

/* =========================================================
   MODAL / CONSULTATION FLOW
   ========================================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10,18,32,.6);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease-out);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  width: 100%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-modal);
  transform: translateY(20px) scale(.98);
  transition: transform .35s var(--ease-out);
  overscroll-behavior: contain;
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

/* Modal header */
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 36px 0;
}

.modal-logo img { height: 30px; }

.modal-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: background .2s, color .2s;
}

.modal-close:hover { background: var(--tint); color: var(--navy); }

/* Progress bar */
.modal-progress {
  padding: 24px 36px 0;
}

.modal-progress-bar {
  height: 3px;
  background: var(--mist);
  border-radius: 3px;
  overflow: hidden;
}

.modal-progress-fill {
  height: 100%;
  background: var(--ochre);
  border-radius: 3px;
  transition: width .4s var(--ease-out);
}

.modal-progress-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}

.modal-step-label {
  font-size: .7rem;
  color: var(--text-muted);
  letter-spacing: .05em;
  font-weight: 500;
}

.modal-step-label.active { color: var(--ochre); font-weight: 700; }

/* Modal body */
.modal-body {
  padding: 32px 36px 36px;
}

.modal-step { display: none; }
.modal-step.active { display: block; }

.modal-step-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 8px;
}

.modal-step-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 28px;
  line-height: 1.25;
}

/* Destination grid */
.dest-select-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 8px;
}

.select-option {
  border: 1.5px solid var(--mist);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .2s;
  user-select: none;
  position: relative;
}

.select-option:hover {
  border-color: rgba(201,74,10,.35);
  background: rgba(201,74,10,.03);
  transform: translateY(-1px);
}

.select-option.selected {
  border-color: var(--ochre);
  background: rgba(201,74,10,.05);
}

.select-option.selected::after {
  content: '✓';
  position: absolute;
  top: 8px; right: 10px;
  font-size: .65rem;
  color: var(--ochre);
  font-weight: 700;
}

.select-option-icon { font-size: 1.5rem; margin-bottom: 6px; }
.select-option-label {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--navy-deep);
  letter-spacing: .01em;
}

/* Traveler grid */
.traveler-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 8px;
}

.traveler-card {
  border: 1.5px solid var(--mist);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  cursor: pointer;
  transition: all .2s;
  user-select: none;
  position: relative;
}

.traveler-card:hover {
  border-color: rgba(201,74,10,.35);
  transform: translateY(-1px);
}

.traveler-card.selected {
  border-color: var(--ochre);
  background: rgba(201,74,10,.03);
}

.traveler-card.selected::after {
  content: '✓';
  position: absolute;
  top: 12px; right: 14px;
  font-size: .65rem;
  color: var(--ochre);
  font-weight: 700;
}

.traveler-icon { font-size: 2rem; margin-bottom: 10px; }
.traveler-label {
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy-deep);
}
.traveler-desc {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.5;
}

/* Month grid */
.month-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.month-btn {
  border: 1.5px solid var(--mist);
  border-radius: var(--radius-sm);
  padding: 12px 8px;
  text-align: center;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--text-body);
  cursor: pointer;
  transition: all .2s;
}

.month-btn:hover { border-color: rgba(201,74,10,.35); }

.month-btn.selected {
  border-color: var(--ochre);
  background: var(--ochre);
  color: var(--white);
}

.flexible-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid var(--mist);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color .2s;
  user-select: none;
}

.flexible-toggle input { display: none; }

.toggle-track {
  width: 42px; height: 24px;
  border-radius: 50px;
  background: var(--mist);
  position: relative;
  flex-shrink: 0;
  transition: background .2s;
}

.toggle-track::after {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--white);
  top: 3px; left: 3px;
  transition: transform .22s var(--ease-out);
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}

.flexible-toggle.on .toggle-track { background: var(--ochre); }
.flexible-toggle.on .toggle-track::after { transform: translateX(18px); }

.flexible-label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy-deep);
}
.flexible-sub { font-size: .78rem; color: var(--text-muted); }

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 16px; }

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

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--navy-deep);
  letter-spacing: .03em;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--mist);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--navy-deep);
  background: var(--white);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--ochre);
  box-shadow: 0 0 0 3px rgba(201,74,10,.10);
}

.form-input.error { border-color: #E74C3C; }

.form-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

/* Modal footer */
.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px 32px;
  gap: 12px;
}

.modal-back {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 20px;
  border: 1.5px solid var(--mist);
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: border-color .2s, color .2s;
}

.modal-back:hover { border-color: var(--navy); color: var(--navy); }
.modal-back:disabled { opacity: .35; pointer-events: none; }

.modal-next {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--navy-deep);
  color: var(--white);
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .02em;
  transition: background .2s, transform .2s;
}

.modal-next:hover { background: var(--navy-mid); transform: translateY(-1px); }

.modal-submit {
  padding: 13px 32px;
  background: var(--ochre);
  color: var(--white);
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .02em;
  transition: background .2s, transform .2s;
}

.modal-submit:hover { background: var(--ochre-light); transform: translateY(-1px); }

/* Success screen */
.modal-success {
  display: none;
  text-align: center;
  padding: 60px 36px;
}

.modal-success.active { display: block; }

.success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(201,74,10,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
}

.success-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 12px;
}

.success-body {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 400px;
  margin: 0 auto 32px;
}

.success-close {
  padding: 13px 32px;
  background: var(--navy-deep);
  color: var(--white);
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 700;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }

  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .dest-strip { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-drawer { display: block; }

  .section { padding-block: 72px; }

  .steps-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .dest-strip { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .dest-select-grid { grid-template-columns: repeat(2, 1fr); }
  .month-grid { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr; }

  .modal { border-radius: var(--radius-md); }
  .modal-header, .modal-body, .modal-footer { padding-inline: 24px; }
  .modal-progress { padding-inline: 24px; }
  .modal-success { padding-inline: 24px; }

  .hero-trust { gap: 18px; }
}

@media (max-width: 480px) {
  .dest-select-grid { grid-template-columns: repeat(2, 1fr); }
  .traveler-grid { grid-template-columns: 1fr; }
  .dest-strip { grid-template-columns: 1fr 1fr; }
  .modal-footer { flex-direction: column; }
  .modal-next, .modal-submit, .modal-back { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
