/* RSMH Fjällsjö — warm Nordic experience layer */
:root {
  --forest-950: #0d3025;
  --forest-800: #18553f;
  --forest-600: #2f7a5c;
  --lake-500: #4e8f95;
  --cream-100: #fbf8f0;
  --clay-400: #d98662;
  --experience-shadow: 0 30px 80px rgba(13, 48, 37, 0.14);
}

body {
  background:
    radial-gradient(circle at 10% 8%, rgba(78, 143, 149, 0.08), transparent 28rem),
    radial-gradient(circle at 92% 32%, rgba(217, 134, 98, 0.07), transparent 24rem),
    var(--bg-gradient);
}

.navbar {
  border-bottom-color: rgba(13, 48, 37, 0.1);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.navbar .container::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 0.35rem;
  border-radius: 50%;
  background: var(--clay-400);
  box-shadow: 0 0 0 5px rgba(217, 134, 98, 0.12);
}

.nav-links a {
  letter-spacing: -0.01em;
}

.nav-links li:last-child a {
  color: #fff;
  background: var(--forest-950);
  box-shadow: 0 8px 22px rgba(13, 48, 37, 0.18);
}

.nav-links li:last-child a:hover,
.nav-links li:last-child a:focus-visible {
  color: #fff;
  background: var(--forest-800);
  transform: translateY(-1px);
}

.btn {
  border-radius: 999px;
  min-height: 3.35rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.24) 48%, transparent 76%);
  transform: translateX(-130%);
  transition: transform 560ms ease;
}

.btn:hover::before,
.btn:focus-visible::before {
  transform: translateX(130%);
}

.btn-primary {
  background: linear-gradient(135deg, var(--forest-800), var(--forest-600));
  box-shadow: 0 14px 30px rgba(24, 85, 63, 0.22);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(13, 48, 37, 0.2);
  backdrop-filter: blur(12px);
}

.hero-game-link {
  gap: .7rem;
  color: var(--forest-950);
  border-color: rgba(35, 107, 84, .24);
  box-shadow: 0 10px 26px rgba(13, 48, 37, .08);
}

.hero-game-icon {
  position: relative;
  width: 1.55rem;
  height: 1.2rem;
  flex: 0 0 1.55rem;
}

.hero-game-icon::before,
.hero-game-icon::after {
  position: absolute;
  width: .92rem;
  height: 1.08rem;
  border: 1.7px solid currentColor;
  border-radius: .25rem;
  background: rgba(255, 255, 255, .95);
  content: "";
  transition: transform 260ms ease, background-color 260ms ease;
}

.hero-game-icon::before {
  left: .06rem;
  top: .08rem;
  opacity: .56;
  transform: rotate(-8deg);
}

.hero-game-icon::after {
  right: .06rem;
  top: 0;
  background: var(--cream-100);
  transform: rotate(5deg);
}

.hero-game-link:hover,
.hero-game-link:focus-visible {
  color: var(--forest-800);
  border-color: rgba(35, 107, 84, .5);
  box-shadow: 0 15px 34px rgba(13, 48, 37, .13);
}

.hero-game-link:hover .hero-game-icon::before,
.hero-game-link:focus-visible .hero-game-icon::before {
  transform: translate(-2px, 1px) rotate(-12deg);
}

.hero-game-link:hover .hero-game-icon::after,
.hero-game-link:focus-visible .hero-game-icon::after {
  background: #eef6f2;
  transform: translate(2px, -1px) rotate(8deg);
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 2200;
  width: var(--scroll-progress, 0%);
  height: 3px;
  background: linear-gradient(90deg, var(--lake-500), var(--clay-400));
  pointer-events: none;
}

.home-hero {
  min-height: min(820px, calc(100svh - 82px));
  display: flex;
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) 0;
  background:
    linear-gradient(115deg, rgba(251, 248, 240, 0.97) 5%, rgba(255,255,255,.82) 52%, rgba(238,247,243,.8)),
    var(--page-hero-bg) center/cover no-repeat;
}

.page-hero .page-hero-inner.reveal,
.page-hero .page-hero-image.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 92px;
  background: linear-gradient(to bottom right, transparent 49%, #fff 50%);
  opacity: .94;
  pointer-events: none;
}

.experience-orb {
  position: absolute;
  width: 24rem;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .24;
  pointer-events: none;
  animation: experience-float 12s ease-in-out infinite alternate;
}

.experience-orb.is-lake {
  top: -12rem;
  right: 12%;
  background: radial-gradient(circle, rgba(78,143,149,.62), transparent 68%);
}

.experience-orb.is-clay {
  bottom: -15rem;
  left: 30%;
  background: radial-gradient(circle, rgba(217,134,98,.48), transparent 68%);
  animation-delay: -5s;
}

@keyframes experience-float {
  to { transform: translate3d(2rem, 1.5rem, 0) scale(1.08); }
}

.home-hero .page-hero-inner {
  grid-template-columns: minmax(0, .92fr) minmax(350px, 1.08fr);
  gap: clamp(2.5rem, 7vw, 6.5rem);
}

.hero-greeting {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1.25rem;
  color: var(--forest-800);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.hero-greeting::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: currentColor;
}

.home-hero h1 {
  max-width: 13ch;
  font-size: clamp(3.15rem, 6.2vw, 5.7rem);
  line-height: .96;
  letter-spacing: -.055em;
}

.home-hero h1 span {
  display: block;
}

.home-hero h1 .hero-title-accent {
  margin-top: .08em;
  color: var(--forest-800);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: .78em;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -.04em;
}

.home-hero .page-hero-lead {
  max-width: 39rem;
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  color: #314b43;
}

.hero-promise-list {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1.25rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-promise-list li {
  display: flex;
  align-items: center;
  gap: .45rem;
  color: var(--forest-950);
  font-size: .88rem;
  font-weight: 700;
}

.hero-promise-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clay-400);
}

.hero-visual {
  position: relative;
  min-height: 540px;
  transform: translate3d(0, var(--hero-shift, 0), 0);
  transition: transform 100ms linear;
}

.hero-visual .page-hero-image {
  position: absolute;
  inset: 1.75rem 0 0 2rem;
  aspect-ratio: auto;
  border: 8px solid rgba(255,255,255,.78);
  border-radius: 44% 56% 48% 52% / 48% 38% 62% 52%;
  box-shadow: var(--experience-shadow);
  transform: rotate(1.5deg);
}

.hero-visual .page-hero-image img {
  object-position: 52% center;
}

.hero-float-card {
  position: absolute;
  z-index: 3;
  max-width: 230px;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 1.25rem;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 45px rgba(13,48,37,.15);
}

.hero-float-card strong,
.hero-float-card span {
  display: block;
}

.hero-float-card strong {
  color: var(--forest-950);
  font-family: var(--font-family-display);
  font-size: 1.02rem;
}

.hero-float-card span {
  margin-top: .2rem;
  color: #486057;
  font-size: .82rem;
}

.hero-float-card.is-place { left: 0; bottom: 2.4rem; }
.hero-float-card.is-welcome { right: -1rem; top: 0; }

.hero-logo-stamp {
  position: absolute;
  z-index: 4;
  right: 1rem;
  bottom: .25rem;
  width: 92px;
  height: 92px;
  padding: .6rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 16px 35px rgba(13,48,37,.18);
  animation: stamp-drift 6s ease-in-out infinite alternate;
}

.hero-logo-stamp img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }

@keyframes stamp-drift { to { transform: translateY(-8px) rotate(2deg); } }

.journey-section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.journey-assistant {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 84% 12%, rgba(78,143,149,.36), transparent 23rem),
    radial-gradient(circle at 22% 110%, rgba(217,134,98,.12), transparent 20rem),
    linear-gradient(135deg, var(--forest-950), #174f3d 58%, #275f58);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: clamp(1.8rem, 4vw, 3rem);
  box-shadow: var(--experience-shadow);
}

.journey-assistant::after {
  content: "";
  position: absolute;
  width: 18rem;
  height: 18rem;
  right: -7rem;
  bottom: -10rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 40px rgba(255,255,255,.025), 0 0 0 80px rgba(255,255,255,.02);
  pointer-events: none;
}

.journey-heading {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
  padding: clamp(2rem, 5vw, 4rem) clamp(2rem, 5vw, 4.5rem) 1rem;
}

.journey-signature {
  display: inline-block;
  margin-bottom: .85rem;
  color: #bde7d6;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.journey-heading h2 {
  max-width: 13ch;
  color: #fff;
  font-size: clamp(2.3rem, 5vw, 4.35rem);
  line-height: 1;
  letter-spacing: -.045em;
}

.journey-heading p,
.journey-result p,
.journey-mobile-answer p {
  color: rgba(255,255,255,.75);
}

.journey-heading p {
  max-width: 38rem;
  margin-bottom: 0;
}

.journey-privacy {
  flex: 0 0 auto;
  padding: .65rem .85rem;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  font-size: .78rem;
  font-weight: 800;
  white-space: nowrap;
}

.journey-desktop {
  position: relative;
  z-index: 1;
  display: none;
  grid-template-columns: minmax(225px, .85fr) minmax(120px, .42fr) minmax(300px, 1.12fr);
  align-items: stretch;
  padding: 1.5rem clamp(2rem, 5vw, 4.5rem) clamp(2.5rem, 6vw, 5rem);
}

.journey-options {
  display: grid;
  align-content: center;
  gap: .75rem;
}

.journey-option {
  position: relative;
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .8rem 1rem;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 1rem;
  color: #fff;
  background: rgba(255,255,255,.08);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.journey-option::after {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border: 2px solid rgba(255,255,255,.55);
  border-radius: 50%;
}

.journey-option:hover {
  background: rgba(255,255,255,.14);
  transform: translateX(2px);
}

.journey-option:focus-visible {
  outline: 3px solid var(--clay-400);
  outline-offset: 3px;
}

.journey-option[aria-pressed="true"] {
  border-color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.18);
}

.journey-option[aria-pressed="true"]::after {
  border-color: var(--clay-400);
  background: var(--clay-400);
  box-shadow: 0 0 0 6px rgba(217,134,98,.16);
}

.journey-path-stage {
  min-height: 352px;
}

.journey-path-stage svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.journey-route-path {
  fill: none;
  stroke: rgba(255,255,255,.12);
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.journey-route-path.is-active {
  stroke: var(--clay-400);
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: journey-draw-route 380ms cubic-bezier(.2,.75,.25,1) forwards;
}

.journey-arrival {
  fill: var(--clay-400);
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}

.journey-arrival.is-active {
  animation: journey-arrive 160ms 300ms ease-out forwards;
}

@keyframes journey-draw-route {
  to { stroke-dashoffset: 0; }
}

@keyframes journey-arrive {
  from { opacity: 0; transform: scale(.3); }
  to { opacity: 1; transform: scale(1); }
}

.journey-result {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  padding: clamp(1.6rem, 4vw, 2.6rem);
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 1.8rem;
  background: rgba(255,255,255,.11);
  backdrop-filter: blur(14px);
}

.journey-result-kicker {
  margin-bottom: .7rem;
  color: #bde7d6;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.journey-result h3 {
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.journey-result .btn {
  width: fit-content;
  margin-top: .5rem;
  background: #fff;
  color: var(--forest-950);
}

.journey-mobile {
  position: relative;
  z-index: 1;
  display: block;
  padding: 1rem clamp(2rem, 5vw, 4.5rem) clamp(2.5rem, 6vw, 5rem);
}

.experience-js .journey-desktop { display: grid; }
.experience-js .journey-mobile { display: none; }

.journey-mobile details {
  margin-top: .7rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 1rem;
  background: rgba(255,255,255,.07);
}

.journey-mobile details[open] {
  background: rgba(255,255,255,.13);
}

.journey-mobile summary {
  min-height: 58px;
  padding: .95rem 1rem;
  cursor: pointer;
  font-weight: 800;
  list-style-position: inside;
}

.journey-mobile summary:focus-visible {
  outline: 3px solid var(--clay-400);
  outline-offset: 3px;
  border-radius: .9rem;
}

.journey-mobile-answer {
  padding: 1rem 1rem 1.2rem;
  border-top: 1px solid rgba(255,255,255,.14);
}

.journey-mobile-answer h3 {
  color: #fff;
}

.journey-mobile-answer p {
  margin-bottom: .8rem;
}

.journey-mobile-answer a {
  color: #fff;
  font-weight: 850;
}

.booking-availability {
  margin: 0 0 var(--spacing-8);
  padding: .9rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  color: var(--color-text-muted);
  background: #f8faf9;
  font-size: .92rem;
  font-weight: 650;
  line-height: 1.5;
}

.booking-availability.is-checking { color: #315b60; border-color: #a9cdd0; background: #f0f8f8; }
.booking-availability.is-available { color: #14532d; border-color: #86c89f; background: #effaf3; }
.booking-availability.is-unavailable { color: #991b1b; border-color: #efaaaa; background: #fff4f4; }
.booking-availability.is-warning { color: #854d0e; border-color: #e8ca79; background: #fffbeb; }

.section-light {
  background: linear-gradient(180deg, rgba(247,244,236,.78), rgba(255,255,255,.72));
  border-block: 1px solid rgba(13,48,37,.07);
}

.home-closing {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0 clamp(5rem, 9vw, 8rem);
  background: linear-gradient(180deg, #fff, var(--cream-100));
  scroll-margin-top: 5.5rem;
}

.home-closing .container {
  position: relative;
}

.home-closing-route {
  position: relative;
  width: clamp(4.5rem, 8vw, 7rem);
  height: 2.25rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  border-top: 2px solid var(--clay-400);
  border-right: 2px solid var(--clay-400);
}

.home-closing-route::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--clay-400);
}

.home-closing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .75fr);
  gap: clamp(3rem, 9vw, 8rem);
  align-items: end;
}

.home-closing-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--forest-700);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.home-closing h2 {
  max-width: 11ch;
  margin-bottom: .2rem;
  color: var(--forest-950);
  font-size: clamp(3.3rem, 8vw, 7rem);
  line-height: .95;
  letter-spacing: -.055em;
}

.home-closing-accent {
  margin: 0;
  color: var(--forest-700);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 5vw, 4.6rem);
  font-style: italic;
  line-height: 1;
  letter-spacing: -.035em;
}

.home-closing-contact {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(13,48,37,.2);
}

.home-closing-contact > p {
  max-width: 34rem;
  margin: 0 0 1.5rem;
  color: var(--forest-850);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
}

.home-closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  align-items: center;
}

.home-contact-paths {
  display: grid;
  gap: .75rem;
  margin-bottom: 1.25rem;
}

.home-contact-path {
  display: grid;
  grid-template-columns: 2.25rem minmax(0, 1fr);
  gap: .1rem .8rem;
  align-items: center;
  min-height: 4.5rem;
  padding: .9rem 1rem;
  border: 1px solid rgba(13,48,37,.14);
  border-radius: 1.15rem;
  color: var(--forest-950);
  background: rgba(255,255,255,.72);
  box-shadow: 0 12px 28px rgba(13,48,37,.055);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.home-contact-path > span {
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--clay-500);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.home-contact-path strong {
  font-size: 1rem;
}

.home-contact-path small {
  color: var(--forest-700);
  font-size: .8rem;
}

.home-contact-path:hover,
.home-contact-path:focus-visible {
  border-color: rgba(214,113,75,.7);
  box-shadow: 0 18px 36px rgba(13,48,37,.1);
  transform: translateY(-2px);
}

.home-membership-link {
  display: inline-flex;
  gap: .45rem;
  align-items: center;
  color: var(--forest-850);
  font-size: .9rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--clay-400);
  text-decoration-thickness: 2px;
  text-underline-offset: .3rem;
}

.home-membership-link:hover,
.home-membership-link:focus-visible {
  color: var(--forest-700);
}

.home-closing-link {
  color: var(--forest-850);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: var(--clay-400);
  text-decoration-thickness: 2px;
  text-underline-offset: .35rem;
}

.home-closing-link:hover,
.home-closing-link:focus-visible {
  color: var(--forest-700);
}

.home-closing-meta {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem 2rem;
  align-items: center;
  margin-top: clamp(3rem, 7vw, 5.5rem);
  padding-top: 1.1rem;
  border-top: 1px solid rgba(13,48,37,.2);
  color: var(--forest-700);
  font-size: .88rem;
}

.home-closing-meta a {
  color: inherit;
  font-weight: 800;
}

.mobile-action-dock { display: none; }

@media (max-width: 959px) {
  .home-hero .page-hero-inner { grid-template-columns: minmax(0, 1fr); }
  .hero-visual { min-height: 470px; }
  .hero-visual .page-hero-image { left: 0; }
}

@media (max-width: 959px) {
  .experience-js .journey-desktop { display: none; }
  .experience-js .journey-mobile { display: block; }
  .home-closing-grid { grid-template-columns: minmax(0, 1fr); gap: 2.5rem; }
  .home-closing-contact { max-width: 38rem; }
}

@media (max-width: 768px) {
  body { padding-bottom: 76px; }
  .navbar .container::after { display: none; }
  .nav-links li:last-child a { color: var(--color-text-main); background: transparent; box-shadow: none; }
  .home-hero { min-height: auto; padding: 3.5rem 0 5rem; }
  .home-hero::after { height: 42px; }
  .home-hero h1 { font-size: clamp(2.7rem, 13vw, 4.15rem); max-width: 10ch; }
  .home-hero .page-hero-actions { max-width: none; }
  .hero-game-link { white-space: normal; line-height: 1.15; }
  .hero-visual { min-height: 360px; margin-top: .5rem; }
  .hero-visual .page-hero-image { inset: 1rem .5rem 0; border-radius: 2.4rem; transform: none; }
  .hero-float-card.is-welcome { right: 0; top: -.4rem; }
  .hero-float-card.is-place { left: 0; bottom: -.4rem; }
  .hero-logo-stamp { width: 70px; height: 70px; right: .25rem; bottom: -.6rem; }
  .journey-section { padding-block: 3.5rem; }
  .journey-heading { display: block; padding: 2rem 1.25rem 1rem; }
  .journey-heading h2 { max-width: 10ch; font-size: clamp(2.25rem, 11vw, 3.6rem); }
  .journey-privacy { display: inline-flex; margin-top: 1rem; white-space: normal; }
  .experience-js .journey-mobile {
    padding: .5rem 1.25rem 2rem;
  }
  .home-closing { padding: 4rem 0 5.5rem; }
  .home-closing-route { margin-bottom: 2rem; }
  .home-closing h2 { font-size: clamp(3.2rem, 16vw, 5.2rem); }
  .home-closing-accent { font-size: clamp(2.1rem, 10vw, 3.25rem); }
  .home-closing-actions { display: grid; }
  .home-closing-actions .btn { width: 100%; }
  .home-closing-link { width: fit-content; padding-block: .5rem; }
  .home-contact-path { min-height: 4.25rem; }
  .home-closing-meta { grid-template-columns: 1fr; gap: .45rem; }
  .mobile-action-dock {
    position: fixed;
    z-index: 1800;
    inset: auto .75rem .65rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .35rem;
    padding: .4rem;
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 1.35rem;
    background: rgba(13,48,37,.92);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 45px rgba(13,48,37,.28);
  }
  .mobile-action-dock a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    color: #fff;
    font-size: .76rem;
    font-weight: 800;
  }
  .mobile-action-dock a:first-child { background: rgba(255,255,255,.13); }
  body:has(.journey-mobile details[open]) .mobile-action-dock {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .experience-orb,
  .hero-logo-stamp { animation: none !important; }
  .hero-visual { transform: none !important; transition: none !important; }
  .journey-route-path.is-active { stroke-dashoffset: 0; animation: none !important; }
  .journey-arrival.is-active { opacity: 1; transform: none; animation: none !important; }
  .journey-option { transform: none !important; transition: none !important; }
  .btn::before { display: none; }
}
