/* Six-stage growth keeps explanation in the journal and tactile actions on scene objects. */
.growth-layout {
  display: grid;
  height: 100%;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 20px;
}

.growth-scene,
.nursing-stage {
  --scene-edge: 16px;
  --tool-top: 64px;
  position: relative;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, rgb(255 250 240 / 8%), rgb(87 61 51 / 8%));
}

.growth-scene {
  display: block;
}

.growth-scene .cat-stage { min-height: 0; height: 100%; overflow: hidden; }
.growth-scene .resident-growth-cat {
  position: absolute;
  right: auto;
  bottom: 10%;
  left: 50%;
  width: min(48%, 340px);
  height: min(74%, 320px);
  margin: 0;
  transform: translateX(-50%);
}
.growth-scene .resident-growth-cat.is-selected { z-index: 3; }
.growth-scene .resident-growth-cat[data-scene-count="2"][data-scene-index="0"] { left: 34%; }
.growth-scene .resident-growth-cat[data-scene-count="2"][data-scene-index="1"] { left: 66%; }
.growth-scene .resident-growth-cat[data-scene-count="3"] { width: min(29%, 220px); height: min(64%, 270px); }
.growth-scene .resident-growth-cat[data-scene-count="3"][data-scene-index="0"] { left: 20%; }
.growth-scene .resident-growth-cat[data-scene-count="3"][data-scene-index="1"] { left: 50%; }
.growth-scene .resident-growth-cat[data-scene-count="3"][data-scene-index="2"] { left: 80%; }
.growth-scene .cat-sprite { max-height: 100%; }
.growth-scene .cat-stage.has-action-pose .scene-note { opacity: 0; pointer-events: none; }

.growth-journal {
  height: 100%;
  overflow: auto;
  padding: 18px;
  scrollbar-width: thin;
}

.growth-journal header { display: flex; justify-content: space-between; gap: 12px; }
.growth-journal h2 { margin-bottom: 5px; font-size: var(--text-lg); }
.growth-journal header p { margin-bottom: 0; color: var(--ink-soft); font-size: var(--text-sm); line-height: var(--line-normal); }
.growth-journal header > strong { flex: none; color: var(--rose-ink); font-size: var(--text-sm); }

.cat-context-bar {
  display: grid;
  grid-template-columns: 64px 94px minmax(0, 1fr);
  align-items: stretch;
  gap: 6px;
  margin: 9px 0 10px;
}

.cat-context-bar[data-has-care] { grid-template-columns: 58px 90px 72px minmax(0, 1fr); }

.cat-context-stat,
.personality-tag > summary {
  min-height: 44px;
  border: 1px solid rgb(169 118 102 / 18%);
  border-radius: 13px;
  background: rgb(255 249 242 / 78%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 78%);
}

.cat-context-stat {
  display: grid;
  align-content: center;
  padding: 5px 8px;
}

.cat-context-stat small,
.personality-tag > summary span {
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.2;
}

.cat-context-stat strong,
.personality-tag > summary strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cat-context-stat--intimacy {
  grid-template-columns: auto 1fr;
  column-gap: 5px;
}

.cat-context-stat--intimacy small { grid-column: 1 / -1; }
.cat-context-stat--intimacy strong { color: var(--rose-ink); }
.cat-context-stat--intimacy i { align-self: center; color: var(--ink-soft); font-size: 9px; font-style: normal; white-space: nowrap; }

.personality-tag { position: relative; min-width: 0; }
.personality-tag > summary {
  display: grid;
  align-content: center;
  padding: 5px 24px 5px 9px;
  cursor: pointer;
  list-style: none;
}
.personality-tag > summary::-webkit-details-marker { display: none; }
.personality-tag > summary::after {
  position: absolute;
  top: 17px;
  right: 9px;
  color: var(--rose-ink);
  content: "＋";
  font-size: 12px;
  line-height: 1;
}
.personality-tag[open] > summary::after { content: "−"; }
.personality-tag > summary:hover,
.personality-tag > summary:focus-visible { border-color: rgb(179 107 100 / 38%); background: rgb(255 252 247 / 96%); }
.personality-tag > summary:focus-visible { outline: 3px solid rgb(179 107 100 / 22%); outline-offset: 2px; }
.personality-tag__tip {
  position: absolute;
  z-index: 12;
  top: calc(100% + 7px);
  right: 0;
  width: 238px;
  padding: 10px 11px;
  border: 1px solid rgb(169 118 102 / 22%);
  border-radius: 14px;
  background: rgb(255 250 243 / 98%);
  box-shadow: 0 12px 28px rgb(74 50 42 / 18%);
}
.personality-tag__tip p { margin: 0; color: var(--ink); font-size: 12px; line-height: 1.5; }

.growth-timeline {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 4px;
  margin: 14px 0 10px;
  padding: 0;
  list-style: none;
}

.growth-timeline li {
  position: relative;
  display: grid;
  min-height: 44px;
  grid-template-columns: minmax(72px, auto) 1fr;
  align-items: center;
  gap: 10px;
  padding: 7px 10px 7px 40px;
  border: 1px solid rgb(89 69 63 / 10%);
  border-radius: var(--radius-sm);
  background: rgb(255 252 246 / 56%);
}

.growth-timeline li:not(:last-child)::after { position: absolute; z-index: 0; top: 28px; bottom: -8px; left: 19px; width: 1px; background: var(--edge-muted); content: ""; }

.growth-timeline i {
  position: absolute;
  z-index: 1;
  top: 11px;
  left: 10px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: rgb(89 69 63 / 10%);
  font-size: var(--text-xs);
  font-style: normal;
}

.growth-timeline span,
.growth-timeline small { display: block; }
.growth-timeline span { font-size: var(--text-sm); font-weight: 850; }
.growth-timeline small { color: var(--ink-soft); font-size: var(--text-xs); line-height: var(--line-tight); text-align: right; }
.growth-timeline .is-current { border-color: rgb(217 138 134 / 62%); background: #fff0e9; }
.growth-timeline .is-current i { background: var(--primary-strong); color: white; box-shadow: 0 0 0 4px rgb(217 138 134 / 14%); }
.growth-timeline .is-complete i { background: var(--sage); color: white; }

.chapter-turn {
  display: flex;
  width: 100%;
  min-height: 54px;
  margin-top: 12px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgb(255 255 255 / 70%);
  border-radius: 16px;
  padding: 0 17px;
  background: linear-gradient(135deg, #a55b57, var(--primary-strong));
  color: #fff;
  box-shadow: 0 11px 26px rgb(145 83 65 / 24%);
  cursor: pointer;
}
.chapter-turn span { font-size: var(--text-xs); opacity: 0.92; }
.chapter-turn b { font-size: var(--text-sm); }

.nursing-stage { display: grid; place-items: center; touch-action: none; }
.nursing-family { position: absolute; top: 7%; right: 4%; bottom: auto; left: 6%; height: 84%; pointer-events: none; }
.nursing-family > .cat-actor--nursing { pointer-events: auto; position: absolute; z-index: 2; top: 0; right: 5%; bottom: auto; width: min(78%, 560px); height: 96%; }
.nursing-mother { position: relative; z-index: 2; width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 18px 18px rgb(66 42 35 / 22%)); animation: breathe 7s ease-in-out infinite; }
.newborn-kitten { position: absolute; z-index: 3; width: 112px; max-height: 98px; object-fit: contain; filter: drop-shadow(0 7px 7px rgb(92 51 42 / 17%)); animation: newborn-breathe 4.8s ease-in-out infinite alternate; }
.newborn-kitten[data-cat-breed="white"] { filter: contrast(1.35) brightness(.86) sepia(.12) saturate(.78) drop-shadow(0 1px 0 rgb(91 65 50 / 46%)) drop-shadow(0 7px 7px rgb(92 51 42 / 22%)); }
.newborn-kitten--1 { right: 24%; bottom: 7%; transform: rotate(-5deg); }
.newborn-kitten--2 { right: 13%; bottom: 12%; transform: rotate(6deg) scale(.92); animation-delay: -1.7s; }
.newborn-kitten--3 { right: 31%; bottom: 22%; transform: rotate(4deg) scale(.86); animation-delay: -3.1s; }
.newborn-care-prop {
  position: absolute;
  z-index: 8;
  top: 20px;
  left: 24px;
  width: 104px;
  padding: 8px;
  border: 1px solid rgb(255 255 255 / 60%);
  border-radius: 20px;
  background: rgb(255 249 242 / 84%);
  box-shadow: 0 10px 24px rgb(77 50 43 / 18%);
  text-align: center;
  touch-action: none;
}
.newborn-care-prop img { width: 66px; height: 52px; margin: 0 auto 3px; object-fit: contain; }
.newborn-care-prop b { font-size: var(--text-xs); }

.care-prop--event {
  position: absolute;
  z-index: 8;
  top: var(--tool-top, 64px);
  right: var(--scene-edge, 16px);
  width: 82px;
  min-height: 76px;
  background: rgb(255 249 242 / 86%);
}
.care-prop--event img { height: 48px; }

.lift-handle,
.foot-nibble,
.home-artifact,
.care-work-hotspot { -webkit-tap-highlight-color: transparent; touch-action: none; cursor: grab; }
.scene-affordance { color: inherit; }

.lift-handle {
  position: absolute;
  z-index: 7;
  right: 126px;
  bottom: 88px;
  display: flex;
  width: 112px;
  min-height: 48px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgb(255 255 255 / 58%);
  border-radius: 999px;
  padding: 6px 11px;
  background: rgb(255 249 242 / 78%);
  font-size: var(--text-xs);
  font-weight: 800;
  box-shadow: 0 8px 18px rgb(76 48 41 / 13%);
  transform: translateY(calc(var(--swipe-y, 0px) * -1));
}
.lift-handle i { display: grid; width: 27px; height: 27px; place-items: center; border-radius: 50%; background: var(--rose); color: white; font-style: normal; }

.foot-nibble { position: absolute; z-index: 6; bottom: 72px; left: 36%; width: 96px; text-align: center; }
.foot-nibble img { width: 78px; max-height: 84px; margin: 0 auto; object-fit: contain; filter: drop-shadow(0 8px 9px rgb(74 44 36 / 18%)); transform: scaleX(-1); }
.foot-nibble b { display: block; margin-top: -5px; padding: 5px 8px; border-radius: 999px; background: rgb(255 249 242 / 88%); font-size: var(--text-xs); }
.foot-nibble.is-cat-initiated { opacity: 0; animation: foot-nibble-arrive .72s var(--initiative-delay, 3600ms) cubic-bezier(.2, .8, .25, 1) both; }

.home-artifact { position: absolute; z-index: 6; width: 88px; text-align: center; }
.home-artifact img { width: 72px; max-height: 72px; margin: auto; object-fit: contain; filter: drop-shadow(0 8px 8px rgb(69 42 35 / 20%)); }
.home-artifact b { display: block; padding: 4px 7px; border-radius: 999px; background: rgb(255 249 242 / 88%); font-size: var(--text-xs); }
.home-artifact--1 { left: 4%; bottom: 25%; }
.home-artifact--2 { right: 4%; top: 32%; }
.home-artifact--3 { left: 30%; top: 8%; }
.home-artifact--mouse img { width: 82px; max-height: 82px; }
.home-artifact.is-holding,
.care-work-hotspot.is-holding { filter: drop-shadow(0 0 14px rgb(231 183 104 / 80%)); }

.cat-lift-support {
  pointer-events: none;
  position: absolute;
  z-index: 1;
  bottom: -8%;
  left: 50%;
  width: 116%;
  height: 95%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 0;
  transform: translate(-50%, 18px);
  filter: drop-shadow(0 12px 12px rgb(74 45 37 / 18%));
  opacity: 0;
  transition: opacity 140ms ease, transform 260ms ease;
}
.cat-performer.is-lifted .cat-lift-support { transform: translate(-50%, 0); opacity: .94; }
.cat-performer.is-lifted { animation: lift-cat-reaction 1.45s cubic-bezier(.2, .8, .25, 1); }
.cat-performer.is-nibbling { animation: nibble-cat-reaction 1.1s ease-in-out; }

.care-load {
  margin-top: 10px;
  border: 1px solid rgb(89 69 63 / 10%);
  border-radius: 15px;
  padding: 10px 12px;
  background: rgb(255 249 242 / 62%);
}
.care-load span { color: var(--rose-ink); font-size: var(--text-xs); font-weight: 900; letter-spacing: .06em; }
.care-load > strong { float: right; font-size: var(--text-xs); }
.care-load p { margin: 5px 0 0; color: var(--ink-soft); font-size: var(--text-xs); line-height: var(--line-normal); }
.care-work-hotspot { display: flex; margin-top: 8px; align-items: center; gap: 8px; border-radius: 12px; padding: 7px 9px; background: #f5e5d1; }
.care-work-hotspot i { font-size: 20px; font-style: normal; }
.care-work-hotspot b { font-size: var(--text-xs); }

.adoption-window { scrollbar-width: thin; }
.adoption-window .sheet-header p { margin: 5px 0 0; color: var(--ink-soft); font-size: var(--text-sm); line-height: var(--line-normal); }
.adoption-paths { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(230px, .8fr); gap: 14px; margin-top: 14px; }
.adoption-form { margin: 0; }
.keep-all-choice { padding: 15px; border: 1px dashed rgb(185 109 105 / 38%); border-radius: 20px; background: rgb(255 244 235 / 70%); }
.keep-all-choice span { color: var(--rose-ink); font-size: var(--text-xs); font-weight: 900; }
.keep-all-choice h3 { margin: 5px 0; }
.keep-all-choice p { color: var(--ink-soft); font-size: var(--text-xs); line-height: var(--line-normal); }
.keep-all-choice .soft-button { width: 100%; min-height: 42px; }

.growth-discoveries { margin: 18px 0; padding: 15px; border: 1px solid rgb(89 69 63 / 10%); border-radius: 22px; background: linear-gradient(135deg, #fff4e8, #f2eee4); }
.growth-discoveries header { display: flex; align-items: end; justify-content: space-between; gap: 12px; }
.growth-discoveries h3 { margin: 3px 0 0; font-size: 16px; }
.growth-discoveries header > b { color: var(--rose-ink); font-size: var(--text-xs); }
.growth-discoveries--empty p { margin: 5px 0 0; color: var(--ink-soft); font-size: var(--text-sm); }
.discovery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 12px; }
.discovery-photo { position: relative; min-width: 0; padding: 8px; border-radius: 15px; background: rgb(255 255 255 / 72%); text-align: center; box-shadow: 0 6px 16px rgb(82 57 45 / 9%); }
.discovery-photo > span { position: absolute; top: 5px; left: 5px; padding: 3px 7px; border-radius: 999px; background: var(--primary-strong); color: white; font-size: var(--text-xs); }
.discovery-photo img { width: 100%; height: 82px; object-fit: contain; }
.discovery-photo b,
.discovery-photo small { display: block; }
.discovery-photo b { font-size: var(--text-sm); }
.discovery-photo small { margin-top: 3px; color: var(--ink-soft); font-size: var(--text-xs); line-height: var(--line-normal); }

.scene-overlay { pointer-events: none; position: absolute; z-index: 7; inset: 0; }
.scene-overlay > * { pointer-events: auto; }

@keyframes foot-nibble-arrive {
  from { transform: translateX(-28px) rotate(-4deg); opacity: 0; }
  70% { transform: translateX(4px) rotate(2deg); opacity: 1; }
  to { transform: translateX(0) rotate(0); opacity: 1; }
}

.overlay-slot { position: absolute; display: flex; gap: var(--space-2); }
.overlay-slot--tools { top: var(--tool-top); right: var(--scene-edge); flex-direction: column; }
.overlay-slot--events { top: 32%; right: var(--scene-edge); }
.overlay-slot--interaction { right: var(--scene-edge); bottom: var(--space-3); }

@keyframes newborn-breathe {
  from { transform: translateY(0) rotate(-2deg) scale(.96); }
  to { transform: translateY(-3px) rotate(1deg) scale(1); }
}

@keyframes lift-cat-reaction {
  0%, 100% { transform: translateY(0) rotate(0); }
  55% { transform: translateY(-32px) rotate(-1deg) scale(1.025); }
}

@keyframes nibble-cat-reaction {
  0%, 100% { transform: translateX(0) rotate(0); }
  40% { transform: translateX(-30px) translateY(3px) rotate(-2deg); }
  70% { transform: translateX(-22px) rotate(1deg); }
}



/* Growth uses the same compact drawer and opens it upward to preserve the cat's body area. */
.care-shelf--scene {
  position: absolute;
  right: 18px;
  bottom: 18px;
  margin: 0;
}
.care-shelf--scene .care-shelf__tray { top: auto; right: 0; bottom: calc(100% + 8px); left: auto; }
.care-shelf--scene .care-prop { width: 76px; min-height: 76px; }
.care-shelf--scene .care-prop img { height: 50px; }

/* Away events arrive as one warm note; their actual cleanup remains a scene object. */
.away-summary {
  position: relative;
  min-height: 80px;
  margin-top: 10px;
  overflow: hidden;
  padding: 22px 12px 11px 52px;
  border: 1px solid rgb(153 106 74 / 17%);
  border-radius: 13px 18px 15px 12px;
  background:
    linear-gradient(90deg, rgb(224 189 145 / 18%) 1px, transparent 1px) 0 0 / 18px 18px,
    #fff5e7;
  box-shadow: 0 5px 13px rgb(91 60 44 / 8%);
}
.away-summary::before {
  position: absolute;
  top: 21px;
  left: 14px;
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50% 50% 44% 48%;
  background: #e6c194;
  color: #765343;
  content: "⌂";
  font-size: 16px;
  transform: rotate(-5deg);
}
.away-summary::after {
  position: absolute;
  top: -4px;
  right: 32px;
  width: 48px;
  height: 13px;
  transform: rotate(3deg);
  background: rgb(244 218 167 / 68%);
  content: "";
}
.away-summary span { color: var(--rose-ink); font-size: var(--text-xs); font-weight: 900; letter-spacing: .12em; }
.away-summary p { margin: 4px 0 0; color: var(--ink); font-size: var(--text-xs); line-height: 1.55; }

.care-traces {
  display: grid;
  grid-template-columns: minmax(0, 1fr) repeat(3, 28px);
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 7px 9px;
  border-top: 1px solid rgb(126 93 76 / 11%);
  border-bottom: 1px solid rgb(126 93 76 / 11%);
}
.care-traces span { color: var(--ink-soft); font-size: var(--text-xs); font-weight: 800; letter-spacing: .04em; }
.care-traces i {
  display: block;
  width: 25px;
  height: 9px;
  transform: rotate(-6deg);
  border-radius: 60% 40% 56% 44%;
  background: rgb(89 69 63 / 10%);
  box-shadow: inset 0 1px 2px rgb(89 69 63 / 6%);
}
.care-traces i:nth-of-type(2) { transform: rotate(4deg); }
.care-traces i:nth-of-type(3) { transform: rotate(-2deg); }
.care-traces i.is-filled { background: linear-gradient(90deg, var(--sage), #d4b87c); box-shadow: 0 2px 5px rgb(108 86 62 / 14%); }

.home-artifact {
  color: var(--ink);
  filter: drop-shadow(0 8px 8px rgb(69 42 35 / 13%));
}
.home-artifact b {
  width: fit-content;
  max-width: 118px;
  margin: -2px auto 0;
  border: 1px solid rgb(128 88 63 / 12%);
  background: rgb(255 249 239 / 94%);
  box-shadow: 0 3px 8px rgb(75 48 38 / 10%);
  line-height: 1.25;
}
.home-artifact[data-hold-action]::after {
  position: absolute;
  z-index: 8;
  top: -4px;
  right: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: conic-gradient(var(--honey) calc(var(--hold-progress, 0) * 1turn), rgb(255 249 239 / 50%) 0);
  content: "";
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 0);
  mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 0);
}
.home-artifact--poop { transform: rotate(-3deg); }
.home-artifact--mouse { transform: rotate(2deg); }
.home-artifact--claws { width: 126px; }
.claw-care-mark {
  display: flex;
  width: 86px;
  height: 53px;
  margin: 0 auto 2px;
  align-items: end;
  justify-content: center;
  gap: 8px;
  padding: 9px 12px 7px;
  border: 1px solid rgb(150 104 76 / 16%);
  border-radius: 48% 52% 42% 45%;
  background: linear-gradient(150deg, rgb(255 247 231 / 96%), rgb(232 203 167 / 88%));
  box-shadow: inset 0 1px 0 white;
}
.claw-care-mark > i {
  width: 10px;
  height: 24px;
  border-right: 2px solid #c48662;
  border-radius: 0 70% 52% 0;
  transform: rotate(11deg);
}
.claw-care-mark > i:nth-child(2) { height: 29px; transform: rotate(4deg); }
.claw-care-mark > i:nth-child(3) { height: 22px; transform: rotate(-5deg); }

.care-load { background: rgb(255 249 242 / 74%); }
.care-work-hotspot {
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(145 96 65 / 10%);
  background: linear-gradient(90deg, rgb(231 183 104 / 36%) calc(var(--hold-progress, 0) * 100%), #f5e5d1 0);
  color: var(--ink);
}

.outing-layout { display: grid; height: 100%; grid-template-columns: minmax(0, 1fr) 342px; gap: 18px; }
.outing-stage {
  position: relative;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 52%);
  border-radius: 28px;
  background: linear-gradient(180deg, rgb(249 246 225 / 3%) 45%, rgb(76 70 43 / 20%));
  box-shadow: inset 0 0 70px rgb(255 247 205 / 10%), var(--shadow-soft);
}
.outing-scene-copy {
  position: absolute;
  z-index: 7;
  top: 18px;
  left: 20px;
  display: grid;
  gap: 2px;
  padding: 9px 13px;
  border: 1px solid rgb(255 255 255 / 64%);
  border-radius: 13px;
  background: rgb(255 250 233 / 86%);
  box-shadow: 0 10px 28px rgb(70 55 38 / 14%);
}
.outing-scene-copy span { color: var(--rose-ink); font-size: var(--text-xs); font-weight: 900; letter-spacing: .14em; }
.outing-scene-copy strong { font-family: var(--font-display); font-size: 19px; }
.outing-stage .outing-cat { position: absolute; z-index: 5; bottom: 54px; left: 44%; width: 270px; height: 336px; transform: translateX(-50%); }
.outing-path,
.outing-wand,
.outing-neighbor,
.outing-home-light { position: absolute; z-index: 6; border: 0; color: var(--ink); touch-action: none; }
.outing-path { bottom: 76px; left: 22px; width: 255px; height: 90px; border-radius: 50%; background: rgb(255 250 231 / 22%); }
.outing-path i { position: absolute; inset: 28px 24px; border-top: 3px dashed rgb(118 102 59 / 54%); transform: rotate(8deg); }
.outing-path i::after { position: absolute; top: -18px; right: -5px; color: #77683e; content: "›"; font-size: 34px; }
.outing-path span { position: absolute; bottom: -2px; left: 18px; padding: 6px 10px; border-radius: 999px; background: rgb(255 250 233 / 86%); font-size: var(--text-xs); font-weight: 900; }
.outing-path.is-swiping i { transform: translateX(min(var(--swipe-x, 0px), 90px)) rotate(8deg); }
.outing-wand { right: 250px; bottom: 22px; display: grid; width: 112px; place-items: center; padding: 0; background: transparent; }
.outing-wand img { width: 76px; height: 76px; object-fit: contain; filter: drop-shadow(0 9px 10px rgb(63 52 35 / 22%)); }
.outing-wand span { margin-top: -6px; padding: 5px 8px; border-radius: 999px; background: rgb(255 250 233 / 88%); font-size: 10px; font-weight: 900; white-space: nowrap; }
.outing-wand.is-dragging { transform: translate(var(--drag-x), var(--drag-y)); }
.outing-neighbor {
  right: 18px;
  bottom: 62px;
  display: grid;
  width: 175px;
  grid-template-columns: 76px 1fr;
  align-items: end;
  gap: 6px;
  padding: 10px;
  border: 1px solid rgb(255 255 255 / 54%);
  border-radius: 18px;
  background: rgb(255 249 231 / 70%);
  box-shadow: 0 12px 24px rgb(73 57 35 / 16%);
}
.outing-neighbor img { width: 76px; height: 92px; object-fit: contain; }
.outing-neighbor span { display: grid; gap: 3px; text-align: left; }
.outing-neighbor b { font-size: 12px; }
.outing-neighbor small { color: var(--muted); font-size: 10px; line-height: 1.3; }
.outing-neighbor.is-holding { box-shadow: 0 0 0 5px rgb(255 219 132 / 22%), 0 12px 24px rgb(73 57 35 / 16%); }
.outing-home-light {
  top: 18px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border: 1px solid rgb(255 242 187 / 72%);
  border-radius: 15px;
  background: rgb(72 62 39 / 76%);
  color: white;
  box-shadow: 0 0 24px rgb(255 214 119 / 44%);
}
.outing-home-light i { width: 18px; height: 18px; border-radius: 50%; background: #ffe09a; box-shadow: 0 0 14px #ffcf68; }
.outing-home-light span { display: grid; text-align: left; font-weight: 900; }
.outing-home-light small { font-size: 10px; font-weight: 600; opacity: .78; }
.outing-stage .is-complete { filter: saturate(.72); }
.outing-journal { display: flex; height: 100%; flex-direction: column; gap: 14px; overflow: auto; padding: 22px; }
.outing-journal header { display: grid; gap: 7px; }
.outing-journal h2 { margin: 0; font-family: var(--font-display); font-size: 27px; }
.outing-journal header p,
.outing-journal > p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.62; }
.outing-journal ol { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.outing-journal li { display: grid; grid-template-columns: 28px 1fr; gap: 9px; padding: 10px; border: 1px solid rgb(114 94 71 / 13%); border-radius: 13px; background: rgb(255 255 255 / 38%); }
.outing-journal li > i { display: grid; width: 25px; height: 25px; place-items: center; border-radius: 50%; background: rgb(116 98 73 / 11%); color: var(--muted); font-style: normal; font-weight: 900; }
.outing-journal li span { display: grid; gap: 2px; }
.outing-journal li b { font-size: 13px; }
.outing-journal li small { color: var(--muted); font-size: 11px; }
.outing-journal li.is-complete { border-color: rgb(104 145 94 / 26%); background: rgb(224 241 204 / 40%); }
.outing-journal li.is-complete > i { background: #7f9d6a; color: white; }
.outing-progress { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 10px; }
.outing-progress > i { height: 9px; overflow: hidden; border-radius: 999px; background: rgb(100 83 64 / 12%); }
.outing-progress > i::after { display: block; width: calc(var(--outing-progress) * 100%); height: 100%; border-radius: inherit; background: linear-gradient(90deg, #d69b6e, #91a96b); content: ""; transition: width 220ms var(--ease); }
.outing-progress span { color: var(--rose-ink); font-size: 12px; font-weight: 900; }
