@charset "UTF-8";

:root {
  --paper: #fbfaf4;
  --ink: #26382f;
  --muted: #657568;
  --green: #2e5c48;
  --green-soft: #e8efe8;
  --rose: #9d7468;
  --line: #e1e5dc;
  --serif: "Songti SC", "STSong", "Noto Serif CJK SC", serif;
  --sans: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
button, a, input { -webkit-tap-highlight-color: transparent; }
button { border: 0; background: none; color: inherit; cursor: pointer; font: inherit; }
button:disabled { opacity: .45; cursor: default; }
button, a { touch-action: manipulation; }
a { color: inherit; text-decoration: none; }
button:focus-visible, a:focus-visible, summary:focus-visible { outline: 2px solid var(--green); outline-offset: 4px; }
img { display: block; max-width: 100%; }
button img { pointer-events: none; }
[hidden] { display: none !important; }

.icon-definitions { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.page-shell { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

.site-header {
  height: 84px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 20;
}
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--serif); font-size: 18px; letter-spacing: 1.5px; }
.brand-mark {
  width: 36px;
  height: 41px;
  border: 1px solid #aab99f;
  border-radius: 50% 50% 45% 45%;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-8deg);
}
.brand-mark .icon { width: 24px; height: 24px; transform: rotate(8deg); }
.brand-subtitle { display: block; color: var(--muted); font-family: var(--sans); font-size: 7px; letter-spacing: 2.6px; margin-top: 5px; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 0;
  color: var(--green);
  font-size: 12px;
  line-height: 1.5;
  white-space: nowrap;
}
.text-button:hover { color: var(--rose); }
.letter-button .icon { width: 16px; height: 16px; }
.more-menu { position: relative; z-index: 30; }
.more-button { list-style: none; gap: 5px; min-height: 36px; }
.more-button::-webkit-details-marker { display: none; }
.more-button .more-mark { width: 12px; height: 12px; color: var(--muted); align-self: center; }
.more-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 148px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fffef8;
  box-shadow: 0 12px 30px #3045371c;
}
.more-panel .text-button { width: 100%; justify-content: flex-start; padding: 9px 10px; color: var(--muted); font-size: 11px; }
.more-panel .text-button:hover { color: var(--green); background: var(--green-soft); border-radius: 6px; }
.more-panel .text-button .icon { width: 15px; height: 15px; }
.logout-button { color: var(--rose) !important; }

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 0;
  padding: 36px 0 30px;
}
.intro { width: 100%; text-align: center; padding: 0 0 16px; position: relative; z-index: 1; }
.together { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; letter-spacing: .8px; white-space: nowrap; }
.together-dot { width: 5px; height: 5px; border-radius: 50%; background: #a78370; }
.name-amp { color: #8f9b87; font-family: Georgia, serif; font-style: italic; padding: 0 5px; }
h1 {
  margin: 16px 0 14px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(31px, 4vw, 46px);
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.4;
  white-space: nowrap;
}
.time-counter { display: flex; align-items: baseline; justify-content: center; gap: 7px; color: var(--muted); font-variant-numeric: tabular-nums; }
.day-prefix { font-size: 13px; letter-spacing: .4px; }
.day-value { color: var(--green); font-family: Georgia, "Times New Roman", serif; font-size: 52px; letter-spacing: -2px; line-height: 1; }
.day-unit { color: var(--muted); font-size: 12px; }
.button {
  min-height: 47px;
  padding: 14px 22px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: .5px;
  transition: background .2s, transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.button:hover { transform: translateY(-2px); }
.button .icon { width: 17px; height: 17px; }
.button-primary { color: #f9fbf4; background: var(--green); border: 1px solid var(--green); box-shadow: 0 4px 12px #2e5c481f; }
.button-primary:hover { background: #214a38; box-shadow: 0 7px 18px #2e5c482b; }

.garden-wrap { width: min(680px, 100%); margin: 0 auto; position: relative; }
.garden { width: 100%; aspect-ratio: 800 / 650; position: relative; isolation: isolate; container-type: inline-size; overflow: visible; }
.garden-glow { position: absolute; inset: 4% 5% 9%; z-index: -1; border-radius: 50%; background: radial-gradient(ellipse, #e8f0e270 0, #eef2e630 48%, transparent 74%); }
.tree-art { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.tree-photos, .falling-photos { position: absolute; inset: 0; pointer-events: none; }
.tree-photos { z-index: 2; }
.falling-photos { z-index: 5; }
.photo-leaf {
  position: absolute;
  width: 9.8%;
  aspect-ratio: 1 / .98;
  padding: 2px 2px 6px;
  border: 1px solid #efe9dc;
  border-radius: 2px;
  background: #fffef8;
  box-shadow: 0 3px 8px #5260452a;
  cursor: pointer;
  pointer-events: auto;
  transform: translate(-50%, -50%) rotate(var(--rotation));
  transition: transform .25s, box-shadow .25s;
  animation: leaf-arrive .55s both;
  animation-delay: var(--delay);
}
.photo-leaf:nth-child(5n) { width: 10.6%; }
.photo-leaf:nth-child(7n) { width: 9.2%; }
.photo-leaf img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.86); }
.photo-leaf:hover, .photo-leaf:focus-visible { transform: translate(-50%, -50%) rotate(0) scale(1.1); z-index: 10 !important; box-shadow: 0 9px 22px #5260453d; }
.photo-leaf:hover img { filter: saturate(1); }
.photo-leaf::after { content: ""; position: absolute; top: -3px; left: 35%; width: 30%; height: 6px; background: #e3d5b480; transform: rotate(-5deg); }
@keyframes leaf-arrive { from { opacity: 0; scale: .78; } to { opacity: 1; scale: 1; } }
.garden-caption { display: flex; justify-content: center; margin-top: -2px; }
.drop-memory { color: var(--muted); font-size: 11px; padding: 7px 12px; border: 1px solid transparent; border-radius: 999px; }
.drop-memory:hover { color: var(--green); background: var(--green-soft); }
.drop-memory .icon { width: 15px; height: 15px; }

.puppy { position: absolute; width: 17.5%; aspect-ratio: 1.4; left: 64%; top: 75%; padding: 0; transform: translate(-50%, 0); overflow: visible; z-index: 6; }
.puppy-svg { display: block; width: 100%; height: 100%; overflow: visible; }
.puppy-bubble { position: absolute; bottom: 101%; left: 50%; transform: translateX(-50%); white-space: nowrap; border: 1px solid #dde3d7; border-radius: 10px; background: #fffef8; color: var(--muted); font-size: 10px; padding: 7px 11px; opacity: 0; pointer-events: none; transition: opacity .25s; }
.puppy-bubble::after { content: ""; position: absolute; bottom: -4px; left: 43%; width: 6px; height: 6px; background: #fffef8; border-right: 1px solid #dde3d7; border-bottom: 1px solid #dde3d7; transform: rotate(45deg); }
.puppy.show-bubble .puppy-bubble, .puppy:hover .puppy-bubble { opacity: 1; }
.dog-tail { transform-origin: 34px 49px; }
.puppy[data-motion="running"] .dog-tail { animation: tail-wag .4s ease-in-out infinite alternate; }
.dog-head { transform-origin: 91px 52px; }
.puppy[data-motion="running"] .dog-body { animation: dog-bounce .24s ease-in-out infinite; }
.dog-leg { transform-box: fill-box; transform-origin: top center; }
.puppy[data-motion="running"] .leg-back, .puppy[data-motion="running"] .leg-near-front { animation: dog-run .28s ease-in-out infinite alternate; }
.puppy[data-motion="running"] .leg-front, .puppy[data-motion="running"] .leg-near-back { animation: dog-run .28s ease-in-out infinite alternate-reverse; }
.puppy[data-motion="catching"] .dog-head { transform: rotate(-9deg); }
.caught-photo { position: absolute; left: 80%; top: 52%; width: 26%; aspect-ratio: 1; padding: 2px 2px 5px; border: 1px solid #efe9dc; background: #fffef8; object-fit: cover; transform: rotate(12deg); box-shadow: 0 2px 4px #594d3920; }
.puppy.facing-left .puppy-svg { transform: scaleX(-1); }
.puppy.facing-left .caught-photo { left: -6%; transform: rotate(-12deg); }
.puppy-realistic { display: none; position: absolute; inset: 0; background-image: url("assets/bichon-trot.png"); background-size: 300% 200%; background-position: 0 0; background-repeat: no-repeat; pointer-events: none; }
.puppy.is-realistic .puppy-realistic { display: block; }
.puppy.is-realistic .puppy-svg { visibility: hidden; }
.puppy.is-realistic.facing-left .puppy-realistic { transform: scaleX(-1); }
.puppy.is-realistic[data-motion="running"] .puppy-realistic { animation: bichon-trot .66s steps(1, end) infinite; }
.puppy.is-realistic .caught-photo { top: 40%; }
@keyframes tail-wag { from { transform: rotate(-13deg); } to { transform: rotate(16deg); } }
@keyframes dog-run { from { transform: rotate(-22deg); } to { transform: rotate(22deg); } }
@keyframes dog-bounce { 50% { transform: translateY(-3px); } }
@keyframes bichon-trot { 0% { background-position: 0 0; } 16.6667% { background-position: 50% 0; } 33.3333% { background-position: 100% 0; } 50% { background-position: 0 100%; } 66.6667% { background-position: 50% 100%; } 83.3333% { background-position: 100% 100%; } 100% { background-position: 0 0; } }
.falling-leaf { position: absolute; left: 0; top: 0; width: 9.8%; aspect-ratio: 1; padding: 2px 2px 6px; border: 1px solid #efe9dc; border-radius: 2px; background: #fffef8; box-shadow: 0 4px 9px #52604533; will-change: transform; }
.falling-leaf img { width: 100%; height: 100%; object-fit: cover; }
.catch-spark { position: absolute; color: var(--rose); font-size: 14px; animation: catch-spark 1s ease-out forwards; pointer-events: none; }
@keyframes catch-spark { from { opacity: 1; transform: translate(0, 0) scale(.6); } to { opacity: 0; transform: translate(var(--dx), -40px) scale(1.15); } }
.motion-paused .garden * { animation-play-state: paused !important; }

.album-section { padding: 38px 0 28px; border-top: 1px solid var(--line); }
.album-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 21px; }
h2 { margin: 0; color: var(--ink); font-family: var(--serif); font-size: 27px; font-weight: 500; letter-spacing: 1px; }
#album-count { color: var(--green); font-family: var(--sans); font-size: 13px; font-weight: 500; letter-spacing: .3px; }
.album-actions { display: flex; align-items: center; gap: 20px; }
.album-actions .text-button { font-size: 11px; }
.album-actions .icon { width: 14px; height: 14px; }
.add-photos { color: var(--green); }
.album-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; padding: 0; }
.album-card {
  position: relative;
  width: 100%;
  min-width: 0;
  aspect-ratio: 1.08;
  padding: 1px;
  border: 1px solid #e4e8df;
  border-radius: 12px;
  background: #fffef8;
  box-shadow: 0 3px 9px #52604514;
  text-align: left;
  transition: transform .2s, box-shadow .2s;
}
.album-card:hover, .album-card:focus-visible { transform: translateY(-3px); box-shadow: 0 8px 18px #52604524; }
.album-card img { width: 100%; height: 100%; border-radius: 7px; object-fit: cover; filter: saturate(.9); }
.album-add { display: none; }
.album-foot { margin-top: 15px; color: var(--muted); font-size: 10px; letter-spacing: .2px; }
.album-foot p { margin: 0; line-height: 1.8; }
.site-footer { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 16px; border-top: 1px solid var(--line); color: var(--muted); font-size: 9px; letter-spacing: .4px; }
.site-footer > span:last-child { display: flex; align-items: center; gap: 7px; font-size: 8px; letter-spacing: 1.8px; }
.site-footer .icon { width: 10px; height: 10px; color: #9f8276; }

.drop-overlay { position: fixed; inset: 16px; z-index: 100; display: grid; place-items: center; border: 2px dashed #6d9377; border-radius: 14px; background: #fbfaf4f5; box-shadow: 0 0 0 20px #24392c60; pointer-events: none; }
.drop-overlay > div { color: var(--green); text-align: center; }
.drop-overlay .icon { width: 54px; height: 54px; margin: auto; }
.drop-overlay h2 { margin-top: 24px; font-size: 30px; }
.drop-overlay p { color: var(--muted); font-size: 13px; }
.toast { position: fixed; left: 50%; bottom: 28px; z-index: 150; width: max-content; max-width: min(560px, calc(100vw - 32px)); margin: 0; padding: 14px 22px; border: 0; border-radius: 8px; background: #294d3c; color: #f8fbf4; box-shadow: 0 6px 30px #263b3029; font-size: 12px; line-height: 1.7; transform: translateX(-50%); }
.noscript { position: fixed; top: 0; left: 0; right: 0; padding: 20px; background: #fff0d0; color: #6e5637; text-align: center; }

dialog { max-height: 90dvh; padding: 0; border: 1px solid #dfe4da; border-radius: 12px; background: var(--paper); color: var(--ink); box-shadow: 0 20px 90px #15241825; overscroll-behavior: contain; }
dialog::backdrop { background: #26312880; backdrop-filter: blur(7px); }
.icon-button { width: 40px; height: 40px; min-width: 40px; min-height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: #f4f6ed; color: var(--muted); flex-shrink: 0; }
.icon-button:hover { background: #e7eee4; }
.icon-button .icon { width: 20px; height: 20px; }
.photo-dialog { width: min(920px, calc(100vw - 36px)); }
.viewer-toolbar { display: flex; align-items: center; justify-content: space-between; padding: 12px 18px; color: var(--muted); font-size: 11px; letter-spacing: 2px; }
.viewer-stage { position: relative; display: flex; align-items: center; justify-content: center; min-height: 150px; background: #eef2e9; }
.viewer-stage > img { width: 100%; height: min(60dvh, 610px); padding: 0 52px; object-fit: contain; }
.viewer-stage > .icon-button { position: absolute; top: 50%; z-index: 1; background: #fffef8e6; transform: translateY(-50%); }
.viewer-previous { left: 12px; }
.viewer-previous .icon { transform: rotate(180deg); }
.viewer-next { right: 12px; }
.viewer-footer { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 19px 26px; }
.viewer-footer h2 { max-width: 480px; margin: 0; overflow-wrap: anywhere; font-size: 19px; }
.viewer-footer p { margin: 8px 0 0; color: var(--muted); font-size: 10px; }
.viewer-footer .text-button { font-size: 11px; }
.viewer-footer .icon { width: 15px; height: 15px; }
.letter-dialog { width: min(590px, calc(100vw - 32px)); padding: 56px 56px 35px; background-image: repeating-linear-gradient(transparent 0, transparent 35px, #aebaa51a 36px); }
.dialog-close { position: absolute; top: 13px; right: 13px; }
.letter-dialog h2 { margin: 17px 0 24px; font-size: 26px; }
.letter-dialog .eyebrow { display: flex; align-items: center; color: var(--muted); font-size: 8px; letter-spacing: 2px; }
.letter-lines { color: var(--muted); font-family: var(--serif); font-size: 14px; line-height: 2.55; letter-spacing: .5px; }
.letter-lines p { margin: 0; }
.letter-signature { margin-top: 24px; color: #897e6e; font-family: var(--serif); font-size: 14px; text-align: right; }
.letter-heart { display: block; width: 17px; height: 17px; margin: 25px auto 0; color: #ae8378; }
.manage-dialog { width: min(740px, calc(100vw - 32px)); padding: 28px; }
.manage-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.manage-header .eyebrow { color: var(--muted); font-size: 8px; letter-spacing: 2px; }
.manage-header h2 { margin-top: 9px; font-size: 25px; }
.manage-description { margin: 17px 0 24px; color: var(--muted); font-size: 11px; line-height: 1.8; }
.manage-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; max-height: 48dvh; overflow-y: auto; padding: 3px; }
.manage-item { position: relative; min-width: 0; }
.manage-item > img { width: 100%; aspect-ratio: 1; border: 5px solid #fffef8; border-radius: 9px; box-shadow: 0 1px 5px #5260451a; object-fit: cover; }
.manage-item > span { display: block; overflow: hidden; padding: 8px 3px; color: var(--muted); font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.remove-photo { position: absolute; top: 8px; right: 8px; width: 44px; height: 44px; min-width: 44px; min-height: 44px; border: 2px solid #fffef8; background: #fffef8ed; color: var(--rose); }
.remove-photo .icon { width: 17px; height: 17px; }
.manage-empty { grid-column: 1 / -1; padding: 40px 20px; border: 1px dashed #cad8c7; color: var(--muted); font-size: 13px; line-height: 1.9; text-align: center; }
.manage-footer { display: flex; justify-content: flex-end; align-items: center; gap: 18px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.manage-footer > .button { padding: 11px 15px; min-height: 42px; font-size: 11px; }

.login-dialog { width: min(440px, calc(100vw - 32px)); padding: 44px 44px 38px; text-align: center; }
.login-dialog::backdrop { background: #f2efe5f2; backdrop-filter: blur(13px); }
.login-mark { width: 58px; height: 64px; display: grid; place-items: center; margin: 0 auto 23px; border: 1px solid #aeb99f; border-radius: 50% 50% 45% 45%; color: var(--green); transform: rotate(-7deg); }
.login-mark .icon { width: 34px; height: 34px; transform: rotate(7deg); }
.login-dialog > .eyebrow { display: flex; justify-content: center; color: var(--muted); font-size: 8px; letter-spacing: 2px; }
.login-dialog h2 { margin: 16px 0 10px; font-size: 25px; }
.login-dialog > p { margin: 0 0 24px; color: var(--muted); font-size: 11px; line-height: 1.9; }
.login-dialog form { text-align: left; }
.login-dialog label { display: block; margin: 0 0 8px; color: var(--muted); font-size: 10px; letter-spacing: 1px; }
.login-dialog input { width: 100%; height: 46px; padding: 0 13px; border: 1px solid #cfd9ce; border-radius: 6px; outline: none; background: #fffef8; color: var(--ink); font: 14px var(--sans); }
.login-dialog input:focus { border-color: #6c9378; box-shadow: 0 0 0 3px #6c93781a; }
.login-dialog .button { width: 100%; margin-top: 16px; }
.login-error { margin: 9px 0 -4px !important; color: #9f5f55 !important; font-size: 10px !important; line-height: 1.6 !important; }
.login-dialog[open] { animation: login-arrive .35s ease-out; }
@keyframes login-arrive { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 720px) {
  .page-shell { padding: 0 20px; }
  .site-header { height: 76px; }
  .brand { gap: 8px; font-size: 16px; letter-spacing: 1px; }
  .brand-mark { width: 31px; height: 36px; }
  .brand-mark .icon { width: 21px; height: 21px; }
  .brand-subtitle { font-size: 6px; letter-spacing: 2px; }
  .header-actions { gap: 11px; }
  .letter-button, .more-button { font-size: 10px; }
  .letter-button .icon { width: 14px; height: 14px; }
  .more-panel { right: -2px; }
  .hero { padding: 32px 0 24px; }
  h1 { margin: 15px 0 13px; font-size: clamp(29px, 8vw, 36px); letter-spacing: 1px; }
  .together { font-size: 11px; }
  .day-prefix { font-size: 11px; }
  .day-value { font-size: 45px; }
  .day-unit { font-size: 10px; }
  .button { min-height: 46px; padding: 13px 19px; font-size: 11px; }
  .garden-wrap { width: calc(100% + 8px); }
  .garden-caption { margin-top: 0; }
  .drop-memory { font-size: 10px; }
  .album-section { padding: 28px 0 23px; }
  .album-heading { align-items: center; gap: 10px; margin-bottom: 17px; }
  h2 { font-size: 21px; }
  #album-count { font-size: 11px; }
  .album-actions { gap: 12px; }
  .album-actions .text-button { font-size: 9px; }
  .album-actions .icon { width: 12px; height: 12px; }
  .album-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .album-card { aspect-ratio: 1.12; padding: 1px; border-radius: 11px; }
  .album-card img { border-radius: 6px; }
  .album-foot { margin-top: 13px; font-size: 9px; }
  .site-footer { min-height: 76px; flex-direction: column; justify-content: center; gap: 10px; padding: 17px 0; font-size: 8px; }
  .site-footer > span:last-child { font-size: 7px; letter-spacing: 1.5px; }
  .photo-dialog { width: calc(100vw - 20px); }
  .viewer-stage > img { height: 52dvh; padding: 0 8px; }
  .viewer-stage > .icon-button { width: 36px; height: 36px; min-width: 36px; min-height: 36px; }
  .viewer-previous { left: 6px; }
  .viewer-next { right: 6px; }
  .viewer-footer { align-items: flex-start; padding: 16px; }
  .viewer-footer h2 { max-width: 170px; font-size: 16px; }
  .viewer-footer p { font-size: 9px; line-height: 1.7; }
  .viewer-footer .text-button { font-size: 9px; gap: 4px; }
  .viewer-footer .text-button .icon { width: 13px; height: 13px; }
  .letter-dialog { padding: 52px 25px 28px; }
  .letter-dialog h2 { font-size: 22px; }
  .letter-lines { font-size: 12px; letter-spacing: 0; }
  .manage-dialog { padding: 22px 18px; }
  .manage-header h2 { font-size: 21px; }
  .manage-description { font-size: 10px; }
  .manage-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .manage-footer { gap: 12px; }
  .manage-footer > .button { padding: 10px 12px; font-size: 10px; }
  .drop-overlay { inset: 10px; }
}

@media (max-width: 375px) {
  .page-shell { padding: 0 16px; }
  .brand { font-size: 14px; }
  .letter-button, .more-button { font-size: 9px; }
  h1 { font-size: 28px; }
  .day-prefix { font-size: 10px; }
  .day-value { font-size: 41px; }
  .button { padding: 12px 16px; font-size: 10px; }
  .album-actions { gap: 8px; }
  .album-actions .text-button { font-size: 8px; }
  h2 { font-size: 19px; }
  #album-count { font-size: 10px; }
  .album-foot { font-size: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .photo-leaf { animation: none; opacity: 1; }
}
