/* ============================================================
   Travels by Val — Design System
   Palette: Ink Navy / Warm Sand / Champagne Gold / Lagoon
   ============================================================ */
:root {
  --ink: #0d1b2a;
  --ink-soft: #1b2a3d;
  --ink-mute: #45586e;
  --sand: #faf6ef;
  --sand-deep: #f1e9db;
  --gold: #c19a3f;
  --gold-soft: #d9bc74;
  --lagoon: #1f6f6b;
  --lagoon-soft: #e3f0ef;
  --white: #ffffff;
  --line: rgba(13, 27, 42, 0.1);
  --shadow-sm: 0 2px 10px rgba(13, 27, 42, 0.06);
  --shadow-md: 0 12px 40px rgba(13, 27, 42, 0.12);
  --shadow-lg: 0 24px 70px rgba(13, 27, 42, 0.18);
  --radius: 14px;
  --radius-lg: 20px;
  --serif: "Playfair Display", "Didot", "Bodoni MT", "Georgia", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", Roboto, "Helvetica Neue", Arial, sans-serif;
  --max: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
/* Lock the page to vertical-only scrolling — nothing may wiggle it sideways */
html, body { overflow-x: hidden; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: rgba(193,154,63,.85); color: #fff; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- Typography ---------- */
h1, h2, h3, .display { font-family: var(--serif); font-weight: 500; line-height: 1.12; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); }
.lede { font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--ink-mute); max-width: 62ch; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 17px 36px; border-radius: 999px; border: 0; cursor: pointer;
  font-family: var(--sans); font-size: .84rem; font-weight: 700; text-decoration: none;
  letter-spacing: .14em; text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  min-height: 48px; text-align: center;
}
.btn:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px;
}
.btn-gold { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--gold), #a8842f); color: #fff; box-shadow: 0 8px 24px rgba(193,154,63,.35); }
.btn-gold::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -70%; width: 45%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg); transition: left .7s ease;
}
.btn-gold:hover::after { left: 130%; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(193,154,63,.45); }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.45); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: var(--ink-soft); transform: translateY(-2px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
}
/* Glass layer lives on a pseudo-element: backdrop-filter on the header
   itself would become the containing block for the fixed mobile menu,
   clipping the overlay to the header's box. */
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(250, 246, 239, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  opacity: 0; transition: opacity .35s ease;
}
.site-header.scrolled::before { opacity: 1; }
.site-header.nav-open::before { opacity: 0; }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max); margin: 0 auto; padding: 18px 24px;
}
.brand { position: relative; z-index: 65; display: inline-block; padding: 8px 0; font-family: var(--serif); font-size: 1.45rem; text-decoration: none; color: #fff; transition: color .35s ease; }
.brand em { font-style: normal; color: var(--gold-soft); }
.scrolled .brand, .solid-nav .brand { color: var(--ink); }
.site-header.nav-open .brand { color: #fff; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a:not(.btn) {
  position: relative; text-decoration: none; font-weight: 600; font-size: .95rem;
  color: rgba(255,255,255,.92); transition: color .25s ease;
}
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -7px; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.nav-links a:not(.btn):hover::after, .nav-links a:not(.btn):focus-visible::after { transform: scaleX(1); }
.scrolled .nav-links a:not(.btn), .solid-nav .nav-links a:not(.btn) { color: var(--ink-soft); }
.nav-links a:not(.btn):hover { color: var(--gold); }
.nav-links .btn { padding: 12px 26px; min-height: 42px; font-size: .76rem; }
.nav-toggle { display: none; position: relative; z-index: 70; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; margin: 6px 0; background: #fff; transition: background .3s, transform .3s ease, opacity .3s ease; }
.scrolled .nav-toggle span, .solid-nav .nav-toggle span { background: var(--ink); }
.site-header.nav-open .nav-toggle span { background: #fff; }
.site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  /* Full-screen curtain that drops from the top */
  .nav-links {
    position: fixed; inset: 0; z-index: 60;
    flex-direction: column; justify-content: center;
    gap: 34px; padding: 90px 24px 40px;
    background:
      radial-gradient(700px 480px at 82% 8%, rgba(193,154,63,.18), transparent 60%),
      linear-gradient(165deg, #0d1b2a 0%, #14293f 58%, #0f2233 100%);
    transform: translateY(-102%);
    transition: transform .5s cubic-bezier(.76, 0, .24, 1), visibility 0s .5s;
    visibility: hidden;
  }
  .nav-links.open { transform: translateY(0); visibility: visible; transition: transform .5s cubic-bezier(.76, 0, .24, 1), visibility 0s; }
  .nav-links a:not(.btn) { color: #fff !important; font-family: var(--serif); font-size: 1.6rem; font-weight: 500; }
  .nav-links a:not(.btn)::after { display: none; }
  .nav-links .btn { margin-top: 10px; }
  /* Staggered reveal as the curtain settles */
  .nav-links li { opacity: 0; transform: translateY(-16px); transition: opacity .35s ease, transform .35s ease; }
  .nav-links.open li { opacity: 1; transform: none; }
  .nav-links.open li:nth-child(1) { transition-delay: .18s; }
  .nav-links.open li:nth-child(2) { transition-delay: .24s; }
  .nav-links.open li:nth-child(3) { transition-delay: .3s; }
  .nav-links.open li:nth-child(4) { transition-delay: .36s; }
  .nav-links.open li:nth-child(5) { transition-delay: .42s; }
  .nav-links.open li:nth-child(6) { transition-delay: .48s; }
}
/* Lock page scroll while the mobile menu is open */
html.menu-open, html.menu-open body { overflow: hidden; }

/* Touch devices: no hover-lift transforms — taps and swipes must not jiggle the layout */
@media (hover: none) {
  .card:hover, .dest-tile:hover, .btn:hover { transform: none; }
  .dest-tile:hover::after { opacity: 0; }
}

/* ---------- Hero ---------- */
/* "Golden dusk" — photo-forward with a vertical scrim (owner's pick).
   The gradient stack beneath the photo is the automatic fallback. */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  color: #fff; overflow: hidden;
  background: linear-gradient(165deg, #0d1b2a 0%, #14293f 42%, #1d3a52 68%, #0f2233 100%);
}
/* Cinematic slow drift on the hero photo (scrim rides the same layer) */
.hero::after {
  content: ""; position: absolute; inset: -4%; z-index: 0;
  background:
    linear-gradient(180deg, rgba(13,27,42,.66) 0%, rgba(13,27,42,.42) 46%, rgba(13,27,42,.9) 100%),
    url("/img/europe-hero.jpg") center 58% / cover no-repeat;
  animation: heroDrift 28s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1) translateY(0); }
  to   { transform: scale(1.06) translateY(-1.4%); }
}
/* Editorial hairline frame, inset from the viewport edge */
.hero::before {
  content: ""; position: absolute; inset: 16px; z-index: 3; pointer-events: none;
  border: 1px solid rgba(217, 188, 116, .22); border-radius: 12px;
}
/* (starfield speckles removed — real photography replaces them) */
.hero-inner { position: relative; z-index: 2; padding-top: 150px; padding-bottom: 110px; }
.hero .eyebrow { color: var(--gold-soft); }
.hero h1 { max-width: 15ch; margin: 22px 0 14px; }
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero .lede { color: rgba(255,255,255,.82); margin-bottom: 38px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 54px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 14px 34px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.18); }
.hero-trust li { list-style: none; display: flex; align-items: center; gap: 10px; font-size: .95rem; color: rgba(255,255,255,.85); }
.hero-trust svg { flex: none; }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-alt { background: var(--white); }
.section-ink { background: linear-gradient(160deg, var(--ink) 0%, #16293e 100%); color: #fff; }
.section-head { max-width: 760px; margin-bottom: 54px; }
.section-head h2 { margin: 18px 0 14px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .lede { margin-left: auto; margin-right: auto; }
.section-head.center .eyebrow::after { content: ""; width: 34px; height: 1px; background: var(--gold); }
.section-ink .lede { color: rgba(255,255,255,.78); }

/* ---------- Cards / Grids ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(193,154,63,.45); }
.card h3 { margin: 18px 0 10px; }
.card p { color: var(--ink-mute); font-size: .98rem; }
.card-icon {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--lagoon-soft), #f6efe0); color: var(--lagoon);
}
/* About — single editorial column, centered on wide screens */
.about-editorial { max-width: 720px; margin: 0 auto; }

/* ---------- Destination tiles ---------- */
.dest-tile {
  position: relative; display: flex; align-items: flex-end; min-height: 340px;
  border-radius: var(--radius-lg); overflow: hidden; text-decoration: none; color: #fff;
  box-shadow: var(--shadow-md); transition: transform .35s ease, box-shadow .35s ease;
  background-size: cover; background-position: center;
}
.dest-tile:hover { transform: translateY(-5px) scale(1.005); box-shadow: var(--shadow-lg); }
.dest-tile::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(9,18,29,.86) 0%, rgba(9,18,29,.25) 48%, rgba(9,18,29,0) 75%);
  transition: background .35s ease;
}
.dest-tile:hover::before { background: linear-gradient(to top, rgba(9,18,29,.92) 0%, rgba(9,18,29,.4) 55%, rgba(9,18,29,.08) 85%); }
/* Inner hairline frame revealed on hover — editorial gallery feel */
.dest-tile::after {
  content: ""; position: absolute; inset: 10px; z-index: 3; pointer-events: none;
  border: 1px solid rgba(255,255,255,.28); border-radius: calc(var(--radius-lg) - 9px);
  opacity: 0; transition: opacity .35s ease;
}
.dest-tile:hover::after { opacity: 1; }
.dest-tile-body { position: relative; z-index: 2; padding: 28px; width: 100%; }
.dest-tile-body h3 { font-size: 1.55rem; margin-bottom: 6px; }
.dest-tile-body p { font-size: .92rem; color: rgba(255,255,255,.85); margin-bottom: 12px; }
.dest-tile-cta { font-size: .85rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-soft); }
#destinations .dest-tile { min-height: 380px; }

/* Gradient art fallbacks — real photos layer on top when present */
.g-caribbean { background-image: linear-gradient(150deg,#0e7d8f 0%,#28b1b5 45%,#7fd6c2 80%,#f3e8c9 100%); }
.g-europe    { background-image: linear-gradient(155deg,#3a3f63 0%,#6f6289 45%,#c98a6d 78%,#f0cfa0 100%); }
.g-hawaii    { background-image: linear-gradient(150deg,#0b5d52 0%,#159a80 40%,#f2a65a 78%,#f7d488 100%); }
.g-alaska    { background-image: linear-gradient(160deg,#1c2f4a 0%,#3b6b8f 45%,#9fc4d8 80%,#eef5f8 100%); }
.g-mexico    { background-image: linear-gradient(150deg,#88372b 0%,#c96f3f 42%,#eeb960 75%,#f9e6bd 100%); }
.g-disney    { background-image: linear-gradient(150deg,#3b2f6b 0%,#6b4f9e 45%,#c77bb4 78%,#f5cfe0 100%); }
.g-cruise    { background-image: linear-gradient(160deg,#0d2c4a 0%,#155e8a 45%,#4aa6c4 78%,#d7ecf3 100%); }
.g-honeymoon { background-image: linear-gradient(150deg,#5c2540 0%,#96455f 45%,#d98a76 78%,#f7d9bd 100%); }
.g-asia      { background-image: linear-gradient(150deg,#3b1f3f 0%,#7a3b5e 45%,#e0793f 78%,#f6d9a0 100%); }
.photo-layer { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* Destination tile photography — served via /img/dest/ rewrites;
   the gradient beneath each remains the automatic fallback. */
.dest-tile.g-caribbean { background-image: url("/img/dest/caribbean.jpg"), linear-gradient(150deg,#0e7d8f 0%,#28b1b5 45%,#7fd6c2 80%,#f3e8c9 100%); }
.dest-tile.g-europe    { background-image: url("/img/dest/europe.jpg"), linear-gradient(155deg,#3a3f63 0%,#6f6289 45%,#c98a6d 78%,#f0cfa0 100%); }
.dest-tile.g-hawaii    { background-image: url("/img/dest/hawaii.jpg"), linear-gradient(150deg,#0b5d52 0%,#159a80 40%,#f2a65a 78%,#f7d488 100%); }
.dest-tile.g-alaska    { background-image: url("/img/dest/alaska.jpg"), linear-gradient(160deg,#1c2f4a 0%,#3b6b8f 45%,#9fc4d8 80%,#eef5f8 100%); }
.dest-tile.g-mexico    { background-image: url("/img/dest/mexico.jpg"), linear-gradient(150deg,#88372b 0%,#c96f3f 42%,#eeb960 75%,#f9e6bd 100%); }
.dest-tile.g-disney    { background-image: url("/img/dest/disney.jpg"), linear-gradient(150deg,#3b2f6b 0%,#6b4f9e 45%,#c77bb4 78%,#f5cfe0 100%); }
.dest-tile.g-cruise    { background-image: url("/img/dest/cruises.jpg"), linear-gradient(160deg,#0d2c4a 0%,#155e8a 45%,#4aa6c4 78%,#d7ecf3 100%); }
.dest-tile.g-honeymoon { background-image: url("/img/dest/honeymoons.jpg"), linear-gradient(150deg,#5c2540 0%,#96455f 45%,#d98a76 78%,#f7d9bd 100%); }
.dest-tile.g-asia      { background-image: url("/img/dest/asia.jpg"), linear-gradient(150deg,#3b1f3f 0%,#7a3b5e 45%,#e0793f 78%,#f6d9a0 100%); }


/* ---------- Process timeline ---------- */
.steps { counter-reset: step; display: grid; gap: 0; }
.step {
  counter-increment: step; position: relative;
  padding: 0 0 46px 76px;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: -4px;
  font-family: var(--serif); font-size: 1.35rem; color: var(--gold);
  width: 52px; height: 52px; border: 1px solid rgba(193,154,63,.5); border-radius: 50%;
  display: grid; place-items: center; background: rgba(255,255,255,.04);
}
.step:not(:last-child)::after {
  content: ""; position: absolute; left: 26px; top: 54px; bottom: 6px;
  width: 1px; background: linear-gradient(to bottom, rgba(193,154,63,.5), rgba(193,154,63,.08));
}
.step h3 { margin-bottom: 8px; }
.step p { color: rgba(255,255,255,.75); max-width: 56ch; }

/* ---------- Testimonials ---------- */
.quote-card { position: relative; display: flex; flex-direction: column; gap: 18px; overflow: hidden; }
.quote-card::before {
  content: "\201C"; position: absolute; top: -6px; right: 18px;
  font-family: var(--serif); font-size: 7rem; line-height: 1;
  color: rgba(193,154,63,.16); pointer-events: none;
}
.stars { color: var(--gold); letter-spacing: 3px; font-size: 1.05rem; }
.quote-card blockquote { font-family: var(--serif); font-size: 1.18rem; line-height: 1.5; font-style: italic; color: var(--ink-soft); }
.quote-card figcaption { display: flex; align-items: center; gap: 12px; font-size: .92rem; color: var(--ink-mute); font-weight: 600; }
.quote-card .avatar {
  flex: none; width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif); font-size: .95rem; font-weight: 500; color: var(--gold);
  border: 1px solid rgba(193,154,63,.55);
  background: linear-gradient(135deg, rgba(193,154,63,.12), rgba(31,111,107,.08));
}

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 24px 4px; cursor: pointer; list-style: none;
  font-family: var(--serif); font-size: 1.2rem; font-weight: 500;
  transition: color .25s ease;
}
.faq-item summary:hover { color: var(--gold); }
.faq-item .faq-body { overflow: hidden; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: var(--sans); font-size: 1.5rem; color: var(--gold);
  transition: transform .3s ease; flex: none;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 4px 26px; color: var(--ink-mute); max-width: 68ch; }

/* ---------- Inquiry form ---------- */
.inquiry-panel {
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 52px; display: grid; grid-template-columns: 1fr 1.1fr; gap: 54px;
}
@media (max-width: 900px) { .inquiry-panel { grid-template-columns: 1fr; padding: 34px 26px; } }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }
label { display: block; font-size: .85rem; font-weight: 700; margin-bottom: 7px; color: var(--ink-soft); }
input, select, textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px;
  font-family: var(--sans); font-size: 1rem; background: var(--sand); color: var(--ink);
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); background: #fff; }
.form-note { font-size: .84rem; color: var(--ink-mute); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.78); padding: 64px 0 34px; border-top: 1px solid rgba(193,154,63,.5); }
.footer-cta {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 22px;
  padding-bottom: 44px; margin-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.footer-cta h3 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); }
/* Comfortable tap targets without changing the visual rhythm */
.site-footer ul { gap: 2px; }
.site-footer li a { display: inline-block; padding: 7px 0; }
.footer-bottom span { padding: 4px 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 54px; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) {
  /* Mobile footer: brand and contact span full width, link columns pair up */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 26px 18px; }
  .footer-grid > div:first-child, .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-cta { flex-direction: column; align-items: stretch; text-align: left; gap: 18px; padding-bottom: 34px; margin-bottom: 36px; }
  .footer-cta .btn { width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; font-size: .82rem; }
}
.site-footer h4 { color: #fff; font-size: .85rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer ul { list-style: none; display: grid; gap: 11px; }
.site-footer a { color: rgba(255,255,255,.78); text-decoration: none; font-size: .95rem; }
.site-footer a:hover { color: var(--gold-soft); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); padding-top: 26px; font-size: .85rem; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; }

/* ---------- Destination page ---------- */
.dest-hero {
  position: relative; min-height: 62svh; display: flex; align-items: flex-end;
  color: #fff; background-size: cover; background-position: center;
}
.dest-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(9,18,29,.88), rgba(9,18,29,.24) 55%, rgba(9,18,29,.35)); }
.dest-hero.g-europe { background-image: url("/img/dest/europe.jpg"), linear-gradient(155deg,#3a3f63 0%,#6f6289 45%,#c98a6d 78%,#f0cfa0 100%); }
.dest-hero.g-asia { background-image: url("/img/dest/asia.jpg"), linear-gradient(150deg,#3b1f3f 0%,#7a3b5e 45%,#e0793f 78%,#f6d9a0 100%); }
.dest-hero.g-caribbean { background-image: url("/img/dest/caribbean.jpg"), linear-gradient(150deg,#0e7d8f 0%,#28b1b5 45%,#7fd6c2 80%,#f3e8c9 100%); }
.dest-hero.g-hawaii    { background-image: url("/img/dest/hawaii.jpg"), linear-gradient(150deg,#0b5d52 0%,#159a80 40%,#f2a65a 78%,#f7d488 100%); }
.dest-hero.g-alaska    { background-image: url("/img/dest/alaska.jpg"), linear-gradient(160deg,#1c2f4a 0%,#3b6b8f 45%,#9fc4d8 80%,#eef5f8 100%); }
.dest-hero.g-mexico    { background-image: url("/img/dest/mexico.jpg"), linear-gradient(150deg,#88372b 0%,#c96f3f 42%,#eeb960 75%,#f9e6bd 100%); }
.dest-hero.g-disney    { background-image: url("/img/dest/disney.jpg"), linear-gradient(150deg,#3b2f6b 0%,#6b4f9e 45%,#c77bb4 78%,#f5cfe0 100%); }
.dest-hero.g-cruise    { background-image: url("/img/dest/cruises.jpg"), linear-gradient(160deg,#0d2c4a 0%,#155e8a 45%,#4aa6c4 78%,#d7ecf3 100%); }
.dest-hero.g-honeymoon { background-image: url("/img/dest/honeymoons.jpg"), linear-gradient(150deg,#5c2540 0%,#96455f 45%,#d98a76 78%,#f7d9bd 100%); }
.dest-hero::after {
  content: ""; position: absolute; inset: 14px; pointer-events: none;
  border: 1px solid rgba(217,188,116,.2); border-radius: 12px;
}
.dest-hero .wrap { position: relative; z-index: 2; padding-top: 150px; padding-bottom: 64px; }
.breadcrumbs { font-size: .85rem; margin-bottom: 16px; color: rgba(255,255,255,.75); }
/* Inline-block padding grows the tap target without shifting the layout */
.breadcrumbs a { color: rgba(255,255,255,.75); text-decoration: none; display: inline-block; padding: 10px 4px; margin: -10px -4px; }
.breadcrumbs a:hover { color: var(--gold-soft); }
.dest-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.chip {
  padding: 8px 18px; border-radius: 999px; font-size: .82rem; font-weight: 600;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3); backdrop-filter: blur(6px);
}
.itin { border-left: 3px solid var(--gold); padding: 6px 0 6px 24px; margin-bottom: 30px; }
.itin h3 { margin-bottom: 4px; }
.itin .days { font-size: .8rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); }
.itin p { color: var(--ink-mute); max-width: 66ch; }

/* ---------- Journal article ---------- */
.article h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
.article-meta { font-size: .82rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); margin: 6px 0 36px; }
.article h2 { font-size: clamp(1.35rem, 2.6vw, 1.75rem); margin: 36px 0 10px; color: var(--ink-soft); }
.article p { color: var(--ink-mute); margin-bottom: 18px; font-size: 1.05rem; max-width: 68ch; }
.article .eyebrow { color: var(--gold); }
.article .breadcrumbs, .article .breadcrumbs a { color: var(--ink-mute); }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(900px 400px at 85% 20%, rgba(193,154,63,.3), transparent 60%),
    linear-gradient(150deg, var(--ink), #1a3450);
  color: #fff; border-radius: var(--radius-lg); padding: 72px 56px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 30px;
}
@media (max-width: 700px) { .cta-band { padding: 46px 28px; } }
.cta-band h2 { max-width: 18ch; }
.cta-band p { color: rgba(255,255,255,.8); margin-top: 12px; max-width: 46ch; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
/* Cascade within grids for a livelier scroll */
.grid > .reveal:nth-child(2) { transition-delay: .07s; }
.grid > .reveal:nth-child(3) { transition-delay: .14s; }
.grid > .reveal:nth-child(4) { transition-delay: .21s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Mobile compaction — tighter rhythm, less dead space ---------- */
@media (max-width: 700px) {
  /* Hero hugs its content — no dead void beneath the trust list */
  .hero { min-height: auto; }
  .section { padding: 58px 0; }
  .section-head { margin-bottom: 32px; }
  .card { padding: 26px 22px; }
  .card h3 { margin: 14px 0 8px; }
  .grid { gap: 16px; }
  #about .grid-2 { gap: 34px !important; }
  .hero-inner { padding-top: 124px; padding-bottom: 72px; }
  .hero-ctas { margin-bottom: 34px; gap: 12px; }
  .hero-ctas .btn { flex: 1 1 100%; }
  .hero-trust { gap: 12px 22px; padding-top: 20px; }
  .step { padding: 0 0 36px 66px; }
  .steps { max-width: none; }
  .footer-grid { gap: 30px; margin-bottom: 40px; }
}

/* ---------- Mobile destination carousel — swipe instead of stack ---------- */
@media (max-width: 620px) {
  .grid-4:has(.dest-tile), .grid-3:has(.dest-tile) {
    grid-template-columns: none;
    grid-auto-flow: column; grid-auto-columns: 76%;
    overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 24px;
    overscroll-behavior-x: contain;
    margin: 0 -24px; padding: 2px 24px 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .grid-4:has(.dest-tile)::-webkit-scrollbar,
  .grid-3:has(.dest-tile)::-webkit-scrollbar { display: none; }
  .dest-tile { scroll-snap-align: center; min-height: 320px; }
  .dest-tile.tall { min-height: 360px; }
}

/* ---------- Scroll delight ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2.5px; z-index: 220;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transform: scaleX(0); transform-origin: left; pointer-events: none;
}
.to-top {
  position: fixed; right: 18px; bottom: 18px; z-index: 150;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(193,154,63,.65);
  background: rgba(13,27,42,.92); color: var(--gold-soft);
  font-family: var(--serif); font-size: 1.15rem; cursor: pointer;
  display: grid; place-items: center;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease, visibility 0s .3s;
  box-shadow: var(--shadow-md);
}
.to-top.show { opacity: 1; visibility: visible; transform: none; transition: opacity .3s ease, transform .3s ease, visibility 0s; }
.carousel-dots { display: none; }
@media (max-width: 620px) {
  .carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 2px; }
  .carousel-dots span {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(13,27,42,.18); transition: background .25s ease, transform .25s ease;
  }
  .carousel-dots span.on { background: var(--gold); transform: scale(1.25); }
}

.skip-link {
  position: absolute; left: -9999px; top: 12px; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 20px; border-radius: 10px; text-decoration: none;
}
.skip-link:focus { left: 12px; }
