:root {
  --ink: #202724;
  --ink-soft: #55605c;
  --paper: #f7f8f5;
  --white: #ffffff;
  --lychee: #bd3c4b;
  --lychee-deep: #8e2737;
  --leaf: #496b52;
  --leaf-deep: #263f32;
  --gold: #f2bc61;
  --gold-soft: #ffe0a3;
  --night: #202b29;
  --night-soft: #34443f;
  --blue: #6586a0;
  --line: rgba(32, 39, 36, 0.16);
  --page-pad: 6vw;
  --content: 1180px;
  --header-h: 78px;
  --radius: 8px;
  --shadow: 0 24px 60px rgba(23, 38, 32, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

button,
textarea,
a {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

a {
  color: inherit;
}

svg {
  width: 1.2em;
  height: 1.2em;
  stroke-width: 1.8;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  min-height: var(--header-h);
  padding: 0 var(--page-pad);
  color: var(--white);
  transition: background-color 260ms ease, box-shadow 260ms ease, color 260ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(247, 248, 245, 0.94);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.brand-mark::before {
  position: absolute;
  top: 2px;
  right: 3px;
  width: 11px;
  height: 7px;
  content: "";
  background: var(--gold-soft);
  border-radius: 100% 0 100% 0;
  transform: rotate(-20deg);
}

.brand-mark span {
  width: 14px;
  height: 14px;
  background: var(--lychee);
  border: 2px dotted rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.brand-text {
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.nav-link {
  position: relative;
  padding: 8px 0;
  font-size: 0.88rem;
  text-decoration: none;
  white-space: nowrap;
  opacity: 0.72;
  transition: opacity 180ms ease;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  opacity: 1;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link[aria-disabled="true"] {
  cursor: not-allowed;
}

.icon-button {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
}

.icon-button::after {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  z-index: 5;
  width: max-content;
  max-width: 150px;
  padding: 5px 8px;
  color: var(--white);
  font-size: 0.72rem;
  line-height: 1.3;
  content: attr(data-tooltip);
  background: var(--ink);
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.icon-button:hover::after,
.icon-button:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.icon-fallback {
  display: none;
}

.icon-button:not(:has(svg)) .icon-fallback {
  display: inline;
}

.hero {
  position: relative;
  min-height: 88vh;
  height: 820px;
  max-height: 960px;
  color: var(--white);
  background: var(--night);
  isolation: isolate;
  overflow: hidden;
}

.hero-scene,
.hero-image-layer,
.sky-layer {
  position: absolute;
  inset: 0;
}

.hero-scene {
  overflow: hidden;
  background: #283733;
}

.hero-image-layer {
  z-index: 3;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: opacity 600ms ease, filter 500ms ease;
}

.has-hero-image .hero-image-layer {
  opacity: 1;
}

.has-hero-image .sky-layer,
.has-hero-image .hill,
.has-hero-image .tree,
.has-hero-image .house,
.has-hero-image .mascot {
  opacity: 0;
}

.sky-layer {
  background: #2c3f48;
}

.moon {
  position: absolute;
  top: 18%;
  right: 16%;
  width: 100px;
  height: 100px;
  background: #f7d998;
  border-radius: 50%;
  box-shadow: 0 0 70px rgba(247, 217, 152, 0.25);
}

.moon::after {
  position: absolute;
  top: -8px;
  left: -17px;
  width: 100px;
  height: 100px;
  content: "";
  background: #2c3f48;
  border-radius: 50%;
}

.star {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold-soft);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold-soft);
  animation: twinkle 2.4s ease-in-out infinite alternate;
}

.star-a { top: 15%; left: 13%; }
.star-b { top: 27%; left: 37%; animation-delay: 700ms; }
.star-c { top: 12%; left: 57%; animation-delay: 1.2s; }
.star-d { top: 34%; right: 9%; animation-delay: 400ms; }
.star-e { top: 8%; right: 34%; animation-delay: 1.6s; }

.hill {
  position: absolute;
  right: -8%;
  left: -8%;
  border-radius: 50% 50% 0 0;
  transition: opacity 300ms ease;
}

.hill-back {
  bottom: -16%;
  height: 59%;
  background: #405a4b;
  transform: rotate(-2deg);
}

.hill-front {
  bottom: -32%;
  left: -20%;
  height: 65%;
  background: #2a4436;
  transform: rotate(5deg);
}

.house {
  position: absolute;
  right: 16%;
  bottom: 17%;
  z-index: 4;
  width: 390px;
  height: 300px;
  transition: opacity 300ms ease;
}

.house-body {
  position: absolute;
  right: 20px;
  bottom: 0;
  left: 20px;
  height: 205px;
  background: #c7835b;
  border: 7px solid #53392f;
  box-shadow: var(--shadow);
}

.roof {
  position: absolute;
  top: 34px;
  left: 5px;
  z-index: 3;
  width: 380px;
  height: 150px;
  background: #793844;
  clip-path: polygon(50% 0, 100% 72%, 90% 100%, 50% 37%, 10% 100%, 0 72%);
}

.chimney {
  position: absolute;
  top: 37px;
  right: 68px;
  width: 45px;
  height: 80px;
  background: #60423a;
}

.window {
  position: absolute;
  bottom: 80px;
  z-index: 5;
  width: 70px;
  height: 76px;
  background: var(--gold);
  border: 7px solid #5c4439;
  box-shadow: 0 0 45px rgba(242, 188, 97, 0.72);
  animation: window-glow 3s ease-in-out infinite alternate;
  transition: background-color 400ms ease, box-shadow 400ms ease;
}

.window::before,
.window::after {
  position: absolute;
  content: "";
  background: #6b5145;
}

.window::before { top: 0; bottom: 0; left: 50%; width: 3px; }
.window::after { top: 50%; right: 0; left: 0; height: 3px; }
.window-left { left: 61px; }
.window-right { right: 61px; }

.door {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 6;
  width: 72px;
  height: 120px;
  background: #564137;
  border: 6px solid #49362f;
  transform: translateX(-50%);
}

.door::after {
  position: absolute;
  top: 58px;
  right: 9px;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--gold);
  border-radius: 50%;
}

.door-step {
  position: absolute;
  bottom: -10px;
  left: 50%;
  z-index: 7;
  width: 112px;
  height: 16px;
  background: #776052;
  transform: translateX(-50%);
}

.tree {
  position: absolute;
  right: 4%;
  bottom: 12%;
  z-index: 5;
  width: 220px;
  height: 410px;
  transition: opacity 300ms ease;
}

.tree-crown {
  position: absolute;
  top: 0;
  left: 0;
  width: 220px;
  height: 270px;
  background: #365842;
  border-radius: 48% 52% 44% 56%;
  box-shadow: inset 22px -24px 0 rgba(30, 62, 45, 0.45);
}

.tree-trunk {
  position: absolute;
  bottom: 0;
  left: 95px;
  width: 38px;
  height: 210px;
  background: #60483b;
  transform: rotate(4deg);
  transform-origin: bottom;
}

.lychee-dot {
  position: absolute;
  z-index: 2;
  width: 29px;
  height: 29px;
  background: var(--lychee);
  border: 3px dotted #d96873;
  border-radius: 50%;
  box-shadow: 0 7px 18px rgba(90, 23, 35, 0.36);
}

.dot-a { top: 64px; left: 47px; }
.dot-b { top: 133px; right: 33px; }
.dot-c { top: 173px; left: 74px; }

.mascot {
  position: absolute;
  right: 43%;
  bottom: 10%;
  z-index: 6;
  width: 118px;
  height: 145px;
  filter: drop-shadow(0 18px 16px rgba(10, 24, 18, 0.35));
  animation: mascot-float 3.4s ease-in-out infinite;
  transition: opacity 300ms ease;
}

.mascot-body {
  position: absolute;
  bottom: 0;
  left: 5px;
  width: 108px;
  height: 113px;
  background: #d95261;
  border: 6px dotted #ef8790;
  border-radius: 48% 52% 50% 50%;
}

.mascot-leaf {
  position: absolute;
  top: 6px;
  left: 42px;
  z-index: 2;
  width: 48px;
  height: 31px;
  background: #658c62;
  border-radius: 100% 0 100% 0;
  transform: rotate(-18deg);
}

.mascot-eye {
  position: absolute;
  bottom: 54px;
  z-index: 3;
  width: 7px;
  height: 10px;
  background: #542b30;
  border-radius: 50%;
}

.eye-left { left: 40px; }
.eye-right { right: 38px; }

.mascot-smile {
  position: absolute;
  bottom: 37px;
  left: 51px;
  z-index: 3;
  width: 17px;
  height: 9px;
  border-bottom: 3px solid #542b30;
  border-radius: 0 0 50% 50%;
}

.floating-leaf {
  position: absolute;
  z-index: 7;
  width: 22px;
  height: 13px;
  background: #8aae78;
  border-radius: 100% 0 100% 0;
  animation: leaf-drift 6s ease-in-out infinite;
}

.leaf-a { top: 28%; right: 38%; }
.leaf-b { top: 43%; right: 12%; animation-delay: -2s; }
.leaf-c { top: 63%; right: 48%; animation-delay: -4s; }

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 8;
  background: rgba(10, 22, 19, 0.28);
  pointer-events: none;
  transition: background-color 500ms ease;
}

.hero-copy {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: min(700px, 78vw);
  height: 100%;
  padding: calc(var(--header-h) + 52px) 0 88px var(--page-pad);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--lychee);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-eyebrow {
  color: var(--gold-soft);
}

.hero h1 {
  margin: 0;
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 5.75rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
  text-shadow: 0 6px 26px rgba(0, 0, 0, 0.23);
}

.hero-lead {
  margin: 24px 0 34px;
  font-size: 1.2rem;
  font-weight: 400;
}

.primary-action,
.wish-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 48px;
  padding: 11px 19px;
  color: var(--white);
  background: var(--lychee);
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}

.primary-action:hover,
.wish-submit:hover {
  background: var(--lychee-deep);
  transform: translateY(-2px);
}

.hero-corner-note {
  position: absolute;
  right: var(--page-pad);
  bottom: 78px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.76rem;
  line-height: 1.6;
  opacity: 0.78;
}

.note-line {
  width: 56px;
  height: 1px;
  background: currentColor;
}

.hero-next {
  position: absolute;
  bottom: 20px;
  left: 50%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.68rem;
  opacity: 0.68;
  transform: translateX(-50%);
}

.hero-next svg {
  animation: nudge-down 1.6s ease-in-out infinite;
}

.lights-low .hero-shade {
  background: rgba(5, 13, 11, 0.55);
}

.lights-low .window {
  background: #a8744e;
  box-shadow: 0 0 14px rgba(242, 188, 97, 0.25);
  animation: none;
}

.lights-low .hero-image-layer {
  filter: brightness(0.68) saturate(0.82);
}

.daily-strip {
  position: relative;
  z-index: 12;
  display: grid;
  grid-template-columns: 1.08fr 1.92fr;
  width: min(calc(100% - (var(--page-pad) * 2)), var(--content));
  min-height: 230px;
  margin: -38px auto 0;
  background: var(--white);
  border-top: 4px solid var(--lychee);
  box-shadow: var(--shadow);
}

.daily-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
  border-right: 1px solid var(--line);
}

.daily-intro h2,
.section-heading h2,
.growth-copy h2,
.wish-copy h2,
.closing-section h2 {
  margin: 0;
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 2.8rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.daily-words {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.daily-word {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 34px 26px;
  border-right: 1px solid var(--line);
}

.daily-word:last-child {
  border-right: 0;
}

.daily-word svg {
  width: 28px;
  height: 28px;
  margin-bottom: 20px;
  color: var(--leaf);
}

.daily-word span {
  font-size: 1.25rem;
  font-weight: 800;
}

.daily-word small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.section-pad {
  padding: 150px var(--page-pad);
}

.section-heading {
  width: min(720px, 100%);
  margin: 0 auto 64px;
  text-align: center;
}

.section-heading > p:last-child {
  margin: 20px 0 0;
  color: var(--ink-soft);
}

.season-section {
  background: #f7f8f5;
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: var(--content);
  margin: 0 auto;
}

.season-card {
  position: relative;
  min-height: 430px;
  padding: 26px;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.season-card:hover {
  z-index: 2;
  box-shadow: 0 22px 50px rgba(25, 40, 33, 0.15);
  transform: translateY(-8px);
}

.season-card.spring { color: #20372d; background: #b9d4bd; }
.season-card.summer { color: #3d2f1f; background: #f2c66d; }
.season-card.autumn { color: #fff7e9; background: #a64b3d; }
.season-card.winter { color: #1e3442; background: #aac7d5; }

.season-visual {
  position: relative;
  display: grid;
  place-items: center;
  height: 210px;
  margin-bottom: 28px;
}

.season-visual svg {
  position: relative;
  z-index: 2;
  width: 82px;
  height: 82px;
  stroke-width: 1.1;
}

.orbit {
  position: absolute;
  width: 168px;
  height: 168px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.35;
  animation: orbit-pulse 3.6s ease-in-out infinite;
}

.orbit::after {
  position: absolute;
  top: 12px;
  left: 28px;
  width: 10px;
  height: 10px;
  content: "";
  background: currentColor;
  border-radius: 50%;
}

.orbit-b { animation-delay: -900ms; }
.orbit-c { animation-delay: -1.8s; }
.orbit-d { animation-delay: -2.7s; }

.season-index {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 800;
}

.season-card h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
  letter-spacing: 0;
}

.season-card > p:last-child {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.82;
}

.growth-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.2fr);
  gap: 9vw;
  color: var(--white);
  background: var(--night);
}

.growth-copy {
  position: sticky;
  top: 130px;
  align-self: start;
}

.growth-copy .eyebrow {
  color: var(--gold);
}

.growth-copy > p:nth-of-type(2) {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.growth-quote {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.growth-quote svg {
  color: var(--gold);
}

.growth-quote blockquote {
  margin: 14px 0 0;
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 1.35rem;
  line-height: 1.8;
}

.timeline {
  position: relative;
  padding-left: 64px;
}

.timeline-track {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 13px;
  width: 2px;
  background: rgba(255, 255, 255, 0.15);
}

.timeline-track > span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--gold);
}

.timeline-item {
  position: relative;
  min-height: 240px;
  padding: 6px 0 74px;
}

.timeline-item:last-child {
  min-height: 160px;
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  top: 9px;
  left: -62px;
  width: 22px;
  height: 22px;
  background: var(--night);
  border: 5px solid var(--gold);
  border-radius: 50%;
}

.timeline-item > p {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
}

.timeline-item h3 {
  margin: 0 0 14px;
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 2.15rem;
  letter-spacing: 0;
}

.timeline-item > span:last-child {
  color: rgba(255, 255, 255, 0.65);
}

.wish-section {
  background: #e8eee9;
}

.wish-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(480px, 1.2fr);
  gap: 7vw;
  align-items: center;
  max-width: var(--content);
  margin: 0 auto;
}

.wish-copy > p:nth-of-type(2) {
  color: var(--ink-soft);
}

.wish-bottle {
  position: relative;
  width: 200px;
  height: 260px;
  margin: 54px auto 0;
}

.bottle-glass {
  position: absolute;
  right: 16px;
  bottom: 0;
  left: 16px;
  height: 210px;
  border: 3px solid rgba(75, 111, 98, 0.62);
  border-radius: 40% 40% 30% 30%;
  box-shadow: inset 18px 0 0 rgba(255, 255, 255, 0.22), 0 24px 50px rgba(41, 70, 59, 0.13);
}

.bottle-glass::before {
  position: absolute;
  top: -45px;
  left: 50%;
  width: 70px;
  height: 56px;
  content: "";
  border: 3px solid rgba(75, 111, 98, 0.62);
  border-bottom: 0;
  transform: translateX(-50%);
}

.bottle-cork {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  width: 62px;
  height: 36px;
  background: #a77753;
  border-radius: 4px;
  transform: translateX(-50%);
}

.bottle-glow {
  position: absolute;
  right: 43px;
  bottom: 34px;
  left: 43px;
  height: 80px;
  background: rgba(242, 188, 97, 0.24);
  border-radius: 50%;
  filter: blur(16px);
  animation: bottle-glow 2.8s ease-in-out infinite alternate;
}

.bottle-star {
  position: absolute;
  z-index: 2;
  width: 9px;
  height: 9px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--gold);
  animation: star-float 3s ease-in-out infinite;
}

.star-one { right: 59px; bottom: 63px; }
.star-two { bottom: 109px; left: 56px; animation-delay: -1s; }
.star-three { right: 88px; bottom: 143px; animation-delay: -2s; }

.wish-panel {
  padding: 40px;
  background: var(--white);
  border-top: 4px solid var(--leaf);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.wish-form label {
  display: block;
  margin-bottom: 10px;
  font-weight: 800;
}

.wish-form textarea {
  display: block;
  width: 100%;
  min-height: 112px;
  padding: 15px 16px;
  color: var(--ink);
  resize: vertical;
  background: #f5f7f4;
  border: 1px solid rgba(32, 39, 36, 0.24);
  border-radius: 4px;
}

.wish-form textarea:focus {
  border-color: var(--leaf);
  outline: 3px solid rgba(73, 107, 82, 0.16);
}

.wish-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 15px;
}

.char-count {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.wish-submit {
  min-width: 158px;
  background: var(--leaf-deep);
}

.wish-submit:hover {
  background: var(--leaf);
}

.form-status {
  min-height: 1.6em;
  margin: 9px 0 0;
  color: var(--lychee-deep);
  font-size: 0.78rem;
}

.wish-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 22px 0 12px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.wish-list-header h3 {
  margin: 0;
  font-size: 1rem;
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 0;
  color: var(--ink-soft);
  background: transparent;
  cursor: pointer;
}

.text-button:hover {
  color: var(--lychee-deep);
}

.wish-list {
  display: grid;
  gap: 9px;
  max-height: 260px;
  overflow: auto;
}

.wish-empty {
  margin: 0;
  padding: 20px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  text-align: center;
  background: #f5f7f4;
  border: 1px dashed rgba(32, 39, 36, 0.22);
  border-radius: 4px;
}

.wish-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 14px;
  padding: 14px 15px;
  background: #f5f7f4;
  border-left: 3px solid var(--gold);
  border-radius: 4px;
}

.wish-item p {
  grid-column: 1 / -1;
  margin: 0;
  overflow-wrap: anywhere;
}

.wish-item time {
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.wish-delete {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  color: var(--ink-soft);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
}

.wish-delete:hover {
  color: var(--lychee-deep);
  background: rgba(189, 60, 75, 0.08);
}

.closing-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 570px;
  padding: 100px var(--page-pad);
  color: var(--white);
  text-align: center;
  background: #7f3440;
  overflow: hidden;
}

.closing-section::before,
.closing-section::after {
  position: absolute;
  width: 260px;
  height: 260px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.closing-section::before { top: -70px; left: -80px; }
.closing-section::after { right: -100px; bottom: -90px; width: 340px; height: 340px; }

.closing-section .eyebrow {
  color: var(--gold-soft);
}

.closing-section > p:not(.eyebrow) {
  margin: 20px 0 34px;
  opacity: 0.8;
}

.closing-symbol {
  position: relative;
  width: 86px;
  height: 78px;
  margin-bottom: 25px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: filter 180ms ease, transform 180ms ease;
}

.closing-symbol:hover {
  filter: drop-shadow(0 0 18px rgba(255, 224, 163, 0.42));
  transform: translateY(-3px);
}

.closing-symbol.is-tapped {
  animation: secret-tap 360ms ease;
}

.closing-lychee {
  position: absolute;
  bottom: 0;
  left: 10px;
  width: 62px;
  height: 62px;
  background: #d95865;
  border: 4px dotted #f38d96;
  border-radius: 50%;
}

.closing-leaf {
  position: absolute;
  top: 2px;
  right: 3px;
  width: 45px;
  height: 25px;
  background: #7ca276;
  border-radius: 100% 0 100% 0;
  transform: rotate(-17deg);
}

.back-top {
  color: var(--white);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 var(--page-pad);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
  background: #4a242a;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-meta a {
  text-underline-offset: 4px;
  text-decoration-color: transparent;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.footer-meta a:hover,
.footer-meta a:focus-visible {
  color: var(--white);
  text-decoration-color: currentColor;
}

.easter-open {
  overflow: hidden;
}

.easter-egg {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 28px;
  color: var(--white);
  background: rgba(22, 31, 29, 0.97);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transition: opacity 480ms ease, visibility 480ms ease;
}

.easter-egg[hidden] {
  display: none;
}

.easter-egg.is-open {
  opacity: 1;
  visibility: visible;
}

.easter-dialog {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: min(760px, 100%);
  min-height: 520px;
  text-align: center;
  outline: 0;
}

.easter-close {
  position: fixed;
  top: 24px;
  right: 24px;
  color: rgba(255, 255, 255, 0.82);
}

.easter-overline {
  margin: 0 0 24px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
}

.easter-name {
  display: flex;
  gap: 28px;
  margin: 0;
  color: var(--gold-soft);
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 7rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 0 28px rgba(242, 188, 97, 0.28);
}

.easter-name span {
  display: inline-block;
}

.easter-line {
  width: 72px;
  height: 1px;
  margin: 34px 0 28px;
  background: var(--gold);
}

.easter-message {
  margin: 0;
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 1.55rem;
}

.easter-signature {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
}

.easter-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.easter-star {
  position: absolute;
  top: var(--star-y);
  left: var(--star-x);
  width: 4px;
  height: 4px;
  background: var(--gold-soft);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255, 224, 163, 0.62);
  opacity: 0;
  animation: secret-star 2.8s var(--star-delay) ease-in-out infinite;
  transform: scale(var(--star-scale));
}

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  z-index: 200;
  max-width: calc(100vw - 32px);
  padding: 10px 15px;
  color: var(--white);
  font-size: 0.8rem;
  text-align: center;
  background: rgba(32, 39, 36, 0.94);
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 15px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.noscript-note {
  position: fixed;
  right: 12px;
  bottom: 12px;
  z-index: 300;
  max-width: 360px;
  margin: 0;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
}

@keyframes twinkle {
  from { opacity: 0.25; transform: scale(0.6); }
  to { opacity: 1; transform: scale(1.25); }
}

@keyframes secret-tap {
  0%, 100% { transform: translateY(0) scale(1); }
  45% { transform: translateY(-5px) scale(1.08); }
}

@keyframes secret-star {
  0%, 100% { opacity: 0.12; transform: scale(0.45); }
  50% { opacity: 0.9; transform: scale(var(--star-scale)); }
}

@keyframes window-glow {
  from { box-shadow: 0 0 32px rgba(242, 188, 97, 0.48); }
  to { box-shadow: 0 0 58px rgba(242, 188, 97, 0.82); }
}

@keyframes mascot-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

@keyframes leaf-drift {
  0%, 100% { transform: translate(0, 0) rotate(10deg); }
  50% { transform: translate(24px, -18px) rotate(90deg); }
}

@keyframes nudge-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@keyframes orbit-pulse {
  0%, 100% { transform: rotate(0deg) scale(0.92); }
  50% { transform: rotate(180deg) scale(1.05); }
}

@keyframes bottle-glow {
  from { opacity: 0.55; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1.12); }
}

@keyframes star-float {
  0%, 100% { transform: translateY(4px) scale(0.8); opacity: 0.55; }
  50% { transform: translateY(-9px) scale(1.15); opacity: 1; }
}

@media (max-width: 1040px) {
  :root {
    --page-pad: 4.5vw;
  }

  .site-nav {
    gap: 18px;
  }

  .hero {
    height: 760px;
  }

  .hero h1 {
    font-size: 4.4rem;
  }

  .house {
    right: 10%;
    transform: scale(0.82);
    transform-origin: bottom right;
  }

  .tree {
    right: -4%;
    transform: scale(0.86);
    transform-origin: bottom;
  }

  .mascot {
    right: 36%;
  }

  .daily-strip {
    grid-template-columns: 1fr;
  }

  .daily-intro {
    padding: 32px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .season-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .season-card {
    min-height: 390px;
  }

  .growth-section,
  .wish-shell {
    gap: 6vw;
  }
}

@media (max-width: 800px) {
  :root {
    --header-h: 66px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    padding-right: 16px;
    padding-left: 16px;
  }

  .brand-text {
    display: none;
  }

  .site-nav {
    justify-content: flex-start;
    margin: 0 14px;
    padding: 0 4px;
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .nav-link {
    font-size: 0.78rem;
  }

  .hero {
    min-height: 760px;
    height: 92vh;
    max-height: 860px;
  }

  .hero-copy {
    justify-content: flex-start;
    width: 100%;
    padding-top: 142px;
    padding-right: var(--page-pad);
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .moon {
    top: 18%;
    right: 8%;
    width: 78px;
    height: 78px;
  }

  .moon::after {
    width: 78px;
    height: 78px;
  }

  .house {
    right: 3%;
    bottom: 12%;
    transform: scale(0.72);
  }

  .tree {
    right: -13%;
    bottom: 7%;
    transform: scale(0.72);
  }

  .mascot {
    right: 45%;
    bottom: 6%;
    transform: scale(0.82);
  }

  .hero-corner-note {
    display: none;
  }

  .daily-strip {
    margin-top: -24px;
  }

  .section-pad {
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .growth-section,
  .wish-shell {
    grid-template-columns: 1fr;
  }

  .growth-section {
    gap: 72px;
  }

  .growth-copy {
    position: static;
  }

  .wish-shell {
    gap: 50px;
  }

  .wish-copy {
    text-align: center;
  }

  .wish-bottle {
    margin-top: 36px;
  }
}

@media (max-width: 560px) {
  :root {
    --page-pad: 20px;
  }

  .brand-mark {
    width: 31px;
    height: 31px;
  }

  .site-nav {
    gap: 16px;
  }

  .light-toggle {
    width: 38px;
    height: 38px;
  }

  .hero {
    height: 760px;
    min-height: 760px;
  }

  .hero-copy {
    padding-top: 126px;
    padding-bottom: 250px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-lead {
    margin: 18px 0 26px;
  }

  .house {
    right: -56px;
    bottom: 8%;
    transform: scale(0.63);
  }

  .tree {
    right: -94px;
    bottom: 3%;
    transform: scale(0.63);
  }

  .mascot {
    right: auto;
    bottom: 5%;
    left: 30%;
    transform: scale(0.72);
  }

  .daily-strip {
    width: calc(100% - 28px);
  }

  .daily-intro {
    padding: 28px 24px;
  }

  .daily-intro h2,
  .section-heading h2,
  .growth-copy h2,
  .wish-copy h2,
  .closing-section h2 {
    font-size: 2.2rem;
  }

  .daily-words {
    grid-template-columns: 1fr;
  }

  .daily-word {
    display: grid;
    grid-template-columns: 38px 1fr;
    padding: 20px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .daily-word:last-child {
    border-bottom: 0;
  }

  .daily-word svg {
    grid-row: 1 / 3;
    align-self: center;
    margin: 0;
  }

  .daily-word small {
    margin-top: 0;
  }

  .section-heading {
    margin-bottom: 40px;
    text-align: left;
  }

  .season-grid {
    grid-template-columns: 1fr;
  }

  .season-card {
    min-height: 360px;
  }

  .season-visual {
    height: 170px;
  }

  .timeline {
    padding-left: 50px;
  }

  .timeline-dot {
    left: -48px;
  }

  .timeline-item h3 {
    font-size: 1.8rem;
  }

  .wish-panel {
    padding: 26px 20px;
  }

  .wish-form-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .wish-submit {
    width: 100%;
  }

  .closing-section {
    min-height: 500px;
  }

  .easter-egg {
    padding: 20px;
  }

  .easter-dialog {
    min-height: 430px;
  }

  .easter-close {
    top: 16px;
    right: 16px;
  }

  .easter-name {
    gap: 18px;
    font-size: 4.5rem;
  }

  .easter-message {
    font-size: 1.28rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
  }

  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
