/* One composition for all four projects. Images move; the reading surface stays calm. */
.living {
  --nord-opacity: 1;
  --landscape-opacity: 0;
  --eagle-opacity: 0;
  --reader-opacity: 0;
  --work-opacity: 0;
  --mx: 0px;
  --my: 0px;
  --media-scale: 1.035;
  background: var(--paper);
  overflow: clip;
  isolation: isolate;
  overflow-anchor: none;
}
.living.is-ready {
  height: 330svh;
}
.living-view {
  position: relative;
  height: calc(100svh - var(--header-height, 78px));
  min-height: 650px;
  max-height: 1050px;
  overflow: clip;
  isolation: isolate;
}
.is-ready .living-view {
  position: sticky;
  top: var(--header-height, 78px);
}
.living.is-still {
  height: auto;
}
.living.is-still .living-view {
  position: relative;
  top: 0;
}
.living-topline {
  position: absolute;
  top: 30px;
  left: 5%;
  right: 5%;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.12em;
  z-index: 5;
}
.living-topline > span:last-child {
  display: none;
}
.living-copy {
  position: absolute;
  left: 5%;
  top: 24%;
  width: 43%;
  max-width: 650px;
  z-index: 5;
}
.hero .living-copy .eyebrow {
  font-size: 10px;
  letter-spacing: 0.1em;
  margin-bottom: 27px;
  color: var(--muted);
}
.hero .living-copy h1 {
  font-family: var(--display);
  font-size: clamp(72px, 6.9vw, 120px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 27px;
  max-width: none;
  color: var(--ink);
}
.living-copy h1 em {
  font-weight: 400;
  color: #95613c;
}
.living-copy > p:not(.eyebrow) {
  font-size: 15px;
  line-height: 1.8;
  max-width: 400px;
  color: var(--text);
  text-wrap: pretty;
}
.living-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  min-height: 52px;
  margin-top: 30px;
  padding: 13px 20px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  background: var(--ink);
  color: #fcfbf5;
  font-size: 13px;
  font-weight: 500;
}
.living-cta > span {
  font-size: 21px;
}
.living-cta:hover {
  background: #355243;
  border-color: #355243;
}
.living-skip {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  min-height: 44px;
  margin-top: 10px;
  font-size: 12px;
  color: var(--text);
}
.living-skip:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.living-art {
  position: absolute;
  left: 51%;
  right: 24px;
  top: 24px;
  bottom: 102px;
  overflow: clip;
  isolation: isolate;
  background: #e5e9ed;
  border-radius: 2px;
}
.living-nord,
.living-landscape {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.living-nord {
  opacity: var(--nord-opacity);
}
.living-landscape {
  opacity: var(--landscape-opacity);
}
.living-nord > img,
.living-landscape > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(var(--mx), var(--my), 0) scale(var(--media-scale));
  will-change: transform;
}
.living-nord > img {
  object-position: 41% 52%;
}
.living-landscape > img {
  object-position: 61% 50%;
}
.living-nord:after,
.living-landscape:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #14251ed9, transparent 40%);
}
.living-caption {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 28px;
  z-index: 5;
  pointer-events: none;
  color: #fff6e7;
  display: grid;
  gap: 3px;
}
.living-caption strong {
  font-family: Inter, sans-serif;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.04em;
}
.living-caption > span {
  font-size: 11px;
  line-height: 1.6;
  color: inherit;
}
.living[data-scene='2'] .living-caption,
.living[data-scene='3'] .living-caption {
  color: var(--ink);
}
.eagle-stage {
  position: absolute;
  inset: 10% 4% 13%;
  z-index: 3;
  opacity: var(--eagle-opacity);
  transform: translate3d(calc(var(--mx) * -0.6), calc(var(--my) * -0.6), 0);
  will-change: transform;
}
.eagle-button {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  color: #fff6e7;
}
.eagle-art {
  position: absolute;
  inset: 0;
  filter: drop-shadow(0 25px 22px #162b3040);
  animation: eagle-breathe 7s ease-in-out infinite;
}
.eagle-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}
.eagle-wave {
  position: absolute;
  inset: 0;
}
.eagle-wing {
  transform-origin: 35.0714286% 45.0714286%;
}
.eagle-whisper {
  position: absolute;
  top: 7%;
  right: 5%;
  font-family: var(--display);
  font-size: 27px;
  font-style: italic;
  line-height: 1.1;
  color: #fff6e7;
  z-index: 4;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.eagle-stage:focus-within .eagle-whisper,
.eagle-stage:hover .eagle-whisper {
  opacity: 1;
}
.eagle-hello {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  padding: 10px 15px;
  background: #132940e8;
  border: 1px solid #ffffff75;
  border-radius: 2px;
  font-size: 12px;
}
.eagle-hello > span {
  font-size: 16px;
}
@keyframes eagle-breathe {
  50% {
    transform: translateY(-5px);
  }
}
.world-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
}
.world-layer button {
  pointer-events: auto;
}
.world-layer[inert] button,
.eagle-stage[inert] button {
  pointer-events: none;
}
.reading-world {
  opacity: var(--reader-opacity);
}
.work-world {
  opacity: var(--work-opacity);
}
.reader-friend {
  position: absolute;
  left: 50%;
  top: 6%;
  width: min(65%, 340px);
  aspect-ratio: 1;
  transform: translateX(-50%);
  overflow: clip;
  border-radius: 50%;
  background: #dfebef;
}
.reader-dog {
  display: block;
  width: 100%;
  height: 100%;
  background: url(/studio-20260913/assets/olav-expressions.webp) 0 0/300% 200%;
  transform: scale(1.05);
}
.reader-note {
  position: absolute;
  top: 18%;
  right: 6%;
  padding: 14px 18px;
  background: #fcf9ec;
  transform: rotate(5deg);
}
.reader-note > span {
  font-size: 9px;
  letter-spacing: 0.1em;
}
.reader-note strong {
  display: block;
  font-family: var(--display);
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
}
.reader-page {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 20%;
  padding: 24px 26px 18px;
  background: #fffdf7;
  box-shadow: 0 12px 34px #182b4312;
  border: 1px solid #182b4318;
  border-radius: 2px;
  transform: rotate(-2deg);
}
.reader-page-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.reader-line {
  display: flex;
  gap: 6px;
  padding-block: 18px;
  flex-wrap: wrap;
}
.reader-line button {
  border: 0;
  background: transparent;
  border-radius: 2px;
  font-family: Inter, sans-serif;
  font-size: clamp(24px, 2.3vw, 34px);
  font-weight: 500;
  line-height: 1.2;
  padding: 5px;
  min-height: 44px;
  color: var(--ink);
}
.reader-line button[aria-pressed='true'] {
  background: #f4d9a4;
}
.reader-page-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
  color: var(--text);
  font-size: 11px;
}
.reader-page-foot > button {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  flex-shrink: 0;
  border: 0;
  background: none;
  color: var(--ink);
  font-size: 12px;
  padding: 0;
}
.reader-page-foot > button > span {
  font-size: 18px;
}
.work-sheet {
  position: absolute;
  left: 10%;
  right: 14%;
  top: 13%;
  padding: 25px;
  border: 1px solid var(--line);
  background: #fffdf7;
  border-radius: 2px;
  box-shadow: 0 12px 30px #182b4310;
}
.work-sheet-back {
  top: 10%;
  left: 16%;
  right: 8%;
  height: 55%;
  background: #d8e0e9;
  transform: rotate(5deg);
  box-shadow: none;
}
.work-sheet-back > span {
  font-size: 9px;
  letter-spacing: 0.1em;
}
.work-sheet-back i {
  display: block;
  width: 75%;
  height: 5px;
  background: #acbdd0;
  margin: 18px 0;
}
.work-sheet-front {
  transform: rotate(-1deg);
}
.sheet-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}
.sheet-top strong {
  font-family: Inter, sans-serif;
  font-size: 18px;
  letter-spacing: -0.03em;
  font-weight: 600;
}
.sheet-top > span {
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.work-sheet-front > p {
  font-family: var(--display);
  font-size: clamp(28px, 2.6vw, 39px);
  line-height: 1.1;
  padding-block: 22px;
  color: var(--ink);
}
.work-sheet-front > p em {
  color: #95613c;
}
.sheet-row {
  display: flex;
  align-items: center;
  gap: 13px;
  border-top: 1px solid var(--line);
  padding-block: 12px;
}
.sheet-check {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e6ebf1;
  font-size: 12px;
}
.sheet-row strong {
  display: block;
  font-size: 12px;
  font-weight: 500;
}
.sheet-row small {
  display: block;
  font-size: 10px;
  margin-top: 3px;
  color: var(--muted);
}
.work-sheet-front > button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 44px;
  border: 0;
  background: none;
  color: var(--ink);
  padding: 10px 0 0;
  font-size: 12px;
}
.work-sheet-front > button > span {
  font-size: 21px;
}
.voice-note {
  position: absolute;
  left: 19%;
  right: 6%;
  bottom: 18%;
  padding: 20px 20px 44px;
  display: flex;
  align-items: center;
  gap: 15px;
  background: #203b59;
  color: #fffdf7;
  border-radius: 2px;
  box-shadow: 0 12px 30px #182b4320;
  transform: rotate(2deg);
}
.voice-symbol {
  font-size: 35px;
  line-height: 1;
  color: #edc392;
}
.voice-note strong {
  display: block;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}
.voice-note > div > span {
  font-size: 11px;
  color: #d5e0ec;
}
.voice-note > button {
  margin-left: auto;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  font-size: 20px;
  border: 1px solid #ffffff50;
  background: transparent;
  color: inherit;
  border-radius: 2px;
}
.voice-line {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 16px;
  height: 18px;
  display: flex;
  align-items: center;
  gap: 5px;
  overflow: clip;
}
.voice-line i {
  width: 3px;
  flex-shrink: 0;
  height: var(--h);
  background: #e9b77a;
}
.living-bottom {
  position: absolute;
  left: 5%;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
  z-index: 6;
}
.living-scroll {
  display: flex;
  gap: 13px;
  align-items: center;
  font-size: 12px;
  color: var(--text);
}
.living-scroll > span {
  font-size: 24px;
}
.living-scroll small {
  display: block;
  font-size: 10px;
  color: var(--muted);
}
.living-stops {
  display: flex;
  gap: 32px;
  align-items: center;
}
.living-stops button {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 9px 0;
  border: 0;
  border-bottom: 2px solid transparent;
  background: none;
  font-size: 13px;
  color: var(--text);
}
.living-stops button > span {
  font-size: 9px;
  color: var(--muted);
}
.living-stops button[aria-current='step'] {
  border-color: var(--ink);
  color: var(--ink);
}
#living-mode {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  border: 0;
  background: none;
  padding: 5px 0;
  font-size: 11px;
  color: var(--muted);
}
.living-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--line);
}
.living-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: #95613c;
  transform: scaleX(0);
  transform-origin: left;
}
.living.is-away .eagle-art,
.living.is-still .eagle-art {
  animation-play-state: paused;
}
.living.is-away .living-art img,
.living.is-still .living-art img,
.living.is-away .eagle-stage,
.living.is-still .eagle-stage {
  will-change: auto;
}
.living button:focus-visible,
.living a:focus-visible {
  outline: 3px solid #ae8035;
  outline-offset: 4px;
}
@media (max-width: 1100px) and (min-width: 801px) {
  .living-copy {
    left: 4%;
    width: 43%;
    top: 22%;
  }
  .hero .living-copy h1 {
    font-size: clamp(62px, 7.2vw, 79px);
  }
  .living-copy > p:not(.eyebrow) {
    font-size: 14px;
    max-width: 340px;
  }
  .living-copy > p br {
    display: none;
  }
  .living-topline,
  .living-bottom {
    left: 4%;
  }
  .living-art {
    left: 50%;
    right: 20px;
  }
  .living-scroll {
    display: none;
  }
  .living-stops {
    gap: 26px;
  }
  .living-bottom {
    right: 20px;
  }
  .living-caption {
    left: 23px;
    right: 23px;
  }
  .living-caption strong {
    font-size: 23px;
  }
  .reader-page {
    left: 6%;
    right: 6%;
    padding: 18px;
  }
  .reader-line {
    gap: 2px;
  }
  .reader-page-foot {
    flex-wrap: wrap;
    gap: 0;
  }
  .work-sheet {
    left: 7%;
    right: 10%;
    padding: 20px;
  }
  .sheet-top > span {
    font-size: 8px;
  }
  .voice-note {
    left: 10%;
    right: 5%;
    padding: 16px 16px 40px;
    gap: 10px;
  }
}
@media (min-width: 801px) and (max-height: 760px) {
  .living-copy {
    top: 18%;
  }
  .hero .living-copy h1 {
    font-size: clamp(62px, 6.5vw, 92px);
  }
  .living-art {
    bottom: 92px;
  }
  .reader-friend {
    width: 54%;
    top: 4%;
  }
  .reader-page {
    bottom: 20%;
  }
  .work-sheet {
    top: 10%;
    padding: 20px;
  }
  .work-sheet-front > p {
    padding-block: 16px;
    font-size: 30px;
  }
  .work-sheet-front > .sheet-row:nth-of-type(3) {
    display: none;
  }
  .voice-note {
    bottom: 19%;
  }
  .living-copy .eyebrow {
    margin-bottom: 20px;
  }
  .living-cta {
    margin-top: 22px;
  }
}
@media (max-width: 800px) {
  .living.is-ready {
    height: 360svh;
  }
  .living.is-still {
    height: auto;
  }
  .living-view {
    height: calc(100svh - var(--header-height, 72px));
    min-height: 940px;
    max-height: none;
  }
  .living-topline {
    top: 24px;
    left: 6%;
    right: 6%;
    font-size: 9px;
  }
  .living-topline > span:last-child {
    display: inline;
  }
  .living-copy {
    top: 80px;
    left: 6%;
    width: 88%;
    max-width: none;
  }
  .hero .living-copy h1 {
    font-size: 76px;
    line-height: 1;
    margin-bottom: 21px;
  }
  .hero .living-copy .eyebrow {
    font-size: 9px;
    margin-bottom: 20px;
  }
  .living-copy > p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.75;
    max-width: 470px;
  }
  .living-copy > p br {
    display: none;
  }
  .living-cta {
    display: inline-flex;
    margin-top: 22px;
    min-height: 48px;
    font-size: 12px;
    gap: 24px;
    padding: 12px 16px;
  }
  .living-skip {
    margin-left: 20px;
    font-size: 11px;
    margin-top: 0;
  }
  .living-art {
    left: 6%;
    right: 6%;
    top: 450px;
    bottom: 90px;
  }
  .living-nord > img {
    object-position: 50% 54%;
  }
  .living-caption {
    left: 24px;
    right: 24px;
    bottom: 20px;
  }
  .living-caption strong {
    font-size: 24px;
  }
  .living-caption > span {
    font-size: 10px;
  }
  .eagle-stage {
    inset: 0 12% 18%;
  }
  .eagle-whisper {
    font-size: 22px;
    top: 15%;
  }
  .eagle-hello {
    font-size: 11px;
    padding: 8px 12px;
  }
  .reader-friend {
    width: 230px;
    top: 3%;
    left: 42%;
  }
  .reader-note {
    top: 14%;
    right: 14%;
    padding: 12px 15px;
  }
  .reader-note strong {
    font-size: 25px;
  }
  .reader-page {
    left: 25%;
    right: 7%;
    bottom: 23%;
    padding: 15px 20px 10px;
  }
  .reader-line {
    padding-block: 12px;
    gap: 4px;
  }
  .reader-line button {
    font-size: 28px;
  }
  .reader-page-foot {
    font-size: 10px;
    padding-top: 6px;
  }
  .reader-page-foot > button {
    font-size: 11px;
    min-height: 38px;
  }
  .work-sheet {
    left: 12%;
    right: 26%;
    top: 6%;
    padding: 18px;
  }
  .work-sheet-back {
    left: 20%;
    right: 20%;
    height: 52%;
    top: 5%;
  }
  .work-sheet-front > p {
    font-size: 28px;
    padding-block: 14px;
  }
  .sheet-row {
    padding-block: 9px;
  }
  .work-sheet-front > .sheet-row:nth-of-type(3),
  .work-sheet-front > button {
    display: none;
  }
  .voice-note {
    left: 36%;
    right: 7%;
    bottom: 23%;
    padding: 14px 16px 36px;
    gap: 10px;
  }
  .voice-note strong {
    font-size: 16px;
  }
  .voice-note > div > span {
    font-size: 10px;
  }
  .living-bottom {
    left: 6%;
    right: 6%;
    bottom: 20px;
    gap: 15px;
  }
  .living-scroll {
    display: none;
  }
  .living-stops {
    gap: 24px;
    flex: 1;
    justify-content: space-between;
  }
  .living-stops button {
    font-size: 12px;
    gap: 7px;
  }
  #living-mode {
    display: none;
  }
}
@media (max-width: 540px) {
  .living-view {
    height: auto;
    min-height: 880px;
  }
  .living-topline {
    left: 22px;
    right: 22px;
    font-size: 8px;
  }
  .living-topline > span:last-child {
    display: none;
  }
  .living-copy {
    left: 22px;
    top: 70px;
    width: calc(100% - 44px);
  }
  .hero .living-copy h1 {
    font-size: clamp(48px, 14.8vw, 70px);
    line-height: 1.04;
    margin-bottom: 20px;
  }
  .hero .living-copy .eyebrow {
    font-size: 8px;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
  }
  .living-copy > p:not(.eyebrow) {
    font-size: 13px;
    line-height: 1.75;
    max-width: 360px;
  }
  .living-cta {
    margin-top: 19px;
    gap: 25px;
    min-height: 48px;
  }
  .living-skip {
    display: flex;
    width: max-content;
    margin: 2px 0 0;
    font-size: 11px;
    min-height: 38px;
  }
  .living-art {
    top: 427px;
    left: 22px;
    right: 22px;
    bottom: 85px;
  }
  .living-caption {
    left: 18px;
    right: 18px;
    bottom: 17px;
    gap: 5px;
  }
  .living-caption strong {
    font-size: 23px;
  }
  .living-caption > span {
    font-size: 10px;
    max-width: 250px;
    line-height: 1.5;
  }
  .eagle-stage {
    inset: 0 -3% 25%;
  }
  .eagle-hello {
    bottom: -6px;
    font-size: 10px;
  }
  .eagle-whisper {
    font-size: 20px;
    right: 4%;
  }
  .reader-friend {
    width: 195px;
    left: 39%;
    top: 2%;
  }
  .reader-note {
    right: 4%;
    top: 10%;
    padding: 10px 12px;
  }
  .reader-note > span {
    font-size: 8px;
  }
  .reader-note strong {
    font-size: 22px;
  }
  .reader-page {
    left: 6%;
    right: 6%;
    bottom: 25%;
    padding: 12px 13px 7px;
  }
  .reader-page-label {
    font-size: 8px;
  }
  .reader-line {
    padding-block: 8px;
    gap: 1px;
  }
  .reader-line button {
    font-size: 23px;
    padding: 4px;
  }
  .reader-page-foot {
    gap: 3px;
    font-size: 9px;
    flex-wrap: wrap;
  }
  .reader-page-foot > button {
    font-size: 10px;
    min-height: 34px;
  }
  .work-sheet {
    left: 6%;
    right: 13%;
    top: 6%;
    padding: 15px;
  }
  .sheet-top {
    padding-bottom: 10px;
  }
  .sheet-top strong {
    font-size: 15px;
  }
  .sheet-top > span {
    font-size: 7px;
  }
  .work-sheet-front > p {
    font-size: 26px;
    padding-block: 13px;
  }
  .sheet-row strong {
    font-size: 10px;
  }
  .sheet-row small {
    font-size: 8px;
  }
  .sheet-check {
    width: 21px;
    height: 21px;
  }
  .voice-note {
    left: 16%;
    right: 4%;
    bottom: 25%;
    padding: 12px 12px 32px;
    gap: 8px;
  }
  .voice-symbol {
    font-size: 28px;
  }
  .voice-note > button {
    width: 36px;
    height: 36px;
  }
  .voice-note > div > span {
    font-size: 9px;
  }
  .voice-line {
    left: 14px;
    right: 14px;
    bottom: 10px;
  }
  .living-bottom {
    left: 22px;
    right: 22px;
    bottom: 20px;
    padding-top: 6px;
  }
  .living-stops {
    gap: 10px;
  }
  .living-stops button {
    font-size: 11px;
    gap: 5px;
  }
  .living-stops button > span {
    display: none;
  }
}
@media (max-width: 360px) {
  .living-view {
    min-height: 870px;
  }
  .living-art {
    top: 433px;
  }
  .living-topline {
    font-size: 7px;
  }
  .hero .living-copy .eyebrow {
    font-size: 7px;
  }
  .living-copy > p:not(.eyebrow) {
    font-size: 12px;
  }
  .reader-line button {
    font-size: 21px;
  }
  .reader-friend {
    width: 175px;
  }
  .reader-note {
    right: 3%;
  }
  .reader-note strong {
    font-size: 20px;
  }
  .living-caption strong {
    font-size: 21px;
  }
  .living-caption > span {
    font-size: 9px;
  }
  .living-stops button {
    font-size: 10px;
  }
}
@media (max-width: 800px) {
  .work-sheet-front .sheet-row {
    display: none;
  }
}
@media (max-width: 540px) {
  .living-topline {
    display: none;
  }
  .living-bottom {
    top: 8px;
    bottom: auto;
    border-top: 0;
    border-bottom: 1px solid var(--line);
    padding: 0;
  }
  .living-copy {
    top: 83px;
  }
  .living-art {
    top: 440px;
    bottom: 22px;
  }
  .living-view {
    min-height: 825px;
  }
}
@media (max-width: 360px) {
  .living-art {
    top: 446px;
  }
  .living-view {
    min-height: 825px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .eagle-art {
    animation: none;
  }
  .eagle-whisper {
    transition: none;
  }
  #living-mode {
    display: none;
  }
}

/* Wide photographs and landscapes lead the experience. */
.living[data-scene='0'] .living-art,
.living[data-scene='1'] .living-art {
  inset: 0;
  border-radius: 0;
}
.living-nord > img {
  object-position: 50% 56%;
}
.living-nord:after,
.living-landscape:after {
  background:
    linear-gradient(90deg, #102238db, #10283c91 42%, #10223812 75%),
    linear-gradient(0deg, #102238d9, transparent 32%);
}
.living[data-scene='0'] .living-copy h1,
.living[data-scene='1'] .living-copy h1,
.living[data-scene='0'] .living-copy h1 em,
.living[data-scene='1'] .living-copy h1 em {
  color: #fff6e7;
}
.living[data-scene='0'] .living-copy > p,
.living[data-scene='1'] .living-copy > p,
.living[data-scene='0'] .living-topline,
.living[data-scene='1'] .living-topline {
  color: #e8eef5;
}
.living[data-scene='0'] .living-cta,
.living[data-scene='1'] .living-cta {
  background: #f1bd7a;
  border-color: #f1bd7a;
  color: #182b43;
}
.living[data-scene='0'] .living-skip,
.living[data-scene='1'] .living-skip {
  color: #e8eef5;
}
.living[data-scene='0'] .living-bottom,
.living[data-scene='1'] .living-bottom {
  border-color: #fff6;
}
.living[data-scene='0'] .living-bottom button,
.living[data-scene='1'] .living-bottom button,
.living[data-scene='0'] .living-scroll,
.living[data-scene='1'] .living-scroll {
  color: #fff6e7;
}
.living[data-scene='0'] .living-stops button[aria-current='step'],
.living[data-scene='1'] .living-stops button[aria-current='step'] {
  border-color: #fff6e7;
}
.living[data-scene='0'] .living-bottom button > span,
.living[data-scene='1'] .living-bottom button > span,
.living[data-scene='0'] .living-scroll small,
.living[data-scene='1'] .living-scroll small {
  color: #d5dfeb;
}
.living[data-scene='0'] .living-caption,
.living[data-scene='1'] .living-caption {
  left: auto;
  right: 5%;
  bottom: 115px;
  max-width: 40%;
  text-align: right;
}
.living[data-scene='0'] .living-caption strong,
.living[data-scene='1'] .living-caption strong {
  font-size: 32px;
}
.eagle-stage {
  inset: 7% 3% 18% 49%;
}
.eagle-hello {
  bottom: 0;
}
@media (max-width: 800px) {
  .living[data-scene='0'] .living-caption,
  .living[data-scene='1'] .living-caption {
    left: 6%;
    right: auto;
    bottom: 105px;
    max-width: 75%;
    text-align: left;
  }
  .eagle-stage {
    inset: 45% 2% 16% 32%;
  }
  .eagle-hello {
    bottom: 0;
  }
  .living-nord:after,
  .living-landscape:after {
    background: linear-gradient(180deg, #102238bf, #10283c82 39%, #10223810 65%, #102238d9);
  }
}
@media (max-width: 540px) {
  .living[data-scene='0'] .living-copy,
  .living[data-scene='1'] .living-copy {
    top: 90px;
  }
  .living[data-scene='0'] .living-caption,
  .living[data-scene='1'] .living-caption {
    left: 22px;
    right: 22px;
    bottom: 27px;
    max-width: none;
  }
  .living[data-scene='0'] .living-caption strong,
  .living[data-scene='1'] .living-caption strong {
    font-size: 27px;
  }
  .living[data-scene='0'] .living-bottom,
  .living[data-scene='1'] .living-bottom {
    border-color: #fff5;
  }
  .eagle-stage {
    inset: 51% -3% 15% 10%;
  }
  .eagle-hello {
    bottom: -6px;
  }
  .eagle-whisper {
    display: none;
  }
  .living-nord > img {
    object-position: 46% 55%;
  }
  .living-landscape > img {
    object-position: 59% 50%;
  }
}
.living[data-scene='0'] #living-mode,
.living[data-scene='1'] #living-mode {
  color: #fff6e7;
}
@media (max-width: 540px) {
  .living[data-scene='0'] .living-skip,
  .living[data-scene='1'] .living-skip {
    background: #10223894;
    padding-inline: 12px;
    border-radius: 2px;
  }
}

/* A short arrival, followed by a stable canvas and generous reading intervals. */
.living.is-ready {
  height: calc(var(--journey-view, 100svh) + var(--journey-travel, 330svh));
}
.living.is-still {
  height: auto;
}
.living-view {
  max-height: none;
}
.hero .living-copy h1 .title-line {
  display: block;
  color: inherit;
}
.hero .living-copy h1 em.title-line {
  color: #95613c;
}
.living[data-scene='0'] .living-copy h1 em.title-line {
  color: #f1bd7a;
}
.living[data-scene='1'] .living-copy h1 em.title-line {
  color: #fff6e7;
}
.living-art {
  inset: 0;
  border-radius: 0;
  background: linear-gradient(125deg, #f7f3eb 32%, #e5e9ed);
}
.reading-world,
.work-world {
  inset: 24px 2% 102px 49%;
}
.living-caption {
  left: auto;
  right: 5%;
  bottom: 115px;
  max-width: 40%;
  text-align: right;
}
.living-caption strong {
  font-size: 32px;
}
.living-tools {
  display: flex;
  align-items: center;
  gap: 25px;
}
#intro-replay {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  border: 0;
  background: none;
  padding: 5px 0;
  font-size: 11px;
  color: var(--muted);
}
#intro-replay > span {
  font-size: 19px;
}
#intro-replay:hover,
#living-mode:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 5px;
}
.living-cta:hover {
  background: #24486b;
  border-color: #24486b;
}
.living[data-scene='0'] .living-cta:hover,
.living[data-scene='1'] .living-cta:hover {
  background: #f8cc94;
  border-color: #f8cc94;
}
.living[data-scene='0'] #intro-replay,
.living[data-scene='1'] #intro-replay {
  color: #fff6e7;
}
.living[data-scene='0'] .living-stops button[aria-current='step'],
.living[data-scene='1'] .living-stops button[aria-current='step'] {
  border-color: #f1bd7a;
}
@media (max-width: 1100px) and (min-width: 801px) {
  .living-tools {
    gap: 18px;
  }
  .reading-world,
  .work-world {
    left: 48%;
  }
}
@media (min-width: 801px) and (max-height: 900px) {
  .work-sheet-front {
    padding: 20px;
  }
  .work-sheet-front > p {
    font-size: 30px;
    padding-block: 16px;
  }
  .work-sheet-front > .sheet-row:nth-of-type(3) {
    display: none;
  }
}
@media (max-width: 800px) {
  .living-tools {
    display: none;
  }
  .reading-world,
  .work-world {
    inset: 450px 6% 90px;
  }
  .living-caption {
    left: 6%;
    right: auto;
    bottom: 105px;
    max-width: 75%;
    text-align: left;
  }
}
@media (max-width: 540px) {
  .reading-world,
  .work-world {
    inset: 440px 22px 22px;
  }
  .living-caption {
    left: 22px;
    right: 22px;
    bottom: 27px;
    max-width: none;
  }
  .living-caption strong {
    font-size: 27px;
  }
}
@media (max-width: 360px) {
  .reading-world,
  .work-world {
    top: 446px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .living-tools {
    display: none;
  }
}
