:root {
  color-scheme: light;
  --cream: #fff9ec;
  --paper: #fffef8;
  --ink: #252018;
  --muted: #746b5d;
  --moss: #4f7c55;
  --leaf: #8eac72;
  --sun: #efbe35;
  --wine: #9d493f;
  --sail: #315f7d;
  --coffee: #8b6b4f;
  --line: rgba(37, 32, 24, 0.14);
  --shadow: 0 22px 60px rgba(69, 55, 35, 0.16);
  --handwriting: "HanziPen SC", "Xingkai SC", "STXingkai", "Kaiti SC", "KaiTi",
    "STKaiti", "楷体", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 6%, rgba(239, 190, 53, 0.24), transparent 20rem),
    radial-gradient(circle at 88% 34%, rgba(142, 172, 114, 0.24), transparent 24rem),
    linear-gradient(180deg, #fff9ec 0%, #fffdf5 48%, #eef6e8 100%);
  color: var(--ink);
  font-family:
    -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC",
    sans-serif;
  letter-spacing: 0;
}

button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.share-preview-image {
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
  width: 300px;
  height: 300px;
  object-fit: cover;
  opacity: 0.001;
  pointer-events: none;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.14;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.55) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.42) 1px, transparent 1px);
  background-size: 20px 20px;
  mix-blend-mode: soft-light;
}

.hero {
  position: relative;
  min-height: 98svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 5.5rem clamp(1rem, 4vw, 3rem) 4rem;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__shade {
  background:
    linear-gradient(180deg, rgba(255, 249, 236, 0.12) 0%, rgba(255, 249, 236, 0.46) 54%, var(--cream) 100%),
    radial-gradient(circle at 50% 43%, rgba(255, 254, 248, 0.74), transparent 24rem);
}

.dock {
  position: fixed;
  top: 1rem;
  left: 50%;
  z-index: 15;
  display: flex;
  gap: 0.25rem;
  width: min(28rem, calc(100% - 2rem));
  transform: translateX(-50%);
  padding: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(255, 254, 248, 0.78);
  box-shadow: 0 12px 34px rgba(37, 32, 24, 0.12);
  backdrop-filter: blur(18px);
}

.dock a {
  flex: 1;
  min-width: 0;
  padding: 0.55rem 0.5rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
}

.dock a:hover {
  background: var(--ink);
  color: var(--paper);
}

.audio-toggle {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 16;
  display: grid;
  width: 3.1rem;
  height: 3.1rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 50%;
  background: rgba(255, 254, 248, 0.86);
  box-shadow: 0 12px 30px rgba(37, 32, 24, 0.15);
  color: var(--moss);
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  backdrop-filter: blur(16px);
}

.audio-toggle::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 2rem;
  border-radius: 999px;
  background: var(--wine);
  opacity: 0;
  transform: rotate(42deg);
  transition: opacity 160ms ease;
}

.audio-toggle.is-muted {
  color: var(--muted);
}

.audio-toggle.is-muted::after {
  opacity: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(45rem, 100%);
  margin: 0 auto;
  text-align: center;
}

.stamp,
.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0.5rem auto 0;
  max-width: 38rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2.2rem, 7.4vw, 4.85rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero__subtitle {
  margin: 1.35rem 0 0;
  color: var(--moss);
  font-size: clamp(1.15rem, 3vw, 1.55rem);
  font-weight: 900;
}

.hero__copy {
  width: min(34rem, 100%);
  margin: 0.8rem auto 0;
  color: #4b4338;
  font-size: clamp(1rem, 2.4vw, 1.18rem);
  line-height: 1.75;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  max-width: 100%;
  padding: 0.82rem 1.18rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  text-align: center;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(37, 32, 24, 0.13);
}

.button:disabled {
  cursor: default;
  opacity: 0.82;
}

.button--primary {
  margin-top: 1.4rem;
  background: var(--moss);
  border-color: var(--moss);
  color: #fff;
}

.button--ghost {
  background: rgba(255, 254, 248, 0.74);
  color: var(--ink);
}

.paper-boat {
  position: relative;
  width: min(17.2rem, 70vw);
  height: 11.2rem;
  margin: 0 auto 0.6rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  filter: drop-shadow(0 20px 28px rgba(49, 95, 125, 0.22));
  animation: sailIn 1.3s cubic-bezier(0.2, 0.8, 0.2, 1) both, floatBoat 4s ease-in-out 1.35s infinite;
}

.paper-boat::before,
.paper-boat::after {
  content: "";
  position: absolute;
  left: 0.3rem;
  right: 0.3rem;
  bottom: 0.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 18% 40%, rgba(49, 95, 125, 0.36) 0 16%, transparent 17%),
    radial-gradient(ellipse at 48% 48%, rgba(49, 95, 125, 0.26) 0 18%, transparent 19%),
    radial-gradient(ellipse at 78% 42%, rgba(49, 95, 125, 0.32) 0 15%, transparent 16%);
  opacity: 0.62;
  animation: waveDrift 2.9s ease-in-out infinite;
}

.paper-boat::after {
  bottom: -0.28rem;
  opacity: 0.36;
  transform: scaleX(0.9);
  animation-delay: 1.15s;
}

.paper-boat__sail,
.paper-boat__body {
  position: absolute;
  display: block;
}

.paper-boat__sail--left {
  left: 2.55rem;
  top: 0.35rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 6.95rem 6.35rem;
  border-color: transparent transparent #fffef8 transparent;
  transform-origin: right bottom;
  transition: transform 600ms ease;
}

.paper-boat__sail--right {
  right: 2.65rem;
  top: 1.05rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6.35rem 5.85rem 0 0;
  border-color: #f8e8c1 transparent transparent transparent;
  transform-origin: left bottom;
  transition: transform 600ms ease;
}

.paper-boat__body {
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.25rem;
  height: 2.95rem;
  background: linear-gradient(135deg, #f6f0df, #fffef8 56%, #e7d4ae);
  clip-path: polygon(0 0, 100% 0, 78% 100%, 22% 100%);
  border-bottom: 2px solid rgba(49, 95, 125, 0.2);
  transition: transform 600ms ease;
}

.sunflower-badge {
  position: absolute;
  right: 1.95rem;
  top: 1.1rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background:
    radial-gradient(circle, #6b4b2f 0 27%, transparent 29%),
    repeating-conic-gradient(from 8deg, var(--sun) 0 12deg, #ffd75b 12deg 23deg, transparent 23deg 31deg);
}

.paper-boat.is-open .paper-boat__sail--left {
  transform: rotate(-16deg) translate(-0.2rem, 0.15rem);
}

.paper-boat.is-open .paper-boat__sail--right {
  transform: rotate(16deg) translate(0.2rem, 0.12rem);
}

.paper-boat.is-open .paper-boat__body {
  transform: translateY(0.45rem) scaleX(1.08);
}

@keyframes sailIn {
  from {
    opacity: 0;
    transform: translate(-42vw, -10vh) rotate(-9deg) scale(0.72);
  }
  to {
    opacity: 1;
    transform: translate(0, 0) rotate(0) scale(1);
  }
}

@keyframes floatBoat {
  0%,
  100% {
    transform: translateY(0) translateX(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-0.62rem) translateX(0.35rem) rotate(1.5deg);
  }
}

@keyframes waveDrift {
  0%,
  100% {
    transform: translateX(-0.35rem) scaleX(0.92);
  }
  50% {
    transform: translateX(0.35rem) scaleX(1.04);
  }
}

.section {
  width: min(68rem, 100%);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 4vw, 2rem);
}

.section__heading {
  margin-bottom: 1.4rem;
}

.section__heading h2,
.paper h2,
.song-card h2,
.ticket h2 {
  margin: 0;
  font-size: clamp(1.9rem, 5vw, 3.3rem);
  line-height: 1.15;
}

.section-title--compact {
  font-size: clamp(1.45rem, 3.8vw, 2.35rem) !important;
}

.section__heading > p:not(.eyebrow) {
  max-width: 48rem;
  color: var(--muted);
  line-height: 1.8;
}

.paper {
  position: relative;
  max-width: 48rem;
  margin: 0 auto;
  padding: clamp(1.5rem, 5vw, 3rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(79, 124, 85, 0.055) 1px, transparent 1px),
    linear-gradient(#fffef8, #fffdf4);
  background-size: 2.2rem 2.2rem, auto;
  box-shadow: var(--shadow);
  transform: rotate(-0.55deg) scaleY(0.96);
  transform-origin: top center;
}

.paper::before {
  content: "";
  position: absolute;
  top: -0.85rem;
  left: 13%;
  width: 6.8rem;
  height: 1.55rem;
  background: rgba(239, 190, 53, 0.65);
  transform: rotate(-4deg);
}

.paper::after {
  content: "";
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
  width: 3.4rem;
  height: 3.4rem;
  opacity: 0.95;
  border-radius: 50%;
  background:
    radial-gradient(circle, #6b4b2f 0 25%, transparent 27%),
    repeating-conic-gradient(var(--sun) 0 13deg, #ffd75b 13deg 24deg, transparent 24deg 32deg);
}

.paper.is-opened {
  animation: unfoldPaper 850ms cubic-bezier(0.22, 0.7, 0.2, 1) both;
}

@keyframes unfoldPaper {
  from {
    opacity: 0.45;
    transform: rotate(-0.55deg) translateY(-1.8rem) scaleY(0.3);
  }
  to {
    opacity: 1;
    transform: rotate(-0.55deg) translateY(0) scaleY(1);
  }
}

.letter-poem {
  display: grid;
  gap: 1.05rem;
  margin-top: 1.4rem;
  font-family: var(--handwriting);
  font-style: italic;
}

.letter-poem p,
.paper p {
  margin: 0.35rem 0;
  color: #3f382f;
  font-size: clamp(1rem, 2.4vw, 1.1rem);
  line-height: 1.95;
}

.letter-poem p {
  margin: 0;
}

.signature {
  margin-top: 1.05rem;
  color: var(--ink);
  font-family: var(--handwriting);
  font-size: 1.55rem;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: right;
}

.timeline {
  position: relative;
  display: grid;
  gap: 1rem;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  bottom: 1.5rem;
  left: 7.25rem;
  width: 2px;
  background: linear-gradient(var(--sun), var(--moss), var(--sail));
}

.event,
.tile,
.song-card,
.ticket,
.request-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 254, 248, 0.82);
  box-shadow: 0 16px 42px rgba(69, 55, 35, 0.11);
  backdrop-filter: blur(10px);
}

.event {
  position: relative;
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1.4rem;
  padding: 1.2rem;
}

.event::before {
  content: "";
  position: absolute;
  top: 1.55rem;
  left: 6.93rem;
  width: 0.78rem;
  height: 0.78rem;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 0 1px rgba(37, 32, 24, 0.18);
}

.event:nth-child(2)::before {
  background: var(--moss);
}

.event time {
  color: var(--wine);
  font-weight: 950;
}

.event h3,
.tile h3 {
  margin: 0;
  font-size: 1.18rem;
}

.event ul {
  display: grid;
  gap: 0.55rem;
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
}

.event li {
  display: grid;
  grid-template-columns: 7.3rem 1fr;
  gap: 0.65rem;
  color: #40382f;
  line-height: 1.5;
}

.event li span {
  color: var(--sail);
  font-weight: 900;
}

.special {
  margin: 1rem 0 0;
  padding: 0.8rem 0.9rem;
  border-left: 4px solid var(--sun);
  background: rgba(239, 190, 53, 0.12);
  color: #5a503f;
  font-family: "Kaiti SC", "STKaiti", "KaiTi", serif;
  font-size: 0.92rem;
  line-height: 1.75;
}

.song-card {
  position: relative;
  max-width: 50rem;
  margin: 0 auto;
  padding: clamp(1.4rem, 5vw, 3rem);
  overflow: hidden;
}

.song-card::after {
  content: "♪";
  position: absolute;
  right: clamp(1rem, 5vw, 3rem);
  bottom: -2rem;
  color: rgba(49, 95, 125, 0.14);
  font-size: 12rem;
  font-weight: 900;
  line-height: 1;
}

.song-card > * {
  position: relative;
  z-index: 1;
}

.song-card p,
.tile p,
.ticket p {
  color: var(--muted);
  line-height: 1.75;
}

.chorus-paper {
  width: min(100%, 34rem);
  margin-top: 1.2rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(37, 32, 24, 0.12);
  border-left: 3px solid var(--wine);
  border-radius: 8px;
  background:
    linear-gradient(rgba(49, 95, 125, 0.12) 1px, transparent 1px),
    rgba(255, 254, 248, 0.78);
  background-size: 100% 1.72rem;
  box-shadow: 0 12px 26px rgba(69, 55, 35, 0.1);
}

.chorus-paper p {
  margin: 0;
}

.chorus-paper p + p {
  margin-top: 0.48rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.chorus-line {
  color: var(--ink) !important;
  font-family: var(--handwriting);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 900;
}

.song-card__note,
.form-message {
  min-height: 1.7rem;
  margin-bottom: 0;
  color: var(--moss);
  font-weight: 900;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.tile {
  min-height: 13.5rem;
  padding: 1.25rem;
}

.tile--wide {
  grid-column: span 3;
  min-height: 0;
}

.tile--map {
  grid-column: span 2;
}

.inline-link {
  color: var(--sail);
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.map-card {
  position: relative;
  display: grid;
  min-height: 13.4rem;
  margin-top: 1rem;
  overflow: hidden;
  border: 1px solid rgba(37, 32, 24, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(ellipse at 18% 78%, rgba(49, 95, 125, 0.2) 0 14%, transparent 15%),
    radial-gradient(ellipse at 88% 20%, rgba(142, 172, 114, 0.32) 0 18%, transparent 19%),
    linear-gradient(90deg, rgba(49, 95, 125, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(79, 124, 85, 0.12) 1px, transparent 1px),
    radial-gradient(circle at 50% 48%, rgba(239, 190, 53, 0.22), transparent 5rem),
    rgba(255, 254, 248, 0.84);
  background-size: auto, auto, 1.5rem 1.5rem, 1.5rem 1.5rem, auto, auto;
}

.map-card::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 10%;
  top: 54%;
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(255, 254, 248, 0.82);
  box-shadow: 0 0 0 1px rgba(37, 32, 24, 0.09);
  transform: rotate(-7deg);
}

.map-card__water {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  width: 7.2rem;
  height: 4.2rem;
  padding-top: 1.45rem;
  border-radius: 48% 52% 45% 55%;
  background: rgba(49, 95, 125, 0.18);
  color: var(--sail);
  font-size: 0.78rem;
  font-weight: 950;
  text-align: center;
}

.map-card__area {
  position: absolute;
  z-index: 1;
  color: rgba(37, 32, 24, 0.62);
  font-size: 0.76rem;
  font-weight: 950;
}

.map-card__area--venue {
  left: 1.1rem;
  top: 1rem;
}

.map-card__area--wenjiang {
  right: 1.05rem;
  top: 1rem;
}

.map-card__road,
.map-card__route {
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  pointer-events: none;
}

.map-card__road--main {
  left: 7%;
  right: 8%;
  top: 38%;
  height: 0.38rem;
  background: rgba(139, 107, 79, 0.34);
  transform: rotate(12deg);
}

.map-card__road--side {
  left: 18%;
  right: 22%;
  bottom: 24%;
  height: 0.3rem;
  background: rgba(139, 107, 79, 0.24);
  transform: rotate(-18deg);
}

.map-card__route {
  left: 34%;
  right: 30%;
  top: 48%;
  height: 0.24rem;
  background: repeating-linear-gradient(90deg, var(--wine) 0 0.7rem, transparent 0.7rem 1.05rem);
  transform: rotate(-7deg);
}

.map-card__venue {
  position: absolute;
  left: 50%;
  top: 45%;
  z-index: 2;
  display: grid;
  width: min(15rem, calc(100% - 2rem));
  justify-items: center;
  gap: 0.24rem;
  transform: translate(-50%, -50%);
  text-align: center;
}

.map-card__pin {
  position: relative;
  display: grid;
  width: 3.15rem;
  height: 3.15rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 254, 248, 0.9);
  box-shadow: 0 16px 28px rgba(69, 55, 35, 0.14);
  font-size: 1.4rem;
}

.map-card__venue strong {
  padding: 0.28rem 0.58rem;
  border-radius: 999px;
  background: rgba(255, 254, 248, 0.92);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 950;
  box-shadow: 0 8px 20px rgba(69, 55, 35, 0.12);
}

.map-card__venue em {
  color: var(--muted);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 900;
}

.map-card__label {
  position: absolute;
  right: 0.8rem;
  bottom: 0.75rem;
  z-index: 1;
  padding: 0.35rem 0.62rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 900;
}

.distance-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.distance-list p {
  display: flex;
  justify-content: space-between;
  gap: 0.85rem;
  margin: 0;
  padding-bottom: 0.45rem;
  border-bottom: 1px dashed rgba(37, 32, 24, 0.14);
}

.distance-list strong {
  color: var(--sail);
  font-size: 0.92rem;
  white-space: nowrap;
}

.attractions {
  margin-top: 1rem;
  padding: clamp(1.2rem, 4vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 254, 248, 0.92), rgba(246, 240, 223, 0.76)),
    var(--paper);
  box-shadow: 0 16px 42px rgba(69, 55, 35, 0.1);
}

.attractions__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px dashed rgba(37, 32, 24, 0.16);
  padding-bottom: 0.9rem;
}

.attractions__heading h3 {
  margin: 0;
  font-size: clamp(1.25rem, 3vw, 1.8rem);
}

.attractions__heading .eyebrow {
  margin: 0;
}

.attractions__groups {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
}

.attractions__credit {
  margin: 0.85rem 0 0;
  color: rgba(37, 32, 24, 0.46);
  font-size: 0.72rem;
  text-align: right;
}

.attraction-group {
  padding: 1rem;
  border: 1px solid rgba(37, 32, 24, 0.11);
  border-radius: 8px;
  background: rgba(255, 254, 248, 0.66);
}

.attraction-group h4 {
  margin: 0 0 0.85rem;
  color: var(--wine);
  font-size: 1rem;
}

.attraction-cards {
  display: grid;
  gap: 0.8rem;
}

.attraction-card {
  display: grid;
  grid-template-columns: 7.4rem 1fr;
  gap: 0.85rem;
  align-items: stretch;
  min-height: 7.4rem;
  padding: 0.62rem;
  border: 1px solid rgba(37, 32, 24, 0.1);
  border-radius: 8px;
  background: rgba(255, 254, 248, 0.66);
}

.attraction-card img {
  width: 100%;
  height: 100%;
  min-height: 6.2rem;
  border-radius: 7px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(69, 55, 35, 0.1);
}

.attraction-card div {
  display: grid;
  align-content: center;
  gap: 0.28rem;
  min-width: 0;
}

.attraction-card h5,
.attraction-card p {
  margin: 0;
}

.attraction-card h5 {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.35;
}

.attraction-card h5,
.attraction-card strong {
  font-weight: 950;
}

.attraction-card strong {
  color: var(--sail);
  font-size: 0.88rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.attraction-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.62;
  overflow-wrap: anywhere;
}

.icon {
  display: inline-grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line);
}

.tile__label {
  margin: 1rem 0 0.35rem;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
}

.swatches {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.swatches span {
  width: 3.1rem;
  height: 3.1rem;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--swatch);
  box-shadow:
    0 0 0 1px rgba(37, 32, 24, 0.16),
    0 8px 18px rgba(69, 55, 35, 0.12);
}

.request-form {
  display: grid;
  gap: 1rem;
  max-width: 47rem;
  padding: clamp(1.2rem, 4vw, 2rem);
}

.netlify-hidden {
  display: none;
}

.request-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-weight: 900;
}

.request-form input,
.request-form textarea,
.request-form select {
  width: 100%;
  min-height: 3rem;
  border: 1px solid rgba(37, 32, 24, 0.18);
  border-radius: 8px;
  background: #fff;
  padding: 0.9rem 1rem;
  color: var(--ink);
  outline: none;
}

.request-form textarea {
  resize: vertical;
}

.request-form input:focus,
.request-form textarea:focus,
.request-form select:focus {
  border-color: var(--moss);
  box-shadow: 0 0 0 3px rgba(79, 124, 85, 0.14);
}

.check-row {
  display: flex !important;
  grid-template-columns: none;
  align-items: center;
  gap: 0.7rem !important;
}

.check-row input {
  width: 1.1rem;
  min-height: 1.1rem;
  accent-color: var(--moss);
}

.record-drop {
  position: relative;
}

.record-drop::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: 1.1rem;
  z-index: 0;
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #fff 0 8%, var(--sun) 9% 16%, #202020 17% 62%, #111 63% 100%);
  box-shadow: 0 12px 24px rgba(37, 32, 24, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(0, 0) rotate(-18deg) scale(0.78);
}

.record-drop.is-dropping::before {
  animation: recordDrop 720ms cubic-bezier(0.25, 0.85, 0.25, 1) both;
}

.record-drop__slot {
  position: absolute;
  z-index: 1;
  top: 1.15rem;
  right: 1.15rem;
  width: 5.3rem;
  height: 5.3rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #fff 0 9%, var(--sail) 10% 20%, #222 21% 58%, #111 59% 100%);
  box-shadow: 0 14px 28px rgba(37, 32, 24, 0.12);
  transform: rotate(-10deg);
}

.record-drop__slot span {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: -0.55rem;
  height: 0.35rem;
  border-radius: 999px;
  background: var(--coffee);
}

.record-drop > label,
.record-drop > button,
.record-drop > .form-message,
.record-drop > .netlify-hidden {
  position: relative;
  z-index: 2;
}

@keyframes recordDrop {
  0% {
    opacity: 0;
    transform: translate(0, 0) rotate(-18deg) scale(0.78);
  }
  18% {
    opacity: 1;
  }
  70% {
    opacity: 1;
    transform: translate(calc(100% + 22rem), 4rem) rotate(405deg) scale(0.88);
  }
  100% {
    opacity: 0;
    transform: translate(calc(100% + 26rem), 4.65rem) rotate(480deg) scale(0.18);
  }
}

.confetti-burst {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.confetti-burst span {
  position: absolute;
  left: 0;
  top: 0;
  width: 0.42rem;
  height: 0.72rem;
  border-radius: 0.12rem;
  background: var(--sun);
  opacity: 0;
  transform: rotate(var(--angle)) translateY(0);
  animation: confettiPop 900ms ease-out var(--delay) forwards;
}

.confetti-burst span:nth-child(3n) {
  background: var(--moss);
}

.confetti-burst span:nth-child(3n + 1) {
  background: var(--wine);
}

.confetti-burst span:nth-child(4n) {
  background: var(--sail);
}

@keyframes confettiPop {
  0% {
    opacity: 0;
    transform: rotate(var(--angle)) translateY(0) scale(0.5);
  }
  18% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(var(--angle)) translateY(calc(-1 * var(--distance))) rotate(180deg) scale(1);
  }
}

.rsvp-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.85fr);
  gap: 1rem;
  align-items: start;
}

.ticket {
  position: sticky;
  top: 5rem;
  min-height: 27rem;
  overflow: hidden;
  padding: clamp(1.35rem, 4vw, 2.1rem);
  border: 2px solid rgba(37, 32, 24, 0.72);
  border-radius: 8px;
  background:
    radial-gradient(circle at 1.15rem 1.15rem, transparent 0 0.36rem, rgba(37, 32, 24, 0.18) 0.38rem 0.42rem, transparent 0.44rem),
    radial-gradient(circle at calc(100% - 1.15rem) 1.15rem, transparent 0 0.36rem, rgba(37, 32, 24, 0.18) 0.38rem 0.42rem, transparent 0.44rem),
    radial-gradient(circle at 1.15rem calc(100% - 1.15rem), transparent 0 0.36rem, rgba(37, 32, 24, 0.18) 0.38rem 0.42rem, transparent 0.44rem),
    radial-gradient(circle at calc(100% - 1.15rem) calc(100% - 1.15rem), transparent 0 0.36rem, rgba(37, 32, 24, 0.18) 0.38rem 0.42rem, transparent 0.44rem),
    linear-gradient(135deg, rgba(239, 190, 53, 0.18), transparent 35%),
    repeating-linear-gradient(0deg, rgba(37, 32, 24, 0.035) 0 1px, transparent 1px 0.52rem),
    rgba(255, 254, 248, 0.94);
}

.ticket::before,
.ticket::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  z-index: 0;
  height: 0.7rem;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(49, 95, 125, 0.34) 0 0.12rem, transparent 0.14rem)
      0 0 / 0.75rem 0.75rem repeat-x;
}

.ticket::before {
  top: 0.65rem;
}

.ticket::after {
  bottom: 0.65rem;
}

.ticket > * {
  position: relative;
  z-index: 1;
}

.ticket__header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-bottom: 1px dashed rgba(37, 32, 24, 0.32);
}

.ticket__header .eyebrow {
  margin-bottom: 0.7rem;
}

.ticket__header span {
  color: var(--sail);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.ticket h2 {
  margin-top: 1.05rem;
  font-size: clamp(1.75rem, 4.5vw, 2.6rem);
  text-transform: uppercase;
}

.ticket__route {
  margin: 0.65rem 0 0;
  color: var(--moss);
  font-size: 0.9rem;
  font-weight: 900;
}

.ticket dl {
  display: grid;
  gap: 0.75rem;
  margin: 1.35rem 0;
}

.ticket dl div {
  display: grid;
  gap: 0.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px dashed rgba(37, 32, 24, 0.18);
}

.ticket dt {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
}

.ticket dd {
  margin: 0;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.ticket__note {
  margin-bottom: 0;
  padding-top: 0.9rem;
  border-top: 2px solid rgba(37, 32, 24, 0.72);
  font-size: 0.95rem;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 820px) {
  .hero {
    min-height: 98svh;
    padding-top: 4.8rem;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.75rem);
  }

  .paper-boat {
    width: min(15.1rem, 74vw);
    height: 10.3rem;
  }

  .timeline::before {
    left: 1.45rem;
  }

  .event {
    grid-template-columns: 1fr;
    padding-left: 3rem;
  }

  .event::before {
    left: 1.05rem;
  }

  .event li {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }

  .info-grid,
  .rsvp-layout {
    grid-template-columns: 1fr;
  }

  .tile--wide {
    grid-column: auto;
  }

  .tile--map {
    grid-column: auto;
  }

  .distance-list p {
    display: grid;
    gap: 0.15rem;
  }

  .distance-list strong {
    white-space: normal;
  }

  .attractions__heading {
    display: grid;
    align-items: start;
  }

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

  .attraction-card {
    grid-template-columns: 5.4rem minmax(0, 1fr);
    gap: 0.62rem;
    align-items: start;
    min-height: 0;
    padding: 0.5rem;
  }

  .attraction-card img {
    width: 5.4rem;
    height: 5.4rem;
    aspect-ratio: auto;
    min-height: 0;
  }

  .attraction-card div {
    align-content: start;
    gap: 0.18rem;
  }

  .attraction-card h5 {
    font-size: 0.94rem;
  }

  .attraction-card strong {
    font-size: 0.78rem;
    line-height: 1.42;
  }

  .attraction-card p {
    font-size: 0.82rem;
    line-height: 1.52;
  }

  .ticket {
    position: relative;
    top: auto;
  }

  .record-drop__slot {
    position: relative;
    top: auto;
    right: auto;
    margin-left: auto;
  }

  .record-drop.is-dropping::before {
    animation-name: recordDropMobile;
  }

  .paper {
    transform: rotate(0) scaleY(0.96);
  }

  .paper.is-opened {
    animation-name: unfoldPaperMobile;
  }
}

@keyframes recordDropMobile {
  0% {
    opacity: 0;
    transform: translate(0, 0) rotate(-18deg) scale(0.78);
  }
  18% {
    opacity: 1;
  }
  72% {
    opacity: 1;
    transform: translate(calc(100vw - 8rem), 4.6rem) rotate(405deg) scale(0.88);
  }
  100% {
    opacity: 0;
    transform: translate(calc(100vw - 6rem), 5.1rem) rotate(480deg) scale(0.18);
  }
}

@keyframes unfoldPaperMobile {
  from {
    opacity: 0.45;
    transform: translateY(-1.8rem) scaleY(0.3);
  }
  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
