:root {
  color-scheme: dark;
  --cream: #f5f3df;
  --muted: #d5d8c6;
  --ink: #1c2a22;
  --accent: #dfe8bd;
  --line: rgba(246, 246, 223, 0.23);
  --font: "DM Sans", sans-serif;
  --serif: "Italiana", Georgia, serif;
  --edge: clamp(25px, 4.4vw, 78px);
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  height: 100%;
  overflow: hidden;
  background: #17231b;
  color: var(--cream);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}
body {
  isolation: isolate;
}
button,
a,
input,
select {
  -webkit-tap-highlight-color: transparent;
}
button,
input,
select {
  font: inherit;
}
button {
  color: inherit;
  cursor: pointer;
}
button {
  border: 0;
}
button:disabled {
  cursor: wait;
  opacity: 0.55;
}
a {
  color: inherit;
}
button,
a,
input,
select {
  outline-offset: 5px;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent);
}
[hidden] {
  display: none !important;
}
svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
#app {
  position: fixed;
  inset: 0;
  z-index: -3;
  background: #17231b url("assets/meadow/poster.webp") center/cover no-repeat;
}
#app canvas {
  display: block;
  width: 100%;
  height: 100%;
  cursor: grab;
  touch-action: none;
}
#app canvas:active {
  cursor: grabbing;
}
.scene-shade {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(9, 23, 15, 0.62),
      rgba(13, 25, 19, 0.24) 43%,
      transparent 73%
    ),
    linear-gradient(
      0deg,
      rgba(10, 22, 16, 0.73),
      transparent 28%,
      transparent 77%,
      rgba(13, 26, 19, 0.27)
    );
  transition: opacity 1.3s;
}
.chrome {
  transition:
    opacity 0.7s ease,
    transform 0.9s cubic-bezier(0.2, 0.65, 0.25, 1);
}
.site-header {
  position: fixed;
  z-index: 5;
  left: var(--edge);
  right: var(--edge);
  top: clamp(26px, 4.2vh, 46px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  display: flex;
  gap: 13px;
  align-items: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.23em;
}
.wordmark > svg {
  width: 28px;
  height: 37px;
  stroke-width: 1.3;
}
.wordmark-sub {
  display: block;
  font-size: 7.5px;
  font-weight: 400;
  letter-spacing: 0.32em;
  margin-top: 6px;
  opacity: 0.64;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 36px;
}
.live-label {
  font-size: 8px;
  letter-spacing: 0.18em;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.85;
}
.live-label i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #dce8b3;
  box-shadow: 0 0 12px #dce8b344;
}
.text-button {
  background: none;
  padding: 10px 0;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: color 0.2s;
}
.text-button:hover {
  color: #fff;
}
.text-button svg {
  width: 15px;
  height: 15px;
}
.text-button > span[aria-hidden] {
  font-size: 17px;
  margin-left: 7px;
}
.welcome {
  position: fixed;
  top: 50%;
  left: var(--edge);
  transform: translateY(-46%);
  z-index: 2;
  pointer-events: none;
}
.welcome > * {
  pointer-events: auto;
}
.eyebrow {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.21em;
  line-height: 1.8;
}
.welcome > .eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 26px;
  color: #e3e7ce;
}
.eyebrow > span {
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}
h1,
h2,
p {
  margin-top: 0;
}
.welcome h1 {
  font-family: var(--serif);
  font-size: clamp(68px, 7.9vw, 132px);
  font-weight: 400;
  line-height: 0.97;
  letter-spacing: -0.047em;
  margin: 0 0 28px;
  text-shadow: 0 2px 28px #13251612;
}
.welcome h1 em {
  font-style: normal;
  color: #e4e9c5;
}
.intro-copy {
  font-size: 12px;
  line-height: 1.95;
  font-weight: 400;
  letter-spacing: 0.005em;
  color: #e0e3d2;
  margin-bottom: 27px;
}
.enter-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 37px;
  min-height: 53px;
  min-width: 207px;
  background: var(--cream);
  color: #29392b;
  border-radius: 40px;
  padding: 7px 8px 7px 23px;
  font-size: 11px;
  font-weight: 550;
  box-shadow: 0 5px 25px #0c1b1620;
  transition:
    background 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
}
.enter-button:hover {
  background: #fffde9;
  transform: translateY(-2px);
  box-shadow: 0 8px 35px #0c1b1636;
}
.button-circle {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  border: 1px solid #aeb69b80;
  display: grid;
  place-items: center;
  transition: transform 0.3s;
}
.button-circle svg {
  width: 18px;
}
.enter-button:hover .button-circle {
  transform: rotate(-35deg);
}
.entry-note {
  font-size: 7px;
  letter-spacing: 0.19em;
  margin-top: 15px;
  margin-left: 10px;
  opacity: 0.58;
}
.scene-caption {
  position: fixed;
  right: var(--edge);
  top: 48%;
  z-index: 2;
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 8px;
  line-height: 1.9;
  letter-spacing: 0.2em;
  color: #e9ebd5;
}
.scene-caption b {
  font-weight: 400;
  opacity: 0.65;
}
.caption-line {
  display: block;
  height: 50px;
  width: 1px;
  background: linear-gradient(transparent, #ecf2d980, transparent);
}
.experience-footer {
  position: fixed;
  left: var(--edge);
  right: var(--edge);
  bottom: max(30px, env(safe-area-inset-bottom));
  z-index: 6;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
}
.field-marker {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 8px;
  letter-spacing: 0.15em;
  line-height: 1.7;
}
.field-number {
  font-size: 24px;
  font-family: var(--serif);
  letter-spacing: -0.04em;
  opacity: 0.6;
}
.field-marker small {
  display: block;
  font-size: 9px;
  letter-spacing: 0;
  font-weight: 400;
  color: #c5cbb8;
  margin-top: 3px;
}
.footer-note {
  text-align: right;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.footer-note span {
  color: #cdd5bc;
}
.control-dock {
  display: flex;
  align-items: center;
  padding: 6px;
  background: rgba(21, 36, 28, 0.65);
  border: 1px solid var(--line);
  border-radius: 38px;
  box-shadow: 0 10px 30px #061c1420;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.control-wrap {
  position: relative;
}
.dock-button {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 16px;
  background: transparent;
  border-radius: 25px;
  font-size: 10px;
  white-space: nowrap;
  transition: background 0.25s;
}
.dock-button:hover,
.dock-button[aria-expanded="true"] {
  background: #f5f3df13;
}
.dock-button svg {
  width: 17px;
  height: 17px;
}
.dock-button.icon-only {
  width: 41px;
  padding: 0;
}
.tiny-chevron {
  font-size: 13px;
  opacity: 0.6;
  margin-left: 3px;
}
.dock-divider {
  height: 17px;
  width: 1px;
  background: var(--line);
  margin: 0 3px;
}
.sound-bars {
  display: flex;
  align-items: center;
  height: 17px;
  gap: 2px;
  width: 17px;
  opacity: 0.65;
}
.sound-bars i {
  display: block;
  height: 4px;
  width: 1.5px;
  background: currentColor;
  transform-origin: center;
  border-radius: 3px;
  transition: height 0.4s;
}
.sound-bars i:nth-child(2) {
  height: 10px;
}
.sound-bars i:nth-child(3) {
  height: 14px;
}
.sound-bars i:nth-child(4) {
  height: 7px;
}
[aria-pressed="true"] .sound-bars {
  color: #e6efc3;
  opacity: 1;
}
[aria-pressed="true"] .sound-bars i {
  animation: sound-wave 1.2s ease-in-out infinite alternate;
}
[aria-pressed="true"] .sound-bars i:nth-child(2) {
  animation-delay: -0.8s;
}
[aria-pressed="true"] .sound-bars i:nth-child(3) {
  animation-delay: -0.3s;
}
[aria-pressed="true"] .sound-bars i:nth-child(4) {
  animation-delay: -0.6s;
}
@keyframes sound-wave {
  to {
    transform: scaleY(0.4);
  }
}
.popover {
  position: absolute;
  bottom: calc(100% + 21px);
  width: 290px;
  padding: 23px;
  background: rgba(24, 40, 31, 0.96);
  border: 1px solid #f2f6db26;
  box-shadow: 0 20px 80px #071a1566;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 18px;
  animation: popover-in 0.25s ease-out;
  transform-origin: bottom;
}
.daylight-panel {
  left: -7px;
}
.settings-panel {
  right: -49px;
  width: 310px;
}
.popover-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 21px;
}
.popover-heading > span:first-child {
  font-family: var(--serif);
  font-size: 25px;
  letter-spacing: -0.035em;
}
.popover-heading > .eyebrow {
  font-size: 7px;
  color: #afbea6;
}
.sky-options {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.sky-options button {
  background: none;
  border: 1px solid transparent;
  border-radius: 10px;
  display: flex;
  text-align: left;
  align-items: center;
  gap: 12px;
  padding: 9px;
  font-size: 11px;
}
.sky-options button:hover {
  background: #f5f3df08;
}
.sky-options button[aria-pressed="true"] {
  background: #edf3dc09;
  border-color: #d9e8b831;
}
.sky-options small {
  display: block;
  font-size: 9px;
  color: #aebea6;
  line-height: 1.8;
  margin-top: 2px;
}
.sky-swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #ffffff18;
}
.sky-sunny {
  background:
    radial-gradient(
      circle at 64% 32%,
      #fffad2 0 9%,
      #f3e8bc22 10% 26%,
      transparent 27%
    ),
    linear-gradient(#8faca4, #c6d0af 64%, #737f4c);
}
.sky-clear {
  background:
    radial-gradient(circle at 64% 32%, #fff9d9 0 9%, transparent 10%),
    linear-gradient(#668f9b, #bad4c4 74%, #839976);
}
.sky-sunset {
  background:
    radial-gradient(
      circle at 64% 59%,
      #ffe3a1 0 12%,
      #efbe6033 13% 26%,
      transparent 27%
    ),
    linear-gradient(#9b8b97, #dcb282 64%, #887656);
}
.selection-dot {
  height: 5px;
  width: 5px;
  margin-left: auto;
  border-radius: 50%;
  background: transparent;
}
[aria-pressed="true"] > .selection-dot {
  background: #d6e7b1;
}
.popover-note {
  font-size: 9px;
  line-height: 1.7;
  color: #a6b69f;
  margin: 17px 0 0;
}
.slider-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  margin-top: 21px;
  margin-bottom: 11px;
}
.slider-label output {
  font-size: 9px;
  color: #aebea6;
}
input[type="range"] {
  width: 100%;
  height: 3px;
  display: block;
  accent-color: #d9e6b6;
  cursor: pointer;
  margin: 0 0 22px;
  outline-offset: 8px;
}
input[type="range"]::-webkit-slider-thumb {
  width: 12px;
  height: 12px;
}
input[type="range"]::before {
  content: "";
  height: 20px;
}
.setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 19px 0;
  font-size: 10px;
}
.setting-row select {
  font-size: 10px;
  background: #f1f5db09;
  border: 1px solid #f1f5db20;
  color: var(--cream);
  border-radius: 6px;
  padding: 7px;
  max-width: 118px;
}
.setting-row select option {
  background: var(--ink);
}
.toggle {
  appearance: none;
  width: 28px;
  height: 17px;
  border-radius: 20px;
  background: #f5f3df20;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}
.toggle:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--cream);
  top: 3px;
  left: 3px;
  transition: transform 0.2s;
}
.toggle:checked {
  background: #d4e6a966;
}
.toggle:checked:after {
  transform: translateX(11px);
}
.settings-actions {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-top: 19px;
}
.settings-actions button {
  font-size: 10px;
}
.look-hint {
  position: fixed;
  left: 50%;
  bottom: 112px;
  transform: translateX(-50%);
  font-size: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e3e9d3;
  pointer-events: none;
  text-shadow: 0 1px 8px #102319;
  white-space: nowrap;
  animation: hint-in 0.8s ease;
}
.drag-glyph {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}
kbd {
  font: 8px var(--font);
  border: 1px solid #e0e9cb40;
  border-radius: 3px;
  padding: 3px 5px;
  color: #d1d9c3;
}
.look-hint kbd + kbd {
  margin-left: -5px;
}
.glass-button {
  border: 1px solid var(--line);
  background: #1931248c;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 30px;
  padding: 10px 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 10px;
  min-height: 40px;
}
.glass-button:hover {
  background: #284335b3;
}
#exit-immersive {
  position: fixed;
  bottom: max(24px, env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  z-index: 8;
  opacity: 0.65;
  transition: opacity 0.2s;
}
#exit-immersive:hover,
#exit-immersive:focus-visible {
  opacity: 1;
}
#exit-immersive svg {
  width: 15px;
  height: 15px;
}
body.exploring .welcome {
  opacity: 0;
  transform: translateY(-43%);
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity 0.65s,
    transform 0.9s,
    visibility 0s 0.9s;
}
body.exploring .welcome > * {
  pointer-events: none;
}
body.exploring .scene-caption {
  opacity: 0;
  pointer-events: none;
}
body.exploring .scene-shade {
  opacity: 0.52;
}
body.immersive .chrome {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity 0.5s,
    visibility 0s 0.5s;
}
body.immersive .scene-shade {
  opacity: 0;
}
body.immersive .look-hint {
  display: none;
}
#loader {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    ellipse at 50% 20%,
    #324633 0%,
    #1b2d21 45%,
    #14241b 100%
  );
  transition:
    opacity 1.2s,
    visibility 0s 1.2s;
  text-align: center;
  padding: 24px;
  overflow: hidden;
}
#loader:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background: repeating-linear-gradient(
    115deg,
    transparent 0 9vw,
    #b4c79608 9.2vw 9.3vw,
    transparent 9.5vw 16vw
  );
}
#loader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-sprig {
  width: 35px;
  height: 46px;
  margin-bottom: 25px;
  color: #dbe3ba;
  animation: sprig-breathe 4s ease-in-out infinite;
  transform-origin: bottom;
}
#loader > .eyebrow {
  font-size: 8px;
  letter-spacing: 0.25em;
  color: #bdcaae;
  margin-bottom: 23px;
}
#loader h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(37px, 4.5vw, 63px);
  letter-spacing: -0.045em;
  margin-bottom: 15px;
}
.loader-copy {
  font-size: 11px;
  color: #b5c2ad;
  margin-bottom: 36px;
}
.loader-progress {
  display: flex;
  align-items: center;
  gap: 14px;
}
#bar {
  height: 1px;
  width: 200px;
  background: #d9e3c626;
  overflow: hidden;
}
#bar > div {
  height: 100%;
  width: 0;
  background: #dce8b9;
  transition: width 0.4s ease;
}
#load-percent {
  font-size: 8px;
  font-variant-numeric: tabular-nums;
  width: 25px;
  color: #cedcbb;
}
#loader-status {
  font-size: 9px;
  color: #a7b99c;
  margin-top: 15px;
  letter-spacing: 0.04em;
  max-width: 400px;
  line-height: 1.6;
}
#loader .loader-footnote {
  position: absolute;
  bottom: 38px;
  font-size: 7px;
  letter-spacing: 0.22em;
  color: #84977c;
}
#retry-button {
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  margin-top: 12px;
}
.toast {
  position: fixed;
  left: 50%;
  top: 105px;
  transform: translate(-50%, -10px);
  max-width: calc(100vw - 40px);
  background: #1e382ddd;
  border: 1px solid var(--line);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 12px 19px;
  border-radius: 30px;
  font-size: 11px;
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s,
    transform 0.3s;
  text-align: center;
}
.toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
.about-dialog {
  width: 490px;
  max-width: calc(100% - 32px);
  max-height: calc(100dvh - 40px);
  background: #203327;
  color: var(--cream);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 43px;
  box-shadow: 0 35px 100px #03140b80;
  overflow-y: auto;
}
.about-dialog::backdrop {
  background: #071a126e;
  backdrop-filter: blur(10px);
}
.dialog-close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 37px;
  height: 37px;
  padding: 10px;
  min-height: 37px;
}
.about-dialog > .eyebrow {
  font-size: 8px;
  color: #b2c39f;
  margin-bottom: 29px;
}
.about-sprig {
  position: absolute;
  right: 46px;
  top: 92px;
  width: 40px;
  height: 62px;
  opacity: 0.45;
}
.about-dialog h2 {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 25px;
}
.about-dialog h2 em {
  font-style: normal;
  color: #d6e1ba;
}
.about-dialog > p:not(.eyebrow) {
  font-size: 12px;
  line-height: 1.9;
  color: #c3d0b8;
}
.about-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-block: 1px solid var(--line);
  padding: 22px 0;
  margin: 25px 0;
}
.about-details strong {
  display: block;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.1;
}
.about-details span {
  font-size: 9px;
  color: #a8b99e;
}
.about-dialog .about-instructions {
  font-size: 10px !important;
  line-height: 2 !important;
}
.credits {
  font-size: 9px;
  line-height: 1.9;
  color: #8fa386;
  margin-top: 25px;
}
.credits a {
  text-underline-offset: 3px;
  text-decoration-color: #a5bc8d66;
}
.credits a:hover {
  color: #e6efdb;
}
.noscript-note {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 30px;
  background: #203327;
}
.lil-gui {
  display: none !important;
}
body.debug .lil-gui {
  display: block !important;
  --background-color: rgba(16, 29, 21, 0.9);
  --widget-color: rgba(255, 255, 255, 0.08);
  top: 85px;
  right: var(--edge);
}
@keyframes sprig-breathe {
  50% {
    transform: rotate(7deg);
    opacity: 0.6;
  }
}
@keyframes popover-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes hint-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (min-width: 1500px) {
  .welcome > .eyebrow {
    font-size: 9px;
  }
  .intro-copy {
    font-size: 14px;
  }
  .enter-button {
    font-size: 12px;
    min-width: 230px;
    min-height: 58px;
  }
  .button-circle {
    width: 41px;
    height: 41px;
  }
  .dock-button {
    height: 44px;
    font-size: 11px;
  }
  .control-dock {
    padding: 7px;
  }
  .dock-button.icon-only {
    width: 46px;
  }
  .wordmark {
    font-size: 14px;
  }
  .wordmark-sub {
    font-size: 8px;
  }
  .live-label,
  .field-marker {
    font-size: 9px;
  }
  .field-marker small {
    font-size: 10px;
  }
  .footer-note {
    font-size: 21px;
  }
  .scene-caption {
    font-size: 9px;
  }
  .text-button {
    font-size: 12px;
  }
}
@media (max-height: 700px) and (min-width: 701px) {
  .welcome {
    transform: translateY(-43%);
  }
  .welcome h1 {
    font-size: clamp(65px, 7vw, 100px);
    margin-bottom: 18px;
  }
  .welcome > .eyebrow {
    margin-bottom: 18px;
  }
  .intro-copy {
    margin-bottom: 20px;
    font-size: 11px;
  }
  .entry-note {
    font-size: 6px;
    margin-top: 10px;
  }
  .site-header {
    top: 24px;
  }
  .experience-footer {
    bottom: 22px;
  }
  .enter-button {
    min-height: 47px;
    min-width: 194px;
  }
  .button-circle {
    width: 33px;
    height: 33px;
  }
  .popover {
    max-height: calc(100dvh - 140px);
    overflow-y: auto;
  }
}
@media (max-width: 800px) {
  .header-right {
    gap: 24px;
  }
  .live-label {
    display: none;
  }
  .scene-caption {
    display: none;
  }
  .experience-footer {
    gap: 12px;
    grid-template-columns: 1fr auto;
  }
  .footer-note {
    display: none;
  }
  .field-marker {
    font-size: 7px;
    gap: 10px;
  }
  .field-marker small {
    font-size: 8px;
  }
  .dock-button {
    padding: 0 13px;
  }
  .welcome h1 {
    font-size: clamp(75px, 11vw, 99px);
  }
}
@media (max-width: 540px) {
  :root {
    --edge: 26px;
  }
  .site-header {
    top: max(26px, env(safe-area-inset-top));
  }
  .wordmark {
    font-size: 10px;
    gap: 10px;
  }
  .wordmark > svg {
    width: 24px;
    height: 32px;
  }
  .wordmark-sub {
    font-size: 6px;
  }
  .header-right .text-button {
    font-size: 10px;
  }
  .welcome {
    top: 46%;
    transform: translateY(-42%);
  }
  .welcome > .eyebrow {
    font-size: 6.5px;
    letter-spacing: 0.18em;
    margin-bottom: 26px;
    gap: 9px;
  }
  .welcome h1 {
    font-size: clamp(68px, 16.5vw, 90px);
    margin-bottom: 25px;
    line-height: 1.01;
  }
  .intro-copy {
    font-size: 11px;
    line-height: 1.9;
    margin-bottom: 26px;
  }
  .enter-button {
    min-width: 202px;
    font-size: 11px;
  }
  .entry-note {
    font-size: 6px;
    margin-top: 14px;
  }
  .scene-shade {
    background:
      linear-gradient(90deg, #0c211874, #0c211820),
      linear-gradient(
        0deg,
        #0d241cf2,
        transparent 42%,
        #13271908 76%,
        #13271933
      );
  }
  .experience-footer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 19px;
    bottom: max(23px, env(safe-area-inset-bottom));
  }
  .field-marker {
    font-size: 7px;
    gap: 10px;
    justify-content: center;
  }
  .field-marker > span:nth-child(2) {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .field-marker small {
    display: inline;
    font-size: 8px;
    margin: 0;
    border-left: 1px solid var(--line);
    padding-left: 10px;
  }
  .field-number {
    font-size: 16px;
  }
  .control-dock {
    align-self: center;
    padding: 5px;
  }
  .dock-button {
    height: 42px;
    font-size: 10px;
    padding: 0 13px;
  }
  .dock-button.icon-only {
    width: 39px;
  }
  .dock-divider {
    margin: 0 2px;
  }
  .control-dock {
    width: 100%;
    max-width: 355px;
    justify-content: center;
  }
  .daylight-panel {
    left: -5px;
    width: 280px;
  }
  .settings-panel {
    position: fixed;
    bottom: calc(100% + 17px);
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(320px, calc(100vw - 40px));
    max-height: calc(100dvh - 185px);
    overflow-y: auto;
    animation: hint-in 0.2s;
  }
  .look-hint {
    bottom: 151px;
    font-size: 9px;
    gap: 8px;
  }
  .look-hint kbd {
    display: none;
  }
  .about-dialog {
    padding: 35px 28px;
    border-radius: 18px;
  }
  .about-dialog h2 {
    font-size: 59px;
  }
  .about-sprig {
    right: 32px;
    width: 30px;
  }
  .about-dialog > p:not(.eyebrow) {
    font-size: 11px;
  }
  .toast {
    top: 88px;
    width: max-content;
    font-size: 10px;
  }
  .loader-copy {
    font-size: 10px;
  }
  .loader-progress #bar {
    width: 175px;
  }
  .loader-footnote {
    font-size: 6px !important;
  }
  body.exploring .welcome {
    transform: translateY(-39%);
  }
}
@media (max-width: 380px) {
  :root {
    --edge: 21px;
  }
  .dock-button {
    padding: 0 10px;
    gap: 8px;
  }
  .dock-button.icon-only {
    width: 35px;
  }
  .welcome h1 {
    font-size: 64px;
  }
  .field-marker > span:nth-child(2) {
    gap: 8px;
  }
  .field-marker small {
    padding-left: 8px;
  }
  .daylight-panel {
    left: 0;
  }
}
@media (max-height: 620px) and (max-width: 540px) {
  .welcome {
    top: 43%;
  }
  .welcome h1 {
    font-size: 57px;
    margin-bottom: 15px;
  }
  .welcome > .eyebrow {
    margin-bottom: 16px;
  }
  .intro-copy {
    margin-bottom: 15px;
  }
  .entry-note {
    display: none;
  }
  .experience-footer {
    gap: 10px;
    bottom: 15px;
  }
  .enter-button {
    min-height: 44px;
  }
  .button-circle {
    width: 30px;
    height: 30px;
  }
  .site-header {
    top: 20px;
  }
  .wordmark-sub {
    display: none;
  }
  .scene-caption {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .sound-bars i {
    animation: none !important;
  }
  .loader-sprig {
    animation: none !important;
  }
}
