@font-face {
  font-family: Manrope;
  src: url("assets/fonts/manrope-400.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("assets/fonts/manrope-600.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("assets/fonts/manrope-800.ttf") format("truetype");
  font-weight: 800;
  font-display: swap;
}
:root {
  --navy: #001441;
  --yellow: #fdb713;
  --blue: #007bb6;
  --paper: #e9edef;
  --white: #ffffff;
  --page-pad: clamp(28px, 4.2vw, 72px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 145px;
  scrollbar-color: var(--blue) var(--paper);
}
body {
  margin: 0;
  color: var(--navy);
  background: var(--white);
  font:
    400 16px/1.65 Manrope,
    sans-serif;
}
::selection {
  background: var(--yellow);
  color: var(--navy);
}
a {
  color: inherit;
  text-underline-offset: 0.25em;
}
button {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
p {
  margin: 0 0 22px;
}
h1,
h2,
h3,
h4 {
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
  text-wrap: balance;
  letter-spacing: -0.035em;
}
h1 {
  font-size: clamp(64px, 6.1vw, 88px);
  line-height: 1.04;
}
h2 {
  font-size: clamp(52px, 4.4vw, 66px);
  line-height: 1.08;
}
h3 {
  font-size: 27px;
  line-height: 1.2;
}
h4 {
  font-size: 18px;
  letter-spacing: -0.02em;
}
em {
  font-style: normal;
  color: var(--blue);
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  background: var(--yellow);
  padding: 12px;
  z-index: 20;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  height: 130px;
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 14px var(--page-pad);
  background: var(--white);
}
.brand {
  width: 218px;
  flex-shrink: 0;
}
.brand img {
  width: 218px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}
.main-nav a {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 0;
}
.main-nav a:hover {
  text-decoration: underline;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.phone {
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--yellow);
  color: var(--navy);
  border: 1px solid transparent;
  padding: 18px 23px;
  border-radius: 7px;
  font-weight: 800;
  font-size: 15px;
  line-height: 1.3;
  text-decoration: none;
  min-height: 58px;
}
.button:hover {
  background: var(--navy);
  color: var(--white);
}
.button.small {
  padding: 15px 18px;
  font-size: 13px;
  min-height: 50px;
}
.button.outline {
  border-color: var(--navy);
  background: transparent;
}
.button.outline:hover {
  background: var(--navy);
}
.text-link {
  font-size: 14px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 13px;
}
.text-link span {
  font-size: 20px;
}
.text-link:hover {
  color: var(--blue);
}
#comfort-world {
  position: relative;
  padding-top: 130px;
}
.world-stage {
  height: calc(100vh - 130px);
  position: sticky;
  top: 130px;
  margin-bottom: calc(-100vh + 130px);
  overflow: hidden;
  pointer-events: none;
  background: var(--paper);
}
.world-stage > img,
.world-stage > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.world-stage > video {
  opacity: 0;
}
.world-stage.is-ready > video {
  opacity: 1;
}
.reading-ground {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--white) 0%,
    var(--white) 31%,
    rgba(255, 255, 255, 0.97) 35%,
    rgba(255, 255, 255, 0.6) 43%,
    rgba(255, 255, 255, 0) 54%
  );
}
.world-caption {
  position: absolute;
  right: var(--page-pad);
  bottom: 28px;
  font-size: 11px;
  font-weight: 600;
  background: var(--white);
  padding: 5px 10px;
  border-radius: 3px;
}
.scene-nav {
  position: fixed;
  z-index: 8;
  right: var(--page-pad);
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  padding: 12px 18px;
  border-radius: 6px;
  box-shadow: 0 6px 28px rgba(0, 20, 65, 0.09);
}
.scene-nav a {
  display: flex;
  gap: 8px;
  align-items: center;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  min-height: 25px;
}
.scene-nav a > span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--paper);
}
.scene-nav a[aria-current] > span {
  background: var(--blue);
}
.scene-nav a[aria-current] {
  color: var(--blue);
}
.scene-nav button {
  background: var(--paper);
  color: var(--navy);
  border: 0;
  border-radius: 3px;
  padding: 6px 9px;
  font-size: 11px;
  cursor: pointer;
}
.scene {
  position: relative;
  padding: 110px var(--page-pad) 140px;
  min-height: 100vh;
  scroll-margin-top: 0;
}
.scene-copy {
  width: 40%;
  max-width: 550px;
}
.scene-copy > h2 {
  margin-bottom: 30px;
}
.scene-home {
  min-height: calc(100vh - 130px);
  padding-top: 80px;
  padding-bottom: 100px;
  display: flex;
  align-items: center;
}
.scene-home .scene-copy {
  max-width: 620px;
  width: 46%;
}
.scene-home h1 {
  margin-bottom: 30px;
}
.intro {
  font-size: 20px;
  line-height: 1.55;
  letter-spacing: -0.018em;
}
.home-local {
  font-size: 14px;
  line-height: 1.75;
  margin: 24px 0 28px;
}
.actions {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 18px;
}
.explore {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 64px;
}
.explore svg {
  width: 19px;
  height: 19px;
}
.scene-services {
  padding-top: 140px;
}
.service-pair {
  margin-top: 55px;
}
.service-primary {
  padding: 0 0 33px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--paper);
}
.service-primary h3 {
  font-size: 31px;
  margin-bottom: 13px;
}
.service-primary p {
  font-size: 14px;
  max-width: 34ch;
  margin-bottom: 20px;
}
.service-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.service-links a {
  border: 1px solid var(--blue);
  border-radius: 4px;
  padding: 9px 12px;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  line-height: 1.4;
}
.service-links a:hover {
  background: var(--blue);
  color: var(--white);
}
.more-services > a {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  padding: 22px 0;
  border-bottom: 1px solid var(--paper);
}
.more-services strong {
  display: block;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.more-services small {
  font-size: 13px;
  display: block;
  margin-top: 6px;
  line-height: 1.5;
}
.more-services a:hover strong {
  color: var(--blue);
}
.help-line {
  font-size: 13px;
  margin-top: 28px;
}
.help-line a {
  font-weight: 800;
}
.scene-care .scene-copy > p:not(.intro) {
  font-size: 14px;
  max-width: 42ch;
}
.award {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 54px 0 68px;
}
.award > img {
  width: 160px;
  height: auto;
  flex-shrink: 0;
}
.award h3 {
  font-size: 21px;
  line-height: 1.25;
  margin-bottom: 10px;
}
.award p {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 12px;
}
.award .text-link {
  font-size: 11px;
}
.maintenance {
  padding: 35px 0 40px;
  border-block: 1px solid var(--blue);
}
.maintenance h3 {
  font-size: 35px;
  margin-bottom: 24px;
}
.maintenance > p {
  font-size: 14px;
}
.maintenance .button {
  font-size: 12px;
  width: 100%;
  gap: 10px;
}
.filter-note {
  margin-top: 35px;
}
.filter-note h4 {
  margin-bottom: 13px;
}
.filter-note p {
  font-size: 12px;
  line-height: 1.8;
}
.filter-note .text-link {
  font-size: 12px;
}
.reviews {
  margin-top: 75px;
}
.reviews > h3 {
  font-size: 26px;
  margin-bottom: 30px;
}
.reviews blockquote {
  margin: 0;
  padding: 24px 0;
  border-top: 1px solid var(--paper);
}
.reviews blockquote p {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.reviews blockquote footer {
  font-size: 12px;
  font-weight: 800;
}
.reviews blockquote footer span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  margin-top: 3px;
}
.reviews > .text-link {
  margin-top: 20px;
}
.scene-visit h2 {
  font-size: 56px;
}
.scene-visit .scene-copy > p:not(.intro) {
  font-size: 14px;
}
.towns {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
  margin: 30px 0;
  font-size: 14px;
  font-weight: 600;
}
.towns li:before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--yellow);
  margin: 0 12px 3px 0;
}
.visit-decision {
  margin-top: 60px;
  padding-top: 36px;
  border-top: 1px solid var(--blue);
}
.visit-decision h3 {
  font-size: 34px;
  margin-bottom: 20px;
}
.visit-decision p {
  font-size: 14px;
}
.visit-decision > .text-link {
  display: flex;
  margin-top: 22px;
}
.mobile-world {
  display: none;
}
.resources,
.journal,
.site-footer {
  position: relative;
  z-index: 2;
}
.resources {
  background: var(--yellow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding: 100px var(--page-pad);
}
.resources h2 {
  font-size: 44px;
}
.resource-intro p {
  margin-top: 24px;
  font-size: 14px;
}
.resource-options > a {
  display: block;
  border-bottom: 1px solid rgba(0, 20, 65, 0.25);
  padding: 21px 0;
  text-decoration: none;
}
.resource-options > a:first-child {
  padding-top: 0;
}
.resource-options strong {
  font-size: 21px;
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 5px;
}
.resource-options span {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}
.resource-options b {
  font-size: 20px;
  font-weight: 400;
}
.resource-options a:hover {
  text-decoration: underline;
}
.journal {
  background: var(--white);
  padding: 100px var(--page-pad);
}
.journal h2 {
  font-size: 44px;
  margin-bottom: 36px;
}
.journal-links {
  display: grid;
  grid-template-columns: 1.15fr 1.15fr 1fr;
  gap: 50px;
}
.journal-links a {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  padding: 25px 0;
  border-top: 1px solid var(--blue);
}
.journal-links a:hover {
  color: var(--blue);
}
.journal > .text-link {
  margin-top: 35px;
}
.site-footer {
  background: var(--paper);
  padding: 75px var(--page-pad) 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  align-items: center;
  gap: 55px;
  padding-bottom: 60px;
}
.footer-brand {
  width: 265px;
}
.footer-phone {
  font-size: 26px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.03em;
}
.footer-contact address {
  font-style: normal;
  font-size: 13px;
  margin: 14px 0;
}
.footer-contact > a:last-child {
  font-size: 12px;
  font-weight: 600;
}
.footer-proof {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-proof > img:first-child {
  width: 230px;
  height: auto;
}
.footer-proof > img:last-child {
  width: 70px;
  height: auto;
}
.footer-directory {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 40px 0 55px;
  border-top: 1px solid rgba(0, 20, 65, 0.2);
}
.footer-directory h3 {
  font-size: 14px;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.footer-directory a {
  display: block;
  font-size: 12px;
  text-decoration: none;
  margin-bottom: 10px;
}
.footer-directory a:hover {
  text-decoration: underline;
}
.footer-bottom {
  border-top: 1px solid rgba(0, 20, 65, 0.2);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.footer-bottom small,
.footer-bottom > a {
  font-size: 11px;
}
.footer-bottom > a {
  font-weight: 800;
}
.mobile-actions {
  display: none;
}
:is(body.static-world, html:not(.world-capable) body) .world-stage {
  display: none;
}
:is(body.static-world, html:not(.world-capable) body) .scene-nav {
  display: none;
}
:is(body.static-world, html:not(.world-capable) body) .scene {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: start;
  gap: 45px;
  background: var(--white);
  min-height: auto;
  padding-block: 90px;
}
:is(body.static-world, html:not(.world-capable) body) .scene-copy {
  width: 100%;
  max-width: 550px;
}
:is(body.static-world, html:not(.world-capable) body) .mobile-world {
  display: block;
  position: sticky;
  top: 160px;
  margin: 0;
}
:is(body.static-world, html:not(.world-capable) body) .mobile-world img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: right;
}
:is(body.static-world, html:not(.world-capable) body) .mobile-world figcaption {
  font-size: 11px;
  text-align: center;
  margin-top: 12px;
}
:is(body.static-world, html:not(.world-capable) body) .scene-home {
  min-height: calc(100vh - 130px);
  align-items: center;
}
@media (min-width: 960px) and (max-width: 1200px) {
  .main-nav {
    gap: 16px;
  }
  .header-actions {
    gap: 14px;
  }
  .phone {
    display: none;
  }
  .scene-copy {
    width: 43%;
  }
  .scene-home .scene-copy {
    width: 48%;
  }
  .reading-ground {
    background: linear-gradient(
      90deg,
      var(--white) 0%,
      var(--white) 33%,
      rgba(255, 255, 255, 0.92) 40%,
      rgba(255, 255, 255, 0) 60%
    );
  }
  .footer-proof {
    flex-wrap: wrap;
  }
  .scene-visit h2 {
    font-size: 47px;
  }
  .award {
    gap: 14px;
  }
  .award > img {
    width: 130px;
  }
}
@media (max-width: 959px) {
  html {
    scroll-padding-top: 100px;
  }
  .site-header {
    height: 98px;
    padding: 10px 22px;
    gap: 20px;
  }
  .brand,
  .brand img {
    width: 166px;
  }
  .main-nav,
  .phone {
    display: none;
  }
  .header-actions .button {
    font-size: 11px;
    padding: 12px;
    min-height: 45px;
    gap: 10px;
  }
  .header-actions svg {
    width: 18px;
    height: 18px;
  }
  #comfort-world {
    padding-top: 98px;
  }
  .world-stage,
  .scene-nav {
    display: none;
  }
  .scene,
  :is(body.static-world, html:not(.world-capable) body) .scene {
    display: flex;
    flex-direction: column;
    padding: 65px 26px 0;
    gap: 0;
    min-height: auto;
    background: var(--white);
  }
  .scene-copy,
  :is(body.static-world, html:not(.world-capable) body) .scene-copy,
  .scene-home .scene-copy {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
  .scene-home,
  :is(body.static-world, html:not(.world-capable) body) .scene-home {
    align-items: initial;
    min-height: auto;
    padding-top: 43px;
  }
  .scene-home h1 {
    font-size: 62px;
    line-height: 1.04;
    letter-spacing: -0.04em;
    margin-bottom: 23px;
  }
  .intro {
    font-size: 18px;
  }
  .home-local {
    font-size: 12px;
    margin: 22px 0;
  }
  .actions {
    gap: 15px;
  }
  .actions .button {
    padding: 16px 20px;
    font-size: 13px;
    min-height: 54px;
  }
  .actions .text-link {
    font-size: 13px;
  }
  .explore {
    display: none;
  }
  .mobile-world,
  :is(body.static-world, html:not(.world-capable) body) .mobile-world {
    display: block;
    position: static;
    width: calc(100% + 52px);
    max-width: none;
    margin: 22px -26px 0;
    overflow: hidden;
  }
  .mobile-world img,
  :is(body.static-world, html:not(.world-capable) body) .mobile-world img {
    width: 100%;
    aspect-ratio: 1.18;
    object-fit: cover;
    object-position: 72% center;
    max-width: none;
  }
  .mobile-world figcaption,
  :is(body.static-world, html:not(.world-capable) body)
    .mobile-world
    figcaption {
    font-size: 11px;
    text-align: center;
    margin: 0;
    padding: 8px 10px 15px;
    background: var(--paper);
  }
  h2,
  .scene-visit h2 {
    font-size: 47px;
    line-height: 1.1;
  }
  .scene-copy > h2 {
    margin-bottom: 24px;
  }
  .scene-services {
    padding-top: 68px;
  }
  .service-pair {
    margin-top: 38px;
  }
  .service-primary h3 {
    font-size: 30px;
  }
  .service-primary {
    margin-bottom: 30px;
    padding-bottom: 28px;
  }
  .service-links {
    gap: 7px;
  }
  .service-links a {
    padding: 10px;
    font-size: 11px;
  }
  .more-services strong {
    font-size: 18px;
  }
  .more-services small {
    font-size: 13px;
  }
  .more-services > a {
    padding: 20px 0;
  }
  .help-line {
    font-size: 13px;
  }
  .scene-care .scene-copy > p:not(.intro) {
    font-size: 14px;
  }
  .award {
    gap: 14px;
    margin: 42px 0 47px;
    align-items: center;
  }
  .award > img {
    width: 128px;
  }
  .award h3 {
    font-size: 19px;
  }
  .award p {
    font-size: 13px;
  }
  .maintenance {
    padding: 30px 0;
  }
  .maintenance h3 {
    font-size: 32px;
  }
  .maintenance > p {
    font-size: 14px;
  }
  .maintenance .button {
    font-size: 11px;
    padding: 15px;
    gap: 8px;
  }
  .filter-note {
    margin-top: 30px;
  }
  .reviews {
    margin-top: 48px;
  }
  .reviews > h3 {
    font-size: 25px;
  }
  .reviews blockquote p {
    font-size: 19px;
  }
  .scene-care .mobile-world {
    margin-top: 42px;
  }
  .towns {
    font-size: 13px;
    gap: 13px;
  }
  .visit-decision {
    margin-top: 38px;
  }
  .visit-decision h3 {
    font-size: 29px;
  }
  .visit-decision .button {
    font-size: 13px;
  }
  .scene-visit .mobile-world {
    margin-top: 38px;
  }
  .resources {
    display: block;
    padding: 60px 26px;
  }
  .resources h2,
  .journal h2 {
    font-size: 37px;
  }
  .resource-intro p {
    font-size: 13px;
    margin-top: 20px;
    margin-bottom: 35px;
  }
  .resource-options strong {
    font-size: 18px;
  }
  .resource-options span {
    font-size: 12px;
  }
  .journal {
    padding: 60px 26px;
  }
  .journal h2 {
    margin-bottom: 25px;
  }
  .journal-links {
    display: block;
  }
  .journal-links a {
    font-size: 18px;
    padding: 22px 0;
    gap: 24px;
  }
  .journal > .text-link {
    font-size: 13px;
    margin-top: 15px;
  }
  .site-footer {
    padding: 48px 26px 98px;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 35px;
  }
  .footer-brand {
    width: 223px;
  }
  .footer-contact {
    width: 100%;
  }
  .footer-phone {
    font-size: 29px;
  }
  .footer-proof {
    gap: 25px;
  }
  .footer-proof > img:first-child {
    width: 216px;
  }
  .footer-proof > img:last-child {
    width: 61px;
  }
  .footer-directory {
    grid-template-columns: 1fr 1fr;
    gap: 28px 23px;
    padding: 32px 0;
  }
  .footer-directory h3 {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 16px;
  }
  .footer-directory a {
    font-size: 11px;
    margin-bottom: 11px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding-top: 26px;
  }
  .mobile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    inset: auto 0 0;
    z-index: 12;
    background: var(--navy);
    color: var(--white);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  .mobile-actions > a {
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    text-align: center;
    padding: 20px 10px;
    line-height: 1.3;
  }
  .mobile-actions > a:last-child {
    background: var(--yellow);
    color: var(--navy);
  }
  .mobile-actions > a:last-child span {
    margin-left: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .world-stage,
  .scene-nav {
    display: none;
  }
  .scene {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    align-items: start;
    gap: 45px;
    min-height: auto;
    background: var(--white);
  }
  .scene-copy,
  .scene-home .scene-copy {
    width: 100%;
  }
  .mobile-world {
    display: block;
    margin: 0;
  }
  .mobile-world img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: right;
  }
  .mobile-world figcaption {
    font-size: 11px;
    text-align: center;
  }
  @media (max-width: 959px) {
    .scene {
      display: flex;
      gap: 0;
    }
    .mobile-world {
      margin: 22px -26px 0;
    }
    .mobile-world img {
      aspect-ratio: 1.18;
      object-position: 72% center;
    }
  }
}

.rating-note {
  font-size: 14px;
  font-weight: 800;
  margin: 0 0 25px;
}
.rating-note span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  margin-top: 5px;
}
.user-static .scene-nav {
  display: flex;
}
.user-static .scene-nav > a {
  display: none;
}
.world-caption {
  bottom: 95px;
}
@media (max-width: 959px) {
  .user-static .scene-nav {
    display: none;
  }
}

@media (min-width: 960px) {
  html body.user-static .scene-nav {
    display: flex;
  }
}
