:root {
  --ink: #102a43;
  --ink-2: #163b57;
  --muted: #657985;
  --paper: #fff7ea;
  --paper-2: #ffe0c2;
  --sand: #ebcb9b;
  --line: rgba(16, 42, 67, 0.13);
  --deep: #102a43;
  --deep-2: #173d5c;
  --blue: #7cc7d9;
  --coral: #ff7a59;
  --gold: #d6a55f;
  --sage: #9faf7a;
  --white: #fffdf8;
  --shadow: 0 24px 70px rgba(96, 74, 38, 0.15);
  --radius: 8px;
  --radius-sm: 6px;
  --wrap: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  font-family: "Instrument Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.visually-hidden, .skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.skip-link:focus {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  border-radius: var(--radius-sm);
}
.wrap {
  width: min(var(--wrap), calc(100% - clamp(2rem, 7vw, 4rem)));
  margin-inline: auto;
}
.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 12%, rgba(124, 199, 217, 0.22), transparent 34rem),
    radial-gradient(circle at 80% 15%, rgba(255, 122, 89, 0.16), transparent 28rem),
    radial-gradient(circle at 60% 90%, rgba(235, 203, 155, 0.2), transparent 38rem);
  z-index: -1;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1rem;
  width: min(1400px, calc(100% - 2rem));
  margin: 0.8rem auto 0;
  padding: 0.6rem 0.7rem 0.6rem 0.9rem;
  border: 1px solid rgba(255, 247, 234, 0.72);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 247, 234, 0.76);
  backdrop-filter: blur(18px);
  transition: background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(255, 247, 234, 0.94);
  box-shadow: 0 16px 46px rgba(96, 74, 38, 0.16);
}
.brand { display: inline-flex; align-items: center; gap: 0.7rem; min-width: 0; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--white), #d6eef2);
  color: var(--deep);
  font: 700 0.8rem "Syne", sans-serif;
}
.brand strong { display: block; font-family: "Syne", sans-serif; line-height: 1; }
.brand small { display: block; color: rgba(16, 42, 67, 0.62); font-size: 0.78rem; line-height: 1.2; }
.nav { justify-self: center; display: flex; gap: clamp(0.8rem, 2vw, 1.4rem); font-size: 0.9rem; color: rgba(16,42,67,0.72); }
.nav a:hover { color: var(--coral); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.78rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, #ff9a78, var(--coral)); color: #fffdf8; box-shadow: 0 16px 34px rgba(255, 122, 89, 0.32); }
.btn-ghost { border-color: rgba(16,42,67,0.18); color: var(--ink); background: rgba(255,255,255,0.54); }
.band-light .btn-ghost, .band-form .btn-ghost, .band-contact .btn-ghost {
  border-color: rgba(20, 38, 50, 0.22);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
}
.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; }
.menu-toggle { display: none; width: 2.8rem; height: 2.8rem; border: 1px solid rgba(16,42,67,0.2); border-radius: 50%; background: rgba(255,255,255,0.4); color: var(--ink); }
.menu-toggle span:not(.visually-hidden) { display: block; width: 1rem; height: 2px; margin: 4px auto; background: currentColor; }
.mobile-menu {
  position: fixed;
  z-index: 45;
  inset: 5rem 1rem auto;
  display: grid;
  gap: 0.2rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(255, 247, 234, 0.98);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a { padding: 0.85rem; border-bottom: 1px solid rgba(255,255,255,0.09); }

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  padding: 7.8rem 0 4rem;
  color: var(--ink);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media {
  left: auto;
  top: auto;
  width: min(34rem, 45vw);
  height: 15rem;
  right: 5vw;
  bottom: 1.5rem;
  border: 10px solid rgba(255,253,248,0.88);
  border-radius: 4px;
  box-shadow: 0 24px 55px rgba(96,74,38,0.18);
  transform: rotate(6deg);
  overflow: hidden;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: none; filter: saturate(1.05) contrast(1.02); }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 0% 20%, rgba(235,203,155,0.22), transparent 22rem),
    radial-gradient(circle at 72% 28%, rgba(124,199,217,0.13), transparent 30rem),
    linear-gradient(180deg, rgba(255,247,234,0.94), rgba(255,247,234,0.98));
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(10rem, 0.35fr) minmax(36rem, 1fr) minmax(12rem, 0.32fr);
  align-items: center;
  gap: clamp(0.5rem, 1.8vw, 1.6rem);
}
.hero-copy--minimal {
  align-self: start;
  padding-top: clamp(2rem, 9vh, 5rem);
}
.hero-copy--minimal .eyebrow {
  margin-bottom: 0.8rem;
}
.hero-copy--minimal h1 {
  max-width: 8.5ch;
  font-size: clamp(2rem, 4.8vw, 4.9rem);
  line-height: 0.96;
}
.eyebrow {
  margin: 0 0 1rem;
  color: #b15d43;
  font: 700 0.75rem/1.4 "JetBrains Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: "Syne", sans-serif; line-height: 1.02; letter-spacing: 0; }
h1 { max-width: 9.4ch; margin: 0; font-size: clamp(3rem, 8.8vw, 7.3rem); }
h2 { margin: 0; font-size: clamp(2rem, 5vw, 4rem); }
h3 { margin: 0; font-size: 1.15rem; }
.hero-lead { max-width: 24rem; margin: 1.25rem 0 1.8rem; color: rgba(16,42,67,0.72); font-size: clamp(1.1rem, 1.7vw, 1.28rem); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 0.7rem; margin: 1.7rem 0 0; padding: 0; list-style: none; }
.hero-trust li { padding: 0.48rem 0.78rem; border: 1px solid rgba(16,42,67,0.12); border-radius: 999px; background: rgba(255,255,255,0.64); font-size: 0.88rem; box-shadow: 0 10px 28px rgba(96,74,38,0.08); }
.hero-card {
  position: relative;
  grid-column: 1;
  align-self: end;
  max-width: 17rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(16,42,67,0.12);
  border-radius: 10px;
  background: rgba(255,253,248,0.84);
  box-shadow: 0 24px 60px rgba(96,74,38,0.17);
  transform: rotate(-4deg);
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0.55rem;
  border: 1px dashed rgba(255,122,89,0.35);
  border-radius: 7px;
  pointer-events: none;
}
.hero-card span { color: var(--coral); font: 700 0.72rem "JetBrains Mono", monospace; text-transform: uppercase; }
.hero-card strong { display: block; margin: 0.75rem 0 0; font: 700 1rem/1.1 "Syne", sans-serif; }
.hero-card p { margin: 0; color: rgba(16,42,67,0.68); }
.hero-ticket {
  position: absolute;
  right: clamp(1rem, 7vw, 8rem);
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(16,42,67,0.12);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.76);
  color: rgba(16,42,67,0.62);
  font: 700 0.7rem "JetBrains Mono", monospace;
  text-transform: uppercase;
  box-shadow: 0 16px 40px rgba(96,74,38,0.12);
}
.hero-ticket--one { top: 16%; transform: rotate(5deg); }
.hero-ticket--two { top: 25%; right: clamp(2rem, 12vw, 15rem); transform: rotate(-4deg); }
.hero-sun {
  position: absolute;
  right: 3%;
  top: 12%;
  width: clamp(4rem, 10vw, 8rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,224,194,0.95), rgba(255,122,89,0.22) 62%, transparent 70%);
  animation: sunnyFloat 8s var(--ease) infinite alternate;
}
.hero::after {
  content: "✈";
  position: absolute;
  left: 43%;
  top: 15%;
  color: rgba(193,142,70,0.5);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  transform: rotate(-18deg);
}
.compass-scene::before {
  content: "";
  position: absolute;
  left: -8%;
  top: 5%;
  width: 68%;
  height: 42%;
  border-top: 2px dashed rgba(193,142,70,0.25);
  border-radius: 50%;
  transform: rotate(-18deg);
}
.compass-scene::after {
  content: "ADVENTURE AWAITS";
  position: absolute;
  right: -9%;
  bottom: 3%;
  width: 7.2rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 2px solid rgba(193,142,70,0.22);
  border-radius: 50%;
  color: rgba(193,142,70,0.42);
  font: 800 0.62rem/1.1 "JetBrains Mono", monospace;
  text-align: center;
  letter-spacing: 0.08em;
  transform: rotate(12deg);
}
.compass-scene {
  grid-column: 2;
  grid-row: 1 / span 2;
  position: relative;
  min-height: min(54rem, 78vh);
  display: grid;
  place-items: center;
}
.compass-orbit {
  position: absolute;
  inset: -3%;
  border: 1px dashed rgba(193, 142, 70, 0.32);
  border-radius: 50%;
  transform: rotate(-8deg);
}
.compass-orbit::before {
  content: "";
  position: absolute;
  inset: 16%;
  border: 1px dashed rgba(193, 142, 70, 0.18);
  border-radius: 50%;
}
.orbit-label {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 5.35rem;
  min-height: 5.35rem;
  padding: 0.6rem;
  border-radius: 50%;
  background: rgba(255,253,248,0.86);
  border: 1px solid rgba(193,142,70,0.18);
  box-shadow: 0 16px 36px rgba(96,74,38,0.12);
  color: rgba(16,42,67,0.76);
  font: 800 0.7rem/1.25 "JetBrains Mono", monospace;
  text-transform: uppercase;
  text-align: center;
  transform: rotate(8deg);
}
.orbit-label--sun { top: 7%; left: 45%; }
.orbit-label--family { top: 27%; right: 0; }
.orbit-label--romance { right: 8%; bottom: 23%; }
.orbit-label--city { right: 27%; bottom: -2%; }
.orbit-label--exotic { left: 10%; bottom: 4%; }
.orbit-label--tour { left: -4%; bottom: 32%; }
.compass-face {
  position: relative;
  width: min(42rem, 78vh, 72vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255,253,248,0.92) 0 14%, transparent 15%),
    repeating-conic-gradient(from 0deg, rgba(16,42,67,0.18) 0deg 1deg, transparent 1deg 6deg),
    conic-gradient(from 0deg, rgba(16,42,67,0.08), transparent 8%, rgba(193,142,70,0.16) 12%, transparent 16%, rgba(16,42,67,0.08) 22%, transparent 28%, rgba(193,142,70,0.14) 34%, transparent 40%, rgba(16,42,67,0.08) 50%, transparent 58%, rgba(193,142,70,0.16) 64%, transparent 72%, rgba(16,42,67,0.08) 80%, transparent 88%, rgba(193,142,70,0.16)),
    radial-gradient(circle, #fffaf0 0 56%, #d7c9aa 57% 58%, #f6e6c4 59% 64%, #b98439 65% 68%, #f7dca8 69% 100%);
  border: 12px solid #c99a54;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.72), inset 0 0 0 18px rgba(126,96,44,0.16), inset 0 0 0 34px rgba(255,253,248,0.42), 0 34px 85px rgba(96,74,38,0.3);
}
.compass-face::before,
.compass-face::after {
  content: "";
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  border: 1px solid rgba(16,42,67,0.2);
}
.compass-letter {
  position: absolute;
  z-index: 2;
  color: rgba(16,42,67,0.56);
  font: 800 0.82rem "JetBrains Mono", monospace;
}
.compass-letter--n { top: 10%; left: 50%; transform: translateX(-50%); }
.compass-letter--e { right: 10%; top: 50%; transform: translateY(-50%); }
.compass-letter--s { bottom: 10%; left: 50%; transform: translateX(-50%); }
.compass-letter--w { left: 10%; top: 50%; transform: translateY(-50%); }
.compass-rose {
  position: absolute;
  inset: 19%;
  background: conic-gradient(from 45deg, rgba(15,105,95,0.18) 0 12.5%, transparent 12.5% 25%, rgba(193,142,70,0.18) 25% 37.5%, transparent 37.5% 50%, rgba(15,105,95,0.18) 50% 62.5%, transparent 62.5% 75%, rgba(193,142,70,0.18) 75% 87.5%, transparent 87.5%);
  clip-path: polygon(50% 0, 58% 38%, 100% 50%, 58% 62%, 50% 100%, 42% 62%, 0 50%, 42% 38%);
  opacity: 0.9;
}
.compass-face::after {
  inset: 29%;
  border-style: dashed;
  opacity: 0.5;
}
.needle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.05rem;
  height: 42%;
  transform-origin: 50% 0%;
  border-radius: 999px 999px 0 0;
}
.needle-a {
  background: linear-gradient(#0f695f, #183f58);
  transform: rotate(var(--needle-angle, -40deg)) translate(-50%, -5%);
}
.needle-b {
  background: linear-gradient(#d7a35b, #8b5f26);
  transform: rotate(calc(var(--needle-angle, -40deg) + 180deg)) translate(-50%, -5%);
}
.compass-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3.4rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, #f7d28b, #9a6629);
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 20px rgba(96,74,38,0.28);
}
.choice-panel {
  grid-column: 3;
  align-self: center;
  padding-top: 0;
}
.choice-panel h2 {
  margin-bottom: 1.6rem;
  text-align: center;
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
}
.choice-panel h2::after {
  content: "";
  display: block;
  width: 4rem;
  height: 2px;
  margin: 0.7rem auto 0;
  background: var(--gold);
}
.choice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}
.choice-card {
  min-height: auto;
  border: 0;
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  align-items: center;
  justify-items: start;
  gap: 0.65rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(16,42,67,0.12);
  border-radius: 10px;
  background: rgba(255,253,248,0.72);
  text-align: left;
  box-shadow: 0 16px 36px rgba(96,74,38,0.09);
  transition: transform 0.28s var(--ease), border-color 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.choice-card:hover,
.choice-card.is-active {
  transform: translateY(-5px);
  border-color: rgba(193,142,70,0.68);
  box-shadow: 0 24px 55px rgba(96,74,38,0.15);
}
.choice-card span {
  display: grid;
  place-items: center;
  width: 2.2rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255,224,194,0.58);
  color: var(--coral);
  font-size: 1rem;
}
.choice-card strong { font: 800 0.9rem/1.15 "Syne", sans-serif; }
.choice-card small { display: none; }

.band { padding: clamp(4.5rem, 10vw, 8rem) 0; }
.band-light { background: linear-gradient(180deg, var(--paper), var(--white)); }
.band-dreams { background: linear-gradient(180deg, #fff7ea, #ffe0c2); }
.band-ink { background: linear-gradient(160deg, #fff2dc, #dff7fb 52%, #fff7ea); color: var(--ink); }
.band-form { background: linear-gradient(180deg, #fff7ea, #e8f7f9); }
.band-about { background: linear-gradient(145deg, #102a43, #173d5c); color: var(--white); }
.band-contact { background: linear-gradient(145deg, #ffe0c2, #dff7fb); }
.section-grid, .faq-layout { display: grid; grid-template-columns: 0.74fr 1.2fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.section-intro p, .section-head p, .form-copy p, .about-copy p, .contact-copy p { color: var(--muted); max-width: 42rem; }
.band-ink .section-head p { color: rgba(16,42,67,0.68); }
.band-about .about-copy p { color: rgba(255,253,248,0.72); }
.section-head { max-width: 760px; margin-bottom: 2.2rem; }
.dream-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.dream-card {
  min-height: 17rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  border: 1px solid rgba(16,42,67,0.1);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255,247,234,0.35) 0%, rgba(255,247,234,0.9) 62%, rgba(255,253,248,0.96) 100%),
    var(--dream-image);
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 50px rgba(96,74,38,0.11);
  transform: rotate(var(--tilt, -1deg));
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.dream-card:nth-child(2) { --tilt: 1deg; }
.dream-card:nth-child(1) { --dream-image: url("../assets/bg-exotic-lagoon.jpg"); }
.dream-card:nth-child(2) { --dream-image: url("../assets/bg-city-break.jpg"); }
.dream-card:nth-child(3) { --tilt: -0.5deg; --dream-image: url("../assets/bg-family-beach.jpg"); }
.dream-card:nth-child(4) { --tilt: 1.4deg; --dream-image: url("../assets/bg-honeymoon-sunset.jpg"); }
.dream-card:hover { transform: translateY(-8px) rotate(0deg); box-shadow: 0 28px 70px rgba(96,74,38,0.16); }
.dream-card span { color: var(--coral); font: 700 0.75rem "JetBrains Mono", monospace; margin-bottom: auto; }
.dream-card h3 { font-size: clamp(1.55rem, 2.6vw, 2.4rem); }
.dream-card p { margin-bottom: 0; color: rgba(16,42,67,0.68); }
.trust-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.trust-card, .trip-card, .process-list li, .testimonial-grid figure, .contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.68);
  box-shadow: 0 16px 50px rgba(7,16,22,0.06);
}
.trust-card { padding: 1.35rem; border-radius: 10px; }
.trust-card p { margin-bottom: 0; color: var(--muted); }
.icon-dot { display: block; width: 0.72rem; height: 0.72rem; border-radius: 50%; background: var(--coral); margin-bottom: 1rem; box-shadow: 0 0 0 8px rgba(255,122,89,0.14); }
.trip-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.trip-card {
  min-height: 22rem;
  display: flex;
  flex-direction: column;
  padding: 1.35rem;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255,247,234,0.18) 0%, rgba(255,247,234,0.82) 52%, rgba(255,253,248,0.96) 100%),
    var(--trip-image),
    var(--trip-bg, linear-gradient(145deg, #fff7ea, #dff7fb));
  background-size: cover;
  background-position: center;
  border: 0;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transform: rotate(var(--tilt, -0.8deg));
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.trip-card::before {
  content: "";
  position: absolute;
  inset: 0.65rem;
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 7px;
  pointer-events: none;
}
.trip-card::after {
  content: "";
  position: absolute;
  right: -2.5rem;
  top: -2.5rem;
  width: 8rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 122, 89, 0.12);
}
.trip-card:hover { transform: translateY(-8px) rotate(0deg); box-shadow: 0 30px 70px rgba(96,74,38,0.18); }
.trip-card--family { --trip-bg: linear-gradient(145deg, #fff0cf, #d8f5f9); --trip-image: url("../assets/bg-family-beach.jpg"); }
.trip-card--exotic { --trip-bg: linear-gradient(145deg, #d9f4ef, #ffe0c2); --trip-image: url("../assets/bg-exotic-lagoon.jpg"); --tilt: 1deg; }
.trip-card--city { --trip-bg: linear-gradient(145deg, #e8eef9, #fff4d8); --trip-image: url("../assets/bg-city-break.jpg"); --tilt: -0.3deg; }
.trip-card--honeymoon { --trip-bg: linear-gradient(145deg, #ffe0c2, #ffd2c6); --trip-image: url("../assets/bg-honeymoon-sunset.jpg"); --tilt: 0.8deg; }
.trip-card--tour { --trip-bg: linear-gradient(145deg, #e8efd2, #fff7ea); --trip-image: url("../assets/bg-tour-coast.jpg"); --tilt: -1.1deg; }
.trip-card--last { --trip-bg: linear-gradient(145deg, #dff7fb, #ffd8c8); --trip-image: url("../assets/bg-last-minute.jpg"); --tilt: 0.5deg; }
.trip-card > p:first-child, .trip-card span { color: rgba(7,16,22,0.58); font-size: 0.85rem; font-weight: 700; }
.trip-card h3 { font-size: clamp(1.35rem, 2.2vw, 2rem); }
.trip-card > p:nth-of-type(2) { color: var(--ink-2); }
.trip-card a { margin-top: auto; font-weight: 800; color: #b64f38; }
.trip-tags { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.1rem; }
.trip-tags span { border: 1px solid rgba(16,42,67,0.12); border-radius: 999px; padding: 0.55rem 0.85rem; color: rgba(16,42,67,0.76); background: rgba(255,255,255,0.54); }
.process-list { counter-reset: step; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; padding: 0; margin: 0; list-style: none; }
.process-list li { position: relative; padding: 1.25rem; border-radius: 10px; background: rgba(255,253,248,0.72); }
.process-list span { display: block; color: var(--coral); font: 700 0.78rem "JetBrains Mono", monospace; margin-bottom: 4rem; }
.process-list p { color: var(--muted); margin-bottom: 0; }

.form-layout { display: grid; grid-template-columns: 0.72fr 1.25fr; gap: clamp(2rem, 6vw, 4rem); align-items: start; }
.form-note { margin-top: 1.5rem; padding: 1rem; border-left: 3px solid var(--coral); background: rgba(255,255,255,0.62); border-radius: 0 10px 10px 0; }
.trip-form { padding: clamp(1rem, 3vw, 1.7rem); border: 1px solid rgba(16,42,67,0.1); border-radius: 12px; background: rgba(255,253,248,0.82); box-shadow: 0 26px 70px rgba(96,74,38,0.14); }
fieldset { border: 0; padding: 0; margin: 0 0 1.6rem; }
legend { margin-bottom: 1rem; font: 700 1.2rem "Syne", sans-serif; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
label { display: grid; gap: 0.38rem; color: var(--ink-2); font-weight: 700; }
input, select, textarea {
  width: 100%;
  min-height: 3.1rem;
  border: 1px solid rgba(16,42,67,0.14);
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  background: rgba(255,255,255,0.78);
  color: var(--ink);
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(255,122,89,0.2); border-color: var(--coral); background: #fffdf8; }
.wide { grid-column: 1 / -1; }
.field-error { min-height: 1rem; color: #a33b2f; font-weight: 600; }
.has-error input, .has-error select { border-color: #a33b2f; }
.consents { display: grid; gap: 0.6rem; margin-bottom: 1.1rem; }
.consents label { display: flex; align-items: flex-start; gap: 0.55rem; font-weight: 500; }
.consents input { width: 1.1rem; min-height: 1.1rem; margin-top: 0.25rem; }
.form-submit { width: 100%; border: 0; cursor: pointer; }
.form-status { min-height: 1.5rem; margin: 1rem 0 0; color: #1e6857; font-weight: 700; }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.testimonial-grid figure { margin: 0; padding: 1.35rem; border-radius: 10px; background: rgba(255,255,255,0.72); transform: rotate(var(--tilt, -0.6deg)); }
.testimonial-grid figure:nth-child(2) { --tilt: 0.8deg; }
.testimonial-grid figure:nth-child(3) { --tilt: -0.2deg; }
blockquote { margin: 0 0 1rem; font: 600 1.18rem/1.35 "Syne", sans-serif; }
figcaption { color: var(--muted); font-weight: 700; }
.about-layout { display: grid; grid-template-columns: 0.86fr 1fr; gap: clamp(2rem, 7vw, 5rem); align-items: center; }
.about-image img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 12px; box-shadow: var(--shadow); }
.values { display: flex; flex-wrap: wrap; gap: 0.7rem; padding: 0; list-style: none; }
.values li { padding: 0.55rem 0.78rem; border: 1px solid rgba(255,255,255,0.18); border-radius: 999px; color: rgba(255,253,248,0.82); }

.faq-list { display: grid; gap: 0.65rem; }
.faq-item { border: 1px solid rgba(16,42,67,0.1); border-radius: 10px; background: rgba(255,255,255,0.55); padding-inline: 1rem; }
.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}
.faq-item button span::before { content: "+"; }
.faq-item.is-open button span::before { content: "-"; }
.faq-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.25s var(--ease); }
.faq-item.is-open .faq-panel { grid-template-rows: 1fr; }
.faq-panel p { overflow: hidden; margin: 0; padding: 0 0 1rem; color: var(--muted); }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 7vw, 5rem); align-items: start; }
.contact-card { display: grid; gap: 0.7rem; padding: 1.3rem; background: rgba(255,253,248,0.82); border-radius: 12px; }
.contact-card a { font-weight: 800; color: #124b5a; }
.contact-card p { margin: 0; color: var(--muted); }
.map-placeholder {
  display: grid;
  place-items: center;
  min-height: 15rem;
  border-radius: var(--radius-sm);
  background:
    linear-gradient(135deg, rgba(90,159,178,0.2), rgba(197,154,97,0.18)),
    repeating-linear-gradient(45deg, rgba(7,16,22,0.04), rgba(7,16,22,0.04) 1px, transparent 1px, transparent 16px);
  color: var(--ink-2);
  font-weight: 800;
}
.site-footer { padding: 2.5rem 0 6rem; background: var(--deep); color: rgba(255,253,248,0.76); }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 2rem; }
.footer-grid strong { color: var(--white); font-family: "Syne", sans-serif; }
.footer-grid nav { display: grid; gap: 0.4rem; }
.footer-grid a { color: var(--white); }
.sticky-contact {
  position: fixed;
  z-index: 40;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 0.55rem;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(16,42,67,0.92);
  backdrop-filter: blur(14px);
}
.sticky-contact a { display: grid; place-items: center; min-height: 2.7rem; border-radius: 999px; background: rgba(255,255,255,0.08); color: var(--white); font-size: 0.88rem; font-weight: 800; }
.sticky-contact a:last-child { background: linear-gradient(135deg, #ff9a78, var(--coral)); color: var(--white); }

.reveal, .reveal-stagger > * { opacity: 0; transform: translateY(22px); filter: brightness(0.98); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), filter 0.6s var(--ease); }
.is-inview, .reveal-stagger.is-inview > * { opacity: 1; transform: none; filter: brightness(1); }
.reveal-stagger.is-inview > *:nth-child(2) { transition-delay: 0.05s; }
.reveal-stagger.is-inview > *:nth-child(3) { transition-delay: 0.1s; }
.reveal-stagger.is-inview > *:nth-child(4) { transition-delay: 0.15s; }
.reveal-stagger.is-inview > *:nth-child(5) { transition-delay: 0.2s; }
.reveal-stagger.is-inview > *:nth-child(6) { transition-delay: 0.25s; }


.compass-hero .hero-inner { grid-template-columns: minmax(24rem, 0.78fr) minmax(32rem, 1.12fr); gap: clamp(1.4rem, 4vw, 3.6rem); }
.compass-hero .hero-copy { align-self: center; padding-top: clamp(1rem, 7vh, 4rem); }
.compass-hero h1 { max-width: 12ch; font-size: clamp(2.6rem, 4.6vw, 4.6rem); }
.compass-hero .hero-lead { max-width: 31rem; }
.compass-hero .compass-scene { grid-column: 2; grid-row: 1 / span 2; }
.compass-hero .hero-card { grid-row: 2; }
.compass-scene--hero { min-height: min(45rem, 72vh); }
.compass-scene--hero .compass-face { width: min(34rem, 68vh, 58vw); }
.compass-scene--hero .compass-orbit { inset: -7%; }
.compass-scene--hero .orbit-label {
  border: 0;
  cursor: pointer;
  appearance: none;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.compass-scene--hero .orbit-label span {
  display: block;
  margin-bottom: 0.18rem;
  color: var(--coral);
  font-size: 1.05rem;
}
.compass-scene--hero .orbit-label::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  top: calc(100% + 0.45rem);
  min-width: 9rem;
  padding: 0.45rem 0.55rem;
  border: 1px solid rgba(16,42,67,0.1);
  border-radius: 999px;
  background: rgba(255,253,248,0.94);
  color: rgba(16,42,67,0.72);
  font: 700 0.62rem "JetBrains Mono", monospace;
  text-transform: none;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -0.2rem);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.compass-scene--hero .orbit-label:hover,
.compass-scene--hero .orbit-label:focus-visible,
.compass-scene--hero .orbit-label.is-active {
  transform: rotate(8deg) translateY(-4px);
  border-color: rgba(255,122,89,0.54);
  background: rgba(255,253,248,0.96);
}
.compass-scene--hero .orbit-label:hover::after,
.compass-scene--hero .orbit-label:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}
.hero-compass-result {
  position: absolute;
  left: 50%;
  bottom: 0.4rem;
  z-index: 4;
  display: grid;
  gap: 0.38rem;
  width: min(24rem, 84vw);
  padding: 1rem;
  border: 1px solid rgba(255,122,89,0.25);
  border-radius: 14px;
  background: rgba(255,253,248,0.92);
  box-shadow: 0 24px 65px rgba(96,74,38,0.16);
  transform: translateX(-50%);
  animation: miniResultIn 0.35s var(--ease) both;
}
.hero-compass-result[hidden] { display: none; }
.hero-compass-result span {
  color: #b15d43;
  font: 800 0.68rem "JetBrains Mono", monospace;
  text-transform: uppercase;
}
.hero-compass-result strong { font-family: "Syne", sans-serif; font-size: 1.1rem; }
.hero-compass-result small { color: var(--muted); font-weight: 700; }
.hero-compass-result .btn { width: max-content; min-height: 2.5rem; padding-inline: 1rem; margin-top: 0.2rem; }
.compass-loader {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 50%;
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  width: min(24rem, calc(100vw - 2rem));
  padding: 1.2rem;
  border: 1px solid rgba(193,142,70,0.2);
  border-radius: 16px;
  background: rgba(255,253,248,0.92);
  box-shadow: 0 28px 80px rgba(96,74,38,0.2);
  text-align: center;
  transform: translate(-50%, -50%);
}
.compass-loader[hidden] { display: none; }
.compass-loader span {
  width: 3.4rem;
  aspect-ratio: 1;
  border: 5px solid rgba(214,165,95,0.28);
  border-top-color: var(--coral);
  border-radius: 50%;
  animation: compassLoad 0.85s linear infinite;
}
.compass-loader strong { font-family: "Syne", sans-serif; }
.compass-loader small { color: var(--muted); font-weight: 700; }
.compass-face { --needle-angle: -40deg; animation: compassReveal 0.9s var(--ease) both; }
.needle-a { transform: rotate(var(--needle-angle)) translate(-50%, -5%); transition: transform 0.7s var(--ease); }
.needle-b { transform: rotate(calc(var(--needle-angle) + 180deg)) translate(-50%, -5%); transition: transform 0.7s var(--ease); }
.compass-hero .needle-a { animation: needleSearch 2.4s var(--ease) 0.4s both; }
.compass-hero .needle-b { animation: needleSearchBack 2.4s var(--ease) 0.4s both; }
.orbit-label.is-active { border-color: rgba(255,122,89,0.68); box-shadow: 0 20px 48px rgba(255,122,89,0.22); color: var(--deep); }
.choice-card { border: 1px solid rgba(16,42,67,0.12); cursor: pointer; color: inherit; }
.choice-card:focus-visible, .compass-card:focus-visible, .filter-cloud button:focus-visible, .sticky-compass button:focus-visible, .sticky-compass-menu a:focus-visible {
  outline: 3px solid rgba(255,122,89,0.32);
  outline-offset: 3px;
}

.travel-compass { position: relative; background: linear-gradient(180deg, #fff7ea, #ffe0c2 58%, #fff7ea); overflow: hidden; }
.travel-compass::before {
  content: "";
  position: absolute;
  inset: 8% auto auto 5%;
  width: 34rem;
  height: 16rem;
  border-top: 2px dashed rgba(193,142,70,0.22);
  border-radius: 50%;
  transform: rotate(-12deg);
  pointer-events: none;
}
.compass-tool-layout { display: grid; grid-template-columns: minmax(22rem, 0.95fr) minmax(20rem, 1fr); gap: clamp(1.5rem, 5vw, 4rem); align-items: center; }
.compass-progress {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  max-width: 760px;
  padding: 0;
  margin: 0 0 1.3rem;
  list-style: none;
}
.compass-progress li {
  min-height: 2.35rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(16,42,67,0.1);
  border-radius: 999px;
  background: rgba(255,253,248,0.54);
  color: rgba(16,42,67,0.62);
  font: 800 0.72rem "JetBrains Mono", monospace;
  text-transform: uppercase;
}
.compass-progress li.is-active,
.compass-progress li.is-complete {
  border-color: rgba(255,122,89,0.45);
  background: rgba(255,224,194,0.68);
  color: #9a4b35;
}
.step-kicker {
  margin: 0 0 0.4rem;
  color: #b15d43;
  font: 800 0.72rem "JetBrains Mono", monospace;
  text-transform: uppercase;
}
.compass-tool-card {
  position: relative;
  min-height: 34rem;
  display: grid;
  place-items: center;
}
.compass-scene--tool { grid-column: auto; grid-row: auto; min-height: 31rem; width: 100%; }
.compass-scene--tool .compass-face { width: min(28rem, 70vw); }
.compass-panel {
  padding: clamp(1rem, 2.5vw, 1.6rem);
  border: 1px solid rgba(16,42,67,0.1);
  border-radius: 14px;
  background: rgba(255,253,248,0.64);
  box-shadow: 0 22px 60px rgba(96,74,38,0.1);
}
.compass-panel h3 { margin-bottom: 1rem; font-size: clamp(1.45rem, 2.6vw, 2.1rem); }
.compass-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem; }
.compass-card {
  display: grid;
  gap: 0.45rem;
  min-height: 8.8rem;
  padding: 1rem;
  border: 1px solid rgba(16,42,67,0.12);
  border-radius: 10px;
  background: rgba(255,253,248,0.82);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 14px 36px rgba(96,74,38,0.08);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
}
.compass-card:hover, .compass-card.is-active {
  transform: translateY(-5px) rotate(var(--card-tilt, -0.6deg));
  border-color: rgba(255,122,89,0.72);
  box-shadow: 0 24px 55px rgba(96,74,38,0.15);
}
.compass-card:nth-child(even).is-active { --card-tilt: 0.6deg; }
.compass-card span { font: 800 1rem/1.1 "Syne", sans-serif; }
.compass-card strong { color: rgba(16,42,67,0.68); font-size: 0.9rem; line-height: 1.35; }
.compass-card.is-active::after {
  content: "wybrane";
  width: max-content;
  padding: 0.28rem 0.55rem;
  border: 1px solid rgba(193,142,70,0.28);
  border-radius: 999px;
  color: #b15d43;
  font: 800 0.62rem "JetBrains Mono", monospace;
  text-transform: uppercase;
}
.compass-results {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.2rem;
  align-items: end;
  margin-top: 1.4rem;
  padding: clamp(1rem, 2.6vw, 1.5rem);
  border: 1px solid rgba(16,42,67,0.1);
  border-radius: 14px;
  background: rgba(255,253,248,0.72);
}
.travel-compass:not(.is-step-filters):not(.is-step-results) .compass-results {
  display: none;
}
.travel-compass.is-step-filters .compass-panel,
.travel-compass.is-step-results .compass-panel {
  display: none;
}
.travel-compass.is-step-filters .compass-tool-layout,
.travel-compass.is-step-results .compass-tool-layout {
  grid-template-columns: minmax(18rem, 0.72fr);
  justify-content: center;
}
.travel-compass.is-step-filters .destination-grid,
.travel-compass.is-step-filters [data-compass-submit] {
  display: none;
}
.travel-compass.is-step-results [data-flow-next="results"] {
  display: none;
}
.travel-compass.is-step-results .destination-grid {
  display: grid;
}
.travel-compass.is-step-results .filter-cloud {
  opacity: 0.82;
}
.compass-results::before {
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  top: -1rem;
  border-top: 2px dashed rgba(193,142,70,0.2);
}
.compass-results h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
.destination-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.7rem; }
.destination-card {
  min-height: 6.2rem;
  display: grid;
  place-items: end start;
  padding: 0.8rem;
  border: 2px solid transparent;
  border-radius: 9px;
  background:
    linear-gradient(180deg, rgba(255,247,234,0.22), rgba(16,42,67,0.2)),
    var(--destination-image, url("../assets/bg-family-beach.jpg"));
  background-size: cover;
  background-position: center;
  color: var(--white);
  font-weight: 800;
  text-shadow: 0 1px 12px rgba(16,42,67,0.55);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  animation: destinationIn 0.45s var(--ease) forwards;
  transition: transform 0.24s var(--ease), border-color 0.24s var(--ease), box-shadow 0.24s var(--ease);
}
.destination-card:hover,
.destination-card:focus-visible,
.destination-card.is-active {
  border-color: rgba(255,122,89,0.86);
  box-shadow: 0 20px 45px rgba(96,74,38,0.18);
  transform: translateY(-4px);
}
.destination-card.is-active::after {
  content: "wybrany";
  align-self: start;
  justify-self: end;
  padding: 0.22rem 0.48rem;
  border-radius: 999px;
  background: rgba(255,253,248,0.9);
  color: #b64f38;
  font: 800 0.58rem "JetBrains Mono", monospace;
  text-shadow: none;
  text-transform: uppercase;
}
.compass-live-plan {
  display: grid;
  gap: 0.25rem;
  margin-top: 1rem;
  padding: 0.85rem;
  border: 1px solid rgba(16,42,67,0.1);
  border-radius: 10px;
  background: rgba(255,255,255,0.56);
}
.compass-live-plan strong { font-family: "Syne", sans-serif; }
.compass-live-plan span,
.destination-hint { color: var(--muted); font-weight: 700; }
.destination-hint {
  grid-column: 1 / -1;
  margin: 0;
}
.destination-hint[hidden] { display: none; }
.filter-cloud { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.filter-cloud button {
  min-height: 2.45rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(16,42,67,0.13);
  border-radius: 999px;
  background: rgba(255,255,255,0.66);
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
}
.filter-cloud button.is-active { border-color: rgba(255,122,89,0.72); background: rgba(255,224,194,0.7); color: #8c3e2c; }
.compass-results .btn { grid-column: 2; justify-self: end; }
.compass-step-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}
.compass-step-actions--results {
  grid-column: 1 / -1;
  justify-content: flex-end;
}
.compass-step-actions--results .btn {
  width: auto;
}

body.is-classic-mode #kompas,
body.is-classic-mode #zaufanie,
body.is-classic-mode #wyjazdy,
body.is-classic-mode #proces,
body.is-classic-mode #formularz,
body.is-classic-mode #opinie,
body.is-classic-mode #o-biurze,
body.is-classic-mode #faq,
body.is-classic-mode #kontakt,
body.is-classic-mode .site-footer,
body.is-classic-mode .sticky-contact {
  display: block;
}
body.is-classic-mode .journey-stage-actions,
body.is-classic-mode .journey-summary-panel,
body.is-classic-mode .journey-success-panel {
  display: none;
}

body.compass-flow-ready:not(.is-journey-active):not(.is-guided-flow) #kompas,
body.compass-flow-ready:not(.is-journey-active):not(.is-guided-flow) #zaufanie,
body.compass-flow-ready:not(.is-journey-active):not(.is-guided-flow) #wyjazdy,
body.compass-flow-ready:not(.is-journey-active):not(.is-guided-flow) #proces,
body.compass-flow-ready:not(.is-journey-active):not(.is-guided-flow) #formularz,
body.compass-flow-ready:not(.is-journey-active):not(.is-guided-flow) #opinie,
body.compass-flow-ready:not(.is-journey-active):not(.is-guided-flow) #o-biurze,
body.compass-flow-ready:not(.is-journey-active):not(.is-guided-flow) #faq,
body.compass-flow-ready:not(.is-journey-active):not(.is-guided-flow) #kontakt,
body.compass-flow-ready:not(.is-journey-active):not(.is-guided-flow) .site-footer,
body.compass-flow-ready:not(.is-journey-active):not(.is-guided-flow) .sticky-contact,
body.is-guided-flow:not(.is-journey-active):not(.is-flow-complete) #zaufanie,
body.is-guided-flow:not(.is-journey-active):not(.is-flow-complete) #wyjazdy,
body.is-guided-flow:not(.is-journey-active):not(.is-flow-complete) #proces,
body.is-guided-flow:not(.is-journey-active):not(.is-flow-complete) #formularz,
body.is-guided-flow:not(.is-journey-active):not(.is-flow-complete) #opinie,
body.is-guided-flow:not(.is-journey-active):not(.is-flow-complete) #o-biurze,
body.is-guided-flow:not(.is-journey-active):not(.is-flow-complete) #faq,
body.is-guided-flow:not(.is-journey-active):not(.is-flow-complete) #kontakt,
body.is-guided-flow:not(.is-journey-active):not(.is-flow-complete) .site-footer {
  display: none;
}

/* --- Kompas: tryb trasy bez scrolla (jeden viewport = jeden etap) --- */
:root {
  --journey-header: 4.75rem;
}

.journey-bar {
  display: none;
  align-items: center;
  gap: 0.65rem;
  flex: 1 1 auto;
  min-width: 0;
  margin-inline: clamp(0.5rem, 2vw, 1.5rem);
}
.journey-back {
  min-height: 2.35rem;
  padding-inline: 0.85rem;
  flex-shrink: 0;
}
.journey-progress {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1 1 auto;
  justify-content: center;
}
.journey-progress li {
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 42, 67, 0.12);
  background: rgba(255, 253, 248, 0.72);
  font: 700 0.68rem/1 "JetBrains Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(16, 42, 67, 0.55);
  cursor: pointer;
}
.journey-progress li.is-active {
  border-color: rgba(255, 122, 89, 0.55);
  background: rgba(255, 224, 194, 0.85);
  color: #9a4b35;
}
.journey-progress li.is-complete {
  color: var(--deep);
  cursor: pointer;
}
.journey-exit {
  flex-shrink: 0;
  font-weight: 800;
  font-size: 0.78rem;
  color: rgba(16, 42, 67, 0.62);
  white-space: nowrap;
}
.journey-exit:hover { color: #9a4b35; }
.journey-stage-actions {
  margin-top: 1.5rem;
  display: flex;
  justify-content: flex-end;
}
.journey-summary-panel {
  grid-column: 1 / -1;
  display: grid;
  gap: 1rem;
  max-width: 40rem;
}
.journey-summary-panel[hidden] { display: none; }
.journey-summary-edits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.journey-success-panel {
  grid-column: 1 / -1;
  display: grid;
  gap: 1rem;
  max-width: 36rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  border-radius: 16px;
  border: 1px solid rgba(124, 199, 217, 0.35);
  background: linear-gradient(145deg, rgba(255, 253, 248, 0.95), rgba(216, 245, 249, 0.55));
  box-shadow: 0 24px 70px rgba(96, 74, 38, 0.12);
}
.journey-success-panel[hidden] { display: none; }

html.is-journey-active,
body.is-journey-active {
  overflow: hidden;
  height: 100%;
}
body.is-journey-active .journey-bar { display: flex; }
body.is-journey-active .site-header {
  grid-template-columns: auto minmax(0, 1fr) auto;
}
body.is-journey-active .site-header .nav,
body.is-journey-active .site-header .header-cta,
body.is-journey-active .site-header .menu-toggle,
body.is-journey-active .sticky-compass,
body.is-journey-active .sticky-contact {
  display: none;
}
body.is-journey-active #main > section {
  display: none;
  position: fixed;
  inset: var(--journey-header) 0 0;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 8;
  animation: journeyStageIn 0.34s var(--ease) both;
}
body.is-journey-active[data-journey-stage="welcome"] #top,
body.is-journey-active[data-journey-stage="mood"] #kompas,
body.is-journey-active[data-journey-stage="filters"] #kompas,
body.is-journey-active[data-journey-stage="destinations"] #kompas,
body.is-journey-active[data-journey-stage="trust"] #zaufanie,
body.is-journey-active[data-journey-stage="summary"] #formularz,
body.is-journey-active[data-journey-stage="form"] #formularz,
body.is-journey-active[data-journey-stage="success"] #formularz {
  display: block;
}
body.is-journey-active #top,
body.is-journey-active #kompas,
body.is-journey-active #zaufanie,
body.is-journey-active #formularz {
  min-height: calc(100dvh - var(--journey-header));
  padding-top: calc(var(--journey-header) + 0.5rem);
}
body.is-journey-active[data-journey-stage="welcome"] #kompas,
body.is-journey-active[data-journey-stage="mood"] #kompas .journey-stage-actions,
body.is-journey-active[data-journey-stage="filters"] #kompas .journey-stage-actions,
body.is-journey-active[data-journey-stage="destinations"] #zaufanie .journey-stage-actions,
body.is-journey-active[data-journey-stage="welcome"] #zaufanie .journey-stage-actions {
  display: none;
}
body.is-journey-active[data-journey-stage="trust"] #zaufanie .journey-stage-actions {
  display: flex;
}
body.is-journey-active[data-journey-stage="summary"] [data-journey-summary-panel] {
  display: grid;
}
body.is-journey-active[data-journey-stage="summary"] [data-journey-form-intro],
body.is-journey-active[data-journey-stage="summary"] #trip-form,
body.is-journey-active[data-journey-stage="summary"] [data-journey-success] {
  display: none;
}
body.is-journey-active[data-journey-stage="form"] [data-journey-summary-panel],
body.is-journey-active[data-journey-stage="form"] [data-journey-success] {
  display: none;
}
body.is-journey-active[data-journey-stage="form"] [data-guided-summary]:not([hidden]) {
  display: grid;
}
body.is-journey-active[data-journey-stage="success"] [data-journey-summary-panel],
body.is-journey-active[data-journey-stage="success"] [data-journey-form-intro],
body.is-journey-active[data-journey-stage="success"] #trip-form {
  display: none;
}
body.is-journey-active[data-journey-stage="success"] [data-journey-success] {
  display: grid;
}
body.is-journey-active .form-layout {
  display: grid;
  align-content: start;
  min-height: calc(100dvh - var(--journey-header) - 3rem);
}
body.is-journey-active #kompas .section-head { margin-bottom: 0.75rem; }
body.is-journey-active #kompas .compass-progress { margin-bottom: 0.85rem; }
body.is-journey-active .compass-hero .hero-media { opacity: 0.42; }
body.is-journey-active[data-journey-stage="welcome"] .compass-hero .hero-inner {
  min-height: calc(100dvh - var(--journey-header) - 2rem);
  align-content: center;
}

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

@media (prefers-reduced-motion: reduce) {
  body.is-journey-active #main > section { animation: none; }
}

@media (max-width: 980px) {
  .journey-bar {
    order: 3;
    flex-basis: 100%;
    margin-inline: 0;
    margin-top: 0.35rem;
  }
  body.is-journey-active .site-header {
  flex-wrap: wrap;
  align-items: center;
}
  .journey-exit { display: none; }
}
@media (max-width: 640px) {
  :root { --journey-header: 7.5rem; }
  .journey-progress li { font-size: 0.62rem; padding: 0.24rem 0.45rem; }
  body.is-journey-active { padding-bottom: 4.5rem; }
}

.trip-card.is-recommended {
  outline: 3px solid rgba(255,122,89,0.52);
  box-shadow: 0 34px 80px rgba(255,122,89,0.18);
  transform: translateY(-6px) rotate(0deg);
}
.recommendation-badge {
  position: relative;
  z-index: 1;
  width: max-content;
  max-width: 100%;
  padding: 0.36rem 0.58rem;
  margin-bottom: 0.7rem;
  border-radius: 999px;
  background: rgba(255,253,248,0.82);
  color: #b64f38;
  font: 800 0.65rem "JetBrains Mono", monospace;
  text-transform: uppercase;
}
.recommendation-badge[hidden] { display: none; }

.journey-route { position: relative; grid-template-columns: repeat(5, minmax(0, 1fr)); }
.journey-route::before {
  content: "";
  position: absolute;
  left: 2%;
  right: 2%;
  top: 2.25rem;
  border-top: 2px dashed rgba(193,142,70,0.32);
}
.journey-route::after {
  content: "✈";
  position: absolute;
  left: 1%;
  top: 1.35rem;
  color: var(--coral);
  transform: rotate(18deg);
  animation: routePlane 6s var(--ease) infinite alternate;
}
.journey-route li { z-index: 1; }

.guided-form-summary {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1.2rem;
  padding: 1rem;
  border: 1px solid rgba(255,122,89,0.28);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,224,194,0.74), rgba(255,253,248,0.86));
}
.guided-form-summary strong { font-family: "Syne", sans-serif; }
.guided-form-summary span { color: var(--muted); font-weight: 700; }
.guided-form-summary[hidden] { display: none; }
.trip-form.is-guided { border-color: rgba(255,122,89,0.32); box-shadow: 0 28px 80px rgba(255,122,89,0.16); }

.sticky-compass {
  position: fixed;
  z-index: 42;
  right: 1.2rem;
  bottom: 1.2rem;
  display: grid;
  gap: 0.6rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.sticky-compass.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.sticky-compass > button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.45rem 0.8rem 0.45rem 0.45rem;
  border: 1px solid rgba(16,42,67,0.14);
  border-radius: 999px;
  background: rgba(255,253,248,0.92);
  color: var(--deep);
  box-shadow: 0 20px 55px rgba(96,74,38,0.18);
  cursor: pointer;
  font-weight: 800;
}
.mini-compass {
  position: relative;
  width: 2.15rem;
  aspect-ratio: 1;
  border: 3px solid var(--gold);
  border-radius: 50%;
  background: #fffaf0;
}
.mini-compass span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.24rem;
  height: 42%;
  border-radius: 999px;
  background: var(--deep);
  transform-origin: 50% 0;
  transform: rotate(var(--mini-angle, -40deg)) translate(-50%, -8%);
  transition: transform 0.35s var(--ease);
}
.sticky-compass-menu {
  display: grid;
  gap: 0.35rem;
  min-width: 15rem;
  padding: 0.75rem;
  border: 1px solid rgba(16,42,67,0.12);
  border-radius: 12px;
  background: rgba(255,253,248,0.96);
  box-shadow: 0 22px 60px rgba(96,74,38,0.18);
}
.sticky-compass-menu[hidden] { display: none; }
.sticky-compass-menu a { padding: 0.65rem 0.75rem; border-radius: 8px; font-weight: 800; }
.sticky-compass-menu a:hover { background: rgba(255,224,194,0.56); color: #9a4b35; }

@keyframes compassReveal {
  from { opacity: 0; filter: blur(8px); transform: scale(0.96); }
  to { opacity: 1; filter: blur(0); transform: scale(1); }
}
@keyframes compassLoad {
  to { transform: rotate(360deg); }
}
@keyframes needleSearch {
  0% { transform: rotate(-28deg) translate(-50%, -5%); }
  35% { transform: rotate(-50deg) translate(-50%, -5%); }
  70% { transform: rotate(-33deg) translate(-50%, -5%); }
  100% { transform: rotate(var(--needle-angle)) translate(-50%, -5%); }
}
@keyframes needleSearchBack {
  0% { transform: rotate(152deg) translate(-50%, -5%); }
  35% { transform: rotate(130deg) translate(-50%, -5%); }
  70% { transform: rotate(147deg) translate(-50%, -5%); }
  100% { transform: rotate(calc(var(--needle-angle) + 180deg)) translate(-50%, -5%); }
}
@keyframes destinationIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes miniResultIn {
  from { opacity: 0; transform: translate(-50%, 0.65rem); }
  to { opacity: 1; transform: translate(-50%, 0); }
}
@keyframes mobileResultIn {
  from { opacity: 0; transform: translateY(0.65rem); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes routePlane {
  from { left: 1%; }
  to { left: 92%; }
}

@media (max-width: 980px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  .nav, .header-cta { display: none; }
  .menu-toggle { display: block; justify-self: end; }
  .hero { min-height: auto; padding-top: 8rem; }
  .hero-inner { display: flex; flex-direction: column; align-items: stretch; }
  .hero-inner, .section-grid, .form-layout, .faq-layout, .about-layout, .contact-layout { grid-template-columns: 1fr; }
  .compass-scene, .choice-panel, .hero-card { grid-column: auto; grid-row: auto; }
  .compass-hero .compass-scene, .compass-hero .choice-panel, .compass-hero .hero-card { grid-column: auto; grid-row: auto; }
  .hero-copy--minimal { padding-top: 0; }
  .hero-copy--minimal h1 { max-width: 12ch; font-size: clamp(2.2rem, 9vw, 4rem); }
  .compass-scene { min-height: 30rem; order: 2; }
  .choice-panel { order: 3; }
  .hero-card { order: 4; }
  .hero-copy { order: 1; }
  .choice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-card { max-width: 28rem; }
  .dream-grid, .trip-grid, .process-list, .testimonial-grid, .compass-tool-layout, .compass-results { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .journey-route { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sticky-compass { display: none; }
  .sticky-contact { display: grid; }
  .hero-ticket, .hero-sun { display: none; }
}

@media (max-width: 640px) {
  .wrap { width: min(100% - 1.25rem, var(--wrap)); }
  .site-header { width: calc(100% - 1rem); margin-top: 0.5rem; border-radius: var(--radius); }
  .brand small { display: none; }
  h1 { font-size: clamp(2.35rem, 14vw, 4rem); }
  .compass-hero h1 { max-width: 100%; font-size: clamp(2.1rem, 10vw, 2.65rem); }
  h2 { font-size: clamp(1.9rem, 10vw, 3rem); }
  .hero { padding: 7rem 0 3rem; }
  .hero::before { background: linear-gradient(180deg, rgba(255,247,234,0.86), rgba(255,247,234,0.96)); }
  .hero-media { display: none; }
  .btn-row, .hero-trust { align-items: stretch; flex-direction: column; }
  .btn { width: 100%; }
  .trust-grid, .dream-grid, .trip-grid, .process-list, .testimonial-grid, .form-grid, .compass-tool-layout, .compass-results, .compass-options, .destination-grid { grid-template-columns: 1fr; }
  .compass-progress { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .choice-grid { grid-template-columns: 1fr; }
  .choice-card { min-height: auto; }
  .compass-hero .choice-panel { display: none; }
  .compass-hero .hero-trust { display: none; }
  .compass-scene { min-height: 20rem; }
  .compass-orbit { display: none; }
  .compass-scene--hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .compass-scene--hero .compass-orbit {
    position: relative;
    inset: auto;
    order: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
    border: 0;
    transform: none;
  }
  .compass-scene--hero .compass-orbit::before { display: none; }
  .compass-scene--hero .orbit-label {
    position: static;
    min-width: auto;
    min-height: 2.45rem;
    display: inline-flex;
    gap: 0.35rem;
    padding: 0.5rem 0.75rem;
    transform: none;
  }
  .compass-scene--hero .orbit-label::after { display: none; }
  .compass-scene--hero .orbit-label:hover,
  .compass-scene--hero .orbit-label:focus-visible,
  .compass-scene--hero .orbit-label.is-active {
    transform: translateY(-2px);
  }
  .compass-scene--hero .compass-face { order: 1; }
  .hero-compass-result {
    position: static;
    order: 3;
    width: 100%;
    transform: none;
    animation-name: mobileResultIn;
  }
  .compass-scene::before, .compass-scene::after, .hero::after { display: none; }
  .compass-face { width: min(18rem, 88vw); }
  .compass-results .btn, .filter-cloud { grid-column: auto; }
  .compass-step-actions--results { grid-column: auto; justify-content: stretch; }
  .compass-step-actions .btn { width: 100%; }
  .compass-tool-card { min-height: 22rem; }
  .compass-scene--tool { min-height: 20rem; }
  .journey-route::before, .journey-route::after { display: none; }
  .trip-card { min-height: 19rem; }
  .dream-card { min-height: 15rem; transform: none; }
  .hero-card { transform: none; }
  .process-list span { margin-bottom: 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
}

@keyframes sunnyFloat {
  from { transform: translateY(0) scale(1); opacity: 0.8; }
  to { transform: translateY(12px) scale(1.04); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
  .hero-sun { animation: none; }
}

/* --- Organic redesign layer --- */
:root {
  --mist: #b9d1dc;
  --mist-2: #d7eef0;
  --leaf: #7f9c7a;
  --rose: #efb2a3;
  --clay: #c08c6b;
  --cream: #fff9ef;
  --glass: rgba(255, 253, 248, 0.56);
  --glass-strong: rgba(255, 253, 248, 0.78);
  --soft-line: rgba(255, 253, 248, 0.7);
}

body {
  background:
    linear-gradient(180deg, #bed3dc 0%, #d7eef0 34%, #fff9ef 72%, #f6d9c6 100%);
}

.site-bg {
  background:
    radial-gradient(ellipse 42rem 22rem at 18% 9%, rgba(255, 249, 239, 0.72), transparent 68%),
    radial-gradient(ellipse 38rem 26rem at 86% 20%, rgba(239, 178, 163, 0.38), transparent 64%),
    radial-gradient(ellipse 52rem 30rem at 48% 80%, rgba(127, 156, 122, 0.22), transparent 66%),
    linear-gradient(180deg, #b9d1dc, #fff9ef 62%, #f4d5c0);
}

.site-bg::before,
.site-bg::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 253, 248, 0.58);
  border-radius: 48% 52% 54% 46% / 44% 40% 60% 56%;
  opacity: 0.7;
}

.site-bg::before {
  width: 22rem;
  height: 13rem;
  left: -6rem;
  top: 17rem;
  transform: rotate(-18deg);
}

.site-bg::after {
  width: 18rem;
  height: 18rem;
  right: -5rem;
  top: 36rem;
  border-radius: 50%;
}

.site-header {
  border-color: rgba(255, 253, 248, 0.68);
  background: rgba(235, 246, 247, 0.58);
  box-shadow: 0 18px 55px rgba(23, 61, 92, 0.1);
}

.site-header.is-scrolled {
  background: rgba(255, 253, 248, 0.82);
}

.brand-mark {
  background:
    radial-gradient(circle at 35% 30%, #fffdf8 0 22%, transparent 24%),
    conic-gradient(from 30deg, #102a43, #7cc7d9, #d6a55f, #102a43);
  color: #fffdf8;
}

.nav {
  gap: 0.34rem;
  padding: 0.25rem;
  border: 1px solid rgba(255, 253, 248, 0.55);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.35);
}

.nav a {
  padding: 0.36rem 0.78rem;
  border-radius: 999px;
}

.nav a:hover {
  background: rgba(255, 253, 248, 0.62);
}

.hero {
  min-height: 100svh;
  padding: 7rem 0 clamp(4rem, 8vw, 7rem);
  align-items: center;
  isolation: isolate;
}

.hero::before {
  background:
    linear-gradient(180deg, rgba(185, 209, 220, 0.84), rgba(215, 238, 240, 0.74) 48%, rgba(255, 249, 239, 0.88)),
    radial-gradient(ellipse 46rem 24rem at 32% 28%, rgba(255, 253, 248, 0.5), transparent 68%);
}

.hero::after {
  content: "";
  left: auto;
  right: 8vw;
  top: 14vh;
  width: clamp(4rem, 8vw, 7rem);
  height: clamp(4rem, 8vw, 7rem);
  border: 2px solid rgba(255, 253, 248, 0.74);
  border-radius: 50%;
  color: transparent;
  transform: none;
}

.hero-media {
  left: 8vw;
  top: 12vh;
  right: auto;
  bottom: auto;
  width: min(58rem, 66vw);
  height: clamp(12rem, 26vw, 22rem);
  border: 8px solid rgba(255, 253, 248, 0.82);
  border-radius: 48% 52% 52% 48% / 42% 45% 55% 58%;
  box-shadow: 0 30px 90px rgba(23, 61, 92, 0.18);
  transform: rotate(-3deg);
  opacity: 0.86;
  mix-blend-mode: multiply;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -1rem;
  border: 2px solid rgba(255, 253, 248, 0.74);
  border-radius: inherit;
  transform: rotate(2deg);
  pointer-events: none;
}

.hero-media img,
.organic-photo img,
.about-image img {
  filter: saturate(0.96) contrast(1.03);
}

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

.organic-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 7px solid rgba(255, 253, 248, 0.84);
  box-shadow: 0 28px 80px rgba(16, 42, 67, 0.16);
  background: rgba(255, 253, 248, 0.32);
  backdrop-filter: blur(12px);
}

.organic-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.18), rgba(185, 209, 220, 0.32)),
    radial-gradient(circle at 65% 10%, rgba(255, 255, 255, 0.32), transparent 34%);
  mix-blend-mode: screen;
}

.organic-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.organic-photo--wide {
  left: 4vw;
  top: 10vh;
  width: min(46rem, 48vw);
  height: clamp(9rem, 16vw, 14rem);
  border-radius: 42% 58% 48% 52% / 54% 42% 58% 46%;
  transform: rotate(-5deg);
  animation: organicFloatA 12s var(--ease) infinite alternate;
}

.organic-photo--round {
  right: 5vw;
  top: 14vh;
  width: clamp(12rem, 23vw, 21rem);
  aspect-ratio: 1;
  border-radius: 46% 54% 58% 42% / 42% 38% 62% 58%;
  transform: rotate(7deg);
  animation: organicFloatB 14s var(--ease) infinite alternate;
}

.organic-photo--soft {
  left: 4vw;
  bottom: 12vh;
  width: clamp(13rem, 24vw, 22rem);
  height: clamp(10rem, 17vw, 16rem);
  border-radius: 54% 46% 38% 62% / 46% 55% 45% 54%;
  transform: rotate(5deg);
  animation: organicFloatB 13s var(--ease) infinite alternate-reverse;
}

.organic-photo--river {
  right: 7vw;
  bottom: 8vh;
  width: min(46rem, 48vw);
  height: clamp(8rem, 15vw, 13rem);
  border-radius: 40% 60% 58% 42% / 48% 44% 56% 52%;
  transform: rotate(-4deg);
  animation: organicFloatA 15s var(--ease) infinite alternate-reverse;
}

.compass-hero .hero-inner {
  grid-template-columns: minmax(21rem, 0.84fr) minmax(28rem, 1.06fr);
  min-height: min(40rem, 70vh);
}

.compass-hero .hero-copy {
  position: relative;
  z-index: 3;
  align-self: end;
  max-width: 37rem;
  padding: clamp(1rem, 2vw, 1.4rem);
  border: 1px solid rgba(255, 253, 248, 0.5);
  border-radius: 38% 62% 44% 56% / 52% 40% 60% 48%;
  background: rgba(255, 253, 248, 0.36);
  backdrop-filter: blur(14px);
}

.compass-hero h1 {
  max-width: 10.8ch;
  color: #fffdf8;
  font-size: clamp(3.2rem, 6.5vw, 6.7rem);
  line-height: 0.9;
  text-shadow: 0 12px 38px rgba(16, 42, 67, 0.22);
}

.compass-hero .hero-lead {
  max-width: 29rem;
  color: rgba(16, 42, 67, 0.78);
  font-weight: 600;
}

.hero-trust li,
.btn-ghost,
.mobile-menu,
.compass-panel,
.compass-results,
.trip-form,
.contact-card,
.guided-form-summary,
.journey-success-panel {
  border-color: rgba(255, 253, 248, 0.62);
  background: var(--glass);
  backdrop-filter: blur(18px);
}

.btn-primary {
  background: linear-gradient(135deg, #173d5c 0%, #2d7980 48%, #ef8e76 100%);
  box-shadow: 0 18px 42px rgba(23, 61, 92, 0.22);
}

.btn-ghost {
  box-shadow: 0 10px 34px rgba(23, 61, 92, 0.08);
}

.hero-card {
  position: absolute;
  left: clamp(0rem, 3vw, 2rem);
  bottom: clamp(-2.8rem, -3vw, -1rem);
  grid-column: auto;
  z-index: 3;
  max-width: 15rem;
  border-radius: 44% 56% 50% 50% / 38% 48% 52% 62%;
  background: rgba(255, 253, 248, 0.62);
  backdrop-filter: blur(16px);
  transform: rotate(-8deg);
}

.hero-card::before {
  border-radius: inherit;
}

.compass-scene--hero {
  z-index: 2;
  min-height: min(34rem, 58vh);
  transform: translateY(0.8rem);
}

.compass-scene::before {
  border-top-color: rgba(255, 253, 248, 0.42);
}

.compass-scene::after {
  border-color: rgba(255, 253, 248, 0.5);
  color: rgba(255, 253, 248, 0.72);
}

.compass-face {
  border-color: rgba(255, 253, 248, 0.84);
  background:
    radial-gradient(circle at center, rgba(255,253,248,0.86) 0 14%, transparent 15%),
    repeating-conic-gradient(from 0deg, rgba(16,42,67,0.13) 0deg 1deg, transparent 1deg 7deg),
    conic-gradient(from 0deg, rgba(127,156,122,0.22), transparent 14%, rgba(239,178,163,0.26) 24%, transparent 38%, rgba(124,199,217,0.26) 50%, transparent 64%, rgba(214,165,95,0.2) 78%, transparent),
    radial-gradient(circle, rgba(255,253,248,0.88) 0 55%, rgba(185,209,220,0.72) 56% 66%, rgba(255,253,248,0.72) 67% 100%);
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,0.66),
    inset 0 0 0 24px rgba(255,253,248,0.28),
    0 34px 96px rgba(23, 61, 92, 0.2);
  backdrop-filter: blur(16px);
}

.orbit-label,
.compass-card,
.destination-card,
.filter-cloud button,
.trust-card,
.process-list li,
.testimonial-grid figure,
.faq-item {
  border-color: rgba(255, 253, 248, 0.62);
  background: var(--glass);
  backdrop-filter: blur(14px);
}

.orbit-label {
  border-radius: 48% 52% 44% 56% / 50% 42% 58% 50%;
}

.band {
  position: relative;
  overflow: hidden;
}

.band::before {
  content: "";
  position: absolute;
  inset: 2rem auto auto -7rem;
  width: 28rem;
  height: 15rem;
  border: 1px solid rgba(255, 253, 248, 0.48);
  border-radius: 52% 48% 44% 56% / 50% 38% 62% 50%;
  transform: rotate(-14deg);
  pointer-events: none;
}

.band::after {
  content: "";
  position: absolute;
  right: -10rem;
  bottom: -5rem;
  width: 30rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 253, 248, 0.28), transparent 68%);
  pointer-events: none;
}

.band-light {
  background: linear-gradient(155deg, rgba(255, 249, 239, 0.9), rgba(215, 238, 240, 0.58) 52%, rgba(255, 249, 239, 0.92));
}

.band-dreams,
.travel-compass {
  background: linear-gradient(145deg, #d7eef0 0%, #fff9ef 50%, #f2cdbb 100%);
}

.band-ink {
  background:
    radial-gradient(ellipse 40rem 18rem at 18% 18%, rgba(239, 178, 163, 0.32), transparent 66%),
    linear-gradient(150deg, #b9d1dc 0%, #fff9ef 44%, #dcebdc 100%);
}

.band-form {
  background: linear-gradient(155deg, #d7eef0, #fff9ef 54%, #efd0bd);
}

.band-about {
  background:
    radial-gradient(ellipse 34rem 20rem at 78% 30%, rgba(124,199,217,0.22), transparent 68%),
    linear-gradient(145deg, #102a43, #315965 58%, #7f9c7a);
}

.band-contact {
  background: linear-gradient(140deg, #f1c6b5, #fff9ef 45%, #b9d1dc);
}

.section-grid {
  grid-template-columns: minmax(17rem, 0.68fr) minmax(20rem, 1.2fr);
}

.trust-grid {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: stretch;
}

.trust-card {
  border-radius: 38% 62% 46% 54% / 50% 42% 58% 50%;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.trust-card:nth-child(2) {
  transform: translateY(2rem) rotate(1.5deg);
}

.trust-card:nth-child(3) {
  transform: translateX(-1rem) rotate(-1.2deg);
}

.trust-card:nth-child(4) {
  transform: translateY(1rem) rotate(1deg);
}

.trip-grid {
  grid-template-columns: 1.08fr 0.86fr 1.06fr;
  grid-auto-flow: dense;
  align-items: stretch;
}

.trip-card {
  min-height: 24rem;
  border-radius: 34% 66% 40% 60% / 50% 42% 58% 50%;
  border: 7px solid rgba(255, 253, 248, 0.55);
  background:
    linear-gradient(180deg, rgba(255,249,239,0.06) 0%, rgba(255,249,239,0.56) 48%, rgba(255,253,248,0.94) 100%),
    var(--trip-image),
    var(--trip-bg, linear-gradient(145deg, #fff7ea, #dff7fb));
  box-shadow: 0 28px 84px rgba(23, 61, 92, 0.14);
}

.trip-card:nth-child(1),
.trip-card:nth-child(4) {
  grid-row: span 2;
  min-height: 31rem;
}

.trip-card:nth-child(2) {
  transform: translateY(3rem) rotate(2deg);
}

.trip-card:nth-child(3) {
  transform: rotate(-3deg);
}

.trip-card:nth-child(5) {
  transform: translateY(-1.2rem) rotate(-2deg);
}

.trip-card:nth-child(6) {
  transform: translateY(2rem) rotate(1.5deg);
}

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

.trip-card::after {
  right: -3rem;
  top: -4rem;
  width: 11rem;
  background: rgba(255, 253, 248, 0.26);
  backdrop-filter: blur(8px);
}

.trip-card:hover,
.trip-card.is-recommended {
  transform: translateY(-8px) rotate(0deg);
}

.process-list {
  grid-template-columns: 0.95fr 1.15fr 0.88fr 1.04fr 0.92fr;
  align-items: start;
}

.process-list li {
  border-radius: 42% 58% 48% 52% / 52% 44% 56% 48%;
  min-height: 17rem;
}

.process-list li:nth-child(even) {
  transform: translateY(2.5rem) rotate(1.4deg);
}

.process-list li:nth-child(3) {
  transform: translateY(-1rem) rotate(-1.2deg);
}

.form-layout {
  grid-template-columns: minmax(18rem, 0.64fr) minmax(24rem, 1.28fr);
}

.form-note,
.trip-form,
.journey-summary-panel,
.journey-success-panel {
  border-radius: 28px;
}

input,
select,
textarea {
  border-color: rgba(255, 253, 248, 0.78);
  background: rgba(255, 253, 248, 0.68);
}

.testimonial-grid {
  grid-template-columns: 0.96fr 1.1fr 0.94fr;
}

.testimonial-grid figure {
  border-radius: 42% 58% 46% 54% / 54% 42% 58% 46%;
  padding: clamp(1.35rem, 3vw, 2.2rem);
}

.testimonial-grid figure:nth-child(2) {
  transform: translateY(2rem) rotate(1.5deg);
}

.about-layout {
  grid-template-columns: minmax(18rem, 0.86fr) minmax(22rem, 1fr);
}

.about-image img {
  border: 8px solid rgba(255, 253, 248, 0.34);
  border-radius: 43% 57% 37% 63% / 44% 48% 52% 56%;
  transform: rotate(-3deg);
}

.faq-layout {
  grid-template-columns: minmax(16rem, 0.62fr) minmax(22rem, 1.22fr);
}

.faq-list {
  gap: 0.8rem;
}

.faq-item {
  border-radius: 22px;
}

.contact-layout {
  grid-template-columns: minmax(20rem, 0.95fr) minmax(20rem, 1.05fr);
}

.contact-card {
  border-radius: 36% 64% 42% 58% / 48% 44% 56% 52%;
  padding: clamp(1.3rem, 3vw, 2rem);
}

.map-placeholder {
  border-radius: 40% 60% 45% 55% / 50% 42% 58% 50%;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.5), rgba(185, 209, 220, 0.34)),
    repeating-linear-gradient(35deg, rgba(16,42,67,0.05), rgba(16,42,67,0.05) 1px, transparent 1px, transparent 18px);
}

@keyframes organicFloatA {
  from { transform: translate3d(0, 0, 0) rotate(-5deg); }
  to { transform: translate3d(0.8rem, 1rem, 0) rotate(-2deg); }
}

@keyframes organicFloatB {
  from { transform: translate3d(0, 0, 0) rotate(7deg); }
  to { transform: translate3d(-0.8rem, 0.7rem, 0) rotate(4deg); }
}

@media (max-width: 980px) {
  .hero-organics {
    opacity: 0.58;
  }

  .organic-photo--round {
    right: -2rem;
    top: 9rem;
  }

  .organic-photo--wide,
  .organic-photo--river {
    width: 70vw;
  }

  .compass-hero .hero-copy {
    border-radius: 28px;
  }

  .compass-hero h1 {
    color: #fffdf8;
    font-size: clamp(3rem, 13vw, 5.8rem);
  }

  .trust-grid,
  .trip-grid,
  .process-list,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trip-card:nth-child(n),
  .trust-card:nth-child(n),
  .process-list li:nth-child(n),
  .testimonial-grid figure:nth-child(n) {
    transform: none;
  }

  .hero-card {
    position: relative;
    left: auto;
    bottom: auto;
    max-width: 28rem;
  }

  .trip-card:nth-child(1),
  .trip-card:nth-child(4) {
    grid-row: auto;
    min-height: 24rem;
  }
}

@media (max-width: 640px) {
  .site-header {
    background: rgba(255, 253, 248, 0.82);
  }

  .hero {
    min-height: auto;
    padding-bottom: 2.5rem;
  }

  .hero-media {
    display: block;
    left: 0.5rem;
    top: 6.3rem;
    width: calc(100% - 1rem);
    height: 13rem;
    opacity: 0.58;
  }

  .hero-organics {
    display: none;
  }

  .compass-hero .hero-inner {
    min-height: auto;
  }

  .compass-hero .hero-copy {
    margin-top: 7rem;
    padding: 1rem 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .compass-hero h1 {
    color: var(--ink);
    text-shadow: none;
  }

  .hero-card,
  .trust-card,
  .trip-card,
  .process-list li,
  .testimonial-grid figure,
  .contact-card,
  .about-image img {
    border-radius: 22px;
  }

  .trip-card,
  .process-list li {
    min-height: auto;
  }

  .process-list li:nth-child(n),
  .testimonial-grid figure:nth-child(n) {
    transform: none;
  }

  .band::before,
  .band::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .organic-photo {
    animation: none;
  }
}

/* --- Responsive clarity pass --- */
@media (min-width: 981px) {
  .sticky-contact {
    display: none !important;
  }

  .hero {
    min-height: min(100svh, 58rem);
    padding-top: clamp(6.4rem, 8vh, 7.6rem);
    padding-bottom: clamp(3rem, 5vw, 5rem);
  }

  .compass-hero .hero-inner {
    width: min(1320px, calc(100% - clamp(3rem, 8vw, 8rem)));
    grid-template-columns: minmax(26rem, 0.92fr) minmax(28rem, 0.88fr);
    gap: clamp(2.4rem, 5vw, 5.8rem);
    min-height: clamp(34rem, 70vh, 42rem);
  }

  .compass-hero .hero-copy {
    align-self: center;
    max-width: clamp(31rem, 39vw, 39rem);
    padding: clamp(0.85rem, 1.6vw, 1.25rem);
  }

  .compass-hero h1 {
    max-width: 9.8ch;
    font-size: clamp(4.15rem, 5.25vw, 6.4rem);
  }

  .compass-hero .hero-lead {
    max-width: 27rem;
    font-size: clamp(1.02rem, 1.05vw, 1.16rem);
  }

  .compass-scene--hero {
    justify-self: end;
    width: min(38rem, 43vw);
    min-height: clamp(31rem, 56vh, 36rem);
    transform: none;
  }

  .compass-scene--hero .compass-face {
    width: min(29.5rem, 37vw, 54vh);
  }

  .compass-scene--hero .compass-orbit {
    inset: -5%;
  }

  .compass-scene--hero .orbit-label {
    min-width: 4.7rem;
    min-height: 4.7rem;
    font-size: 0.62rem;
  }

  .hero-card {
    bottom: 1rem;
  }

  .hero-trust {
    max-width: 28rem;
  }
}

@media (min-width: 1600px) {
  .compass-hero .hero-inner {
    width: min(1420px, calc(100% - 8rem));
    grid-template-columns: minmax(30rem, 0.95fr) minmax(31rem, 0.82fr);
  }

  .compass-hero h1 {
    font-size: clamp(5rem, 4.8vw, 6.2rem);
  }

  .compass-scene--hero {
    width: min(38rem, 34vw);
  }

  .organic-photo--wide {
    left: max(4vw, calc((100vw - 1540px) / 2));
    width: min(42rem, 36vw);
  }

  .organic-photo--round {
    right: max(5vw, calc((100vw - 1540px) / 2));
    width: clamp(13rem, 14vw, 18rem);
  }

  .organic-photo--soft {
    left: max(4vw, calc((100vw - 1540px) / 2));
    width: clamp(13rem, 17vw, 19rem);
  }

  .organic-photo--river {
    right: max(6vw, calc((100vw - 1540px) / 2));
    width: min(40rem, 32vw);
  }
}

@media (max-width: 1180px) and (min-width: 981px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav {
    gap: 0.12rem;
  }

  .nav a {
    padding-inline: 0.55rem;
    font-size: 0.82rem;
  }

  .header-cta {
    padding-inline: 1rem;
  }

  .compass-hero .hero-inner {
    grid-template-columns: minmax(22rem, 0.9fr) minmax(25rem, 0.82fr);
    gap: clamp(1.8rem, 3.5vw, 3rem);
  }

  .compass-hero h1 {
    font-size: clamp(3.45rem, 5.9vw, 4.6rem);
  }

  .compass-scene--hero .compass-face {
    width: min(25rem, 39vw);
  }
}

@media (max-width: 980px) {
  .sticky-contact {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding-top: 7.4rem;
  }

  .compass-hero .hero-inner {
    width: min(100% - 1.6rem, 48rem);
    gap: 1.3rem;
  }

  .compass-hero .hero-copy {
    max-width: 100%;
    align-self: stretch;
  }

  .compass-scene--hero {
    width: min(100%, 38rem);
    margin-inline: auto;
    transform: none;
  }

  .compass-scene--hero .compass-face {
    width: min(26rem, 74vw);
  }

  .hero-card {
    max-width: 100%;
    margin-inline: auto;
  }
}

@media (max-width: 760px) {
  .sticky-contact {
    display: grid !important;
    left: 0.6rem;
    right: 0.6rem;
    bottom: 0.6rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.42rem;
    padding: 0.42rem;
    border-radius: 22px;
  }

  .sticky-contact a {
    min-height: 2.55rem;
    padding-inline: 0.45rem;
    font-size: 0.78rem;
    white-space: nowrap;
  }
}

@media (max-width: 520px) {
  .hero {
    padding-top: 6.8rem;
  }

  .compass-hero .hero-inner {
    width: min(100% - 1rem, 28rem);
  }

  .hero-media {
    height: clamp(9rem, 36vw, 12rem);
    top: 5.9rem;
  }

  .compass-hero .hero-copy {
    margin-top: clamp(4.6rem, 22vw, 6.4rem);
  }

  .compass-hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.05rem);
    line-height: 0.98;
  }

  .compass-hero .hero-lead {
    font-size: 1rem;
    line-height: 1.48;
  }

  .compass-scene--hero {
    min-height: auto;
  }

  .compass-scene--hero .compass-face {
    width: min(18rem, 82vw);
  }

  .hero-card {
    display: none;
  }

  .sticky-contact {
    display: grid !important;
  }
}

/* --- Hero landing refinement: minimal copy, clear interaction --- */
.compass-hero {
  background:
    radial-gradient(ellipse 38rem 22rem at 24% 26%, rgba(255, 253, 248, 0.55), transparent 70%),
    linear-gradient(180deg, rgba(185, 209, 220, 0.95), rgba(229, 246, 244, 0.82) 56%, rgba(255, 249, 239, 0.96));
}

.sticky-contact {
  display: none !important;
}

.compass-hero .hero-media {
  opacity: 0.46;
  filter: blur(0.2px);
}

.compass-hero .organic-photo {
  opacity: 0.82;
}

.compass-hero .organic-photo--soft,
.compass-hero .organic-photo--river {
  opacity: 0.42;
}

.compass-hero .organic-photo--wide {
  top: clamp(6.4rem, 13vh, 9rem);
}

.compass-hero .organic-photo--round {
  top: clamp(8rem, 16vh, 12rem);
}

.compass-hero .hero-copy {
  border-radius: 34px;
  background: rgba(255, 253, 248, 0.22);
  box-shadow: none;
}

.compass-hero .eyebrow {
  width: max-content;
  max-width: 100%;
  margin-bottom: 0.72rem;
  padding: 0.38rem 0.64rem;
  border: 1px solid rgba(255, 253, 248, 0.56);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.34);
  color: rgba(177, 93, 67, 0.92);
  backdrop-filter: blur(14px);
}

.compass-hero h1 {
  max-width: 8.2ch;
  color: #fffdf8;
  letter-spacing: 0;
  text-wrap: balance;
}

.compass-hero .hero-lead {
  max-width: 24rem;
  margin: 1rem 0 1.4rem;
  color: rgba(16, 42, 67, 0.78);
  text-wrap: balance;
}

.compass-hero .btn-row {
  gap: 0.7rem;
}

.compass-hero .btn {
  min-height: 3.05rem;
  padding-inline: 1.18rem;
}

.compass-hero .btn-primary {
  position: relative;
  overflow: hidden;
}

.compass-hero .btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 36%, rgba(255,255,255,0.35) 50%, transparent 64% 100%);
  transform: translateX(-120%);
  transition: transform 0.8s var(--ease);
}

.compass-hero .btn-primary:hover::after,
.compass-hero .btn-primary:focus-visible::after {
  transform: translateX(120%);
}

.compass-hero .hero-card {
  width: max-content;
  max-width: 14rem;
  padding: 0.86rem 1rem;
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 16px 48px rgba(23, 61, 92, 0.1);
}

.compass-hero .hero-card strong {
  font-size: 0.95rem;
}

.compass-scene--hero {
  border-radius: 42% 58% 48% 52% / 52% 42% 58% 48%;
}

.compass-scene--hero::before {
  left: 2%;
  top: 11%;
  width: 58%;
  height: 34%;
  border-top-color: rgba(255, 253, 248, 0.34);
}

.compass-scene--hero::after {
  display: none;
}

.compass-scene--hero .compass-face {
  background:
    radial-gradient(circle at 50% 50%, rgba(255,253,248,0.94) 0 13%, transparent 14%),
    repeating-conic-gradient(from 0deg, rgba(16,42,67,0.1) 0deg 1deg, transparent 1deg 8deg),
    conic-gradient(from 0deg, rgba(127,156,122,0.19), transparent 17%, rgba(239,178,163,0.2) 28%, transparent 42%, rgba(124,199,217,0.22) 55%, transparent 68%, rgba(214,165,95,0.17) 83%, transparent),
    radial-gradient(circle, rgba(255,253,248,0.9) 0 54%, rgba(217,236,239,0.7) 55% 66%, rgba(255,253,248,0.78) 67% 100%);
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,0.72),
    inset 0 0 0 18px rgba(255,253,248,0.24),
    0 26px 75px rgba(23, 61, 92, 0.17);
}

.compass-scene--hero .orbit-label {
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(255, 253, 248, 0.72);
  box-shadow: 0 14px 34px rgba(23, 61, 92, 0.11);
  backdrop-filter: blur(16px);
}

.compass-scene--hero .orbit-label:hover,
.compass-scene--hero .orbit-label:focus-visible,
.compass-scene--hero .orbit-label.is-active {
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 20px 46px rgba(23, 61, 92, 0.16);
}

.compass-scene--hero .orbit-label:hover ~ .compass-face .needle-a,
.compass-scene--hero .orbit-label:focus-visible ~ .compass-face .needle-a {
  filter: saturate(1.1);
}

.hero-compass-result {
  bottom: clamp(-0.5rem, 2vh, 0.8rem);
  border-color: rgba(255, 253, 248, 0.76);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.84);
  backdrop-filter: blur(18px);
}

.hero-compass-result .btn {
  min-height: 2.55rem;
}

@media (min-width: 981px) {
  .compass-hero {
    min-height: min(100svh, 52rem);
    padding-bottom: clamp(2.4rem, 3.8vw, 4.5rem);
  }

  .compass-hero .hero-inner {
    width: min(1220px, calc(100% - clamp(3rem, 9vw, 10rem)));
    grid-template-columns: minmax(25rem, 0.9fr) minmax(28rem, 0.82fr);
    min-height: clamp(30rem, 62vh, 37rem);
  }

  .compass-hero h1 {
    font-size: clamp(4.2rem, 5.45vw, 6.35rem);
  }

  .compass-scene--hero {
    width: min(34rem, 39vw);
    min-height: clamp(28rem, 50vh, 34rem);
  }

  .compass-scene--hero .compass-face {
    width: min(27rem, 33vw, 49vh);
  }

  .compass-scene--hero .compass-orbit {
    inset: -6%;
  }

  .compass-scene--hero .orbit-label {
    min-width: 4.5rem;
    min-height: 4.5rem;
  }
}

@media (min-width: 1600px) {
  .compass-hero .hero-inner {
    width: min(1280px, calc(100% - 10rem));
  }

  .compass-hero h1 {
    font-size: clamp(5rem, 4.7vw, 6.1rem);
  }

  .compass-scene--hero {
    width: min(34rem, 31vw);
  }
}

@media (max-width: 980px) {
  .compass-hero .hero-copy {
    padding: clamp(0.8rem, 3vw, 1.2rem);
  }

  .compass-hero h1 {
    max-width: 9ch;
    font-size: clamp(3rem, 10vw, 5rem);
  }

  .compass-hero .hero-lead {
    max-width: 29rem;
  }
}

@media (max-width: 640px) {
  .compass-hero {
    padding-bottom: 2rem;
  }

  .compass-hero .hero-copy {
    margin-top: clamp(4.3rem, 20vw, 5.8rem);
    padding: 0;
  }

  .compass-hero .eyebrow {
    font-size: 0.68rem;
  }

  .compass-hero h1 {
    max-width: 9.5ch;
    font-size: clamp(2.55rem, 13vw, 3.45rem);
    color: var(--ink);
  }

  .compass-hero .hero-lead {
    max-width: 20rem;
    margin-bottom: 1.1rem;
  }

  .compass-hero .btn-row {
    gap: 0.55rem;
  }

  .compass-scene--hero {
    margin-top: 0.4rem;
  }

  .compass-scene--hero .compass-orbit {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0.1rem 0.1rem 0.45rem;
    scrollbar-width: none;
  }

  .compass-scene--hero .compass-orbit::-webkit-scrollbar {
    display: none;
  }

  .compass-scene--hero .orbit-label {
    flex: 0 0 auto;
    min-height: 2.55rem;
    border-radius: 999px;
    font-size: 0.68rem;
  }

  .compass-scene--hero .compass-face {
    width: min(16.5rem, 76vw);
    margin-top: 0.15rem;
  }

  .hero-compass-result {
    border-radius: 18px;
  }
}

/* --- 2026 premium cinematic hero --- */
:root {
  --hero-ink: #092237;
  --hero-cream: #fff6e8;
  --hero-gold: #d6a866;
  --hero-copper: #d98a6a;
  --hero-teal: #0f6270;
  --hero-night: #071827;
}

.site-header {
  width: min(1280px, calc(100% - 2rem));
  margin-top: 0.75rem;
  padding: 0.52rem 0.62rem 0.52rem 0.68rem;
  border: 1px solid rgba(255, 246, 232, 0.26);
  background: rgba(8, 28, 43, 0.34);
  color: var(--hero-cream);
  box-shadow: 0 22px 70px rgba(7, 24, 39, 0.18);
}

.site-header.is-scrolled {
  background: rgba(8, 28, 43, 0.78);
  box-shadow: 0 22px 70px rgba(7, 24, 39, 0.28);
}

.brand small {
  color: rgba(255, 246, 232, 0.68);
}

.nav {
  border-color: rgba(255, 246, 232, 0.16);
  background: rgba(255, 246, 232, 0.1);
  color: rgba(255, 246, 232, 0.78);
}

.nav a:hover {
  background: rgba(255, 246, 232, 0.18);
  color: #fffdf8;
}

.header-cta.btn-primary {
  background: linear-gradient(135deg, #fff0d6, #d6a866 48%, #d98a6a);
  color: #092237;
  box-shadow: 0 18px 44px rgba(217, 138, 106, 0.28);
}

.menu-toggle {
  border-color: rgba(255, 246, 232, 0.24);
  background: rgba(255, 246, 232, 0.12);
  color: var(--hero-cream);
}

.compass-hero {
  min-height: 100svh;
  padding: clamp(7rem, 10vh, 8.5rem) 0 clamp(3rem, 6vh, 5rem);
  color: var(--hero-cream);
  background:
    radial-gradient(ellipse 45rem 30rem at 68% 48%, rgba(255, 215, 164, 0.42), transparent 68%),
    radial-gradient(ellipse 46rem 28rem at 28% 34%, rgba(23, 110, 124, 0.42), transparent 72%),
    linear-gradient(130deg, #071827 0%, #0c3f51 42%, #d28c6d 118%);
}

.compass-hero::before {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255,246,232,0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,246,232,0.03) 1px, transparent 1px),
    radial-gradient(ellipse 58rem 36rem at 62% 50%, rgba(255,246,232,0.16), transparent 72%),
    linear-gradient(180deg, rgba(7,24,39,0.2), rgba(7,24,39,0.48));
  background-size: 72px 72px, 72px 72px, auto, auto;
}

.compass-hero::after {
  content: "";
  position: absolute;
  inset: 13% -8% auto auto;
  width: min(58rem, 56vw);
  height: min(58rem, 56vw);
  border: 1px solid rgba(255, 246, 232, 0.1);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 220, 170, 0.24), transparent 58%),
    repeating-radial-gradient(circle, rgba(255,246,232,0.09) 0 1px, transparent 1px 58px);
  opacity: 0.9;
  pointer-events: none;
}

.compass-hero .hero-inner {
  width: min(1240px, calc(100% - clamp(2rem, 7vw, 7rem)));
  min-height: clamp(34rem, 68vh, 43rem);
  display: grid;
  grid-template-columns: minmax(24rem, 0.86fr) minmax(31rem, 0.94fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.compass-hero .hero-copy {
  z-index: 5;
  max-width: 36rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.compass-hero .eyebrow {
  margin-bottom: 1.1rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 214, 158, 0.92);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  backdrop-filter: none;
}

.compass-hero h1 {
  max-width: 10.5ch;
  color: var(--hero-cream);
  font-size: clamp(4.25rem, 6.1vw, 7.05rem);
  line-height: 0.91;
  text-shadow: 0 24px 74px rgba(0, 0, 0, 0.28);
}

.compass-hero .hero-lead {
  max-width: 32rem;
  margin: 1.35rem 0 1.75rem;
  color: rgba(255, 246, 232, 0.8);
  font-size: clamp(1.06rem, 1.25vw, 1.24rem);
  font-weight: 500;
}

.compass-hero .btn-row {
  gap: 0.78rem;
}

.compass-hero .btn {
  min-height: 3.18rem;
  padding: 0.9rem 1.2rem;
}

.compass-hero .btn-primary {
  background: linear-gradient(135deg, #fff0d6, #d6a866 46%, #d98a6a);
  color: #092237;
  box-shadow: 0 22px 54px rgba(217, 138, 106, 0.27);
}

.compass-hero .btn-ghost {
  border-color: rgba(255, 246, 232, 0.24);
  background: rgba(255, 246, 232, 0.1);
  color: var(--hero-cream);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

.hero-trustline {
  max-width: 31rem;
  margin: 1.15rem 0 0;
  color: rgba(255, 246, 232, 0.66);
  font-size: 0.9rem;
  font-weight: 700;
}

.compass-hero .hero-media {
  left: 50%;
  top: 14%;
  width: min(42rem, 44vw);
  height: min(25rem, 30vw);
  border: 0;
  border-radius: 42% 58% 46% 54% / 48% 42% 58% 52%;
  opacity: 0.23;
  filter: saturate(0.88) contrast(1.08);
  mix-blend-mode: screen;
  transform: rotate(-8deg) translateX(-22%);
  box-shadow: none;
}

.compass-hero .hero-media::before {
  display: none;
}

.compass-hero .hero-media img {
  filter: contrast(1.06) saturate(0.95);
}

.compass-hero .organic-photo {
  border: 1px solid rgba(255, 246, 232, 0.28);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
  opacity: 0.7;
}

.compass-hero .organic-photo--wide {
  left: auto;
  right: clamp(2rem, 5vw, 5rem);
  top: clamp(7.6rem, 13vh, 10rem);
  width: min(24rem, 24vw);
  height: clamp(8rem, 12vw, 12rem);
  border-radius: 34% 66% 46% 54% / 48% 42% 58% 52%;
}

.compass-hero .organic-photo--round {
  right: clamp(4rem, 8vw, 9rem);
  top: auto;
  bottom: clamp(2rem, 7vh, 5rem);
  width: clamp(10rem, 16vw, 16rem);
  opacity: 0.62;
}

.compass-hero .organic-photo--soft,
.compass-hero .organic-photo--river {
  display: none;
}

.compass-hero .hero-ticket,
.compass-hero .hero-sun,
.compass-hero .hero-card {
  display: none;
}

.compass-scene--hero {
  justify-self: end;
  width: min(41rem, 43vw);
  min-height: clamp(32rem, 61vh, 40rem);
  display: grid;
  place-items: center;
  border-radius: 50%;
  transform: translateX(1.4rem);
}

.compass-scene--hero::before {
  content: "";
  position: absolute;
  inset: 4%;
  width: auto;
  height: auto;
  border: 1px solid rgba(255, 246, 232, 0.14);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 218, 166, 0.18), transparent 55%),
    conic-gradient(from 18deg, transparent, rgba(255,246,232,0.16), transparent 24%, transparent 100%);
  filter: blur(0);
  transform: none;
}

.compass-scene--hero .compass-orbit {
  inset: 3%;
  border: 1px solid rgba(255, 246, 232, 0.13);
  box-shadow: inset 0 0 0 1px rgba(255, 246, 232, 0.04);
}

.compass-scene--hero .compass-orbit::before {
  inset: 20%;
  border-color: rgba(255, 246, 232, 0.1);
}

.compass-scene--hero .compass-face {
  width: min(31rem, 34vw, 58vh);
  border: 1px solid rgba(255, 246, 232, 0.44);
  background:
    radial-gradient(circle at 42% 36%, rgba(255,255,255,0.72), transparent 0.35rem),
    radial-gradient(circle at 50% 50%, rgba(255,246,232,0.95) 0 12%, transparent 13%),
    repeating-conic-gradient(from 0deg, rgba(9,34,55,0.13) 0deg 1deg, transparent 1deg 7deg),
    conic-gradient(from 18deg, rgba(255,246,232,0.24), transparent 16%, rgba(15,98,112,0.18) 28%, transparent 44%, rgba(217,138,106,0.18) 62%, transparent 78%, rgba(214,168,102,0.18)),
    radial-gradient(circle, #fff9ed 0 53%, #d7e2df 54% 63%, #f5e0c1 64% 72%, #8d6842 73% 74%, #f7ead5 75% 100%);
  box-shadow:
    inset 0 2px 8px rgba(255,255,255,0.65),
    inset 0 -18px 40px rgba(9,34,55,0.08),
    0 30px 70px rgba(0,0,0,0.26),
    0 0 100px rgba(255, 203, 142, 0.18);
  transform: perspective(900px) rotateX(9deg) rotateZ(-2deg);
  animation: compassArtifactIn 1.05s var(--ease) both, compassBreath 7s var(--ease) 1.2s infinite alternate;
}

.compass-scene--hero .compass-face::before {
  inset: 9%;
  border-color: rgba(9, 34, 55, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.46);
}

.compass-scene--hero .compass-face::after {
  inset: 25%;
  border-color: rgba(9, 34, 55, 0.18);
}

.compass-scene--hero .needle-a {
  background: linear-gradient(#0f6270, #071827);
  box-shadow: 0 10px 22px rgba(7, 24, 39, 0.18);
}

.compass-scene--hero .needle-b {
  background: linear-gradient(#f2c981, #9b6334);
}

.compass-scene--hero .compass-pin {
  background: radial-gradient(circle at 36% 32%, #fff4d7, #d6a866 48%, #8d5f2e 100%);
  box-shadow: 0 12px 30px rgba(9, 34, 55, 0.26);
}

.compass-scene--hero .orbit-label {
  min-width: 6rem;
  min-height: 3rem;
  padding: 0.58rem 0.76rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 246, 232, 0.28);
  background: rgba(7, 24, 39, 0.42);
  color: rgba(255, 246, 232, 0.86);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
  transform: rotate(0deg);
  animation: moodIn 0.7s var(--ease) both;
}

.compass-scene--hero .orbit-label span {
  color: var(--hero-gold);
}

.compass-scene--hero .orbit-label--family { top: 19%; right: 3%; animation-delay: 0.1s; }
.compass-scene--hero .orbit-label--romance { right: 1%; bottom: 29%; animation-delay: 0.18s; }
.compass-scene--hero .orbit-label--city { right: 27%; bottom: 1%; animation-delay: 0.26s; }
.compass-scene--hero .orbit-label--exotic { left: 8%; bottom: 13%; animation-delay: 0.34s; }
.compass-scene--hero .orbit-label--tour { left: 0; top: 38%; animation-delay: 0.42s; }

.compass-scene--hero .orbit-label:hover,
.compass-scene--hero .orbit-label:focus-visible,
.compass-scene--hero .orbit-label.is-active {
  background: rgba(255, 246, 232, 0.9);
  color: var(--hero-ink);
  border-color: rgba(255, 246, 232, 0.7);
  transform: translateY(-3px);
}

.hero-compass-result {
  left: 50%;
  bottom: -0.3rem;
  width: min(25rem, 84vw);
  border: 1px solid rgba(255, 246, 232, 0.34);
  border-radius: 20px;
  background: rgba(8, 28, 43, 0.78);
  color: var(--hero-cream);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
}

.hero-compass-result small {
  color: rgba(255, 246, 232, 0.66);
}

@keyframes compassArtifactIn {
  from { opacity: 0; transform: perspective(900px) rotateX(16deg) rotateZ(-10deg) scale(0.88); filter: blur(8px); }
  to { opacity: 1; transform: perspective(900px) rotateX(9deg) rotateZ(-2deg) scale(1); filter: blur(0); }
}

@keyframes compassBreath {
  from { transform: perspective(900px) rotateX(9deg) rotateZ(-2deg) translateY(0); }
  to { transform: perspective(900px) rotateX(8deg) rotateZ(0.5deg) translateY(-0.45rem); }
}

@keyframes moodIn {
  from { opacity: 0; transform: translateY(0.9rem) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1180px) and (min-width: 981px) {
  .compass-hero .hero-inner {
    grid-template-columns: minmax(23rem, 0.86fr) minmax(27rem, 0.88fr);
    gap: clamp(2rem, 4vw, 3.8rem);
  }

  .compass-hero h1 {
    font-size: clamp(3.7rem, 5.3vw, 5rem);
  }

  .compass-scene--hero .compass-face {
    width: min(27rem, 36vw);
  }
}

@media (max-width: 980px) {
  .site-header {
    background: rgba(8, 28, 43, 0.62);
  }

  .compass-hero {
    min-height: auto;
    padding-top: 7.2rem;
    padding-bottom: 3.4rem;
  }

  .compass-hero .hero-inner {
    width: min(100% - 1.6rem, 46rem);
    grid-template-columns: 1fr;
    gap: 2.1rem;
  }

  .compass-hero .hero-copy {
    max-width: 40rem;
  }

  .compass-hero h1 {
    max-width: 10.5ch;
    font-size: clamp(3.3rem, 11vw, 5.5rem);
    color: var(--hero-cream);
  }

  .compass-hero .hero-lead {
    max-width: 34rem;
  }

  .compass-scene--hero {
    justify-self: center;
    width: min(38rem, 92vw);
    min-height: 32rem;
    transform: none;
  }

  .compass-scene--hero .compass-face {
    width: min(25rem, 64vw);
  }

  .compass-hero .organic-photo--wide {
    right: -3rem;
    top: 7rem;
    width: 18rem;
  }

  .compass-hero .organic-photo--soft {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 1rem);
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .compass-hero {
    padding-top: 6.6rem;
    background:
      radial-gradient(ellipse 22rem 18rem at 72% 38%, rgba(255, 215, 164, 0.32), transparent 70%),
      linear-gradient(145deg, #071827 0%, #0c3f51 56%, #b77762 120%);
  }

  .compass-hero .hero-inner {
    width: min(100% - 1rem, 29rem);
    gap: 1.8rem;
  }

  .compass-hero .hero-media {
    left: auto;
    right: -3rem;
    top: 6.2rem;
    width: 18rem;
    height: 11rem;
    opacity: 0.18;
    transform: rotate(-10deg);
  }

  .compass-hero .hero-copy {
    margin-top: 0;
  }

  .compass-hero .eyebrow {
    font-size: 0.66rem;
  }

  .compass-hero h1 {
    max-width: 9.8ch;
    font-size: clamp(2.9rem, 14vw, 4rem);
    color: var(--hero-cream);
  }

  .compass-hero .hero-lead {
    max-width: 23rem;
    color: rgba(255, 246, 232, 0.78);
  }

  .compass-hero .btn-row {
    align-items: stretch;
  }

  .hero-trustline {
    font-size: 0.82rem;
  }

  .compass-hero .organic-photo {
    display: none;
  }

  .compass-scene--hero {
    width: 100%;
    min-height: 27rem;
    margin-top: 0;
  }

  .compass-scene--hero .compass-orbit {
    position: relative;
    inset: auto;
    order: 2;
    display: flex;
    gap: 0.55rem;
    width: 100%;
    padding: 0.25rem 0 0.65rem;
    border: 0;
    overflow-x: auto;
    transform: none;
    scrollbar-width: none;
  }

  .compass-scene--hero .compass-orbit::before,
  .compass-scene--hero::before {
    display: none;
  }

  .compass-scene--hero .compass-orbit::-webkit-scrollbar {
    display: none;
  }

  .compass-scene--hero .orbit-label {
    position: static;
    flex: 0 0 auto;
    min-width: auto;
    min-height: 2.55rem;
    padding: 0.56rem 0.78rem;
    transform: none;
  }

  .compass-scene--hero .orbit-label::after {
    display: none;
  }

  .compass-scene--hero .compass-face {
    order: 1;
    width: min(18.5rem, 78vw);
  }

  .hero-compass-result {
    position: static;
    order: 3;
    width: 100%;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .compass-scene--hero .compass-face,
  .compass-scene--hero .orbit-label {
    animation: none;
  }
}

/* --- Compass flow: one-screen priority picker --- */
.travel-compass.is-step-filters,
.travel-compass.is-step-results {
  min-height: 100svh;
  padding: clamp(5.8rem, 8vh, 7rem) 0 clamp(2rem, 4vh, 3rem);
  background:
    radial-gradient(ellipse 40rem 28rem at 52% 42%, rgba(255, 250, 239, 0.9), transparent 68%),
    linear-gradient(120deg, #dceff0 0%, #fff9ef 54%, #f0c4ad 118%);
}

.travel-compass.is-step-filters > .wrap,
.travel-compass.is-step-results > .wrap {
  width: min(1180px, calc(100% - clamp(2rem, 6vw, 5rem)));
  min-height: calc(100svh - 10rem);
  display: grid;
  grid-template-columns: minmax(22rem, 0.82fr) minmax(28rem, 1fr);
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem) clamp(1.8rem, 4vw, 3rem);
  align-items: center;
}

.travel-compass.is-step-filters .section-head,
.travel-compass.is-step-results .section-head {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(14rem, 0.8fr) minmax(22rem, 1fr);
  align-items: end;
  gap: 1.4rem;
  max-width: none;
  margin: 0;
}

.travel-compass.is-step-filters .section-head .eyebrow,
.travel-compass.is-step-results .section-head .eyebrow {
  margin: 0 0 0.35rem;
}

.travel-compass.is-step-filters .section-head h2,
.travel-compass.is-step-results .section-head h2 {
  max-width: 12ch;
  font-size: clamp(1.75rem, 3.6vw, 3rem);
}

.travel-compass.is-step-filters .section-head p:not(.eyebrow),
.travel-compass.is-step-results .section-head p:not(.eyebrow) {
  justify-self: end;
  max-width: 24rem;
  margin: 0;
  font-size: 0.98rem;
}

.travel-compass.is-step-filters .compass-progress,
.travel-compass.is-step-results .compass-progress {
  grid-column: 1 / -1;
  width: min(36rem, 100%);
  margin: -0.35rem 0 0;
}

.travel-compass.is-step-filters .compass-tool-layout,
.travel-compass.is-step-results .compass-tool-layout {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  align-self: center;
}

.travel-compass.is-step-filters .compass-tool-card,
.travel-compass.is-step-results .compass-tool-card {
  min-height: min(34rem, 58vh);
}

.travel-compass.is-step-filters .compass-scene--tool,
.travel-compass.is-step-results .compass-scene--tool {
  min-height: min(33rem, 56vh);
}

.travel-compass.is-step-filters .compass-scene--tool .compass-face,
.travel-compass.is-step-results .compass-scene--tool .compass-face {
  width: min(24rem, 34vw, 50vh);
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,0.72),
    inset 0 0 0 18px rgba(255,253,248,0.24),
    0 28px 72px rgba(23, 61, 92, 0.18);
}

.travel-compass.is-step-filters .compass-scene--tool .orbit-label,
.travel-compass.is-step-results .compass-scene--tool .orbit-label {
  min-width: 4.8rem;
  min-height: 4.8rem;
  padding: 0.55rem;
  font-size: 0.58rem;
}

.compass-filter-orbit {
  display: none;
}

.travel-compass.is-step-filters .compass-scene--tool .compass-orbit,
.travel-compass.is-step-results .compass-scene--tool .compass-orbit {
  display: none;
}

.travel-compass.is-step-filters .compass-filter-orbit,
.travel-compass.is-step-results .compass-filter-orbit {
  position: absolute;
  inset: -5%;
  z-index: 3;
  display: block;
  border: 1px solid rgba(214, 165, 95, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.travel-compass.is-step-filters .compass-filter-orbit::before,
.travel-compass.is-step-results .compass-filter-orbit::before {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px dashed rgba(16, 42, 67, 0.13);
  border-radius: 50%;
}

.filter-orbit-point {
  position: absolute;
  min-width: 6.35rem;
  min-height: 2.75rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(255, 253, 248, 0.72);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.84), rgba(255, 246, 232, 0.58));
  color: var(--ink);
  box-shadow: 0 16px 38px rgba(96, 74, 38, 0.11);
  backdrop-filter: blur(16px);
  cursor: pointer;
  font: 800 0.64rem/1.1 "JetBrains Mono", monospace;
  text-transform: uppercase;
  text-align: center;
  pointer-events: auto;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease), opacity 0.25s var(--ease);
}

.filter-orbit-point::before {
  content: "";
  display: inline-block;
  width: 0.54rem;
  height: 0.54rem;
  margin-right: 0.36rem;
  border: 2px solid rgba(16, 42, 67, 0.25);
  border-radius: 50%;
  vertical-align: -0.02rem;
}

.filter-orbit-point:hover,
.filter-orbit-point:focus-visible {
  transform: translateY(-3px) scale(1.02);
  border-color: rgba(255, 122, 89, 0.52);
  box-shadow: 0 22px 52px rgba(96, 74, 38, 0.16);
}

.filter-orbit-point.is-active {
  border-color: rgba(255, 122, 89, 0.76);
  background: linear-gradient(135deg, rgba(255, 224, 194, 0.96), rgba(255, 253, 248, 0.9));
  color: #8c3e2c;
  box-shadow: 0 22px 58px rgba(255, 122, 89, 0.2);
}

.filter-orbit-point.is-active::before {
  border-color: #ff7a59;
  background: #ff7a59;
  box-shadow: inset 0 0 0 3px #fffdf8;
}

.filter-orbit-point--flight { left: calc(50% - 3.2rem); top: -1.3rem; }
.filter-orbit-point--passport { right: 6%; top: 14%; }
.filter-orbit-point--winter { right: -3%; top: 45%; }
.filter-orbit-point--kids { right: 11%; bottom: 8%; }
.filter-orbit-point--budget { left: calc(50% - 3.2rem); bottom: -1.35rem; }
.filter-orbit-point--premium { left: 8%; bottom: 9%; }
.filter-orbit-point--sightseeing { left: -5%; top: 45%; }
.filter-orbit-point--calm { left: 8%; top: 14%; }

.travel-compass.is-step-filters .compass-panel,
.travel-compass.is-step-results .compass-panel {
  display: none;
}

.travel-compass.is-step-filters .compass-results,
.travel-compass.is-step-results .compass-results {
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 0;
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid rgba(255, 253, 248, 0.72);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.62);
  box-shadow: 0 28px 80px rgba(96, 74, 38, 0.1);
  backdrop-filter: blur(18px);
}

.travel-compass.is-step-filters .compass-results::before,
.travel-compass.is-step-results .compass-results::before {
  display: none;
}

.compass-stage-copy {
  display: grid;
  gap: 0.42rem;
}

.compass-stage-copy .eyebrow {
  margin: 0;
}

.compass-stage-copy h3 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.filter-limit {
  margin: 0;
  color: rgba(16, 42, 67, 0.68);
  font-weight: 800;
}

.filter-limit span {
  display: inline-grid;
  place-items: center;
  min-width: 3rem;
  min-height: 1.85rem;
  margin-right: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 224, 194, 0.72);
  color: #994b36;
}

.travel-compass.is-step-filters .compass-live-plan,
.travel-compass.is-step-results .compass-live-plan {
  margin: 0;
  padding: 0.75rem 0.85rem;
  border-color: rgba(16, 42, 67, 0.08);
  background: rgba(255, 255, 255, 0.48);
}

.travel-compass.is-step-filters .compass-live-plan strong,
.travel-compass.is-step-results .compass-live-plan strong {
  display: none;
}

.travel-compass.is-step-filters .compass-live-plan span,
.travel-compass.is-step-results .compass-live-plan span {
  color: rgba(16, 42, 67, 0.7);
}

.travel-compass.is-step-filters .filter-cloud,
.travel-compass.is-step-results .filter-cloud {
  display: none;
}

.travel-compass.is-step-filters .filter-cloud button,
.travel-compass.is-step-results .filter-cloud button {
  min-height: 4.15rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(16, 42, 67, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
  text-align: left;
  box-shadow: 0 14px 32px rgba(96, 74, 38, 0.07);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.travel-compass.is-step-filters .filter-cloud button::before,
.travel-compass.is-step-results .filter-cloud button::before {
  content: "";
  display: inline-block;
  width: 0.66rem;
  height: 0.66rem;
  margin-right: 0.5rem;
  border: 2px solid rgba(16, 42, 67, 0.25);
  border-radius: 50%;
  vertical-align: 0.02rem;
}

.travel-compass.is-step-filters .filter-cloud button:hover,
.travel-compass.is-step-results .filter-cloud button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(96, 74, 38, 0.1);
}

.travel-compass.is-step-filters .filter-cloud button.is-active,
.travel-compass.is-step-results .filter-cloud button.is-active {
  border-color: rgba(255, 122, 89, 0.72);
  background: linear-gradient(135deg, rgba(255, 224, 194, 0.9), rgba(255, 253, 248, 0.86));
  color: #8c3e2c;
  box-shadow: 0 18px 48px rgba(255, 122, 89, 0.15);
}

.travel-compass.is-step-filters .filter-cloud button.is-active::before,
.travel-compass.is-step-results .filter-cloud button.is-active::before {
  border-color: #ff7a59;
  background: #ff7a59;
  box-shadow: inset 0 0 0 3px #fffdf8;
}

.travel-compass.is-step-filters .destination-grid {
  display: none;
}

.travel-compass.is-step-results .destination-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.travel-compass.is-step-filters .destination-hint {
  display: none;
}

.travel-compass.is-step-filters .compass-step-actions--results,
.travel-compass.is-step-results .compass-step-actions--results {
  justify-content: space-between;
  gap: 0.6rem;
  margin-top: 0.1rem;
}

.travel-compass.is-step-filters [data-journey-next],
.travel-compass.is-step-filters [data-compass-submit] {
  display: none;
}

.travel-compass.is-step-results [data-flow-next="results"] {
  display: none;
}

.travel-compass.is-step-results [data-journey-next],
.travel-compass.is-step-results [data-compass-submit] {
  display: inline-flex;
}

@media (max-width: 980px) {
  .travel-compass.is-step-filters,
  .travel-compass.is-step-results {
    min-height: auto;
    padding-top: 6rem;
  }

  .travel-compass.is-step-filters > .wrap,
  .travel-compass.is-step-results > .wrap {
    width: min(100% - 1.25rem, 44rem);
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1rem;
  }

  .travel-compass.is-step-filters .section-head,
  .travel-compass.is-step-results .section-head,
  .travel-compass.is-step-filters .compass-progress,
  .travel-compass.is-step-results .compass-progress,
  .travel-compass.is-step-filters .compass-tool-layout,
  .travel-compass.is-step-results .compass-tool-layout,
  .travel-compass.is-step-filters .compass-results,
  .travel-compass.is-step-results .compass-results {
    grid-column: 1;
    grid-row: auto;
  }

  .travel-compass.is-step-filters .section-head,
  .travel-compass.is-step-results .section-head {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .travel-compass.is-step-filters .section-head p:not(.eyebrow),
  .travel-compass.is-step-results .section-head p:not(.eyebrow) {
    justify-self: start;
  }

  .travel-compass.is-step-filters .compass-tool-card,
  .travel-compass.is-step-results .compass-tool-card,
  .travel-compass.is-step-filters .compass-scene--tool,
  .travel-compass.is-step-results .compass-scene--tool {
    min-height: 18rem;
  }

  .travel-compass.is-step-filters .compass-scene--tool .compass-face,
  .travel-compass.is-step-results .compass-scene--tool .compass-face {
    width: min(17rem, 72vw);
  }

  .travel-compass.is-step-filters .compass-orbit,
  .travel-compass.is-step-results .compass-orbit {
    display: none;
  }
}

@media (max-width: 640px) {
  .travel-compass.is-step-filters,
  .travel-compass.is-step-results {
    padding-top: 5.5rem;
  }

  .travel-compass.is-step-filters .section-head p:not(.eyebrow),
  .travel-compass.is-step-results .section-head p:not(.eyebrow) {
    display: none;
  }

  .travel-compass.is-step-filters .compass-progress,
  .travel-compass.is-step-results .compass-progress {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.35rem;
  }

  .travel-compass.is-step-filters .compass-progress li,
  .travel-compass.is-step-results .compass-progress li {
    min-height: 2rem;
    font-size: 0.56rem;
  }

  .travel-compass.is-step-filters .filter-cloud,
  .travel-compass.is-step-results .filter-cloud,
  .travel-compass.is-step-results .destination-grid {
    grid-template-columns: 1fr;
  }

  .travel-compass.is-step-filters .filter-cloud button,
  .travel-compass.is-step-results .filter-cloud button {
    min-height: 3.25rem;
  }

  .travel-compass.is-step-filters .compass-step-actions--results,
  .travel-compass.is-step-results .compass-step-actions--results {
    justify-content: stretch;
  }
}

/* --- Premium interaction polish for Compass --- */
.travel-compass.is-step-filters,
.travel-compass.is-step-results {
  isolation: isolate;
}

.travel-compass.is-step-filters::after,
.travel-compass.is-step-results::after {
  content: "";
  position: absolute;
  inset: auto 8% 6% auto;
  width: min(34rem, 34vw);
  height: min(18rem, 22vw);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 122, 89, 0.14), transparent 68%);
  pointer-events: none;
  animation: compassAmbientGlow 8s var(--ease) infinite alternate;
}

.travel-compass.is-step-filters .compass-results,
.travel-compass.is-step-results .compass-results {
  position: relative;
  overflow: hidden;
}

.travel-compass.is-step-filters .compass-results::after,
.travel-compass.is-step-results .compass-results::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 35%, rgba(255,255,255,0.28) 48%, transparent 62% 100%),
    radial-gradient(circle at 12% 0%, rgba(255, 224, 194, 0.22), transparent 34%);
  opacity: 0.5;
  pointer-events: none;
  transform: translateX(-22%);
  animation: compassPanelSheen 9s var(--ease) infinite;
}

.compass-stage-copy,
.filter-cloud,
.compass-step-actions--results,
.destination-grid {
  position: relative;
  z-index: 1;
}

.travel-compass.is-step-filters .compass-scene--tool .compass-face,
.travel-compass.is-step-results .compass-scene--tool .compass-face {
  animation: none;
  will-change: transform, filter;
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease), filter 0.55s var(--ease);
}

.travel-compass[data-selected-filter-count="1"] .compass-scene--tool .compass-face {
  transform: rotate(-1deg) scale(1.01);
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,0.72),
    inset 0 0 0 18px rgba(255,253,248,0.24),
    0 30px 78px rgba(23, 61, 92, 0.2),
    0 0 46px rgba(255, 122, 89, 0.12);
}

.travel-compass[data-selected-filter-count="2"] .compass-scene--tool .compass-face {
  transform: rotate(1.2deg) scale(1.018);
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,0.72),
    inset 0 0 0 18px rgba(255,253,248,0.24),
    0 32px 82px rgba(23, 61, 92, 0.22),
    0 0 58px rgba(255, 122, 89, 0.17);
}

.travel-compass[data-selected-filter-count="3"] .compass-scene--tool .compass-face {
  transform: rotate(0deg) scale(1.026);
  filter: saturate(1.04);
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,0.75),
    inset 0 0 0 18px rgba(255,253,248,0.26),
    0 34px 90px rgba(23, 61, 92, 0.24),
    0 0 70px rgba(255, 122, 89, 0.22);
}

.travel-compass[data-selected-filter-count="3"] .filter-limit span {
  background: linear-gradient(135deg, #173d5c, #ff7a59);
  color: #fffdf8;
  box-shadow: 0 12px 32px rgba(255, 122, 89, 0.24);
}

.travel-compass.is-limit-denied .filter-limit span {
  animation: limitDenied 0.48s var(--ease) both;
}

.travel-compass[data-selected-filter-count="3"] .filter-cloud button:not(.is-active) {
  opacity: 0.54;
}

.travel-compass[data-selected-filter-count="3"] .filter-cloud button:not(.is-active):hover {
  transform: none;
  box-shadow: 0 14px 32px rgba(96, 74, 38, 0.07);
}

.travel-compass.is-step-filters .filter-cloud button,
.travel-compass.is-step-results .filter-cloud button {
  position: relative;
  overflow: hidden;
}

.travel-compass.is-step-filters .filter-cloud button::after,
.travel-compass.is-step-results .filter-cloud button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 35%, rgba(255,255,255,0.42) 50%, transparent 65% 100%);
  opacity: 0;
  transform: translateX(-110%);
  transition: opacity 0.2s var(--ease), transform 0.55s var(--ease);
  pointer-events: none;
}

.travel-compass.is-step-filters .filter-cloud button:hover::after,
.travel-compass.is-step-results .filter-cloud button:hover::after,
.travel-compass.is-step-filters .filter-cloud button.is-active::after,
.travel-compass.is-step-results .filter-cloud button.is-active::after {
  opacity: 0.65;
  transform: translateX(110%);
}

.travel-compass.is-step-filters .filter-cloud button.is-active,
.travel-compass.is-step-results .filter-cloud button.is-active {
  transform: translateY(-3px);
}

.travel-compass.is-step-filters .filter-cloud button.is-active::before,
.travel-compass.is-step-results .filter-cloud button.is-active::before {
  animation: selectedPulse 0.42s var(--ease) both;
}

.travel-compass[data-selected-filter-count="3"] .filter-orbit-point:not(.is-active) {
  opacity: 0.48;
}

.travel-compass[data-selected-filter-count="3"] .filter-orbit-point:not(.is-active):hover {
  transform: none;
  box-shadow: 0 16px 38px rgba(96, 74, 38, 0.11);
}

.filter-orbit-point.is-active::before {
  animation: selectedPulse 0.42s var(--ease) both;
}

.travel-compass.is-limit-denied .filter-orbit-point:not(.is-active) {
  animation: orbitDenied 0.48s var(--ease) both;
}

.travel-compass.is-step-filters .compass-step-actions--results .btn-primary,
.travel-compass.is-step-results .compass-step-actions--results .btn-primary {
  position: relative;
  overflow: hidden;
}

.travel-compass.is-step-filters .compass-step-actions--results .btn-primary::after,
.travel-compass.is-step-results .compass-step-actions--results .btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 35%, rgba(255,255,255,0.28) 50%, transparent 65% 100%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}

.travel-compass.is-step-filters .compass-step-actions--results .btn-primary:hover::after,
.travel-compass.is-step-results .compass-step-actions--results .btn-primary:hover::after,
.travel-compass.is-step-filters .compass-step-actions--results .btn-primary:focus-visible::after,
.travel-compass.is-step-results .compass-step-actions--results .btn-primary:focus-visible::after {
  transform: translateX(120%);
}

@keyframes compassAmbientGlow {
  from { opacity: 0.56; transform: translate3d(0, 0, 0) scale(1); }
  to { opacity: 0.9; transform: translate3d(-1.2rem, -0.6rem, 0) scale(1.06); }
}

@keyframes compassPanelSheen {
  0%, 42% { transform: translateX(-65%); opacity: 0; }
  54% { opacity: 0.55; }
  72%, 100% { transform: translateX(65%); opacity: 0; }
}

@keyframes selectedPulse {
  0% { transform: scale(0.78); }
  70% { transform: scale(1.13); }
  100% { transform: scale(1); }
}

@keyframes limitDenied {
  0%, 100% { transform: translateX(0); }
  18% { transform: translateX(-4px); }
  36% { transform: translateX(4px); }
  54% { transform: translateX(-3px); }
  72% { transform: translateX(3px); }
}

@keyframes orbitDenied {
  0%, 100% { filter: saturate(1); }
  45% { filter: saturate(0.55) brightness(0.98); }
}

@media (max-width: 980px) {
  .travel-compass.is-step-filters .compass-scene--tool,
  .travel-compass.is-step-results .compass-scene--tool {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .travel-compass.is-step-filters .compass-filter-orbit,
  .travel-compass.is-step-results .compass-filter-orbit {
    position: relative;
    inset: auto;
    order: 2;
    display: flex;
    gap: 0.55rem;
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.25rem 0.1rem 0.5rem;
    border: 0;
    border-radius: 0;
    overflow-x: auto;
    pointer-events: auto;
    scrollbar-width: none;
  }

  .travel-compass.is-step-filters .compass-filter-orbit::-webkit-scrollbar,
  .travel-compass.is-step-results .compass-filter-orbit::-webkit-scrollbar {
    display: none;
  }

  .travel-compass.is-step-filters .compass-filter-orbit::before,
  .travel-compass.is-step-results .compass-filter-orbit::before {
    display: none;
  }

  .filter-orbit-point {
    position: static;
    flex: 0 0 auto;
    min-width: auto;
    min-height: 2.55rem;
    padding: 0.55rem 0.75rem;
    transform: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .travel-compass.is-step-filters::after,
  .travel-compass.is-step-results::after,
  .travel-compass.is-step-filters .compass-results::after,
  .travel-compass.is-step-results .compass-results::after,
  .travel-compass.is-limit-denied .filter-limit span,
  .travel-compass.is-step-filters .filter-cloud button.is-active::before,
  .travel-compass.is-step-results .filter-cloud button.is-active::before,
  .filter-orbit-point.is-active::before,
  .travel-compass.is-limit-denied .filter-orbit-point:not(.is-active) {
    animation: none;
  }
}

/* --- Compass as the single picker across the journey --- */
.compass-scene--tool .orbit-label {
  appearance: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease), opacity 0.25s var(--ease);
}

.compass-scene--tool .orbit-label:hover,
.compass-scene--tool .orbit-label:focus-visible,
.compass-scene--tool .orbit-label.is-active {
  transform: rotate(8deg) translateY(-3px) scale(1.02);
  border-color: rgba(255, 122, 89, 0.58);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 24px 58px rgba(255, 122, 89, 0.17);
}

.travel-compass.is-step-mood {
  min-height: 100svh;
  padding: clamp(5.8rem, 8vh, 7rem) 0 clamp(2rem, 4vh, 3rem);
  background:
    radial-gradient(ellipse 38rem 28rem at 48% 44%, rgba(255, 250, 239, 0.86), transparent 68%),
    linear-gradient(120deg, #dceff0 0%, #fff9ef 56%, #efc7b2 118%);
}

.travel-compass.is-step-mood > .wrap {
  width: min(1180px, calc(100% - clamp(2rem, 6vw, 5rem)));
  min-height: calc(100svh - 10rem);
  display: grid;
  grid-template-columns: minmax(22rem, 0.9fr) minmax(22rem, 0.74fr);
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem) clamp(1.8rem, 4vw, 3rem);
  align-items: center;
}

.travel-compass.is-step-mood .section-head {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(14rem, 0.8fr) minmax(22rem, 1fr);
  align-items: end;
  gap: 1.4rem;
  max-width: none;
  margin: 0;
}

.travel-compass.is-step-mood .section-head h2 {
  max-width: 12ch;
  font-size: clamp(1.75rem, 3.6vw, 3rem);
}

.travel-compass.is-step-mood .section-head p:not(.eyebrow) {
  justify-self: end;
  max-width: 24rem;
  margin: 0;
  font-size: 0.98rem;
}

.travel-compass.is-step-mood .compass-progress {
  grid-column: 1 / -1;
  width: min(36rem, 100%);
  margin: -0.35rem 0 0;
}

.travel-compass.is-step-mood .compass-tool-layout {
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: minmax(22rem, 0.9fr) minmax(22rem, 0.74fr);
  gap: clamp(1.8rem, 4vw, 3rem);
  align-items: center;
}

.travel-compass.is-step-mood .compass-tool-card {
  min-height: min(34rem, 58vh);
}

.travel-compass.is-step-mood .compass-scene--tool {
  min-height: min(33rem, 56vh);
}

.travel-compass.is-step-mood .compass-scene--tool .compass-face {
  width: min(24rem, 34vw, 50vh);
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,0.72),
    inset 0 0 0 18px rgba(255,253,248,0.24),
    0 28px 72px rgba(23, 61, 92, 0.18);
}

.travel-compass.is-step-mood .compass-panel {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid rgba(255, 253, 248, 0.72);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.62);
  box-shadow: 0 28px 80px rgba(96, 74, 38, 0.1);
  backdrop-filter: blur(18px);
}

.travel-compass.is-step-mood .compass-panel .compass-options {
  display: none;
}

.travel-compass.is-step-mood .compass-panel h3 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.travel-compass.is-step-mood .compass-panel p:not(.step-kicker) {
  margin: 0;
  color: rgba(16, 42, 67, 0.7);
  font-weight: 800;
}

.travel-compass.is-step-mood .compass-step-actions {
  margin-top: 0.2rem;
}

.compass-destination-orbit {
  display: none;
}

.travel-compass.is-step-results .compass-filter-orbit {
  display: none;
}

.travel-compass.is-step-results .compass-destination-orbit {
  position: absolute;
  inset: -5%;
  z-index: 3;
  display: block;
  border: 1px solid rgba(214, 165, 95, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.travel-compass.is-step-results .compass-destination-orbit::before {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px dashed rgba(16, 42, 67, 0.13);
  border-radius: 50%;
}

.destination-orbit-point {
  position: absolute;
  min-width: 7.2rem;
  min-height: 3.15rem;
  padding: 0.6rem 0.78rem;
  border: 1px solid rgba(255, 253, 248, 0.78);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(16, 42, 67, 0.54), rgba(16, 42, 67, 0.05)),
    var(--destination-image);
  background-size: cover;
  background-position: center;
  color: #fffdf8;
  box-shadow: 0 18px 46px rgba(23, 61, 92, 0.18);
  cursor: pointer;
  font: 900 0.72rem/1.1 "JetBrains Mono", monospace;
  text-transform: uppercase;
  text-align: left;
  text-shadow: 0 2px 10px rgba(16, 42, 67, 0.5);
  pointer-events: auto;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease), filter 0.25s var(--ease);
}

.destination-orbit-point::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 38%, rgba(255, 253, 248, 0.34) 48%, transparent 58% 100%);
  opacity: 0;
  transform: translateX(-120%);
  transition: opacity 0.25s var(--ease), transform 0.55s var(--ease);
}

.destination-orbit-point:hover,
.destination-orbit-point:focus-visible,
.destination-orbit-point.is-active {
  transform: translateY(-3px) scale(1.03);
  border-color: rgba(255, 122, 89, 0.74);
  box-shadow: 0 24px 62px rgba(255, 122, 89, 0.2);
  filter: saturate(1.08);
}

.destination-orbit-point:hover::after,
.destination-orbit-point:focus-visible::after,
.destination-orbit-point.is-active::after {
  opacity: 0.8;
  transform: translateX(120%);
}

.destination-orbit-point.is-active {
  outline: 3px solid rgba(255, 122, 89, 0.2);
  outline-offset: 3px;
}

.destination-orbit-point--1 { left: calc(50% - 3.6rem); top: 5%; }
.destination-orbit-point--2 { right: 2%; top: 43%; }
.destination-orbit-point--3 { left: calc(50% - 3.6rem); bottom: 5%; }
.destination-orbit-point--4 { left: 2%; top: 43%; }

.travel-compass.is-step-results .destination-grid {
  display: none;
}

@media (max-width: 980px) {
  .travel-compass.is-step-mood {
    min-height: auto;
    padding-top: 6rem;
  }

  .travel-compass.is-step-mood > .wrap,
  .travel-compass.is-step-mood .compass-tool-layout {
    width: min(100% - 1.25rem, 44rem);
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .travel-compass.is-step-mood .section-head,
  .travel-compass.is-step-mood .compass-progress,
  .travel-compass.is-step-mood .compass-tool-layout,
  .travel-compass.is-step-mood .compass-panel {
    grid-column: 1;
    grid-row: auto;
  }

  .travel-compass.is-step-mood .section-head {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .travel-compass.is-step-mood .section-head p:not(.eyebrow) {
    justify-self: start;
  }

  .travel-compass.is-step-mood .compass-tool-card,
  .travel-compass.is-step-mood .compass-scene--tool {
    min-height: 18rem;
  }

  .travel-compass.is-step-mood .compass-scene--tool {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .travel-compass.is-step-mood .compass-scene--tool .compass-face {
    width: min(17rem, 72vw);
  }

  .travel-compass.is-step-mood .compass-orbit,
  .travel-compass.is-step-results .compass-destination-orbit {
    position: relative;
    inset: auto;
    order: 2;
    display: flex;
    gap: 0.55rem;
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.25rem 0.1rem 0.5rem;
    border: 0;
    border-radius: 0;
    overflow-x: auto;
    pointer-events: auto;
    transform: none;
    scrollbar-width: none;
  }

  .travel-compass.is-step-mood .compass-orbit::-webkit-scrollbar,
  .travel-compass.is-step-results .compass-destination-orbit::-webkit-scrollbar {
    display: none;
  }

  .travel-compass.is-step-mood .compass-orbit::before,
  .travel-compass.is-step-results .compass-destination-orbit::before {
    display: none;
  }

  .travel-compass.is-step-mood .orbit-label,
  .destination-orbit-point {
    position: static;
    flex: 0 0 auto;
    min-width: auto;
    min-height: 2.55rem;
    padding: 0.55rem 0.75rem;
    transform: none !important;
  }
}

@media (max-width: 640px) {
  .travel-compass.is-step-mood {
    padding-top: 5.5rem;
  }

  .travel-compass.is-step-mood .section-head p:not(.eyebrow) {
    display: none;
  }

  .travel-compass.is-step-mood .compass-progress {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.35rem;
  }

  .travel-compass.is-step-mood .compass-progress li {
    min-height: 2rem;
    font-size: 0.56rem;
  }
}

/* --- Compass flow grid correction --- */
.travel-compass.is-step-mood,
.travel-compass.is-step-filters,
.travel-compass.is-step-results {
  scroll-margin-top: 6.5rem;
}

.travel-compass.is-step-mood > .wrap,
.travel-compass.is-step-filters > .wrap,
.travel-compass.is-step-results > .wrap {
  grid-template-rows: auto auto minmax(0, 1fr);
  align-content: center;
}

.travel-compass.is-step-mood .section-head,
.travel-compass.is-step-filters .section-head,
.travel-compass.is-step-results .section-head {
  grid-row: 1;
}

.travel-compass.is-step-mood .compass-progress,
.travel-compass.is-step-filters .compass-progress,
.travel-compass.is-step-results .compass-progress {
  grid-row: 2;
}

.travel-compass.is-step-mood .compass-tool-layout,
.travel-compass.is-step-filters .compass-tool-layout,
.travel-compass.is-step-results .compass-tool-layout,
.travel-compass.is-step-filters .compass-results,
.travel-compass.is-step-results .compass-results {
  grid-row: 3;
}

.travel-compass.is-step-filters .compass-results,
.travel-compass.is-step-results .compass-results {
  margin-top: 1rem;
}

@media (max-width: 980px) {
  .travel-compass.is-step-mood > .wrap,
  .travel-compass.is-step-filters > .wrap,
  .travel-compass.is-step-results > .wrap,
  .travel-compass.is-step-mood .compass-tool-layout {
    grid-template-rows: auto;
  }
}

/* --- Hero compass desktop spacing correction --- */
@media (min-width: 981px) {
  .compass-hero .hero-inner {
    grid-template-columns: minmax(28rem, 0.9fr) minmax(39rem, 0.95fr);
    gap: clamp(2.8rem, 5.2vw, 6.4rem);
  }

  .compass-scene--hero {
    width: min(42rem, 40vw);
    min-height: clamp(32rem, 58vh, 39rem);
    justify-self: end;
  }

  .compass-scene--hero .compass-face {
    width: min(22.5rem, 25vw, 48vh);
  }

  .compass-scene--hero .compass-orbit {
    inset: -1%;
  }

  .compass-scene--hero .orbit-label {
    min-width: 5.35rem;
    min-height: 2.75rem;
    padding: 0.52rem 0.72rem;
  }

  .compass-scene--hero .orbit-label--family {
    top: 18%;
    right: -4%;
  }

  .compass-scene--hero .orbit-label--romance {
    right: -6%;
    bottom: 30%;
  }

  .compass-scene--hero .orbit-label--city {
    right: 32%;
    bottom: -1%;
  }

  .compass-scene--hero .orbit-label--exotic {
    left: 3%;
    bottom: 5%;
  }

  .compass-scene--hero .orbit-label--tour {
    left: -2%;
    top: 41%;
  }
}

@media (min-width: 1600px) {
  .compass-hero .hero-inner {
    width: min(1380px, calc(100% - 9rem));
    grid-template-columns: minmax(31rem, 0.86fr) minmax(43rem, 0.92fr);
  }

  .compass-scene--hero {
    width: min(45rem, 36vw);
    min-height: clamp(34rem, 60vh, 41rem);
  }

  .compass-scene--hero .compass-face {
    width: min(23rem, 23vw, 48vh);
  }

  .compass-scene--hero .orbit-label--family {
    right: 10%;
  }

  .compass-scene--hero .orbit-label--romance {
    right: 8%;
  }

  .compass-scene--hero .orbit-label--tour {
    left: 9%;
  }
}
