:root {
  --paper: #f6f1e7;
  --paper-deep: #ebe1d1;
  --surface: #fffdf8;
  --surface-soft: rgba(255, 253, 248, 0.72);
  --ink: #17392c;
  --ink-deep: #0c241a;
  --ink-soft: #5a6d63;
  --sage: #8ea789;
  --sage-soft: #d9e2cf;
  --sage-pale: #e9efe3;
  --orange: #ed7d45;
  --orange-deep: #d8622a;
  /* Dunklere Stufe desselben Orange – nur für Text, damit die Eyebrow WCAG AA erreicht. */
  --orange-ink: #a8431a;
  --orange-soft: #ffd7bd;
  --yellow: #f4d586;
  --line: rgba(23, 57, 44, 0.13);
  --line-strong: rgba(23, 57, 44, 0.24);
  --shadow-sm: 0 12px 30px rgba(24, 54, 42, 0.07);
  --shadow-md: 0 24px 70px rgba(24, 54, 42, 0.11);
  --shadow-lg: 0 40px 100px rgba(11, 36, 26, 0.18);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --radius-xl: 56px;
  --content: 1440px;
  --header-height: 88px;
  --ease: cubic-bezier(0.2, 0.75, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 0%, rgba(237, 125, 69, 0.08), transparent 26rem),
    radial-gradient(circle at 92% 15%, rgba(142, 167, 137, 0.14), transparent 30rem),
    var(--paper);
  color: var(--ink);
  font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

button,
input,
select,
textarea {
  font: inherit;
}

[hidden] {
  display: none !important;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--ink-deep);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 0 6px var(--orange-soft);
}

/* Auf den dunklen Flächen kehrt sich der Ring um. */
.safety :focus-visible,
.experience-panel :focus-visible,
.final-cta-panel :focus-visible {
  outline-color: var(--paper);
  box-shadow: 0 0 0 6px rgba(237, 125, 69, 0.45);
}

::selection {
  background: var(--orange-soft);
  color: var(--ink-deep);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink-deep);
  color: white;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  min-height: 100vh;
}

.section-pad {
  width: min(var(--content), calc(100% - 64px));
  margin-inline: auto;
}

.site-header {
  width: min(var(--content), calc(100% - 48px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  position: sticky;
  top: 0;
  z-index: 90;
  isolation: isolate;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 8px -14px;
  z-index: -1;
  border: 1px solid transparent;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0);
  box-shadow: 0 10px 32px rgba(23, 57, 44, 0);
  backdrop-filter: blur(0);
  transform: translateY(-8px) scale(0.985);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 260ms var(--ease), background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled::before {
  opacity: 1;
  transform: translateY(0) scale(1);
  background: rgba(255, 253, 248, 0.78);
  border-color: rgba(23, 57, 44, 0.1);
  box-shadow: 0 12px 34px rgba(23, 57, 44, 0.09);
  backdrop-filter: blur(18px) saturate(1.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
}

.brand-mark {
  width: 42px;
  aspect-ratio: 1;
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1.6px solid var(--ink);
  border-radius: 50%;
  opacity: 0.26;
}

.brand-orbit {
  position: absolute;
  inset: 2px 6px;
  border: 2px solid var(--ink);
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-28deg);
}

.brand-seed {
  width: 13px;
  height: 20px;
  border-radius: 80% 18% 80% 18%;
  background: var(--orange);
  transform: rotate(44deg);
  box-shadow: 0 0 0 5px rgba(237, 125, 69, 0.09);
}

.brand-text {
  display: grid;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.brand-text strong {
  font-size: 18px;
  font-weight: 700;
}

.brand-text span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  margin-top: 5px;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 38px);
}

.desktop-nav a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(23, 57, 44, 0.75);
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1.5px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  border: 0;
  border-radius: 999px;
  min-height: 52px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: transform 220ms var(--ease), box-shadow 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
  white-space: nowrap;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0) scale(0.985);
}

.button-small {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 13px;
}

.button-large {
  min-height: 60px;
  padding-inline: 28px;
  font-size: 15px;
}

.button-dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 24px rgba(23, 57, 44, 0.18);
}

.button-dark:hover {
  background: var(--ink-deep);
  box-shadow: 0 14px 30px rgba(23, 57, 44, 0.24);
}

.button-primary {
  background: var(--orange);
  color: var(--ink-deep);
  box-shadow: 0 12px 26px rgba(237, 125, 69, 0.24);
}

.button-primary:hover {
  background: #f28751;
  box-shadow: 0 18px 36px rgba(237, 125, 69, 0.28);
}

.button-ghost {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.28);
  color: var(--ink);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(23, 57, 44, 0.35);
}

.button-light {
  background: var(--paper);
  color: var(--ink-deep);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.13);
}

.button-light:hover {
  background: white;
}

.button-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.34);
  font-size: 16px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
  place-items: center;
  cursor: pointer;
  position: relative;
}

.menu-toggle span {
  width: 17px;
  height: 1.5px;
  background: var(--ink);
  position: absolute;
  transition: transform 180ms ease, top 180ms ease;
}

.menu-toggle span:first-child { top: 17px; }
.menu-toggle span:last-child { top: 25px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }

.mobile-menu {
  width: calc(100% - 32px);
  margin: 0 auto 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.96);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 80;
}

.mobile-menu a,
.mobile-menu > button {
  width: 100%;
  min-height: 48px;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-weight: 650;
}

.mobile-menu > button {
  margin-top: 16px;
}

.hero {
  min-height: calc(100svh - var(--header-height));
  padding-top: clamp(18px, 2.4vw, 40px);
  padding-bottom: clamp(78px, 8vw, 130px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  align-items: start;
  gap: clamp(48px, 6vw, 110px);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow,
.visual-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.eyebrow {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
}

.eyebrow-dot,
.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  position: relative;
  flex: 0 0 auto;
}

.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid var(--orange);
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.55); opacity: 0.8; }
  100% { transform: scale(1.45); opacity: 0; }
}

.hero h1 {
  margin: 25px 0 24px;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(62px, 6.5vw, 106px);
  line-height: 0.9;
  letter-spacing: -0.055em;
  font-weight: 600;
  color: var(--ink-deep);
}

.hero h1 span {
  display: block;
  color: var(--orange-deep);
  font-style: italic;
  font-weight: 500;
}

.hero-lead {
  max-width: 650px;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.62;
  color: var(--ink-soft);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  margin-top: 44px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.hero-proof div {
  display: grid;
  gap: 2px;
}

.hero-proof strong {
  font-size: 13px;
  color: var(--ink);
}

.hero-proof span {
  font-size: 12px;
  color: var(--ink-soft);
}

.hero-visual {
  position: relative;
  min-width: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.visual-kicker {
  justify-content: flex-end;
  margin: 0 5% 10px 0;
}

.world-stage {
  width: min(100%, 720px);
  aspect-ratio: 1.08;
  position: relative;
  margin-inline: auto;
  isolation: isolate;
  cursor: grab;
  touch-action: none;
}

.world-stage:active {
  cursor: grabbing;
}

#globe-canvas {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 3;
}

.world-aura {
  position: absolute;
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.8;
  pointer-events: none;
}

.world-aura-one {
  width: 53%;
  aspect-ratio: 1;
  right: 8%;
  top: 14%;
  background: rgba(237, 125, 69, 0.2);
  animation: aura-float 6s ease-in-out infinite alternate;
}

.world-aura-two {
  width: 60%;
  aspect-ratio: 1;
  left: 4%;
  bottom: 7%;
  background: rgba(142, 167, 137, 0.22);
  animation: aura-float 7.8s ease-in-out 1.2s infinite alternate-reverse;
}

@keyframes aura-float {
  from { transform: translate3d(-2%, -1%, 0) scale(0.96); }
  to { transform: translate3d(4%, 3%, 0) scale(1.05); }
}

.globe-pins {
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
}

.globe-pin {
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50% 50% 50% 8px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  background: var(--orange);
  box-shadow: 0 6px 18px rgba(14, 43, 31, 0.3), 0 0 0 7px rgba(237, 125, 69, 0.14);
  transform-origin: center;
  cursor: pointer;
  pointer-events: auto;
  transition: opacity 120ms ease, filter 180ms ease, box-shadow 180ms ease;
  will-change: transform, opacity;
}

.globe-pin::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink-deep);
  left: 7px;
  top: 7px;
}

.globe-pin:hover,
.globe-pin.is-active {
  filter: brightness(1.08);
  box-shadow: 0 7px 20px rgba(14, 43, 31, 0.32), 0 0 0 10px rgba(237, 125, 69, 0.19);
  z-index: 30 !important;
}

.globe-tooltip {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 40;
  padding: 8px 13px;
  border-radius: 13px;
  background: var(--ink-deep);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.35;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  box-shadow: var(--shadow-md);
  transition: opacity 120ms ease;
  will-change: transform, opacity;
}

.globe-tooltip.is-visible {
  opacity: 1;
}

.globe-tooltip small {
  display: block;
  margin-top: 1px;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.68);
}

.world-orbit {
  position: absolute;
  border: 1px solid rgba(23, 57, 44, 0.15);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}

.world-orbit-one {
  width: 86%;
  height: 32%;
  left: 7%;
  top: 34%;
  transform: rotate(-12deg);
}

.world-orbit-two {
  width: 72%;
  height: 24%;
  left: 14%;
  top: 40%;
  transform: rotate(48deg);
  opacity: 0.55;
}

.destination-card {
  width: min(580px, 92%);
  margin: -94px auto 0;
  position: relative;
  z-index: 12;
  padding: 20px 22px 18px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.78);
  backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: var(--shadow-md);
}

.destination-card-topline,
.destination-card-main,
.destination-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.destination-card-topline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.status-badge {
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--sage-pale);
  color: var(--ink);
  letter-spacing: 0.08em;
}

.destination-card-main {
  align-items: flex-end;
  margin-top: 14px;
}

.destination-card-main p {
  margin: 0 0 4px;
  font-size: 12px;
  color: var(--ink-soft);
}

.destination-card-main h2,
.destination-title {
  margin: 0;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.destination-price {
  display: grid;
  justify-items: end;
  flex: 0 0 auto;
}

.destination-price span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--ink-soft);
}

.destination-price strong {
  font-size: 22px;
  letter-spacing: -0.04em;
}

.destination-card-footer {
  align-items: flex-end;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.destination-card-footer p {
  max-width: 430px;
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.round-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: var(--ink);
  color: white;
  font-size: 16px;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex: 0 0 auto;
  transition: transform 180ms var(--ease), background 180ms ease;
}

.round-button:hover {
  transform: translateY(-2px) rotate(5deg);
  background: var(--orange-deep);
}

.prototype-note {
  text-align: center;
  color: var(--ink-soft);
  font-size: 10px;
  letter-spacing: 0.04em;
  margin: 12px 0 0;
}

.trust-strip {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.38);
}

.marquee-track {
  width: max-content;
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 28px;
  animation: marquee 34s linear infinite;
}

.marquee-track span {
  font-family: "Newsreader", Georgia, serif;
  font-size: 19px;
  font-style: italic;
  color: var(--ink-soft);
}

.marquee-track i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.discover {
  padding-top: clamp(72px, 8.5vw, 132px);
  padding-bottom: clamp(96px, 10vw, 155px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  gap: clamp(40px, 8vw, 150px);
  align-items: end;
  margin-bottom: 54px;
}

.section-heading.compact {
  margin-bottom: 46px;
}

.section-label {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--orange-ink);
}

.section-label-light {
  color: var(--orange-soft);
}

.section-heading h1,
.section-heading h2,
.experience-copy h2,
.role-copy h2,
.safety-head h2,
.faq-intro h2,
.host-copy h1,
.host-copy h2,
.final-cta-panel h2 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-weight: 600;
  font-size: clamp(44px, 5vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.section-heading > p,
.safety-head > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
  max-width: 520px;
}

.filter-panel {
  padding: 22px;
  border-radius: 26px;
  background: rgba(255, 253, 248, 0.63);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1.1fr 1.1fr minmax(190px, 0.8fr);
  gap: 24px;
  align-items: end;
}

.filter-group,
.select-wrap {
  min-width: 0;
}

.filter-title {
  display: block;
  margin-bottom: 9px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.segmented-control {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.segmented-control::-webkit-scrollbar {
  display: none;
}

.filter-chip {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease, transform 180ms var(--ease), border-color 180ms ease;
}

.filter-chip:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
}

.filter-chip.is-active {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

.select-wrap {
  display: block;
}

.select-wrap select {
  width: 100%;
  min-height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  padding: 0 42px 0 16px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 18px) 17px, calc(100% - 13px) 17px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.results-line {
  margin: 26px 2px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.results-line p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.results-line strong {
  color: var(--ink);
}

.text-button {
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.text-button:hover {
  color: var(--orange-deep);
}

.retreat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.retreat-card {
  min-width: 0;
  border-radius: 26px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(23, 57, 44, 0.045);
  display: flex;
  flex-direction: column;
  transition: transform 280ms var(--ease), box-shadow 280ms ease, border-color 280ms ease;
}

.retreat-card:hover {
  transform: translateY(-7px);
  border-color: rgba(23, 57, 44, 0.22);
  box-shadow: var(--shadow-md);
}

.retreat-art {
  min-height: 250px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(145deg, var(--sage-soft), var(--paper-deep) 50%, var(--orange-soft));
}

.retreat-art::before,
.retreat-art::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  z-index: -1;
}

.retreat-art::before {
  width: 68%;
  aspect-ratio: 1;
  right: -18%;
  top: -24%;
  background: rgba(255, 255, 255, 0.35);
}

.retreat-art::after {
  width: 80%;
  height: 42%;
  left: -15%;
  bottom: -12%;
  border-radius: 50% 62% 0 0;
  background: rgba(23, 57, 44, 0.22);
  transform: rotate(6deg);
}

.retreat-art.theme-forest { background: linear-gradient(145deg, #a8bc8f, #dce3bd 55%, #f4c989); }
.retreat-art.theme-alpine { background: linear-gradient(145deg, #d9e3df, #abc3b5 48%, #f1d1a4); }
.retreat-art.theme-ocean { background: linear-gradient(145deg, #91b8b2, #c7e0d8 50%, #f5bb83); }
.retreat-art.theme-temple { background: linear-gradient(145deg, #e6b36f, #efcf9d 50%, #b9c79d); }
.retreat-art.theme-lab { background: linear-gradient(145deg, #b6a5c6, #ded2e6 52%, #f0b188); }
.retreat-art.theme-city { background: linear-gradient(145deg, #dfc7b2, #f1dfcd 50%, #91ad92); }
.retreat-art.theme-desert { background: linear-gradient(145deg, #e8c48a, #f3dcb0 50%, #d67c45); }
.retreat-art.theme-fjord { background: linear-gradient(145deg, #7fa3b0, #cfe1e2 50%, #3f6c78); }
.retreat-art.theme-lake { background: linear-gradient(145deg, #a9c9b8, #dbe8d6 50%, #6fa392); }

.retreat-art .art-sun {
  position: absolute;
  width: 116px;
  aspect-ratio: 1;
  border-radius: 50%;
  top: 46px;
  right: 44px;
  background: rgba(255, 247, 214, 0.72);
  box-shadow: 0 0 0 18px rgba(255, 247, 214, 0.12);
}

.retreat-art .art-line {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 54px;
  height: 88px;
  border: 2px solid rgba(23, 57, 44, 0.34);
  border-left: 0;
  border-right: 0;
  border-radius: 50%;
  transform: rotate(-7deg);
}

.retreat-art .art-seed {
  position: absolute;
  width: 48px;
  height: 72px;
  left: 48%;
  top: 50%;
  border-radius: 80% 18% 80% 18%;
  background: rgba(23, 57, 44, 0.78);
  transform: translate(-50%, -50%) rotate(44deg);
}

.retreat-art .art-seed::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: inherit;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.retreat-art-top {
  position: absolute;
  inset: 18px 18px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 2;
}

.art-badge {
  min-height: 29px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.art-save {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 17px;
  transition: background 180ms ease, transform 180ms var(--ease);
}

.art-save:hover,
.art-save.is-saved {
  background: rgba(255, 255, 255, 0.92);
  transform: scale(1.05);
}

.retreat-card-body {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.retreat-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px 12px;
  margin-bottom: 11px;
  font-size: 11px;
  color: var(--ink-soft);
  font-weight: 700;
}

.retreat-meta span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--orange);
  margin-left: 12px;
  vertical-align: middle;
}

.retreat-card h3 {
  margin: 0 0 9px;
  font-size: 23px;
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.retreat-card .retreat-summary {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 18px;
}

.retreat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.retreat-tags span {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--sage-pale);
  font-size: 10px;
  font-weight: 700;
  color: var(--ink);
}

.retreat-card-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.retreat-card-price {
  display: grid;
}

.retreat-card-price span {
  font-size: 10px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.retreat-card-price strong {
  font-size: 20px;
  letter-spacing: -0.04em;
}

.card-link {
  border: 0;
  background: transparent;
  padding: 8px 0;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  color: var(--ink);
}

.card-link:hover {
  color: var(--orange-deep);
}

.empty-state {
  grid-column: 1 / -1;
  min-height: 280px;
  border: 1px dashed var(--line-strong);
  border-radius: 28px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 40px;
  background: rgba(255, 255, 255, 0.25);
}

.empty-state h3 {
  margin-bottom: 8px;
  font-size: 26px;
}

.empty-state p {
  color: var(--ink-soft);
  max-width: 500px;
}

.experience-band {
  padding-bottom: clamp(96px, 11vw, 170px);
}

.experience-panel {
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 100% 0%, rgba(237, 125, 69, 0.23), transparent 38rem),
    linear-gradient(145deg, #17392c, #0e2c20);
  color: white;
  padding: clamp(38px, 6vw, 92px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 0.8fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: center;
  overflow: hidden;
  position: relative;
}

.experience-panel::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  right: -160px;
  bottom: -170px;
}

.experience-copy h2 {
  color: #fffaf2;
  font-size: clamp(46px, 5vw, 74px);
}

.experience-copy > p:not(.section-label) {
  max-width: 680px;
  margin: 24px 0 28px;
  color: rgba(255, 255, 255, 0.69);
  line-height: 1.75;
}

.experience-spectrum {
  padding: 18px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.spectrum-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 2px 4px 14px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.spectrum-item {
  min-height: 82px;
  padding: 14px 8px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.spectrum-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 24px;
  color: var(--ink-deep);
}

.icon-moon { background: #f0d9a6; }
.icon-wind { background: #b5caa6; }
.icon-eye { background: #f0aa79; }
.icon-orbit { background: #d5c3e2; }

.spectrum-item > div:nth-child(2) {
  display: grid;
  gap: 3px;
}

.spectrum-item strong {
  font-size: 14px;
  color: white;
}

.spectrum-item span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.58);
}

.spectrum-level {
  display: flex !important;
  align-items: center;
  gap: 4px;
}

.spectrum-level i {
  width: 16px;
  height: 5px;
  border-radius: 99px;
  background: var(--orange);
}

.how {
  padding-bottom: clamp(96px, 11vw, 170px);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.step-card {
  min-height: 510px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.56);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
}

.step-art {
  height: 250px;
  margin: 22px 0 24px;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
}

.step-art-one {
  background: linear-gradient(145deg, var(--orange-soft), #f7e8ce);
}

.question-bubble {
  position: absolute;
  left: 26px;
  top: 34px;
  width: 72%;
  padding: 18px;
  border-radius: 20px 20px 20px 5px;
  background: white;
  box-shadow: var(--shadow-sm);
  font-family: "Newsreader", Georgia, serif;
  font-size: 20px;
  line-height: 1.15;
}

.answer-chip {
  position: absolute;
  right: 26px;
  bottom: 70px;
  padding: 10px 15px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 11px;
  font-weight: 700;
  transform: rotate(-4deg);
}

.answer-chip.second {
  right: 88px;
  bottom: 25px;
  background: var(--orange);
  color: var(--ink-deep);
  transform: rotate(3deg);
}

.step-art-two {
  background: linear-gradient(145deg, #dce8d8, #f3ead8);
}

.mini-card {
  position: absolute;
  width: 68%;
  min-height: 80px;
  left: 50%;
  padding: 16px;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 45px rgba(23, 57, 44, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.mini-card span {
  font-size: 11px;
  color: var(--ink-soft);
}

.mini-card strong {
  font-size: 12px;
}

.card-a { top: 30px; transform: translateX(-50%) rotate(-4deg); z-index: 3; }
.card-b { top: 85px; transform: translateX(-50%) rotate(2deg); z-index: 2; }
.card-c { top: 139px; transform: translateX(-50%) rotate(-2deg); z-index: 1; }

.step-art-three {
  background: linear-gradient(145deg, #d8e0e0, #e7dbc7);
}

.journey-line {
  position: absolute;
  left: 14%;
  right: 14%;
  top: 50%;
  height: 2px;
  background: rgba(23, 57, 44, 0.28);
}

.journey-dot {
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--ink);
  border: 5px solid rgba(255, 255, 255, 0.78);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 6px rgba(23, 57, 44, 0.09);
}

.dot-one { left: 18%; }
.dot-two { left: 50%; background: var(--orange); }
.dot-three { left: 82%; }

.journey-label {
  position: absolute;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.label-one { left: 18%; top: 34%; }
.label-two { left: 50%; top: 59%; }
.label-three { left: 82%; top: 34%; }

.step-card h3 {
  margin: 0 0 10px;
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.step-card > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.role {
  padding-bottom: clamp(96px, 11vw, 170px);
}

.role-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(450px, 0.78fr);
  gap: clamp(50px, 10vw, 160px);
  align-items: center;
}

.role-copy h2 {
  max-width: 780px;
}

.role-copy > p:not(.section-label) {
  max-width: 680px;
  margin: 25px 0 32px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.role-list {
  display: grid;
  gap: 4px;
}

.role-list > div {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
}

.role-list > div > span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--sage-pale);
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.role-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.role-list strong {
  color: var(--ink);
  font-size: 14px;
}

.role-visual {
  min-height: 640px;
  display: grid;
  place-items: center;
  position: relative;
}

.compass-card {
  width: min(100%, 500px);
  aspect-ratio: 0.82;
  border-radius: 36px;
  padding: 28px;
  background: linear-gradient(150deg, #f1c18b, #e69059 55%, #bb5d30);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.compass-card::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  right: -180px;
  bottom: -150px;
}

.compass-top {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(23, 57, 44, 0.75);
}

.compass-dial {
  width: 72%;
  aspect-ratio: 1;
  margin: 58px auto 42px;
  border-radius: 50%;
  background: rgba(255, 248, 230, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.46);
  position: relative;
  display: grid;
  place-items: center;
}

.compass-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(23, 57, 44, 0.24);
}

.ring-one { inset: 15%; }
.ring-two { inset: 31%; }

.compass-needle {
  width: 8px;
  height: 42%;
  background: linear-gradient(to top, var(--ink-deep) 50%, #fff1d5 50%);
  clip-path: polygon(50% 0, 100% 50%, 62% 100%, 38% 100%, 0 50%);
  transform: rotate(32deg);
  filter: drop-shadow(0 7px 8px rgba(23, 57, 44, 0.2));
}

.compass-center {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--ink-deep);
  border: 4px solid rgba(255, 255, 255, 0.65);
}

.compass-dial > span {
  position: absolute;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: rgba(23, 57, 44, 0.65);
}

.compass-dial .north { top: 6%; left: 50%; transform: translateX(-50%); }
.compass-dial .east { right: 5%; top: 50%; transform: translateY(-50%); }
.compass-dial .south { bottom: 6%; left: 50%; transform: translateX(-50%); }
.compass-dial .west { left: 5%; top: 50%; transform: translateY(-50%); }

.compass-result {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  display: grid;
  gap: 4px;
}

.compass-result span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(23, 57, 44, 0.62);
}

.compass-result strong {
  font-size: 17px;
}

.floating-tag {
  position: absolute;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.82);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  font-size: 11px;
  font-weight: 800;
}

.tag-top {
  right: -10px;
  top: 18%;
  transform: rotate(4deg);
}

.tag-bottom {
  left: -15px;
  bottom: 18%;
  transform: rotate(-5deg);
}

.safety {
  width: 100%;
  max-width: none;
  padding-inline: max(32px, calc((100vw - var(--content)) / 2));
  padding-top: clamp(80px, 9vw, 130px);
  padding-bottom: clamp(80px, 9vw, 130px);
  background: var(--ink-deep);
  color: white;
}

.safety-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  gap: clamp(40px, 8vw, 140px);
  align-items: end;
  margin-bottom: 55px;
}

.safety-head h2 {
  color: #fffaf3;
  max-width: 980px;
}

.safety-head > p {
  color: rgba(255, 255, 255, 0.61);
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.safety-grid article {
  min-height: 310px;
  padding: 26px 24px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
}

.safety-grid article:last-child {
  border-right: 0;
}

.safety-index {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--orange-soft);
  font-size: 12px;
  font-weight: 800;
}

.safety-grid h3 {
  margin: auto 0 12px;
  font-size: 22px;
}

.safety-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.65;
}

.legal-note {
  margin-top: 26px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
}

.legal-note > span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink-deep);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-family: Georgia, serif;
}

.legal-note p {
  margin: 1px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.6;
}

.legal-note strong {
  color: white;
}

.testimonials {
  padding-bottom: clamp(96px, 11vw, 170px);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.testimonial-card {
  padding: clamp(28px, 3vw, 38px);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(23, 57, 44, 0.14);
  right: -120px;
  top: -130px;
  z-index: -1;
}

.testimonial-orange { background: var(--orange-soft); }
.testimonial-sage { background: var(--sage-soft); }
.testimonial-cream { background: #efe4d2; }

.testimonial-quote-mark {
  font-family: "Newsreader", Georgia, serif;
  font-size: 54px;
  line-height: 1;
  color: rgba(23, 57, 44, 0.28);
  margin-bottom: 2px;
}

.testimonial-quote {
  margin: 0 0 26px;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.testimonial-author {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 253, 248, 0.6);
  border: 1px solid rgba(23, 57, 44, 0.16);
  font-family: "Newsreader", Georgia, serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink-deep);
}

.testimonial-author strong {
  display: block;
  font-size: 13px;
}

.testimonial-author span {
  display: block;
  font-size: 11px;
  color: rgba(23, 57, 44, 0.62);
}

.audiences {
  padding-bottom: clamp(96px, 11vw, 170px);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.audience-card {
  min-height: 390px;
  padding: 28px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.audience-card::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(23, 57, 44, 0.14);
  right: -125px;
  top: -110px;
  z-index: -1;
}

.audience-card > span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.audience-card h3 {
  margin: auto 0 14px;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(36px, 3.4vw, 50px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.audience-card p {
  margin: 0 0 24px;
  max-width: 330px;
  color: rgba(23, 57, 44, 0.68);
  font-size: 13px;
  line-height: 1.6;
}

.audience-card .text-button {
  text-align: left;
  width: fit-content;
}

.audience-orange { background: var(--orange-soft); }
.audience-sage { background: var(--sage-soft); }
.audience-cream { background: #efe4d2; }

.host-band {
  padding-bottom: clamp(96px, 11vw, 170px);
}

.host-panel {
  min-height: 540px;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
}

.host-visual {
  min-height: 540px;
  background: linear-gradient(145deg, #d5e0ca, #f1d7aa);
  position: relative;
  overflow: hidden;
}

.host-sun {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 249, 224, 0.72);
  right: 16%;
  top: 13%;
  box-shadow: 0 0 0 30px rgba(255, 249, 224, 0.13);
}

.host-hill {
  position: absolute;
  left: -10%;
  width: 120%;
  border-radius: 50% 50% 0 0;
}

.hill-one {
  height: 54%;
  bottom: -18%;
  background: #8faa83;
  transform: rotate(-5deg);
}

.hill-two {
  height: 42%;
  bottom: -16%;
  background: #496d54;
  transform: translateX(22%) rotate(5deg);
}

.host-door {
  position: absolute;
  width: 112px;
  height: 178px;
  left: 38%;
  bottom: 19%;
  border-radius: 58px 58px 7px 7px;
  background: var(--ink-deep);
  box-shadow: 0 28px 45px rgba(23, 57, 44, 0.28);
}

.host-door span {
  position: absolute;
  inset: 12px;
  border-radius: 50px 50px 4px 4px;
  background: linear-gradient(#f0b369, #e77f48);
}

.host-copy {
  padding: clamp(40px, 7vw, 100px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.host-copy h2 {
  font-size: clamp(46px, 5vw, 72px);
}

.host-copy > p:not(.section-label) {
  margin: 24px 0 29px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.contact-modal-row {
  margin-top: 20px;
}

.form-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field:nth-child(3) {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.form-field label span {
  font-weight: 500;
  color: var(--ink-soft);
}

.form-field input,
.form-field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.68);
  padding: 13px 15px;
  color: var(--ink);
}

.form-error {
  margin: 16px 2px 0;
  padding: 11px 15px;
  border-radius: 12px;
  background: rgba(178, 59, 47, 0.1);
  border: 1px solid rgba(178, 59, 47, 0.3);
  color: #8a2f26;
  font-size: 12.5px;
  font-weight: 700;
}

.match-badge {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 11px;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--orange);
  color: white;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.admin-link {
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq {
  padding-bottom: clamp(96px, 11vw, 170px);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(500px, 1fr);
  gap: clamp(50px, 10vw, 160px);
  align-items: start;
}

.faq-intro h2 {
  font-size: clamp(46px, 5vw, 72px);
}

.faq-intro > p:not(.section-label) {
  margin-top: 22px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.accordion {
  border-top: 1px solid var(--line-strong);
}

.accordion details {
  border-bottom: 1px solid var(--line-strong);
}

.accordion summary {
  list-style: none;
  min-height: 84px;
  padding: 23px 48px 23px 0;
  display: flex;
  align-items: center;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::before,
.accordion summary::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 17px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 180ms ease;
}

.accordion summary::after {
  transform: rotate(90deg);
}

.accordion details[open] summary::after {
  transform: rotate(0deg);
}

.accordion details p {
  max-width: 660px;
  margin: -8px 0 25px;
  padding-right: 40px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.final-cta {
  padding-bottom: clamp(58px, 7vw, 100px);
}

.final-cta-panel {
  min-height: 620px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #e9854f, #d7642e);
  color: var(--ink-deep);
  padding: clamp(42px, 8vw, 112px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.final-cta-panel h2 {
  max-width: 1040px;
  font-size: clamp(54px, 7vw, 96px);
  position: relative;
  z-index: 2;
}

.final-cta-panel > p:not(.section-label) {
  max-width: 610px;
  margin: 24px auto 30px;
  color: rgba(12, 36, 26, 0.68);
  font-size: 16px;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.final-cta-panel .button {
  position: relative;
  z-index: 2;
}

.final-orbit {
  position: absolute;
  border: 1px solid rgba(12, 36, 26, 0.2);
  border-radius: 50%;
}

.orbit-a {
  width: 78%;
  height: 32%;
  transform: rotate(-13deg);
}

.orbit-b {
  width: 55%;
  height: 55%;
  transform: rotate(41deg);
}

.final-seed {
  position: absolute;
  width: 280px;
  height: 400px;
  border-radius: 80% 18% 80% 18%;
  background: rgba(255, 243, 215, 0.14);
  transform: rotate(43deg);
}

.site-footer {
  padding-top: 46px;
  padding-bottom: 36px;
}

.footer-top {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-top p {
  margin: 0;
  max-width: 420px;
  color: var(--ink-soft);
  font-size: 13px;
  text-align: right;
}

.footer-grid {
  padding: 42px 0 50px;
  display: grid;
  grid-template-columns: 0.7fr 0.7fr 0.7fr 1.4fr;
  gap: 50px;
}

.footer-grid > div:not(.newsletter) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-title {
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.footer-grid a,
.footer-grid button:not(form button) {
  border: 0;
  background: transparent;
  padding: 0;
  font-size: 13px;
  cursor: pointer;
}

.footer-grid a:hover,
.footer-grid button:hover {
  color: var(--orange-deep);
}

.newsletter form {
  display: flex;
  align-items: center;
  min-height: 52px;
  border-bottom: 1.5px solid var(--ink);
}

.newsletter input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  padding: 0;
}

.newsletter input::placeholder {
  color: rgba(23, 57, 44, 0.5);
}

.newsletter form button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: var(--ink);
  color: white;
  cursor: pointer;
}

.newsletter small {
  display: block;
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 10px;
}

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: 10px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.modal {
  width: min(920px, calc(100% - 28px));
  max-height: min(880px, calc(100svh - 28px));
  padding: 0;
  border: 0;
  border-radius: 34px;
  background: transparent;
  overflow: visible;
  color: var(--ink);
}

.modal::backdrop {
  background: rgba(7, 25, 18, 0.66);
  backdrop-filter: blur(12px);
}

.modal[open] {
  animation: modal-in 260ms var(--ease) both;
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-shell {
  margin: 0;
  padding: clamp(24px, 4vw, 44px);
  border-radius: 34px;
  background: var(--paper);
  box-shadow: var(--shadow-lg);
  max-height: min(880px, calc(100svh - 28px));
  overflow-y: auto;
}

.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.modal-kicker {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-deep);
}

.modal-head h2 {
  margin: 9px 0 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.modal-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  flex: 0 0 auto;
}

.modal-close:hover {
  background: white;
}

.progress-track {
  height: 4px;
  border-radius: 999px;
  background: var(--paper-deep);
  margin: 25px 0 30px;
  overflow: hidden;
}

.progress-track span {
  display: block;
  height: 100%;
  width: 25%;
  border-radius: inherit;
  background: var(--orange);
  transition: width 240ms var(--ease);
}

.match-step {
  display: none;
}

.match-step.is-active {
  display: block;
  animation: step-in 230ms var(--ease) both;
}

@keyframes step-in {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}

.match-step > h3 {
  margin: 0 0 24px;
  font-size: 24px;
  letter-spacing: -0.025em;
}

.option-grid {
  display: grid;
  gap: 12px;
}

.option-grid-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.option-grid-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.choice-card {
  min-height: 155px;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.65);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: transform 180ms var(--ease), border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.choice-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
}

.choice-card:has(input:checked) {
  border-color: var(--ink);
  background: var(--sage-pale);
  box-shadow: 0 0 0 2px var(--ink);
}

.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--orange-soft);
  margin-bottom: auto;
  font-size: 20px;
}

.choice-card strong {
  margin-top: 20px;
  font-size: 15px;
}

.choice-card small {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.45;
}

.compact-choice {
  min-height: 125px;
  justify-content: flex-end;
}

.compact-choice strong {
  margin-top: 0;
  font-size: 18px;
}

.person-choice {
  min-height: 58px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
}

.intensity-slider {
  padding: 36px 26px 28px;
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.65);
  border: 1px solid var(--line);
}

.intensity-slider input {
  width: 100%;
  accent-color: var(--orange);
}

.intensity-labels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 11px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  text-align: center;
}

.match-note-label {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 22px 2px 8px;
  font-size: 12px;
  font-weight: 800;
}

.match-note-label span {
  color: var(--ink-soft);
  font-weight: 500;
}

.match-step textarea {
  width: 100%;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.68);
  padding: 15px;
  color: var(--ink);
}

.match-result {
  text-align: center;
  padding: 8px 0 4px;
}

.result-symbol {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  background: var(--orange-soft);
  font-size: 38px;
}

.match-result h3 {
  margin: 12px auto 14px;
  max-width: 680px;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.match-result > p {
  max-width: 650px;
  margin: 0 auto 22px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.result-summary {
  max-width: 680px;
  margin: 0 auto 24px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
}

.result-summary span {
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--sage-pale);
  font-size: 11px;
  font-weight: 700;
}

.modal-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.modal-actions button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.retreat-modal {
  width: min(980px, calc(100% - 28px));
}

.retreat-modal-shell {
  padding: 0;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
}

.retreat-close {
  position: absolute;
  z-index: 4;
  right: 18px;
  top: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.retreat-modal-art {
  min-height: 650px;
  padding: 24px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(145deg, #a8bc8f, #f4c989);
  position: relative;
  overflow: hidden;
}

.retreat-modal-art::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  right: -70px;
  top: 80px;
  background: rgba(255, 255, 255, 0.32);
}

.retreat-modal-art::after {
  content: "";
  position: absolute;
  width: 370px;
  height: 180px;
  border-radius: 50% 50% 0 0;
  left: -80px;
  bottom: 90px;
  background: rgba(23, 57, 44, 0.23);
  transform: rotate(6deg);
}

.retreat-modal-art span {
  position: relative;
  z-index: 2;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.retreat-modal-content {
  padding: clamp(34px, 5vw, 62px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.retreat-modal-meta {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.retreat-modal-meta span {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--sage-pale);
  font-size: 10px;
  font-weight: 700;
}

.retreat-modal-content h2 {
  margin: 0 0 16px;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.retreat-modal-content > p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.72;
}

.retreat-detail-grid {
  margin: 28px 0;
  padding-block: 20px;
  border-block: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.retreat-detail-grid div {
  display: grid;
  gap: 5px;
}

.retreat-detail-grid span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--ink-soft);
}

.retreat-detail-grid strong {
  font-size: 13px;
}

.retreat-modal-note {
  padding: 16px;
  border-radius: 15px;
  background: var(--paper-deep);
}

.retreat-modal-note strong {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.retreat-modal-note p {
  margin: 5px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.55;
}

.retreat-modal-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.retreat-modal-details {
  margin-top: 26px;
}

.retreat-modal-details summary {
  min-height: 56px;
  padding: 16px 40px 16px 0;
  font-size: 14px;
}

.retreat-modal-details details > p,
.retreat-modal-details details > ul,
.retreat-modal-details details > ol,
.retreat-modal-details details > div {
  max-width: 100%;
  margin: -4px 0 20px;
  padding-right: 30px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
}

.retreat-modal-details details > p + p {
  margin-top: -12px;
}

.retreat-steps {
  list-style: none;
  counter-reset: retreat-step;
  display: grid;
  gap: 16px;
}

.retreat-steps li {
  counter-increment: retreat-step;
  position: relative;
  padding-left: 32px;
}

.retreat-steps li::before {
  content: counter(retreat-step);
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--sage-pale);
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.retreat-steps strong {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}

.retreat-steps p {
  margin: 0;
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.retreat-detail-list {
  display: grid;
  gap: 10px;
  padding-left: 18px;
}

.retreat-detail-list li {
  font-size: 12.5px;
  line-height: 1.6;
}

.retreat-programs {
  display: grid;
  gap: 14px;
}

.retreat-program {
  padding: 16px;
  border-radius: 14px;
  background: var(--paper-deep);
  display: grid;
  gap: 6px;
}

.retreat-program-duration {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--ink-soft);
}

.retreat-program h4 {
  margin: 0;
  font-size: 15px;
}

.retreat-program ul {
  margin: 4px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 4px;
}

.retreat-program li {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.retreat-program-price {
  margin-top: 4px;
  font-size: 15px;
  font-weight: 800;
}

.toast {
  position: fixed;
  z-index: 999;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 120px);
  max-width: min(520px, calc(100% - 32px));
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--ink-deep);
  color: white;
  font-size: 12px;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 260ms var(--ease);
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  :root { --content: 1120px; }

  .desktop-nav {
    gap: 19px;
  }

  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(58px, 6.3vw, 82px);
  }

  .filter-panel {
    grid-template-columns: 1fr 1fr;
  }

  .select-wrap {
    grid-column: 1 / -1;
    max-width: 340px;
  }

  .retreat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .experience-panel {
    gap: 50px;
  }

  .safety-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .safety-grid article:nth-child(2) {
    border-right: 0;
  }

  .safety-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .role-grid {
    gap: 60px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .newsletter {
    grid-column: 1 / -1;
    max-width: 560px;
  }
}

@media (max-width: 940px) {
  :root { --header-height: 76px; }

  .section-pad {
    width: min(100% - 40px, var(--content));
  }

  .site-header {
    width: calc(100% - 32px);
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 50px;
    gap: 50px;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(62px, 10vw, 94px);
  }

  .hero-visual {
    width: min(100%, 760px);
    margin-inline: auto;
  }

  .world-stage {
    max-width: 650px;
  }

  .section-heading,
  .safety-head {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }

  .section-heading > p,
  .safety-head > p {
    max-width: 700px;
  }

  .experience-panel {
    grid-template-columns: 1fr;
  }

  .experience-spectrum {
    max-width: 650px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: auto;
    display: grid;
    grid-template-columns: 50px minmax(0, 0.8fr) minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 0 22px;
    align-items: center;
  }

  .step-number {
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: start;
  }

  .step-art {
    grid-column: 3;
    grid-row: 1 / 3;
    min-height: 270px;
    width: 100%;
    margin: 0;
  }

  .step-card h3 {
    grid-column: 2;
    margin-top: 12px;
  }

  .step-card > p {
    grid-column: 2;
  }

  .role-grid {
    grid-template-columns: 1fr;
  }

  .role-visual {
    min-height: 580px;
    max-width: 650px;
    width: 100%;
    margin-inline: auto;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .audience-card {
    min-height: 300px;
  }

  .host-panel {
    grid-template-columns: 1fr;
  }

  .host-visual {
    min-height: 440px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field:nth-child(3) {
    grid-column: auto;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .faq-intro {
    max-width: 700px;
  }

  .retreat-modal-shell {
    grid-template-columns: 1fr;
  }

  .retreat-modal-art {
    min-height: 280px;
  }
}

@media (max-width: 720px) {
  .section-pad {
    width: calc(100% - 28px);
  }

  .brand-mark {
    width: 38px;
  }

  .brand-text strong {
    font-size: 16px;
  }

  .hero {
    padding-top: 36px;
    padding-bottom: 84px;
  }

  .eyebrow {
    font-size: 9px;
  }

  .hero h1 {
    font-size: clamp(55px, 16vw, 78px);
    margin-top: 22px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-proof div {
    grid-template-columns: 130px 1fr;
    align-items: center;
  }

  .visual-kicker {
    justify-content: center;
    margin-right: 0;
  }

  .world-stage {
    width: 100%;
    margin-left: 0;
  }

  .destination-card {
    width: 100%;
    margin-top: -40px;
  }

  .destination-card-main {
    align-items: flex-start;
  }

  .destination-card-footer p {
    max-width: 80%;
  }

  .section-heading h1,
  .section-heading h2,
  .experience-copy h2,
  .role-copy h2,
  .safety-head h2,
  .faq-intro h2,
  .host-copy h1,
  .host-copy h2 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .filter-panel {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .select-wrap {
    grid-column: auto;
    max-width: none;
  }

  .results-line {
    align-items: flex-start;
  }

  .retreat-grid {
    grid-template-columns: 1fr;
  }

  .retreat-art {
    min-height: 235px;
  }

  .experience-panel {
    padding: 28px 20px;
    border-radius: 34px;
  }

  .spectrum-item {
    grid-template-columns: 42px 1fr;
  }

  .spectrum-level {
    grid-column: 2;
  }

  .step-card {
    display: flex;
    min-height: auto;
  }

  .step-number {
    align-self: auto;
  }

  .step-art {
    min-height: 230px;
    margin: 22px 0 24px;
  }

  .role-visual {
    min-height: 510px;
  }

  .compass-card {
    width: 90%;
    padding: 22px;
  }

  .floating-tag {
    font-size: 9px;
  }

  .tag-top { right: 0; }
  .tag-bottom { left: 0; }

  .safety {
    padding-inline: 18px;
  }

  .safety-grid {
    grid-template-columns: 1fr;
  }

  .safety-grid article {
    min-height: 240px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .safety-grid article:last-child {
    border-bottom: 0;
  }

  .safety-grid article:nth-child(2) {
    border-right: 0;
  }

  .audience-card {
    min-height: 330px;
  }

  .host-panel {
    border-radius: 34px;
  }

  .host-visual {
    min-height: 330px;
  }

  .host-copy {
    padding: 34px 24px 40px;
  }

  .final-cta-panel {
    min-height: 580px;
    border-radius: 34px;
    padding: 40px 20px;
  }

  .final-cta-panel h2 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-top p {
    text-align: left;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 20px;
  }

  .newsletter {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .modal {
    width: calc(100% - 16px);
    max-height: calc(100svh - 16px);
    border-radius: 24px;
  }

  .modal-shell {
    max-height: calc(100svh - 16px);
    padding: 20px;
    border-radius: 24px;
  }

  .modal-head h2 {
    font-size: 38px;
  }

  .option-grid-two,
  .option-grid-three {
    grid-template-columns: 1fr;
  }

  .choice-card {
    min-height: 118px;
  }

  .choice-card:not(.compact-choice) {
    display: grid;
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto;
    gap: 0 12px;
  }

  .choice-icon {
    grid-row: 1 / 3;
    margin: 0;
  }

  .choice-card strong {
    margin: 0;
  }

  .compact-choice {
    min-height: 100px;
  }

  .intensity-labels {
    font-size: 7px;
  }

  .retreat-modal-shell {
    padding: 0;
  }

  .retreat-modal-content {
    padding: 28px 20px;
  }

  .retreat-detail-grid {
    grid-template-columns: 1fr;
  }

  .retreat-modal-actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* ---- Multi-page layers -------------------------------------------------
   Interior pages (retreats, how, hosts) open straight into a content section
   instead of the hero, which previously supplied the space under the sticky
   header. Purely additive — no existing rule is changed. */
.page-interior main > section:first-child {
  padding-top: clamp(56px, 6vw, 104px);
}

/* ---- Barrierefreiheit & Orientierung -----------------------------------
   Additiv ergänzt. Keine bestehende Regel wird überschrieben, außer wo es
   um gemessene Kontrastfehler geht. Palette, Radien und Typo bleiben. */

/* Aktive Seite in der Navigation — das Markup trug aria-current bereits,
   es hatte nur nie eine Gestaltung. Nutzt die vorhandene Hover-Linie. */
.desktop-nav a[aria-current="page"] {
  color: var(--ink-deep);
}
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}
.mobile-menu a[aria-current="page"] {
  color: var(--ink-deep);
  box-shadow: inset 3px 0 0 var(--orange);
  padding-left: 12px;
}

/* Der orange CTA-Block trug hellorange Schrift auf Orange (1,98:1). */
.final-cta-panel .section-label-light {
  color: var(--ink-deep);
  opacity: 0.82;
}
.final-cta-panel > p:not(.section-label):not(.section-label-light) {
  color: rgba(12, 36, 26, 0.86);
}

/* Filter-Chips hatten praktisch keine sichtbare Begrenzung (1,03:1). */
.filter-chip {
  border: 1px solid rgba(23, 57, 44, 0.55);
  background: var(--surface);
  min-height: 44px;
}
.filter-chip:hover {
  border-color: var(--ink);
}
.select-wrap select {
  border-color: rgba(23, 57, 44, 0.55);
  min-height: 44px;
}

/* Trefferflächen auf mindestens 44 px. */
.text-button { min-height: 44px; }
.card-link { min-height: 44px; padding: 8px 4px; margin-right: -4px; }
.art-save { width: 40px; height: 40px; }

/* Restliche gemessene AA-Unterschreitungen bei Fließtext. */
.testimonial-cream .testimonial-quote { color: rgba(23, 57, 44, 0.8); }
.testimonial-author span { color: var(--ink-soft); }
.newsletter input::placeholder { color: var(--ink-soft); }

/* Ganze Karte klickbar — der Hover hob sie bereits an, klickbar war aber
   nur ein 12-px-Textlink. */
.retreat-card { position: relative; }
.card-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 26px;
}
.retreat-art-top { z-index: 2; }
.retreat-card:focus-within { border-color: rgba(23, 57, 44, 0.4); }

/* Gemerkt-Zustand über Farbe, nicht nur über Skalierung. */
.art-save.is-saved { background: rgba(255, 255, 255, 0.92); color: var(--orange-deep); }

/* Pins am Globus: sichtbar größer und aus dem Tab-Fluss, wenn abgewandt. */
.globe-pin { width: 28px; height: 28px; transition: opacity 120ms ease, visibility 120ms; }

/* Der Globus darf am Handy nicht das vertikale Scrollen kapern. */
.world-stage { touch-action: pan-y; }

/* Brotkrumen — nutzt exakt die Typo-Spezifikation von .section-label. */
.page-crumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  /* auto links/rechts, sonst überschreibt diese Kurzschreibweise das
     margin-inline: auto aus .section-pad — die Brotkrumen klebten dadurch
     am linken Bildschirmrand. */
  margin: clamp(20px, 2.5vw, 34px) auto 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.page-crumbs a { color: var(--ink-soft); border-bottom: 1px solid var(--line-strong); }
.page-crumbs a:hover { color: var(--orange-ink); }
.page-crumbs [aria-current] { color: var(--ink); }

/* Innenseiten: Kopfbereich bekommt sofort eine Fläche, damit die
   Aktiv-Markierung etwas hat, worauf sie sitzt. */
.page-interior .site-header::before {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Interaktive Textzustände auf denselben lesbaren Ton wie die Eyebrow. */
.text-button:hover,
.card-link:hover,
.audience-card .text-button { color: var(--orange-ink); }

@media (max-width: 940px) {
  /* Das dunkle Sicherheits-Band lief 12 px versetzt zum restlichen Inhalt. */
  .safety { padding-inline: 20px; }
  /* Die Destination-Karte verdeckte die südlichen Pins des Globus. */
  .destination-card { margin-top: -56px; width: min(560px, 88%); }
}

@media (max-width: 720px) {
  .safety { padding-inline: 14px; }
  /* Zwei von vier Filter-Optionen lagen ohne Hinweis außerhalb des Bildschirms. */
  .segmented-control { flex-wrap: wrap; overflow-x: visible; }
}

/* ---- Substanzgestützter Bereich ---------------------------------------
   Eigene Bausteine für Rechts-, Screening- und Faktenangaben. Nutzt
   ausschließlich vorhandene Farb-, Radien- und Typo-Token. */

.hinweis {
  margin: 0 0 28px;
  padding: 16px 20px;
  border: 1px solid var(--line-strong);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.6;
}

.fakten-box {
  margin: 32px 0;
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.fakten-box > p {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--orange-ink);
}
.fakten-box dl {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(0, 2fr);
  gap: 12px 28px;
}
.fakten-box dt {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.fakten-box dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.antwort {
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink);
}
.antwort strong { color: var(--ink-deep); }

.prose { max-width: 74ch; }
.prose h2 {
  margin: 52px 0 14px;
  font-family: "Newsreader", Georgia, serif;
  font-weight: 600;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.prose h3 {
  margin: 34px 0 10px;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.prose p { margin: 0 0 16px; color: var(--ink-soft); line-height: 1.7; }
.prose ul { margin: 0 0 20px; padding-left: 20px; color: var(--ink-soft); line-height: 1.7; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--orange-ink); border-bottom: 1px solid var(--line-strong); }

.vergleich {
  width: 100%;
  margin: 28px 0;
  border-collapse: collapse;
  font-size: 14px;
}
.vergleich th,
.vergleich td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.vergleich th { font-weight: 700; color: var(--ink); }
.vergleich td { color: var(--ink-soft); }
.vergleich tbody th { font-weight: 600; }
.tabelle-scroll { overflow-x: auto; }

.meta-redaktion {
  margin: 40px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.meta-redaktion a { color: var(--ink-soft); border-bottom: 1px solid var(--line-strong); }

@media (max-width: 720px) {
  .fakten-box dl { grid-template-columns: 1fr; gap: 4px 0; }
  .fakten-box dt { margin-top: 12px; }
}

/* Sitzen Brotkrumen über der ersten Sektion, trägt schon deren Abstand. */
.page-crumbs + section { padding-top: clamp(28px, 3vw, 48px) !important; }

/* ---- Angebotsblock im substanzgestützten Bereich ----------------------- */

.track-offer-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 24px;
  margin: 0 0 24px;
}
.track-offer-head .section-label { margin: 0; }
.track-offer-head > p:not(.section-label) {
  margin: 0;
  max-width: 62ch;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

/* Eine einzelne Karte soll nicht auf ein Drittel schrumpfen und den Rest
   der Zeile leer lassen. Das Raster passt sich der Anzahl an. */
#track-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
#track-grid:has(> .retreat-card:only-child) { grid-template-columns: minmax(0, 540px); }
#track-grid:has(> .retreat-card:nth-child(2)):not(:has(> .retreat-card:nth-child(3))) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Der Angebotsblock schließt direkt an den Seitenkopf an — kein voller Abstand. */
#angebot { padding-top: clamp(24px, 3vw, 44px); padding-bottom: clamp(24px, 3vw, 44px); }

/* Vier Angebote brechen sonst als 3+1 um — 2×2 liest sich ruhiger. */
#track-grid:has(> .retreat-card:nth-child(4)) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Seitenkopf und Angebotsblock rücken zusammen. */
.page-crumbs + section { padding-bottom: clamp(20px, 2.5vw, 36px) !important; }

@media (max-width: 860px) {
  #track-grid,
  #track-grid:has(> .retreat-card:nth-child(4)),
  #track-grid:has(> .retreat-card:nth-child(2)):not(:has(> .retreat-card:nth-child(3))) {
    grid-template-columns: minmax(0, 1fr);
  }
  #track-grid:has(> .retreat-card:only-child) { grid-template-columns: minmax(0, 1fr); }
  .track-offer-head { flex-direction: column; gap: 6px; }
}

/* Platzhalter in den Rechtsseiten — bewusst auffällig, damit sie vor dem
   Livegang nicht übersehen werden. */
.platzhalter {
  background: #ffe9d6;
  color: #8a4b1f;
  padding: 1px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Deutsche Komposita wie „Datenschutzerklärung" oder „Amazonasgebiet" sind
   in der Display-Größe breiter als ein schmales Handy. Silbentrennung greift,
   weil jede Seite lang="de" trägt; break-word ist die Rückfallebene. */
h1, h2, h3,
.section-heading h1,
.section-heading h2,
.prose h2,
.prose h3 {
  hyphens: auto;
  overflow-wrap: break-word;
}

.section-label,
.eyebrow {
  overflow-wrap: break-word;
}

/* Honigtopf: für Menschen unsichtbar, für Programme sichtbar. Bewusst nicht
   display:none — manche Bots überspringen ausgeblendete Felder. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 4px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.consent-field input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--ink-deep);
}
.consent-field a { color: var(--orange-ink); border-bottom: 1px solid var(--line-strong); }
