@font-face {
  font-family: "Folio Hand";
  src: url("fonts/Yomogi-Regular.ttf") format("truetype");
  font-display: swap;
}

:root {
  --desk: #2a150c;
  --leather: #5a3725;
  --leather-dark: #321a11;
  --paper: #f3ead5;
  --paper-deep: #dfcfaa;
  --paper-light: #fffaf0;
  --ink: #342a22;
  --ink-soft: #67594a;
  --terracotta: #b65f42;
  --mustard: #c39b48;
  --olive: #687a56;
  --sky: #93b9bd;
  --rose: #a96d72;
  --line: #c7b795;
  --shadow: 0 18px 36px rgba(24, 12, 7, .32);
  --display: "Folio Hand", "Yu Mincho", serif;
  --body: "Yu Mincho", "Hiragino Mincho ProN", serif;
  --utility: "Hiragino Sans", "Yu Gothic", sans-serif;
}

html,
body {
  min-height: 100%;
  background: var(--desk) url("media/desk-walnut-v051.png") center / cover fixed;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 90px rgba(12, 5, 2, .55);
  z-index: 100;
}

.app-shell { min-height: 100dvh; padding: 0; }
.topbar { display: none !important; }
.views { min-height: 100dvh; }
.view.is-active { animation: folio-open .42s cubic-bezier(.22,.7,.22,1) both; }

@keyframes folio-open {
  from { opacity: .25; transform: perspective(1000px) rotateX(1.4deg) translateY(8px); }
  to { opacity: 1; transform: none; }
}

.book {
  width: min(1500px, calc(100vw - 24px));
  height: calc(100dvh - 20px);
  min-height: 690px;
  margin: 10px auto;
  grid-template-columns: minmax(0, 1fr) 22px minmax(0, 1fr);
  padding: 13px 15px 13px;
  border: 2px solid #1e0f09;
  border-radius: 17px 25px 23px 19px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.08), transparent 12%, rgba(0,0,0,.25) 49%, rgba(255,255,255,.08) 51%, transparent 87%),
    repeating-linear-gradient(7deg, rgba(255,255,255,.018) 0 2px, rgba(0,0,0,.025) 2px 5px),
    var(--leather);
  box-shadow: inset 0 0 0 3px rgba(236,203,151,.08), inset 0 0 32px rgba(0,0,0,.45), 0 18px 42px rgba(0,0,0,.5);
  filter: none;
}

.paper-page,
.detail-paper {
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    radial-gradient(circle at 12% 14%, rgba(105,84,53,.06) 0 1px, transparent 1.5px),
    radial-gradient(circle at 83% 63%, rgba(105,84,53,.045) 0 1px, transparent 1.4px),
    repeating-linear-gradient(0deg, transparent 0 29px, rgba(72,76,67,.055) 29px 30px);
  background-size: 8px 8px, 11px 11px, auto;
}

.paper-page {
  padding: clamp(20px, 2vw, 31px);
  overflow: hidden;
  box-shadow: inset 0 0 26px rgba(117,83,45,.14), 0 2px 2px rgba(0,0,0,.3);
}

.left-page { border-radius: 8px 1px 3px 12px; transform: rotate(-.07deg); }
.right-page { border-radius: 1px 10px 12px 2px; transform: rotate(.07deg); }
.paper-page::before,
.detail-paper::before {
  content: "";
  position: absolute;
  inset: 5px;
  pointer-events: none;
  border: 1px solid rgba(111,87,52,.13);
  box-shadow: inset 0 0 14px rgba(92,64,37,.07);
}
.page-rule { inset: 13px; border-radius: 3px; border-color: rgba(91,71,43,.12); }
.book-spine {
  background: linear-gradient(90deg, rgba(26,13,7,.5), rgba(237,219,183,.32) 46%, rgba(37,19,10,.52));
  box-shadow: inset 4px 0 8px rgba(0,0,0,.26), inset -4px 0 8px rgba(0,0,0,.25);
}

.paper-card {
  border: 0;
  border-top: 1px solid rgba(90,69,42,.2);
  border-bottom: 1px solid rgba(90,69,42,.18);
  border-radius: 1px;
  background: rgba(255, 250, 236, .58);
  box-shadow: 0 3px 7px rgba(64,43,24,.09);
}

.eyebrow { color: var(--terracotta); font-family: var(--utility); letter-spacing: .2em; }
.section-heading { border-bottom-color: rgba(89,67,41,.28); }
.section-heading > span { font-family: var(--display); font-size: 20px; font-weight: 400; letter-spacing: .02em; }
.text-button { color: #9d503c; }

.cover-masthead,
.cover-scraps { display: none; }

.weather-card {
  height: 112px;
  border: 1px solid rgba(64,77,66,.2);
  border-radius: 1px 5px 2px 3px;
  background: linear-gradient(104deg, #83b2bd 0%, #bed6cf 52%, #efd08a 100%);
  box-shadow: 0 6px 12px rgba(75,65,44,.16);
  transform: rotate(-.16deg);
}
.weather-main strong { font-family: var(--body); font-weight: 400; }

.news-card { transform: rotate(.14deg); }
.news-card::before,
.today-card::before,
.quick-memo::before {
  content: "";
  position: absolute;
  width: 74px;
  height: 20px;
  top: -9px;
  left: 38%;
  background: rgba(201, 173, 110, .34);
  transform: rotate(-2deg);
  box-shadow: inset 0 0 0 1px rgba(157,126,73,.12);
  pointer-events: none;
}
.today-card { transform: rotate(-.11deg); }
.task-check { border-radius: 1px; width: 18px; height: 18px; }
.task-open,
.agenda-row button { font-family: var(--display); font-size: 14px; }
.category-tag { border-radius: 1px; }

.favorites { position: relative; padding-top: 18px; }
.favorites::before {
  content: "お気に入りアプリ";
  position: absolute;
  left: 0;
  top: -1px;
  padding: 2px 18px 2px 8px;
  color: var(--ink-soft);
  background: linear-gradient(90deg, rgba(198,154,67,.34), transparent);
  font: 13px var(--display);
}
.app-tile { border-radius: 4px; border: 4px solid rgba(255,252,241,.75); box-shadow: 0 4px 8px rgba(44,28,15,.18); }
.page-fold-actions { background: linear-gradient(135deg, transparent 49%, #d8c49c 50%, #f7e8c7 100%); }

.right-header h1,
.detail-header h1 { font-family: var(--body); font-weight: 400; }
.mini-photo,
.large-polaroid,
.cover-polaroid {
  border: 7px solid #f9f2df;
  background: #f9f2df;
  box-shadow: 2px 7px 12px rgba(47,30,17,.28);
}
.mini-photo::before,
.large-polaroid::before,
.cover-polaroid::before {
  content: "";
  position: absolute;
  z-index: 3;
  width: 54px;
  height: 18px;
  left: 50%;
  top: -12px;
  transform: translateX(-50%) rotate(-4deg);
  background: rgba(197,158,89,.47);
  box-shadow: inset 0 0 0 1px rgba(127,94,46,.1);
}
.top-photo { width: 112px; height: 94px; top: 21px; right: 28px; transform: rotate(3.3deg); }
.bottom-photo { width: 108px; height: 92px; transform: rotate(-5deg); }
.calendar-card { border-color: rgba(86,66,40,.2); background: rgba(255,250,238,.52); }
.calendar-controls { font-family: var(--display); font-size: 17px; }
.calendar-day { color: var(--ink); font-family: var(--body); }
.calendar-day.is-selected { background: rgba(131,178,189,.28); }
.calendar-day.is-today::before { border-color: var(--terracotta); transform: rotate(-7deg); }
.quick-memo { transform: rotate(.45deg); }
.quick-memo b { font-family: var(--display); font-size: 18px; font-weight: 400; }

.index-tabs { right: -1px; top: 115px; gap: 6px; }
.index-tabs button {
  width: 57px;
  height: 35px;
  border-radius: 8px 0 0 8px;
  transform: translateX(23px);
  box-shadow: -2px 3px 4px rgba(50,30,16,.16);
  font: 10px var(--display);
}

.detail-view { min-height: 100dvh; padding: 10px; }
.detail-paper {
  position: relative;
  min-height: calc(100dvh - 20px);
  border: 12px solid var(--leather);
  border-radius: 18px 22px 20px 14px;
  box-shadow: inset 0 0 24px rgba(95,68,34,.14), 0 20px 42px rgba(0,0,0,.5);
}
.detail-header { border-bottom: 1px solid rgba(75,58,36,.55); }
.back-button { border: 0; border-radius: 1px; background: rgba(196,156,74,.2); }
.text-memo,
.drawing-memo { box-shadow: none; }
.text-memo textarea,
#drawingCanvas { font-family: var(--display); background-color: rgba(255,251,240,.32); }
.coffee-cup {
  width: 118px;
  height: 118px;
  right: 15px;
  top: -24px;
  border-radius: 0;
  background: url("media/coffee-v051.png") center / cover;
  border: 7px solid #f8efdc;
  transform: rotate(5deg);
  filter: drop-shadow(6px 9px 7px rgba(57,34,18,.25));
}
.coffee-cup::after,
.coffee-cup span { display: none; }

.photo-page-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 610px;
  gap: 22px 34px;
  padding: 25px clamp(20px, 8vw, 110px);
  background:
    linear-gradient(90deg, transparent 0 49.8%, rgba(87,68,44,.08) 50%, transparent 50.2%),
    radial-gradient(circle at 15% 30%, rgba(126,164,154,.12), transparent 26%),
    radial-gradient(circle at 78% 72%, rgba(191,146,66,.13), transparent 25%);
}
.large-polaroid {
  position: relative;
  width: min(260px, 82%);
  margin: auto;
  padding: 10px 10px 43px;
  border: 0;
  overflow: visible;
}
.large-polaroid img { aspect-ratio: 1.15; }
.large-polaroid:nth-child(1) { transform: rotate(-4deg); }
.large-polaroid:nth-child(2) { transform: rotate(3deg); }
.large-polaroid:nth-child(3) { transform: rotate(2deg); }
.large-polaroid:nth-child(4) { transform: rotate(-2.5deg); }
.large-polaroid span { margin: 9px 0 -30px; font-family: var(--display); }
.static-polaroid { display: block; }

.family-grid {
  grid-template-columns: 1fr;
  gap: 0;
  padding: 8px 13px;
  border-top: 1px solid rgba(84,63,38,.24);
  border-bottom: 1px solid rgba(84,63,38,.2);
  background: rgba(255,250,237,.52);
}
.family-card {
  min-height: 61px;
  display: grid;
  grid-template-columns: 74px 44px 1fr;
  align-items: center;
  gap: 10px;
  padding: 7px 4px;
  color: var(--ink);
  background: transparent !important;
  border: 0;
  border-bottom: 1px dashed rgba(82,61,37,.2);
  box-shadow: none;
  transform: none !important;
}
.family-card:last-child { border-bottom: 0; }
.family-card b {
  display: inline-block;
  margin: 0;
  padding: 5px 8px;
  color: #fff9eb;
  border-radius: 2px;
  font: 16px var(--display);
  text-align: center;
}
.family-card:nth-child(1) b { background: var(--terracotta); }
.family-card:nth-child(2) b { background: #d18445; }
.family-card:nth-child(3) b { background: #4d7fa8; }
.family-card:nth-child(4) b { background: var(--olive); }
.family-card:nth-child(5) b { background: #466171; }
.family-card strong { margin: 0; color: var(--ink); font: 19px var(--body); }
.family-card strong::after { content: "件"; margin-left: 2px; font-size: 10px; }
.family-card small { color: var(--ink-soft); opacity: 1; font: 10px var(--utility); }
.history-row b { font-family: var(--display); font-weight: 400; }
.settings-list { box-shadow: none; }

.lock-preview {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(31,46,48,.2), rgba(25,24,20,.62)), url("media/sea-v051.png") center / cover;
  border: 9px solid #60422c;
  border-radius: 3px;
}
.lock-preview::before {
  content: "Folio";
  position: absolute;
  left: 18px;
  top: 16px;
  color: rgba(255,255,255,.78);
  font: 30px var(--display);
}
.lock-card { border-radius: 2px; background: rgba(247,238,215,.84); color: #243747; backdrop-filter: blur(5px); }

.chart-paper { border-color: #4f3627; }
.bottom-nav { display: none; }

dialog::backdrop { background: rgba(26,14,8,.72); }
#taskForm { border: 9px solid var(--leather); border-radius: 3px; }
.voice-dialog { width: min(360px, calc(100vw - 42px)); }
.voice-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 35px 25px 28px;
  color: var(--ink);
  border: 9px solid var(--leather);
  background-color: var(--paper);
  background-image: repeating-linear-gradient(0deg, transparent 0 29px, rgba(76,65,48,.065) 29px 30px);
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
}
.voice-card::before {
  content: "";
  position: absolute;
  width: 92px;
  height: 22px;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  background: rgba(201,170,103,.52);
}
.voice-close { position: absolute; right: 12px; top: 10px; border: 0; background: transparent; font-size: 24px; }
.voice-card h2 { margin: 8px 0 28px; font: 25px var(--display); font-weight: 400; }
.voice-wave { width: 84%; height: 72px; display: flex; align-items: center; justify-content: center; gap: 5px; }
.voice-wave i {
  width: 3px;
  height: calc(12px + var(--voice-level, .25) * 42px);
  background: var(--ink);
  border-radius: 2px;
  transform: scaleY(var(--bar, .5));
  transition: height .12s ease;
}
.voice-wave i:nth-child(2),.voice-wave i:nth-child(8){--bar:.75}.voice-wave i:nth-child(3),.voice-wave i:nth-child(7){--bar:1.1}.voice-wave i:nth-child(4),.voice-wave i:nth-child(6){--bar:.62}.voice-wave i:nth-child(5){--bar:1.3}
.voice-mic { width: 58px; height: 58px; display: grid; place-items: center; margin-top: 18px; border-radius: 50%; color: #fffaf0; background: #315f83; box-shadow: 0 5px 0 #25465e; }
.voice-mic svg { width: 28px; height: 28px; }
.voice-card p { margin: 27px 0 0; color: var(--ink-soft); font: 13px var(--display); }
.voice-dialog.is-listening .voice-mic { animation: mic-pulse 1.1s ease-in-out infinite; }
@keyframes mic-pulse { 50% { transform: scale(1.08); box-shadow: 0 5px 0 #25465e, 0 0 0 10px rgba(49,95,131,.12); } }
.toast { border-radius: 2px; background: #4c3020; }

@media (min-width: 840px) {
  .home-view { max-height: 100dvh; overflow: hidden; }
  .app-shell { padding: 0; }
  .views { min-height: 100dvh; }
  .book { margin-top: 10px; min-height: 0; }
  .paper-page { min-height: 0; }
  .detail-view { padding: 10px; }
  .detail-paper { min-height: calc(100dvh - 20px); }
  .bottom-nav,
  .more-sheet { display: none !important; }
  .cover-upcoming {
    display: block;
    max-height: 66px;
    overflow: hidden;
    margin-top: 5px;
    padding: 3px 5px 0;
    border-top: 1px dashed rgba(79,59,36,.2);
  }
  .cover-upcoming::before { content: "これから"; display: block; font: 16px var(--display); }
  .cover-upcoming .agenda-row { min-height: 24px; grid-template-columns: 62px 1fr; }
  .cover-upcoming .agenda-row i { display: none; }
  .cover-scraps {
    position: absolute;
    left: 58px;
    right: 58px;
    bottom: 46px;
    height: clamp(165px, 22vh, 225px);
    display: block;
    border-top: 1px dashed rgba(91,67,39,.22);
    background: linear-gradient(90deg, rgba(194,157,77,.14), transparent 58%);
  }
  .cover-scraps::after {
    content: "小さな記憶も、このページへ。";
    position: absolute;
    right: 12px;
    bottom: 10px;
    color: var(--ink-soft);
    font: 15px var(--display);
    transform: rotate(-2deg);
  }
  .cover-polaroid { position: absolute; width: 140px; height: 121px; padding: 0; overflow: visible; }
  .cover-polaroid img { width: 100%; height: 100%; display: block; object-fit: cover; }
  .cover-dog { left: 30px; top: 28px; transform: rotate(-5deg); }
  .cover-plant { left: 153px; top: 17px; transform: rotate(4deg); }
  .cover-hand-note { position: absolute; right: 26px; top: 42px; font: 21px/1.55 var(--display); color: #526047; transform: rotate(-3deg); }
}

@media (max-width: 839px) {
  body::after { box-shadow: inset 0 0 40px rgba(14,6,2,.35); }
  .app-shell { padding: 0; }
  .views { min-height: 100dvh; }
  .book {
    display: block;
    width: 100%;
    height: auto;
    min-height: 100dvh;
    margin: 0;
    padding: 9px 8px 10px;
    border-width: 0;
    border-radius: 0;
  }
  .paper-page {
    min-height: calc(100dvh - 19px);
    padding: 13px 50px 18px 13px;
    border-radius: 7px 2px 2px 7px;
  }
  .page-rule { inset: 8px; }
  .cover-masthead {
    min-height: 65px;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: end;
    padding: 1px 9px 8px;
    border-bottom: 1px solid rgba(76,57,34,.25);
  }
  .cover-masthead span { grid-row: 1 / 3; font: 47px/.8 var(--display); transform: rotate(-3deg); }
  .cover-masthead sup { color: var(--terracotta); font-size: 18px; }
  .cover-masthead small { align-self: end; font: 12px var(--display); }
  .cover-masthead b { align-self: start; font: 10px var(--body); font-weight: 400; letter-spacing: .08em; }
  .weather-card { height: 91px; margin-top: 8px; grid-template-columns: 96px minmax(88px,.8fr) minmax(110px,1fr); }
  .weather-main { padding: 7px 9px; }
  .weather-main strong { font-size: 34px; }
  .weather-stats { padding: 7px 8px; }
  .news-card,
  .today-card { margin-top: 8px; padding: 6px 9px 7px; }
  .news-list { grid-template-columns: 1fr; }
  .news-item { grid-template-columns: 45px 1fr; border-right: 0; }
  .news-item:nth-child(3) { display: grid; }
  .section-heading > span { font-size: 17px; }
  .task-row { min-height: 31px; grid-template-columns: 25px 41px 1fr auto; }
  .task-open { font-size: 13px; }
  .upcoming-toggle { display: none; }
  .cover-upcoming,
  .cover-upcoming.is-open {
    display: block;
    max-height: 82px;
    overflow: hidden;
    margin-top: 4px;
    padding-top: 3px;
    border-top: 1px solid rgba(76,57,34,.18);
  }
  .cover-upcoming::before { content: "これから"; display: block; padding: 1px 4px; font: 15px var(--display); }
  .cover-upcoming .agenda-row { min-height: 25px; grid-template-columns: 62px 1fr; }
  .cover-upcoming .agenda-row i { display: none; }
  .favorites { justify-content: space-between; gap: 4px; margin: 8px 0 0; padding: 19px 5px 0; }
  .favorites button { width: 44px; }
  .favorites::before { left: 1px; }
  .app-tile { width: 34px; height: 34px; border-width: 3px; border-radius: 3px; }
  .cover-scraps {
    position: relative;
    height: 155px;
    display: block;
    margin-top: 7px;
    background: linear-gradient(90deg, rgba(191,154,74,.15), transparent 45%);
  }
  .cover-polaroid { position: absolute; width: 114px; height: 102px; padding: 0; overflow: visible; }
  .cover-polaroid img { width: 100%; height: 100%; display: block; object-fit: cover; }
  .cover-dog { left: 13px; top: 17px; transform: rotate(-5deg); }
  .cover-plant { left: 124px; top: 8px; transform: rotate(4deg); }
  .cover-hand-note { position: absolute; right: 4px; top: 22px; width: 105px; transform: rotate(-3deg); font: 16px/1.45 var(--display); color: #4f5945; }
  .page-fold-actions { width: 64px; height: 64px; }
  .right-page,
  .book-spine { display: none; }

  .bottom-nav {
    position: fixed;
    z-index: 60;
    left: auto;
    right: 0;
    top: 31%;
    bottom: auto;
    width: 42px;
    height: auto;
    transform: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }
  .bottom-nav button {
    width: 42px;
    min-width: 0;
    height: 59px;
    padding: 5px 2px;
    border-radius: 8px 0 0 8px;
    color: #fff8e8;
    opacity: .92;
    box-shadow: -2px 3px 5px rgba(46,25,13,.22);
  }
  .bottom-nav button:nth-child(1) { background: var(--terracotta); }
  .bottom-nav button:nth-child(2) { background: var(--olive); }
  .bottom-nav button:nth-child(3) { background: #315a73; }
  .bottom-nav button:nth-child(4) { background: #8a684b; }
  .bottom-nav button.is-active { color: #fffaf0; opacity: 1; transform: translateX(-4px); }
  .bottom-nav svg { display: none; }
  .bottom-nav span { margin: 0; font: 10px var(--display); writing-mode: vertical-rl; letter-spacing: .08em; }
  .more-sheet {
    left: 10px;
    right: 52px;
    bottom: 10px;
    width: auto;
    transform: none;
    border: 8px solid var(--leather);
    border-radius: 3px;
    background: var(--paper);
  }

  .detail-view { min-height: 100dvh; padding: 0; }
  .detail-paper {
    min-height: 100dvh;
    padding: 13px 49px 22px 13px;
    border-width: 8px;
    border-radius: 0;
  }
  .detail-header { min-height: 48px; margin-bottom: 10px; }
  .detail-header h1 { font-size: 27px; }
  .memo-layout { gap: 8px; }
  .coffee-cup { width: 60px; height: 60px; right: 64px; top: -70px; border-width: 5px; }
  .text-memo textarea { height: 150px; }
  .drawing-memo { min-height: 310px; }
  #drawingCanvas { height: 235px; }
  .photo-page-grid { min-height: calc(100dvh - 100px); grid-template-columns: 1fr 1fr; gap: 14px 7px; padding: 12px 2px; }
  .large-polaroid { width: 92%; padding: 6px 6px 28px; }
  .large-polaroid span { margin: 5px 0 -22px; font-size: 11px; }
  .family-grid { grid-template-columns: 1fr; }
  .family-card:last-child { grid-column: auto; }
  .widget-editor { grid-template-columns: 1fr; }
  .lock-preview { min-height: 430px; }
}

@media (max-width: 430px) {
  .paper-page { padding-left: 10px; }
  .weather-card { grid-template-columns: 82px .85fr 1.05fr; }
  .weather-stats { font-size: 8px; }
  .weather-main strong { font-size: 31px; }
  .cover-hand-note { display: none; }
  .cover-plant { left: 122px; }
}

@media (max-height: 760px) and (max-width: 839px) {
  .cover-masthead { min-height: 50px; }
  .cover-masthead span { font-size: 39px; }
  .weather-card { height: 78px; }
  .news-card,
  .today-card { margin-top: 5px; }
  .news-item { padding-top: 2px; padding-bottom: 2px; }
  .task-row { min-height: 27px; }
  .today-list .task-row:nth-child(n+4) { display: none; }
  .cover-upcoming { max-height: 55px; }
  .favorites { margin-top: 5px; }
  .cover-scraps { height: 126px; }
  .cover-polaroid { width: 96px; height: 84px; }
  .cover-plant { left: 104px; }
  .cover-hand-note { right: 0; top: 14px; font-size: 13px; }
}

@media (orientation: landscape) and (max-height: 540px) {
  .cover-masthead,
  .cover-scraps { display: none; }
  .paper-page { min-height: 100dvh; }
  .weather-card { height: 72px; }
  .news-card { display: none; }
}

@media (min-width: 840px) and (max-height: 900px) {
  .book { height: calc(100dvh - 14px); margin: 7px auto; }
  .paper-page { padding-top: 16px; padding-bottom: 14px; }
  .weather-card { height: 94px; }
  .top-photo { height: 76px; }
  .calendar-day { height: 32px; }
  .cover-scraps { height: 135px; bottom: 34px; }
  .cover-polaroid { width: 100px; height: 87px; }
  .cover-plant { left: 121px; }
  .cover-hand-note { top: 30px; font-size: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  .view.is-active { animation: none; }
}
