:root {
  --bg: #fffdf9;
  --bg-soft: #ffffff;
  --text: #75533c;
  --text-soft: rgba(117, 83, 60, 0.76);
  --accent: #d5b189;
  --accent-deep: #9a6e46;
  --accent-rich: #7f5a39;
  --cream: #faf2e7;
  --latte: #f2dfc7;
  --mocha: #c39a73;
  --white: #ffffff;
  --shadow-soft: 0 18px 44px rgba(167, 125, 83, 0.09);
  --shadow-card: 0 14px 28px rgba(171, 131, 91, 0.08);
  --radius-card: 32px;
  --ease-premium: cubic-bezier(0.32, 0.72, 0, 1);
  --max-width: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100dvh;
  font-family: "Nunito", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(245, 231, 211, 0.22), transparent 18%),
    radial-gradient(circle at 92% 22%, rgba(242, 223, 199, 0.18), transparent 16%),
    linear-gradient(180deg, #ffffff 0%, #fffdfa 50%, #fcf7f0 100%);
  color: var(--text);
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
}

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

button {
  font: inherit;
}

.page-cloud,
.page-stars {
  position: fixed;
  pointer-events: none;
  z-index: 0;
}

.page-cloud {
  --cloud-base-transform: none;
  width: 20rem;
  height: 8rem;
  background:
    radial-gradient(circle at 22% 65%, rgba(255, 255, 255, 0.92) 0 18%, transparent 19%),
    radial-gradient(circle at 42% 45%, rgba(255, 255, 255, 0.95) 0 22%, transparent 23%),
    radial-gradient(circle at 63% 60%, rgba(255, 255, 255, 0.92) 0 18%, transparent 19%),
    radial-gradient(circle at 78% 48%, rgba(255, 255, 255, 0.95) 0 16%, transparent 17%);
  opacity: 0.88;
  filter: blur(2px);
  animation: cloudDrift 16s var(--ease-premium) infinite alternate;
}

.page-cloud-left {
  top: 7rem;
  left: -2rem;
  --cloud-base-transform: rotate(-4deg);
  animation-duration: 18s;
}

.page-cloud-right {
  top: 18rem;
  right: -1rem;
  --cloud-base-transform: scale(0.9);
  animation-duration: 20s;
}

.page-cloud-center {
  top: 42rem;
  right: 12%;
  --cloud-base-transform: scale(0.72);
  opacity: 0.58;
  animation-duration: 22s;
}

.page-stars {
  inset: 0;
  opacity: 0.24;
  background-image:
    radial-gradient(circle at 14% 16%, rgba(199, 154, 107, 0.9) 0 2px, transparent 2.5px),
    radial-gradient(circle at 76% 11%, rgba(184, 142, 105, 0.7) 0 2px, transparent 2.5px),
    radial-gradient(circle at 82% 36%, rgba(199, 154, 107, 0.6) 0 1.5px, transparent 2px),
    radial-gradient(circle at 21% 40%, rgba(184, 142, 105, 0.7) 0 1.5px, transparent 2px);
  animation: twinkleGlow 7s ease-in-out infinite alternate;
}

.page-orbit {
  position: fixed;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.95) 0 22%, transparent 23%),
    linear-gradient(180deg, rgba(245, 231, 211, 0.94), rgba(220, 188, 151, 0.8));
  opacity: 0.58;
  box-shadow: 0 10px 22px rgba(191, 145, 100, 0.14);
  z-index: 0;
  pointer-events: none;
  animation: bubbleFloat 12s ease-in-out infinite;
}

.page-orbit-left {
  top: 30rem;
  left: 4%;
  animation-delay: -2s;
}

.page-orbit-right {
  top: 60rem;
  right: 6%;
  width: 3.2rem;
  height: 3.2rem;
  animation-delay: -5s;
}

.page-ribbon {
  position: fixed;
  width: 10rem;
  height: 10rem;
  border-radius: 999px;
  border: 1px solid rgba(213, 177, 137, 0.18);
  z-index: 0;
  pointer-events: none;
  opacity: 0.65;
  animation: ribbonSpin 22s linear infinite;
}

.page-ribbon::before,
.page-ribbon::after {
  content: "";
  position: absolute;
  inset: 1.1rem;
  border-radius: 999px;
  border: 1px dashed rgba(195, 154, 115, 0.22);
}

.page-ribbon::after {
  inset: 2.2rem;
}

.page-ribbon-left {
  top: 10rem;
  right: 5%;
}

.page-ribbon-right {
  bottom: 12rem;
  left: 4%;
  width: 7rem;
  height: 7rem;
  animation-direction: reverse;
}

.confetti-layer {
  position: fixed;
  inset: 0;
  z-index: 8;
  overflow: hidden;
  pointer-events: none;
}

.confetti-layer span {
  --x: 50vw;
  --size: 0.8rem;
  --fall-duration: 16s;
  --fall-delay: 0s;
  --drift: 3rem;
  position: absolute;
  top: -3rem;
  left: var(--x);
  width: var(--size);
  height: var(--size);
  border-radius: 999px;
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.9) 0 18%, transparent 19%),
    rgba(242, 223, 199, 0.42);
  box-shadow: 0 0 18px rgba(213, 177, 137, 0.18);
  opacity: 0;
  animation: confettiBokehFall var(--fall-duration) linear infinite;
  animation-delay: var(--fall-delay);
}

.confetti-layer span:nth-child(3n) {
  border-radius: 0.22rem;
  background: rgba(213, 177, 137, 0.34);
  box-shadow: none;
  animation-name: confettiPaperFall;
}

.confetti-layer span:nth-child(4n) {
  width: calc(var(--size) * 0.45);
  height: calc(var(--size) * 1.45);
  border-radius: 999px;
  background: rgba(195, 154, 115, 0.3);
  box-shadow: none;
  animation-name: confettiPaperFall;
}

.confetti-layer span:nth-child(5n) {
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.95) 0 20%, transparent 21%),
    rgba(255, 255, 255, 0.52);
}

.confetti-layer span:nth-child(1) {
  --x: 8vw;
  --size: 0.65rem;
  --fall-duration: 17s;
  --fall-delay: -8s;
  --drift: 4rem;
}

.confetti-layer span:nth-child(2) {
  --x: 16vw;
  --size: 1.25rem;
  --fall-duration: 20s;
  --fall-delay: -3s;
  --drift: -3rem;
}

.confetti-layer span:nth-child(3) {
  --x: 24vw;
  --size: 0.72rem;
  --fall-duration: 15s;
  --fall-delay: -11s;
  --drift: 2.6rem;
}

.confetti-layer span:nth-child(4) {
  --x: 32vw;
  --size: 0.9rem;
  --fall-duration: 19s;
  --fall-delay: -6s;
  --drift: -4.2rem;
}

.confetti-layer span:nth-child(5) {
  --x: 40vw;
  --size: 1.45rem;
  --fall-duration: 24s;
  --fall-delay: -14s;
  --drift: 2.2rem;
}

.confetti-layer span:nth-child(6) {
  --x: 48vw;
  --size: 0.58rem;
  --fall-duration: 14s;
  --fall-delay: -5s;
  --drift: -2.4rem;
}

.confetti-layer span:nth-child(7) {
  --x: 55vw;
  --size: 1.05rem;
  --fall-duration: 22s;
  --fall-delay: -17s;
  --drift: 3.4rem;
}

.confetti-layer span:nth-child(8) {
  --x: 63vw;
  --size: 0.7rem;
  --fall-duration: 16s;
  --fall-delay: -1s;
  --drift: -3.2rem;
}

.confetti-layer span:nth-child(9) {
  --x: 71vw;
  --size: 0.95rem;
  --fall-duration: 18s;
  --fall-delay: -10s;
  --drift: 4.6rem;
}

.confetti-layer span:nth-child(10) {
  --x: 79vw;
  --size: 1.6rem;
  --fall-duration: 25s;
  --fall-delay: -20s;
  --drift: -2.5rem;
}

.confetti-layer span:nth-child(11) {
  --x: 87vw;
  --size: 0.66rem;
  --fall-duration: 15s;
  --fall-delay: -4s;
  --drift: 2.8rem;
}

.confetti-layer span:nth-child(12) {
  --x: 94vw;
  --size: 0.78rem;
  --fall-duration: 21s;
  --fall-delay: -13s;
  --drift: -4rem;
}

.confetti-layer span:nth-child(13) {
  --x: 12vw;
  --size: 1.05rem;
  --fall-duration: 23s;
  --fall-delay: -19s;
  --drift: 3rem;
}

.confetti-layer span:nth-child(14) {
  --x: 28vw;
  --size: 0.62rem;
  --fall-duration: 13s;
  --fall-delay: -9s;
  --drift: -2.1rem;
}

.confetti-layer span:nth-child(15) {
  --x: 52vw;
  --size: 1.35rem;
  --fall-duration: 26s;
  --fall-delay: -22s;
  --drift: 2.8rem;
}

.confetti-layer span:nth-child(16) {
  --x: 68vw;
  --size: 0.62rem;
  --fall-duration: 15s;
  --fall-delay: -7s;
  --drift: -3.1rem;
}

.confetti-layer span:nth-child(17) {
  --x: 82vw;
  --size: 1.12rem;
  --fall-duration: 20s;
  --fall-delay: -16s;
  --drift: 2.3rem;
}

.confetti-layer span:nth-child(18) {
  --x: 96vw;
  --size: 0.54rem;
  --fall-duration: 14s;
  --fall-delay: -2s;
  --drift: -2.6rem;
}

.floating-balloons,
.soft-bear {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.floating-balloons {
  width: 8rem;
  height: 9rem;
  filter: drop-shadow(0 16px 18px rgba(167, 125, 83, 0.11));
  animation: toyFloat 9s ease-in-out infinite;
}

.floating-balloons span {
  position: absolute;
  width: 3.1rem;
  height: 4rem;
  border-radius: 48% 48% 52% 52%;
  background: linear-gradient(180deg, #fffaf2, #ead2b3);
  box-shadow: inset 0.35rem 0.5rem 0 rgba(255, 255, 255, 0.28);
}

.floating-balloons span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4.2rem;
  width: 1px;
  height: 4.4rem;
  background: linear-gradient(180deg, rgba(154, 110, 70, 0.34), transparent);
  transform-origin: top;
  transform: rotate(5deg);
}

.floating-balloons span:nth-child(1) {
  left: 0.2rem;
  top: 1.5rem;
  background: linear-gradient(180deg, #fffdf8, #f0dfc7);
  transform: rotate(-10deg);
}

.floating-balloons span:nth-child(2) {
  left: 2.55rem;
  top: 0.1rem;
  width: 3.3rem;
  height: 4.25rem;
  background: linear-gradient(180deg, #e4c19b, #b98055);
  transform: rotate(6deg);
}

.floating-balloons span:nth-child(3) {
  right: 0.05rem;
  top: 1.25rem;
  background: linear-gradient(180deg, #f7e9d6, #c99a70);
  transform: rotate(13deg);
}

.floating-balloons span:nth-child(4) {
  left: 4.2rem;
  top: 3.4rem;
  width: 2.55rem;
  height: 3.35rem;
  background: linear-gradient(180deg, #fffefb, #f3e4cf);
  transform: rotate(-6deg);
}

.floating-balloons-page {
  position: fixed;
  right: 4vw;
  top: 7.5rem;
  z-index: 0;
  opacity: 0.52;
  animation-duration: 13s;
}

.soft-bear {
  width: 5.8rem;
  height: 5.4rem;
  border-radius: 48% 48% 45% 45%;
  background:
    radial-gradient(circle at 40% 44%, #6d4d38 0 0.18rem, transparent 0.2rem),
    radial-gradient(circle at 60% 44%, #6d4d38 0 0.18rem, transparent 0.2rem),
    radial-gradient(circle at 50% 57%, #6d4d38 0 0.24rem, transparent 0.26rem),
    radial-gradient(ellipse at 50% 66%, #fff3e5 0 26%, transparent 27%),
    linear-gradient(180deg, #d4aa7d, #bd875e);
  box-shadow: 0 18px 28px rgba(167, 125, 83, 0.12);
  opacity: 0.86;
  animation: toyFloat 8.5s ease-in-out infinite;
}

.soft-bear::before {
  content: "";
  position: absolute;
  top: -0.7rem;
  left: 0.7rem;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  background: radial-gradient(circle, #f5dfc4 0 40%, #c9956c 42%);
  box-shadow: 2.8rem 0 0 #c9956c;
}

.soft-bear::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1.2rem;
  width: 6.6rem;
  height: 2.5rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 20% 52%, #c9956c 0 25%, transparent 26%),
    radial-gradient(circle at 80% 52%, #c9956c 0 25%, transparent 26%);
  transform: translateX(-50%);
  opacity: 0.76;
}

.soft-bear-hero {
  right: 37%;
  bottom: 4.6rem;
  transform: rotate(-8deg);
}

.floating-balloons-hero {
  right: -2.6rem;
  top: 4rem;
  animation-delay: -2s;
}

.soft-bear-celebration {
  right: -1.9rem;
  top: -0.5rem;
  width: 4.5rem;
  height: 4.2rem;
  transform: rotate(11deg);
  opacity: 0.72;
}

.floating-balloons-celebration {
  left: -2rem;
  bottom: -2.4rem;
  width: 6.4rem;
  height: 7rem;
  opacity: 0.65;
  animation-delay: -4s;
}

.floating-balloons-theme {
  right: 44%;
  top: 2.4rem;
  opacity: 0.62;
  transform: scale(0.82);
  animation-delay: -1s;
}

.soft-bear-blessing {
  left: -2.7rem;
  bottom: 2.2rem;
  width: 4.9rem;
  height: 4.5rem;
  transform: rotate(-12deg);
  opacity: 0.66;
}

.floating-balloons-location {
  right: 5%;
  top: 3rem;
  width: 6.8rem;
  height: 7.2rem;
  opacity: 0.58;
  animation-delay: -3s;
}

.soft-bear-details {
  left: 6%;
  top: 5.2rem;
  width: 4.5rem;
  height: 4.2rem;
  transform: rotate(10deg);
  opacity: 0.56;
}

.floating-balloons-details {
  right: -1.5rem;
  bottom: 4rem;
  width: 6rem;
  height: 6.5rem;
  opacity: 0.54;
  animation-delay: -5s;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.hero__grid,
.celebration-grid,
.theme-showcase__grid,
.blessing-panel,
.map-panel,
.details-grid,
.section-heading,
.details-image {
  position: relative;
  z-index: 3;
}

.section-nav {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 12;
  display: flex;
  gap: 0.35rem;
  width: min(calc(100% - 1.5rem), 28rem);
  padding: 0.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 36px rgba(167, 125, 83, 0.16);
  transform: translateX(-50%);
  backdrop-filter: blur(16px);
}

.section-nav a {
  flex: 1;
  min-width: 0;
  padding: 0.72rem 0.6rem;
  border-radius: 999px;
  font-family: "Baloo 2", cursive;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  color: var(--text-soft);
  transition:
    background-color 500ms var(--ease-premium),
    color 500ms var(--ease-premium),
    transform 500ms var(--ease-premium);
}

.section-nav a:hover,
.section-nav a.is-active {
  background: var(--cream);
  color: var(--accent-rich);
}

.section-nav a:active {
  transform: scale(0.96);
}

.section {
  width: min(calc(100% - 3rem), var(--max-width));
  margin: 0 auto;
  padding: 5.6rem 0;
}

.hero {
  position: relative;
  padding-top: 4.2rem;
  min-height: 92dvh;
  display: flex;
  align-items: center;
}

.hero-copy {
  position: relative;
}

.hero-paws {
  position: absolute;
  top: -1.2rem;
  left: -1.2rem;
  display: flex;
  gap: 0.7rem;
  pointer-events: none;
}

.hero-paws span {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px;
  background: rgba(245, 231, 211, 0.95);
  box-shadow:
    0 -0.5rem 0 -0.18rem rgba(245, 231, 211, 0.9),
    -0.46rem -0.16rem 0 -0.2rem rgba(245, 231, 211, 0.9),
    0.46rem -0.16rem 0 -0.2rem rgba(245, 231, 211, 0.9);
  animation: pawBounce 6s ease-in-out infinite;
}

.hero-paws span:nth-child(2) {
  animation-delay: -2s;
}

.hero-paws span:nth-child(3) {
  animation-delay: -4s;
}

.hero__grid,
.theme-showcase__grid,
.blessing-panel__inner {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow,
.card-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(250, 242, 231, 0.92);
  letter-spacing: 0.02em;
  font-family: "Baloo 2", cursive;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--accent-deep);
}

.hero-copy h1,
.section-heading h2,
.blessing-copy h2 {
  margin: 1.15rem 0 0;
  font-family: "Baloo 2", cursive;
  font-size: clamp(3.4rem, 7vw, 6.2rem);
  line-height: 0.95;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero-copy h1 em {
  display: block;
  font-style: normal;
  color: var(--accent-deep);
  padding-bottom: 0.08em;
}

.hero-copy__lead,
.section-heading,
.celebration-card p,
.story-card p,
.theme-note p,
.blessing-copy p,
.blessing-point p,
.detail-card p,
.site-footer p {
  color: var(--text-soft);
}

.hero-copy__lead {
  max-width: 34rem;
  margin: 1.5rem 0 0;
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-copy__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.55rem 0.6rem 0.55rem 1.4rem;
  border-radius: 999px;
  font-family: "Baloo 2", cursive;
  font-size: 1rem;
  transition:
    transform 700ms var(--ease-premium),
    background-color 700ms var(--ease-premium),
    box-shadow 700ms var(--ease-premium);
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: scale(0.98);
}

.button-primary {
  background: linear-gradient(180deg, #d7ae85, #bf9164);
  color: #fffaf5;
  box-shadow: 0 16px 30px rgba(159, 118, 78, 0.18);
}

.button-secondary {
  background: rgba(255, 250, 244, 0.96);
  color: var(--accent-deep);
}

.button__icon {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  transition:
    transform 700ms var(--ease-premium),
    background-color 700ms var(--ease-premium);
}

.button-secondary .button__icon {
  background: rgba(231, 207, 178, 0.6);
}

.button:hover .button__icon {
  transform: translate(4px, -1px) scale(1.05);
}

.hero-copy__facts {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.fact-card {
  flex: 1 1 0;
  padding: 1.2rem 1.3rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
}

.fact-card span,
.hero-frame__badge span,
.blessing-point span {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.88rem;
  font-family: "Baloo 2", cursive;
  color: var(--accent-deep);
}

.fact-card strong,
.hero-frame__badge strong {
  font-size: 1rem;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  padding: 2.5rem 0 4.5rem;
  overflow: visible;
}

.hero-spark {
  position: absolute;
  z-index: 1;
  width: 1.2rem;
  height: 1.2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(241, 222, 196, 0.8));
  clip-path: polygon(50% 0%, 61% 38%, 100% 50%, 61% 62%, 50% 100%, 39% 62%, 0% 50%, 39% 38%);
  opacity: 0.85;
  animation: sparkleFloat 5.6s ease-in-out infinite;
}

.hero-spark-one {
  top: 4rem;
  right: 9rem;
}

.hero-spark-two {
  top: 10rem;
  left: 2rem;
  width: 0.9rem;
  height: 0.9rem;
  animation-delay: -1.5s;
}

.hero-spark-three {
  right: 2rem;
  bottom: 6rem;
  width: 1.4rem;
  height: 1.4rem;
  animation-delay: -3s;
}

.hero-frame {
  position: relative;
  width: min(38rem, 100%);
  margin-left: auto;
  padding-right: 0;
}

.hero-frame__peek {
  position: relative;
  width: 100%;
  min-height: 40rem;
  overflow: visible;
}

.hero-frame__peek img {
  width: min(34rem, 100%);
  margin-left: auto;
  margin-right: -3rem;
  border-radius: 0;
  object-fit: contain;
  filter: drop-shadow(0 26px 28px rgba(167, 125, 83, 0.14));
  position: relative;
  z-index: 1;
}

.hero-frame__peek::before {
  content: "";
  display: none;
  position: absolute;
  top: 2rem;
  right: -2rem;
  width: 85%;
  height: 86%;
  border-radius: 16rem 0 0 16rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 242, 231, 0.72));
  z-index: 0;
}

.hero-frame__badge {
  position: absolute;
  right: 0.4rem;
  bottom: 1.8rem;
  max-width: 15rem;
  padding: 1rem 1.1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
  z-index: 2;
}

.hero-floating {
  position: absolute;
  max-width: 14rem;
  padding: 1rem 1.1rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
}

.hero-floating strong {
  font-size: 0.98rem;
  line-height: 1.45;
}

.hero-floating-left {
  top: 0.5rem;
  left: 0;
  transform: rotate(-2deg);
}

.hero-floating-right {
  right: 0.5rem;
  bottom: 0;
  transform: rotate(2deg);
}

.hero-balloon {
  position: absolute;
  width: 5.2rem;
  height: 6.2rem;
  border-radius: 48% 48% 52% 52%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 223, 199, 0.9));
  box-shadow: 0 16px 28px rgba(191, 145, 100, 0.12);
  z-index: 0;
  pointer-events: none;
  animation: balloonBob 8s ease-in-out infinite;
}

.hero-balloon::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1.65rem;
  width: 1px;
  height: 2rem;
  background: rgba(195, 154, 115, 0.42);
}

.hero-balloon::after {
  content: "";
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 1.2rem;
  height: 1.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  transform: rotate(-22deg);
}

.hero-balloon-left {
  left: -4rem;
  bottom: 5rem;
  animation-delay: -1.4s;
}

.hero-balloon-right {
  right: -2rem;
  top: 3rem;
  width: 4.4rem;
  height: 5.4rem;
  animation-delay: -4s;
}

.section-heading {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.celebration,
.theme-showcase,
.blessing,
.location,
.details {
  position: relative;
}

.section-cloud {
  --cloud-base-transform: none;
  position: absolute;
  width: 11rem;
  height: 4.5rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 22% 65%, rgba(255, 255, 255, 0.9) 0 18%, transparent 19%),
    radial-gradient(circle at 45% 42%, rgba(255, 255, 255, 0.96) 0 22%, transparent 23%),
    radial-gradient(circle at 68% 62%, rgba(255, 255, 255, 0.9) 0 18%, transparent 19%);
  opacity: 0.68;
  filter: blur(1px);
  animation: cloudDrift 14s var(--ease-premium) infinite alternate;
}

.section-cloud-left {
  top: 3rem;
  left: -1rem;
}

.section-cloud-right {
  top: 16rem;
  right: 0;
  --cloud-base-transform: scale(0.84);
  animation-delay: -3s;
}

.section-cloud-center {
  top: -0.8rem;
  right: 18%;
  --cloud-base-transform: scale(0.9);
}

.section-heading h2 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
}

.celebration-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.celebration-card {
  grid-column: span 4;
  padding: 1.8rem;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
}

.celebration-card--wide {
  grid-column: span 4;
  transform: translateY(2.5rem);
}

.celebration-card h3,
.theme-note h3,
.detail-card h3 {
  margin: 1rem 0 0.85rem;
  font-family: "Baloo 2", cursive;
  font-size: 2rem;
  line-height: 1.05;
  font-weight: 600;
}

.celebration-card p,
.theme-note p,
.detail-card p {
  margin: 0;
  line-height: 1.8;
}

.theme-showcase__cards {
  display: grid;
  gap: 1.25rem;
}

.theme-showcase__photo {
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.theme-showcase__photo img {
  width: 100%;
  max-height: 38rem;
  margin: 0;
  border-radius: 0;
  object-fit: contain;
  filter: drop-shadow(0 24px 24px rgba(167, 125, 83, 0.12));
}

.theme-note,
.detail-card {
  padding: 1.7rem;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

.theme-note:nth-child(2) {
  transform: translateX(2rem);
}

.theme-note:nth-child(3) {
  transform: translateX(-1rem);
}

.blessing-panel {
  padding: 2.1rem;
  border-radius: 44px;
  background:
    radial-gradient(circle at top right, rgba(250, 242, 231, 0.65), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 245, 236, 0.98));
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 1;
}

.blessing-copy h2 {
  font-size: clamp(2.7rem, 5vw, 4.9rem);
}

.blessing-copy p {
  margin-top: 1.4rem;
  font-size: 1.06rem;
  line-height: 1.85;
}

.blessing-points {
  display: grid;
  gap: 1rem;
}

.blessing-side {
  display: grid;
  gap: 1rem;
}

.blessing-image {
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.blessing-image img {
  width: 100%;
  max-height: 34rem;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 24px 24px rgba(167, 125, 83, 0.12));
}

.blessing-point {
  padding: 1.5rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
}

.blessing-point p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
}

.section-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.section-bubbles span {
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.55);
  box-shadow: 0 8px 20px rgba(198, 151, 107, 0.12);
  animation: bubbleFloat 10s ease-in-out infinite;
}

.section-bubbles span:nth-child(1) {
  top: 2rem;
  right: 12%;
  width: 5rem;
  height: 5rem;
}

.section-bubbles span:nth-child(2) {
  top: 10rem;
  left: 8%;
  width: 2.8rem;
  height: 2.8rem;
  animation-delay: -1s;
}

.section-bubbles span:nth-child(3) {
  bottom: 6rem;
  right: 4%;
  width: 4rem;
  height: 4rem;
  animation-delay: -4s;
}

.section-bubbles span:nth-child(4) {
  bottom: 2rem;
  left: 16%;
  width: 1.8rem;
  height: 1.8rem;
  animation-delay: -2.5s;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.map-panel {
  display: grid;
  gap: 1rem;
  max-width: 46rem;
  margin: 0 auto;
  padding: 1rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-card);
}

.map-panel iframe {
  width: 100%;
  min-height: 24rem;
  border: 0;
  border-radius: 1.45rem;
}

.map-placeholder {
  display: grid;
  place-items: center;
  min-height: 24rem;
  padding: 2rem;
  border-radius: 1.45rem;
  background:
    radial-gradient(circle at 20% 24%, rgba(250, 242, 231, 0.95), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 242, 231, 0.76));
  text-align: center;
}

.map-placeholder span {
  display: inline-flex;
  margin-bottom: 0.7rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: var(--cream);
  font-family: "Baloo 2", cursive;
  font-size: 0.82rem;
  color: var(--accent-deep);
}

.map-placeholder strong {
  max-width: 24rem;
  font-family: "Baloo 2", cursive;
  font-size: 1.8rem;
  line-height: 1.05;
  color: var(--text);
}

.map-placeholder p {
  max-width: 28rem;
  margin: 0.8rem 0 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.map-button {
  justify-self: center;
}

.details-image {
  max-width: 34rem;
  margin: 0 0 1.4rem auto;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.details-image img {
  width: 100%;
  max-height: 34rem;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 24px 24px rgba(167, 125, 83, 0.12));
}

.site-footer {
  padding: 1rem 1.5rem 6.5rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(4rem);
  filter: blur(10px);
  transition:
    opacity 900ms var(--ease-premium),
    transform 900ms var(--ease-premium),
    filter 900ms var(--ease-premium);
}

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

@keyframes cloudDrift {
  from {
    transform: var(--cloud-base-transform) translate3d(0, 0, 0);
  }
  to {
    transform: var(--cloud-base-transform) translate3d(20px, -10px, 0);
  }
}

@keyframes twinkleGlow {
  from {
    opacity: 0.22;
  }
  to {
    opacity: 0.42;
  }
}

@keyframes sparkleFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    opacity: 0.62;
  }
  50% {
    transform: translate3d(0, -10px, 0) scale(1.12) rotate(8deg);
    opacity: 1;
  }
}

@keyframes bubbleFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -14px, 0);
  }
}

@keyframes balloonBob {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-2deg);
  }
  50% {
    transform: translate3d(0, -16px, 0) rotate(2deg);
  }
}

@keyframes ribbonSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pawBounce {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -8px, 0) scale(1.08);
  }
}

@keyframes toyFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -13px;
  }
}

@keyframes confettiBokehFall {
  0% {
    opacity: 0;
    transform: translate3d(0, -5vh, 0) scale(0.72);
  }
  12% {
    opacity: 0.68;
  }
  48% {
    opacity: 0.36;
    transform: translate3d(calc(var(--drift) * 0.45), 48vh, 0) scale(1);
  }
  86% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--drift), 108vh, 0) scale(0.78);
  }
}

@keyframes confettiPaperFall {
  0% {
    opacity: 0;
    transform: translate3d(0, -5vh, 0) rotate(0deg);
  }
  10% {
    opacity: 0.54;
  }
  50% {
    transform: translate3d(calc(var(--drift) * 0.55), 50vh, 0) rotate(145deg);
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--drift), 108vh, 0) rotate(320deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-cloud,
  .page-stars,
  .page-orbit,
  .page-ribbon,
  .confetti-layer span,
  .floating-balloons,
  .soft-bear,
  .hero-spark,
  .hero-paws span,
  .hero-balloon,
  .section-cloud,
  .section-bubbles span,
  .reveal {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1100px) {
  .hero__grid,
  .theme-showcase__grid,
  .blessing-panel__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-visual,
  .hero-frame {
    margin-left: 0;
  }

  .hero-visual {
    max-width: 40rem;
    margin: 0 auto;
  }

  .hero-frame__peek {
    min-height: auto;
  }

  .hero-frame__peek img {
    margin-right: 0;
  }

  .hero-frame__peek::before {
    right: 0;
    width: 100%;
  }

  .celebration-card,
  .celebration-card--wide {
    grid-column: span 6;
    transform: none;
  }

  .theme-note:nth-child(2),
  .theme-note:nth-child(3) {
    transform: none;
  }

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

@media (max-width: 768px) {
  .section {
    width: calc(100% - 1.25rem);
    padding: 3.5rem 0;
  }

  .page-cloud-left {
    top: 4.5rem;
    left: -3.8rem;
    width: 10rem;
    height: 4.2rem;
    opacity: 0.58;
  }

  .page-cloud-right {
    top: 14rem;
    right: -3.2rem;
    width: 8.8rem;
    height: 3.7rem;
    opacity: 0.48;
  }

  .page-stars {
    opacity: 0.18;
  }

  .page-orbit-left,
  .page-orbit-right {
    display: block;
    width: 2.6rem;
    height: 2.6rem;
    opacity: 0.42;
  }

  .page-orbit-left {
    top: 19rem;
    left: 0.6rem;
  }

  .page-orbit-right {
    top: 31rem;
    right: 0.75rem;
  }

  .hero {
    padding-top: 3.6rem;
    min-height: auto;
  }

  .hero__grid,
  .theme-showcase__grid,
  .blessing-panel__inner {
    gap: 1.4rem;
  }

  .hero-copy h1,
  .section-heading h2,
  .blessing-copy h2 {
    font-size: clamp(2.35rem, 10vw, 3rem);
    line-height: 1;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-paws {
    display: flex;
    top: -0.8rem;
    left: 0.15rem;
    gap: 0.45rem;
  }

  .hero-paws span {
    width: 0.82rem;
    height: 0.82rem;
  }

  .hero-copy__lead,
  .blessing-copy p,
  .celebration-card p,
  .theme-note p,
  .detail-card p {
    font-size: 0.97rem;
    line-height: 1.68;
  }

  .hero-copy__facts,
  .hero-copy__actions {
    flex-direction: column;
    gap: 0.8rem;
  }

  .hero-copy__actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
    justify-content: space-between;
  }

  .fact-card {
    padding: 1rem 1.05rem;
  }

  .hero-visual {
    max-width: 100%;
    padding: 0.25rem 0 1.2rem;
  }

  .hero-spark {
    display: block;
  }

  .hero-spark-one {
    top: 1rem;
    right: 1rem;
    width: 0.8rem;
    height: 0.8rem;
  }

  .hero-spark-two {
    top: auto;
    left: 0.75rem;
    bottom: 6rem;
    width: 0.7rem;
    height: 0.7rem;
  }

  .hero-spark-three {
    right: 2.1rem;
    bottom: 2rem;
    width: 1rem;
    height: 1rem;
  }

  .hero-floating {
    position: static;
    max-width: none;
    transform: none;
    margin-top: 0.65rem;
    padding: 0.9rem 0.95rem;
    border-radius: 1.3rem;
    font-size: 0.95rem;
  }

  .hero-frame {
    width: 100%;
  }

  .hero-frame__peek {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
    min-height: auto;
  }

  .hero-frame__peek::before {
    display: none;
  }

  .hero-frame__peek img {
    width: 100%;
    margin-right: 0;
    border-radius: 4.5rem 4.5rem 1.4rem 1.4rem;
    aspect-ratio: 0.92;
    box-shadow: 0 16px 28px rgba(167, 125, 83, 0.11);
  }

  .theme-showcase__photo img {
    width: 100%;
    border-radius: 3rem 3rem 1.4rem 1.4rem;
    aspect-ratio: 1 / 1.05;
  }

  .hero-frame__badge {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    width: 100%;
    border-radius: 1.35rem;
    padding: 0.85rem 0.95rem;
  }

  .hero-balloon {
    width: 2.2rem;
    height: 2.9rem;
    box-shadow: 0 10px 20px rgba(191, 145, 100, 0.1);
  }

  .hero-balloon-left {
    left: 0;
    bottom: 5.4rem;
  }

  .hero-balloon-right {
    right: 0.15rem;
    top: 1.3rem;
    width: 2rem;
    height: 2.6rem;
  }

  .section-cloud {
    width: 5.6rem;
    height: 2.4rem;
    opacity: 0.34;
  }

  .section-cloud-left {
    top: 0.5rem;
    left: -0.6rem;
  }

  .section-cloud-right {
    top: 10rem;
    right: -0.35rem;
  }

  .section-cloud-center {
    top: 0;
    right: 0.3rem;
  }

  .section-heading {
    max-width: 100%;
    margin-bottom: 1.4rem;
  }

  .celebration-grid,
  .details-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .celebration-card,
  .celebration-card--wide {
    grid-column: span 1;
    padding: 1.2rem;
  }

  .theme-showcase__photo,
  .details-image,
  .theme-note,
  .detail-card,
  .blessing-panel,
  .blessing-point {
    border-radius: 1.35rem;
  }

  .theme-showcase__photo,
  .details-image,
  .theme-note,
  .detail-card {
    padding: 1.05rem;
  }

  .theme-showcase__cards {
    gap: 0.85rem;
  }

  .theme-note:nth-child(2),
  .theme-note:nth-child(3) {
    transform: none;
  }

  .blessing-panel {
    padding: 1.1rem;
  }

  .blessing-panel__inner {
    gap: 1rem;
  }

  .blessing-point {
    padding: 1rem;
  }

  .details-grid {
    gap: 0.85rem;
  }

  .site-footer {
    padding: 0.5rem 1rem 2.4rem;
  }
}

@media (max-width: 480px) {
  .section {
    width: calc(100% - 1rem);
    padding: 3rem 0;
  }

  .eyebrow,
  .card-kicker {
    min-height: 1.9rem;
    padding: 0.42rem 0.8rem;
    font-size: 0.74rem;
  }

  .hero {
    padding-top: 3.1rem;
  }

  .hero-copy h1,
  .section-heading h2,
  .blessing-copy h2 {
    font-size: clamp(2.05rem, 11vw, 2.55rem);
  }

  .hero-copy__lead {
    margin-top: 1rem;
  }

  .hero-copy__actions {
    margin-top: 1.4rem;
  }

  .button {
    padding: 0.5rem 0.55rem 0.5rem 1rem;
    font-size: 0.94rem;
  }

  .button__icon {
    width: 2.2rem;
    height: 2.2rem;
  }

  .hero-copy__facts {
    margin-top: 1.4rem;
  }

  .hero-frame__peek img {
    border-radius: 3.4rem 3.4rem 1.2rem 1.2rem;
  }

  .hero-frame__badge,
  .hero-floating,
  .fact-card,
  .theme-note,
  .detail-card,
  .blessing-point,
  .celebration-card {
    padding: 0.95rem;
  }

  .hero-paws {
    left: 0;
    top: -0.6rem;
  }

  .hero-balloon,
  .page-orbit,
  .section-cloud {
    display: none;
  }

  .theme-showcase__photo,
  .details-image,
  .blessing-panel {
    padding: 0.95rem;
  }
}

/* Mobile-first correction layer: phones get their own invitation layout. */
@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    overflow-x: clip;
  }

  main {
    overflow: clip;
  }

  .section {
    width: 100%;
    max-width: none;
    padding: 2.85rem 1rem;
    overflow: hidden;
  }

  .hero {
    align-items: flex-start;
    min-height: auto;
    padding-top: 3rem;
  }

  .hero__grid,
  .theme-showcase__grid,
  .blessing-panel__inner {
    display: flex;
    flex-direction: column;
    gap: 1.45rem;
    width: 100%;
  }

  .hero-copy,
  .hero-visual,
  .theme-showcase__photo,
  .theme-showcase__cards,
  .details-image,
  .blessing-copy,
  .blessing-points {
    width: 100%;
    min-width: 0;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
  }

  .eyebrow,
  .card-kicker {
    min-height: 1.85rem;
    max-width: 100%;
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
    line-height: 1.1;
    white-space: normal;
  }

  .hero-copy h1,
  .section-heading h2,
  .blessing-copy h2 {
    max-width: 100%;
    font-size: 2.6rem;
    line-height: 1.02;
    letter-spacing: 0;
  }

  .hero-copy h1 {
    margin-top: 0.85rem;
  }

  .hero-copy__lead,
  .blessing-copy p,
  .celebration-card p,
  .theme-note p,
  .detail-card p,
  .blessing-point p {
    max-width: 100%;
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .hero-copy__lead {
    margin-top: 0.9rem;
  }

  .hero-copy__actions,
  .hero-copy__facts,
  .celebration-grid,
  .details-grid,
  .theme-showcase__cards,
  .blessing-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    width: 100%;
  }

  .hero-copy__actions {
    margin-top: 1.25rem;
  }

  .hero-copy__facts {
    margin-top: 1.1rem;
  }

  .button {
    width: 100%;
    min-height: 3.25rem;
    justify-content: space-between;
    padding: 0.5rem 0.55rem 0.5rem 1rem;
    font-size: 0.96rem;
    line-height: 1.1;
  }

  .button span:first-child {
    min-width: 0;
  }

  .button__icon {
    flex: 0 0 auto;
    width: 2.25rem;
    height: 2.25rem;
  }

  .fact-card,
  .celebration-card,
  .theme-note,
  .detail-card,
  .blessing-point {
    width: 100%;
    min-width: 0;
    padding: 1rem;
    border-radius: 1.25rem;
    transform: none;
  }

  .celebration-card,
  .celebration-card--wide {
    grid-column: auto;
  }

  .celebration-card h3,
  .theme-note h3,
  .detail-card h3 {
    font-size: 1.55rem;
    line-height: 1.08;
    letter-spacing: 0;
  }

  .section-heading {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1.35rem;
  }

  .hero-visual {
    max-width: 25rem;
    margin: 0 auto;
    padding: 0.3rem 0 0;
    overflow: visible;
  }

  .hero-frame,
  .hero-frame__peek {
    width: 100%;
    max-width: 100%;
    min-height: auto;
  }

  .hero-frame__peek {
    display: grid;
    gap: 0.65rem;
  }

  .hero-frame__peek::before {
    display: none;
  }

  .hero-frame__peek img {
    width: 100%;
    max-width: 100%;
    max-height: 28rem;
    height: auto;
    margin: 0;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
    box-shadow: none;
    filter: drop-shadow(0 18px 18px rgba(167, 125, 83, 0.12));
  }

  .hero-frame__badge,
  .hero-floating {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0.9rem 1rem;
    border-radius: 1.2rem;
    transform: none;
  }

  .hero-frame__badge span,
  .hero-floating span,
  .fact-card span {
    font-size: 0.76rem;
    line-height: 1.1;
  }

  .hero-frame__badge strong,
  .hero-floating strong,
  .fact-card strong {
    display: block;
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .hero-floating-left,
  .hero-floating-right {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .hero-balloon {
    width: 2.15rem;
    height: 2.8rem;
    z-index: 2;
  }

  .hero-balloon-left {
    left: 0.25rem;
    bottom: 7.5rem;
  }

  .hero-balloon-right {
    top: 0.6rem;
    right: 0.35rem;
    width: 1.9rem;
    height: 2.5rem;
  }

  .hero-spark {
    display: block;
    z-index: 3;
  }

  .hero-spark-one {
    top: 1rem;
    right: 1.2rem;
  }

  .hero-spark-two {
    top: auto;
    bottom: 7.4rem;
    left: 1rem;
  }

  .hero-spark-three {
    right: 1.7rem;
    bottom: 1.2rem;
  }

  .hero-paws {
    display: flex;
    top: -0.55rem;
    left: 0.15rem;
    gap: 0.42rem;
  }

  .hero-paws span {
    width: 0.72rem;
    height: 0.72rem;
  }

  .page-ribbon {
    display: none;
  }

  .floating-balloons-page {
    display: none;
  }

  .confetti-layer {
    z-index: 6;
  }

  .confetti-layer span {
    opacity: 0.42;
  }

  .confetti-layer span:nth-child(n + 11) {
    display: none;
  }

  .confetti-layer span:nth-child(2),
  .confetti-layer span:nth-child(5),
  .confetti-layer span:nth-child(10) {
    --size: 0.95rem;
  }

  .floating-balloons {
    width: 4.8rem;
    height: 5.6rem;
    opacity: 0.56;
  }

  .floating-balloons span {
    width: 1.9rem;
    height: 2.55rem;
  }

  .floating-balloons span:nth-child(2) {
    left: 1.55rem;
    width: 2.05rem;
    height: 2.75rem;
  }

  .floating-balloons span:nth-child(3) {
    width: 1.85rem;
    height: 2.45rem;
  }

  .floating-balloons span:nth-child(4) {
    left: 2.45rem;
    top: 2.1rem;
    width: 1.5rem;
    height: 2rem;
  }

  .soft-bear {
    width: 3.4rem;
    height: 3.15rem;
    opacity: 0.48;
  }

  .soft-bear::before {
    top: -0.45rem;
    left: 0.42rem;
    width: 0.98rem;
    height: 0.98rem;
    box-shadow: 1.68rem 0 0 #c9956c;
  }

  .soft-bear::after {
    bottom: -0.72rem;
    width: 3.95rem;
    height: 1.5rem;
  }

  .soft-bear-hero {
    right: -0.8rem;
    top: 20rem;
    bottom: auto;
  }

  .floating-balloons-hero {
    top: 7.8rem;
    right: -1rem;
  }

  .soft-bear-celebration {
    top: 1rem;
    right: -1.1rem;
  }

  .floating-balloons-celebration {
    left: -1rem;
    bottom: -0.4rem;
  }

  .floating-balloons-theme {
    right: -0.8rem;
    top: 1rem;
  }

  .soft-bear-blessing {
    left: -1rem;
    bottom: 1.2rem;
  }

  .floating-balloons-location {
    right: -0.8rem;
    top: 1.4rem;
  }

  .soft-bear-details {
    left: -0.7rem;
    top: 5rem;
  }

  .floating-balloons-details {
    right: -0.8rem;
    bottom: 7rem;
  }

  .page-cloud-left,
  .page-cloud-right {
    display: block;
    width: 8.5rem;
    height: 3.6rem;
    opacity: 0.42;
  }

  .page-cloud-left {
    top: 4.2rem;
    left: -3.2rem;
  }

  .page-cloud-right {
    top: 16rem;
    right: -3rem;
  }

  .page-cloud-center,
  .page-orbit {
    display: none;
  }

  .section-cloud {
    display: block;
    width: 5rem;
    height: 2.15rem;
    opacity: 0.28;
  }

  .section-cloud-left {
    top: 0.5rem;
    left: -0.4rem;
  }

  .section-cloud-right {
    top: 8rem;
    right: -0.4rem;
  }

  .section-cloud-center {
    top: 0.2rem;
    right: 0.4rem;
  }

  .celebration,
  .theme-showcase,
  .blessing,
  .location {
    overflow: hidden;
  }

  .blessing-panel,
  .map-panel {
    width: 100%;
    max-width: 100%;
    margin: 0 0 1rem;
    padding: 1rem;
    border-radius: 1.35rem;
  }

  .theme-showcase__photo,
  .details-image,
  .blessing-image {
    width: 100%;
    max-width: 100%;
    margin: 0 0 1rem;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .map-panel iframe,
  .map-placeholder {
    min-height: 20rem;
    border-radius: 1.1rem;
  }

  .map-placeholder {
    padding: 1.3rem;
  }

  .map-placeholder strong {
    font-size: 1.45rem;
  }

  .map-button {
    width: 100%;
  }

  .theme-showcase__photo img,
  .details-image img,
  .blessing-image img {
    width: 100%;
    max-width: 100%;
    max-height: 25rem;
    height: auto;
    margin: 0;
    aspect-ratio: auto;
    object-fit: contain;
    border-radius: 0;
    filter: drop-shadow(0 18px 18px rgba(167, 125, 83, 0.12));
  }

  .theme-note:nth-child(2),
  .theme-note:nth-child(3) {
    transform: none;
  }

  .section-bubbles span {
    opacity: 0.5;
    transform: scale(0.72);
  }

  .site-footer {
    padding: 0.5rem 1rem 6.25rem;
  }
}

@media (max-width: 390px) {
  .section {
    padding: 2.8rem 0.75rem;
  }

  .hero-copy h1,
  .section-heading h2,
  .blessing-copy h2 {
    font-size: 2.25rem;
  }

  .hero-copy__lead,
  .blessing-copy p,
  .celebration-card p,
  .theme-note p,
  .detail-card p,
  .blessing-point p {
    font-size: 0.92rem;
  }

  .hero-visual {
    max-width: 100%;
  }

  .celebration-card h3,
  .theme-note h3,
  .detail-card h3 {
    font-size: 1.4rem;
  }

  .section-nav {
    width: calc(100% - 0.75rem);
    bottom: 0.55rem;
    padding: 0.28rem;
  }

  .section-nav a {
    padding: 0.62rem 0.2rem;
    font-size: 0.72rem;
  }
}

/* Rhythm correction: keep sections composed instead of drifting like separate slides. */
@media (min-width: 769px) {
  .section {
    padding: 3.8rem 0;
  }

  .hero {
    min-height: 84dvh;
    padding-top: 2.8rem;
  }

  .hero__grid,
  .theme-showcase__grid,
  .blessing-panel__inner {
    gap: 2.35rem;
  }

  .section-heading {
    max-width: 43rem;
    margin-bottom: 1.35rem;
  }

  .section-heading h2,
  .blessing-copy h2 {
    font-size: clamp(2.9rem, 4.5vw, 4.35rem);
    line-height: 1;
  }

  .celebration {
    padding-top: 3.1rem;
  }

  .celebration-grid {
    align-items: stretch;
    gap: 1.15rem;
  }

  .celebration-card,
  .celebration-card--wide {
    transform: none;
  }

  .theme-showcase {
    padding-top: 2.7rem;
  }

  .theme-showcase__grid {
    grid-template-columns: 0.88fr 0.92fr;
    max-width: 62rem;
    margin: 0 auto;
  }

  .theme-showcase__photo img {
    max-height: 29rem;
  }

  .blessing {
    padding-top: 3rem;
  }

  .blessing-panel {
    padding: 1.9rem 2.4rem;
    border-radius: 38px;
  }

  .blessing-panel__inner {
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
  }

  .blessing-copy {
    align-self: center;
  }

  .blessing-copy h2 {
    max-width: 10.5ch;
  }

  .blessing-copy p {
    max-width: 31rem;
    margin-top: 1.05rem;
  }

  .blessing-side {
    align-self: center;
    gap: 0.75rem;
  }

  .blessing-image {
    margin: -2.6rem auto -1.15rem;
  }

  .blessing-image img {
    max-height: 25rem;
    transform: translateY(-0.35rem);
  }

  .location {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(28rem, 1fr);
    column-gap: 3rem;
    align-items: center;
  }

  .location .section-heading {
    margin-bottom: 0;
  }

  .location .map-panel {
    max-width: none;
    margin: 0;
  }

  .map-placeholder {
    min-height: 19rem;
  }

  .details {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(24rem, 1fr);
    gap: 1.2rem 3rem;
    align-items: center;
  }

  .details .section-heading {
    grid-column: 1;
    margin-bottom: 0;
  }

  .details-image {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    max-width: 28rem;
    margin: 0;
  }

  .details-image img {
    max-height: 25rem;
  }

  .details-grid {
    grid-column: 1 / -1;
    margin-top: 0.8rem;
  }

  .soft-bear-hero {
    right: -2rem;
    bottom: 8rem;
    opacity: 0.38;
  }

  .soft-bear-celebration {
    right: 0.5rem;
    top: 1rem;
    opacity: 0.44;
  }

  .soft-bear-blessing {
    left: -1.4rem;
    bottom: 1.5rem;
    opacity: 0.42;
  }

  .soft-bear-details {
    left: auto;
    right: 32%;
    top: 0.7rem;
    opacity: 0.34;
  }

  .floating-balloons-page {
    right: -1.3rem;
    top: 7rem;
    opacity: 0.34;
  }

  .floating-balloons-hero {
    right: -2rem;
    top: 6rem;
    opacity: 0.5;
  }

  .floating-balloons-theme {
    right: 49%;
    top: 0.4rem;
    opacity: 0.38;
  }

  .floating-balloons-location {
    right: -1.6rem;
    top: -0.4rem;
    opacity: 0.36;
  }

  .floating-balloons-details {
    right: -1.2rem;
    bottom: 8rem;
    opacity: 0.36;
  }
}

@media (max-width: 768px) {
  .section {
    padding-top: 2.45rem;
    padding-bottom: 2.45rem;
  }

  .hero {
    padding-top: 2.25rem;
  }

  .section-heading {
    margin-bottom: 1rem;
  }

  .hero-copy__facts,
  .hero-copy__actions,
  .celebration-grid,
  .details-grid,
  .theme-showcase__cards,
  .blessing-points {
    gap: 0.72rem;
  }

  .theme-showcase__photo img,
  .details-image img,
  .blessing-image img {
    max-height: 22rem;
  }

  .map-placeholder {
    min-height: 16rem;
  }
}

/* Real Jaden photo layer: soft shapes, no hard frames. */
.hero-frame__peek img,
.theme-showcase__photo img,
.blessing-image img,
.details-image img {
  background: #fffaf4;
  object-fit: cover;
  box-shadow:
    0 22px 48px rgba(167, 125, 83, 0.14),
    0 2px 0 rgba(255, 255, 255, 0.88) inset;
  filter: saturate(0.96) contrast(0.98);
}

.hero-frame__peek img {
  width: min(28.5rem, 92%);
  max-height: 38rem;
  margin-left: auto;
  margin-right: -4.2rem;
  aspect-ratio: 0.72;
  border-radius: 48% 0 0 48% / 16% 0 0 16%;
  object-position: 51% 48%;
}

.theme-showcase__photo img {
  aspect-ratio: 1.5 / 1;
  border-radius: 3.2rem 1.8rem 3.2rem 1.8rem;
  object-position: center 52%;
}

.blessing-image img {
  aspect-ratio: 0.72;
  border-radius: 3rem 3rem 1.8rem 1.8rem;
  object-position: center 45%;
}

.details-image img {
  aspect-ratio: 1.42 / 1;
  border-radius: 1.8rem 3.2rem 1.8rem 3.2rem;
  object-position: center 50%;
}

.theme-showcase__photo,
.blessing-image,
.details-image {
  overflow: visible;
}

@media (min-width: 769px) {
  .hero-frame__peek {
    min-height: 38rem;
  }

  .theme-showcase__photo img,
  .details-image img {
    max-height: 24rem;
  }

  .blessing-image img {
    max-height: 24rem;
  }
}

@media (max-width: 1100px) {
  .hero-frame__peek img {
    margin-right: -1.4rem;
  }
}

@media (max-width: 768px) {
  .hero-frame__peek img,
  .theme-showcase__photo img,
  .blessing-image img,
  .details-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0;
    box-shadow: 0 16px 34px rgba(167, 125, 83, 0.13);
    filter: saturate(0.96) contrast(0.98);
  }

  .hero-frame__peek {
    justify-items: end;
  }

  .hero-frame__peek img {
    width: min(18rem, 78vw);
    max-height: 27rem;
    margin-right: -1rem;
    aspect-ratio: 0.72;
    border-radius: 45% 0 0 45% / 14% 0 0 14%;
    object-position: 50% 48%;
  }

  .theme-showcase__photo img,
  .details-image img {
    max-height: 15.5rem;
    aspect-ratio: 1.22 / 1;
    border-radius: 2rem 1.25rem 2rem 1.25rem;
  }

  .blessing-image img {
    width: min(16rem, 74vw);
    max-height: 22rem;
    margin-inline: auto;
    aspect-ratio: 0.72;
    border-radius: 2.4rem 2.4rem 1.25rem 1.25rem;
  }
}

/* Photo palette correction: cloud white, balloon blue, peach, oatmeal, teddy brown. */
:root {
  --bg: #fffefa;
  --bg-soft: #ffffff;
  --text: #6f4c37;
  --text-soft: rgba(111, 76, 55, 0.72);
  --accent: #efb89f;
  --accent-deep: #98684b;
  --accent-rich: #6f4c37;
  --cream: #fff3e8;
  --latte: #ead2ba;
  --mocha: #b7835f;
  --sky: #cfeafa;
  --sky-soft: #edf8ff;
  --peach: #f2c2ad;
  --peach-soft: #fff0e8;
  --butter: #f5c84f;
  --teddy: #9a6d4c;
  --white: #ffffff;
  --shadow-soft: 0 18px 44px rgba(143, 96, 62, 0.09);
  --shadow-card: 0 14px 28px rgba(143, 96, 62, 0.08);
}

body {
  background:
    radial-gradient(circle at 9% 9%, rgba(207, 234, 250, 0.36), transparent 18%),
    radial-gradient(circle at 92% 16%, rgba(242, 194, 173, 0.28), transparent 18%),
    radial-gradient(circle at 82% 72%, rgba(237, 248, 255, 0.52), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fffefa 46%, #fff7ef 100%);
  color: var(--text);
}

.page-cloud,
.section-cloud {
  background:
    radial-gradient(circle at 22% 65%, rgba(255, 255, 255, 0.96) 0 18%, transparent 19%),
    radial-gradient(circle at 42% 45%, rgba(255, 255, 255, 0.98) 0 22%, transparent 23%),
    radial-gradient(circle at 63% 60%, rgba(237, 248, 255, 0.92) 0 18%, transparent 19%),
    radial-gradient(circle at 78% 48%, rgba(255, 255, 255, 0.96) 0 16%, transparent 17%);
}

.page-stars {
  opacity: 0.3;
  background-image:
    radial-gradient(circle at 14% 16%, rgba(245, 200, 79, 0.62) 0 2px, transparent 2.5px),
    radial-gradient(circle at 76% 11%, rgba(207, 234, 250, 0.78) 0 2px, transparent 2.5px),
    radial-gradient(circle at 82% 36%, rgba(242, 194, 173, 0.7) 0 1.5px, transparent 2px),
    radial-gradient(circle at 21% 40%, rgba(154, 109, 76, 0.42) 0 1.5px, transparent 2px);
}

.page-orbit {
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.95) 0 22%, transparent 23%),
    linear-gradient(180deg, rgba(237, 248, 255, 0.94), rgba(242, 194, 173, 0.58));
  box-shadow: 0 10px 22px rgba(143, 96, 62, 0.12);
}

.page-ribbon {
  border-color: rgba(207, 234, 250, 0.42);
}

.page-ribbon::before,
.page-ribbon::after {
  border-color: rgba(242, 194, 173, 0.38);
}

.confetti-layer span {
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.9) 0 18%, transparent 19%),
    rgba(207, 234, 250, 0.46);
  box-shadow: 0 0 18px rgba(207, 234, 250, 0.32);
}

.confetti-layer span:nth-child(3n) {
  background: rgba(242, 194, 173, 0.46);
}

.confetti-layer span:nth-child(4n) {
  background: rgba(245, 200, 79, 0.28);
}

.section-nav {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 36px rgba(111, 76, 55, 0.13);
}

.section-nav a:hover,
.section-nav a.is-active {
  background: linear-gradient(180deg, rgba(255, 243, 232, 0.96), rgba(237, 248, 255, 0.86));
  color: var(--accent-rich);
}

.eyebrow,
.card-kicker,
.map-placeholder span {
  background: linear-gradient(90deg, rgba(255, 243, 232, 0.98), rgba(237, 248, 255, 0.88));
  color: var(--accent-deep);
}

.hero-copy h1 em,
.fact-card span,
.hero-frame__badge span,
.blessing-point span,
.celebration-card h3,
.theme-note h3,
.detail-card h3 {
  color: var(--accent-deep);
}

.button-primary {
  background: linear-gradient(180deg, #98684b, #7d513b);
  color: #fffefa;
  box-shadow: 0 16px 30px rgba(111, 76, 55, 0.22);
}

.button-secondary {
  background: rgba(237, 248, 255, 0.76);
  color: var(--accent-rich);
}

.button-secondary .button__icon {
  background: rgba(255, 243, 232, 0.9);
}

.fact-card,
.celebration-card,
.theme-note,
.detail-card,
.hero-frame__badge,
.hero-floating,
.blessing-point,
.map-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 246, 0.9));
  box-shadow: var(--shadow-card);
}

.blessing-panel {
  background:
    radial-gradient(circle at top right, rgba(207, 234, 250, 0.46), transparent 25%),
    radial-gradient(circle at 9% 88%, rgba(242, 194, 173, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 246, 0.97));
}

.map-placeholder {
  background:
    radial-gradient(circle at 18% 22%, rgba(207, 234, 250, 0.42), transparent 20%),
    radial-gradient(circle at 86% 78%, rgba(242, 194, 173, 0.22), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 239, 0.82));
}

.section-bubbles span {
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.74), transparent 28%),
    rgba(207, 234, 250, 0.34);
  box-shadow: 0 8px 20px rgba(143, 96, 62, 0.1);
}

.section-bubbles span:nth-child(2n) {
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.78), transparent 28%),
    rgba(242, 194, 173, 0.32);
}

.hero-balloon,
.floating-balloons span:nth-child(1),
.floating-balloons span:nth-child(3) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(207, 234, 250, 0.86));
}

.floating-balloons span:nth-child(2),
.floating-balloons span:nth-child(4),
.hero-balloon-right {
  background: linear-gradient(180deg, rgba(255, 243, 232, 0.98), rgba(242, 194, 173, 0.82));
}

.hero-spark {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 200, 79, 0.55));
}

.hero-paws span {
  background: rgba(237, 248, 255, 0.92);
  box-shadow:
    0 -0.5rem 0 -0.18rem rgba(255, 243, 232, 0.95),
    -0.46rem -0.16rem 0 -0.2rem rgba(255, 243, 232, 0.95),
    0.46rem -0.16rem 0 -0.2rem rgba(255, 243, 232, 0.95);
}

.hero-frame__peek img,
.theme-showcase__photo img,
.blessing-image img,
.details-image img {
  background: #fffefa;
  box-shadow:
    0 22px 48px rgba(111, 76, 55, 0.13),
    0 2px 0 rgba(255, 255, 255, 0.9) inset;
  filter: saturate(1.02) contrast(0.99) brightness(1.01);
}

.floating-balloons span::after,
.hero-balloon::before {
  background: linear-gradient(180deg, rgba(111, 76, 55, 0.28), transparent);
}

.soft-bear {
  background:
    radial-gradient(circle at 40% 44%, #6f4c37 0 0.18rem, transparent 0.2rem),
    radial-gradient(circle at 60% 44%, #6f4c37 0 0.18rem, transparent 0.2rem),
    radial-gradient(circle at 50% 57%, #6f4c37 0 0.24rem, transparent 0.26rem),
    radial-gradient(ellipse at 50% 66%, #fff3e8 0 26%, transparent 27%),
    linear-gradient(180deg, #d3a17a, #b7835f);
  box-shadow: 0 18px 28px rgba(111, 76, 55, 0.1);
}

.soft-bear::before {
  background: radial-gradient(circle, #f7dfc9 0 40%, #b7835f 42%);
  box-shadow: 2.8rem 0 0 #b7835f;
}

.soft-bear::after {
  background:
    radial-gradient(circle at 20% 52%, #b7835f 0 25%, transparent 26%),
    radial-gradient(circle at 80% 52%, #b7835f 0 25%, transparent 26%);
}

@media (max-width: 768px) {
  body {
    background:
      radial-gradient(circle at 0% 4%, rgba(207, 234, 250, 0.42), transparent 17rem),
      radial-gradient(circle at 100% 22%, rgba(242, 194, 173, 0.26), transparent 14rem),
      linear-gradient(180deg, #ffffff 0%, #fffefa 48%, #fff7ef 100%);
  }

  .section-nav {
    background: rgba(255, 255, 255, 0.9);
  }

  .hero-frame__peek img,
  .theme-showcase__photo img,
  .blessing-image img,
  .details-image img {
    box-shadow: 0 16px 34px rgba(111, 76, 55, 0.12);
  }
}

/* Required palette lock: user supplied photo palette. */
:root {
  --powder-blue: #C6D0F1;
  --cloud-white: #EAE5F4;
  --blush-pink: #E7C7BC;
  --dusty-rose: #D4A89F;
  --warm-beige: #CBB39A;
  --lavender-grey: #DBCEDA;
  --muted-mauve: #AD9EAA;
  --teddy-brown: #976B65;
  --deep-cocoa: #5F4142;

  --bg: #EAE5F4;
  --bg-soft: #DBCEDA;
  --text: #5F4142;
  --text-soft: rgba(95, 65, 66, 0.74);
  --accent: #D4A89F;
  --accent-deep: #976B65;
  --accent-rich: #5F4142;
  --cream: #EAE5F4;
  --latte: #CBB39A;
  --mocha: #976B65;
  --sky: #C6D0F1;
  --sky-soft: #EAE5F4;
  --peach: #E7C7BC;
  --peach-soft: #DBCEDA;
  --butter: #CBB39A;
  --teddy: #976B65;
  --white: #EAE5F4;
  --shadow-soft: 0 18px 44px rgba(95, 65, 66, 0.12);
  --shadow-card: 0 14px 28px rgba(95, 65, 66, 0.1);
}

body {
  background:
    radial-gradient(circle at 8% 8%, rgba(198, 208, 241, 0.42), transparent 19%),
    radial-gradient(circle at 92% 18%, rgba(231, 199, 188, 0.34), transparent 18%),
    radial-gradient(circle at 80% 74%, rgba(219, 206, 218, 0.42), transparent 24%),
    linear-gradient(180deg, #EAE5F4 0%, #EAE5F4 54%, #DBCEDA 100%);
  color: #5F4142;
}

.page-cloud,
.section-cloud {
  background:
    radial-gradient(circle at 22% 65%, rgba(234, 229, 244, 0.98) 0 18%, transparent 19%),
    radial-gradient(circle at 42% 45%, rgba(234, 229, 244, 0.96) 0 22%, transparent 23%),
    radial-gradient(circle at 63% 60%, rgba(198, 208, 241, 0.72) 0 18%, transparent 19%),
    radial-gradient(circle at 78% 48%, rgba(219, 206, 218, 0.82) 0 16%, transparent 17%);
}

.page-stars {
  opacity: 0.34;
  background-image:
    radial-gradient(circle at 14% 16%, rgba(198, 208, 241, 0.86) 0 2px, transparent 2.5px),
    radial-gradient(circle at 76% 11%, rgba(231, 199, 188, 0.76) 0 2px, transparent 2.5px),
    radial-gradient(circle at 82% 36%, rgba(203, 179, 154, 0.7) 0 1.5px, transparent 2px),
    radial-gradient(circle at 21% 40%, rgba(173, 158, 170, 0.58) 0 1.5px, transparent 2px);
}

.page-orbit {
  background:
    radial-gradient(circle at 35% 30%, rgba(234, 229, 244, 0.95) 0 22%, transparent 23%),
    linear-gradient(180deg, rgba(198, 208, 241, 0.72), rgba(231, 199, 188, 0.56));
  box-shadow: 0 10px 22px rgba(95, 65, 66, 0.12);
}

.page-ribbon {
  border-color: rgba(198, 208, 241, 0.48);
}

.page-ribbon::before,
.page-ribbon::after {
  border-color: rgba(212, 168, 159, 0.42);
}

.section-nav {
  background: rgba(234, 229, 244, 0.9);
  box-shadow: 0 16px 36px rgba(95, 65, 66, 0.16);
}

.section-nav a {
  color: rgba(95, 65, 66, 0.7);
}

.section-nav a:hover,
.section-nav a.is-active {
  background: linear-gradient(180deg, rgba(198, 208, 241, 0.58), rgba(219, 206, 218, 0.72));
  color: #5F4142;
}

.eyebrow,
.card-kicker,
.map-placeholder span {
  background: linear-gradient(90deg, rgba(198, 208, 241, 0.58), rgba(231, 199, 188, 0.5));
  color: #976B65;
}

.hero-copy h1,
.section-heading h2,
.blessing-copy h2,
.map-placeholder strong {
  color: #5F4142;
}

.hero-copy h1 em,
.fact-card span,
.hero-frame__badge span,
.blessing-point span,
.celebration-card h3,
.theme-note h3,
.detail-card h3,
.map-placeholder span {
  color: #976B65;
}

.hero-copy__lead,
.section-heading,
.celebration-card p,
.story-card p,
.theme-note p,
.blessing-copy p,
.blessing-point p,
.detail-card p,
.site-footer p,
.map-placeholder p {
  color: rgba(95, 65, 66, 0.74);
}

.button-primary,
.map-button {
  background: linear-gradient(180deg, #976B65, #5F4142);
  color: #EAE5F4;
  box-shadow: 0 16px 30px rgba(95, 65, 66, 0.24);
}

.button-primary .button__icon,
.map-button .button__icon {
  background: rgba(234, 229, 244, 0.22);
}

.button-secondary {
  background: rgba(198, 208, 241, 0.44);
  color: #5F4142;
}

.button-secondary .button__icon {
  background: rgba(231, 199, 188, 0.56);
}

.fact-card,
.celebration-card,
.theme-note,
.detail-card,
.hero-frame__badge,
.hero-floating,
.blessing-point,
.map-panel {
  background:
    linear-gradient(180deg, rgba(234, 229, 244, 0.96), rgba(219, 206, 218, 0.74));
  box-shadow: var(--shadow-card);
}

.blessing-panel {
  background:
    radial-gradient(circle at top right, rgba(198, 208, 241, 0.42), transparent 26%),
    radial-gradient(circle at 12% 88%, rgba(231, 199, 188, 0.32), transparent 28%),
    linear-gradient(180deg, rgba(234, 229, 244, 0.98), rgba(219, 206, 218, 0.8));
  box-shadow: var(--shadow-soft);
}

.map-placeholder {
  background:
    radial-gradient(circle at 18% 22%, rgba(198, 208, 241, 0.42), transparent 20%),
    radial-gradient(circle at 86% 78%, rgba(231, 199, 188, 0.28), transparent 22%),
    linear-gradient(180deg, rgba(234, 229, 244, 0.96), rgba(219, 206, 218, 0.76));
}

.confetti-layer span {
  background:
    radial-gradient(circle at 34% 30%, rgba(234, 229, 244, 0.92) 0 18%, transparent 19%),
    rgba(198, 208, 241, 0.48);
  box-shadow: 0 0 18px rgba(198, 208, 241, 0.32);
}

.confetti-layer span:nth-child(2n) {
  background:
    radial-gradient(circle at 34% 30%, rgba(234, 229, 244, 0.9) 0 18%, transparent 19%),
    rgba(231, 199, 188, 0.46);
}

.confetti-layer span:nth-child(3n) {
  background: rgba(212, 168, 159, 0.44);
}

.confetti-layer span:nth-child(4n) {
  background: rgba(203, 179, 154, 0.42);
}

.confetti-layer span:nth-child(5n) {
  background:
    radial-gradient(circle at 35% 30%, rgba(234, 229, 244, 0.95) 0 20%, transparent 21%),
    rgba(173, 158, 170, 0.36);
}

.section-bubbles span {
  background:
    radial-gradient(circle at 32% 28%, rgba(234, 229, 244, 0.78), transparent 28%),
    rgba(198, 208, 241, 0.38);
  box-shadow: 0 8px 20px rgba(95, 65, 66, 0.1);
}

.section-bubbles span:nth-child(2n) {
  background:
    radial-gradient(circle at 32% 28%, rgba(234, 229, 244, 0.82), transparent 28%),
    rgba(231, 199, 188, 0.36);
}

.hero-balloon,
.floating-balloons span:nth-child(1),
.floating-balloons span:nth-child(3) {
  background: linear-gradient(180deg, #EAE5F4, #C6D0F1);
}

.floating-balloons span:nth-child(2),
.floating-balloons span:nth-child(4),
.hero-balloon-right {
  background: linear-gradient(180deg, #E7C7BC, #D4A89F);
}

.floating-balloons span::after,
.hero-balloon::before {
  background: linear-gradient(180deg, rgba(95, 65, 66, 0.26), transparent);
}

.hero-spark {
  background: linear-gradient(180deg, #EAE5F4, #CBB39A);
}

.hero-paws span {
  background: rgba(198, 208, 241, 0.9);
  box-shadow:
    0 -0.5rem 0 -0.18rem rgba(231, 199, 188, 0.94),
    -0.46rem -0.16rem 0 -0.2rem rgba(231, 199, 188, 0.94),
    0.46rem -0.16rem 0 -0.2rem rgba(231, 199, 188, 0.94);
}

.hero-frame__peek img,
.theme-showcase__photo img,
.blessing-image img,
.details-image img {
  background: #EAE5F4;
  box-shadow:
    0 22px 48px rgba(95, 65, 66, 0.14),
    0 2px 0 rgba(234, 229, 244, 0.88) inset;
  filter: saturate(1.02) contrast(0.99) brightness(1.01);
}

.soft-bear {
  background:
    radial-gradient(circle at 40% 44%, #5F4142 0 0.18rem, transparent 0.2rem),
    radial-gradient(circle at 60% 44%, #5F4142 0 0.18rem, transparent 0.2rem),
    radial-gradient(circle at 50% 57%, #5F4142 0 0.24rem, transparent 0.26rem),
    radial-gradient(ellipse at 50% 66%, #EAE5F4 0 26%, transparent 27%),
    linear-gradient(180deg, #CBB39A, #976B65);
  box-shadow: 0 18px 28px rgba(95, 65, 66, 0.12);
}

.soft-bear::before {
  background: radial-gradient(circle, #E7C7BC 0 40%, #976B65 42%);
  box-shadow: 2.8rem 0 0 #976B65;
}

.soft-bear::after {
  background:
    radial-gradient(circle at 20% 52%, #976B65 0 25%, transparent 26%),
    radial-gradient(circle at 80% 52%, #976B65 0 25%, transparent 26%);
}

@media (max-width: 768px) {
  body {
    background:
      radial-gradient(circle at 0% 4%, rgba(198, 208, 241, 0.42), transparent 17rem),
      radial-gradient(circle at 100% 22%, rgba(231, 199, 188, 0.28), transparent 14rem),
      linear-gradient(180deg, #EAE5F4 0%, #EAE5F4 56%, #DBCEDA 100%);
  }

  .section-nav {
    background: rgba(234, 229, 244, 0.92);
  }

  .hero-frame__peek img,
  .theme-showcase__photo img,
  .blessing-image img,
  .details-image img {
    box-shadow: 0 16px 34px rgba(95, 65, 66, 0.13);
  }
}

/* White dominance pass: keep Cloud white as roughly 70 percent of the page. */
body {
  background:
    radial-gradient(circle at 8% 8%, rgba(198, 208, 241, 0.24), transparent 18rem),
    radial-gradient(circle at 94% 18%, rgba(231, 199, 188, 0.18), transparent 16rem),
    radial-gradient(circle at 82% 76%, rgba(219, 206, 218, 0.2), transparent 22rem),
    linear-gradient(180deg, #EAE5F4 0%, #EAE5F4 72%, #DBCEDA 100%);
}

.fact-card,
.celebration-card,
.theme-note,
.detail-card,
.hero-frame__badge,
.hero-floating,
.blessing-point,
.map-panel,
.blessing-panel,
.map-placeholder {
  background:
    linear-gradient(180deg, rgba(234, 229, 244, 0.98), rgba(234, 229, 244, 0.9));
}

.blessing-panel {
  background:
    radial-gradient(circle at top right, rgba(198, 208, 241, 0.18), transparent 25%),
    radial-gradient(circle at 12% 88%, rgba(231, 199, 188, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(234, 229, 244, 0.99), rgba(234, 229, 244, 0.92));
}

.map-placeholder {
  background:
    radial-gradient(circle at 18% 22%, rgba(198, 208, 241, 0.18), transparent 20%),
    radial-gradient(circle at 86% 78%, rgba(231, 199, 188, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(234, 229, 244, 0.99), rgba(234, 229, 244, 0.92));
}

.section-nav {
  background: rgba(234, 229, 244, 0.94);
}

.section-nav a:hover,
.section-nav a.is-active {
  background: rgba(234, 229, 244, 0.96);
  box-shadow: inset 0 0 0 1px rgba(151, 107, 101, 0.14);
}

.eyebrow,
.card-kicker,
.map-placeholder span {
  background: rgba(234, 229, 244, 0.86);
  box-shadow: inset 0 0 0 1px rgba(151, 107, 101, 0.1);
}

.page-cloud,
.section-cloud {
  opacity: 0.62;
}

.page-stars {
  opacity: 0.24;
}

.page-orbit,
.section-bubbles span,
.confetti-layer span {
  opacity: 0.46;
}

.floating-balloons {
  opacity: 0.48;
}

.soft-bear {
  opacity: 0.5;
}

.button-secondary {
  background: rgba(234, 229, 244, 0.88);
  box-shadow: inset 0 0 0 1px rgba(151, 107, 101, 0.1);
}

.hero-frame__peek img,
.theme-showcase__photo img,
.blessing-image img,
.details-image img {
  background: #EAE5F4;
}

@media (max-width: 768px) {
  body {
    background:
      radial-gradient(circle at 0% 4%, rgba(198, 208, 241, 0.22), transparent 14rem),
      radial-gradient(circle at 100% 22%, rgba(231, 199, 188, 0.16), transparent 12rem),
      linear-gradient(180deg, #EAE5F4 0%, #EAE5F4 74%, #DBCEDA 100%);
  }

  .section-nav {
    background: rgba(234, 229, 244, 0.95);
  }

  .page-cloud,
  .section-cloud {
    opacity: 0.42;
  }

  .confetti-layer span {
    opacity: 0.34;
  }
}

/* Whiter invitation pass: keep the palette, but let an airy white canvas lead. */
:root {
  --page-white: #FFFEFF;
  --card-white: #FCFAFE;
  --soft-white: #F8F6FB;
}

body {
  background:
    radial-gradient(circle at 8% 8%, rgba(198, 208, 241, 0.14), transparent 17rem),
    radial-gradient(circle at 94% 18%, rgba(231, 199, 188, 0.12), transparent 15rem),
    radial-gradient(circle at 82% 76%, rgba(219, 206, 218, 0.14), transparent 22rem),
    linear-gradient(180deg, #FFFEFF 0%, #FFFEFF 78%, #F8F6FB 100%);
}

.fact-card,
.celebration-card,
.theme-note,
.detail-card,
.hero-frame__badge,
.hero-floating,
.blessing-point,
.map-panel {
  background:
    linear-gradient(180deg, rgba(255, 254, 255, 0.98), rgba(252, 250, 254, 0.92));
}

.blessing-panel {
  background:
    radial-gradient(circle at top right, rgba(198, 208, 241, 0.12), transparent 25%),
    radial-gradient(circle at 12% 88%, rgba(231, 199, 188, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 254, 255, 0.99), rgba(252, 250, 254, 0.94));
}

.map-placeholder {
  background:
    radial-gradient(circle at 18% 22%, rgba(198, 208, 241, 0.12), transparent 20%),
    radial-gradient(circle at 86% 78%, rgba(231, 199, 188, 0.1), transparent 22%),
    linear-gradient(180deg, rgba(255, 254, 255, 0.99), rgba(252, 250, 254, 0.94));
}

.section-nav {
  background: rgba(255, 254, 255, 0.94);
}

.section-nav a:hover,
.section-nav a.is-active,
.eyebrow,
.card-kicker,
.map-placeholder span,
.button-secondary {
  background: rgba(248, 246, 251, 0.92);
}

.page-cloud,
.section-cloud {
  opacity: 0.5;
}

.page-stars {
  opacity: 0.18;
}

.confetti-layer span,
.section-bubbles span {
  opacity: 0.32;
}

.floating-balloons {
  opacity: 0.4;
}

.soft-bear {
  opacity: 0.42;
}

.hero-frame__peek img,
.theme-showcase__photo img,
.blessing-image img,
.details-image img {
  background: #FFFEFF;
  box-shadow:
    0 22px 48px rgba(95, 65, 66, 0.1),
    0 2px 0 rgba(255, 254, 255, 0.9) inset;
}

@media (max-width: 768px) {
  body {
    background:
      radial-gradient(circle at 0% 4%, rgba(198, 208, 241, 0.14), transparent 13rem),
      radial-gradient(circle at 100% 22%, rgba(231, 199, 188, 0.1), transparent 11rem),
      linear-gradient(180deg, #FFFEFF 0%, #FFFEFF 80%, #F8F6FB 100%);
  }

  .section-nav {
    background: rgba(255, 254, 255, 0.96);
  }
}

/* Annotated desktop proportion pass: match the invitation-card layout without touching mobile. */
@media (min-width: 769px) {
  .hero-frame {
    transform: translateY(1.35rem);
  }

  .celebration-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.35rem);
    align-items: stretch;
  }

  .celebration-card,
  .celebration-card--wide {
    grid-column: auto;
    min-width: 0;
    min-height: 14rem;
    transform: none;
  }

  .theme-showcase__grid {
    grid-template-columns: minmax(19rem, 0.92fr) minmax(21rem, 1fr);
    align-items: center;
    gap: clamp(2rem, 4vw, 3.4rem);
    max-width: 66rem;
  }

  .theme-showcase__photo {
    align-self: center;
    justify-self: center;
    width: min(100%, 31rem);
  }

  .theme-showcase__photo img {
    aspect-ratio: 1.24 / 1;
    min-height: 18rem;
    max-height: 25rem;
    object-fit: cover;
    object-position: center 52%;
  }

  .theme-showcase__cards {
    align-self: center;
    gap: 1rem;
  }

  .blessing-panel__inner {
    grid-template-columns: minmax(0, 0.94fr) minmax(24rem, 1fr);
    align-items: center;
    gap: clamp(2rem, 4vw, 3rem);
  }

  .blessing-side {
    align-self: center;
    display: grid;
    grid-template-columns: minmax(11rem, 0.54fr) minmax(0, 1fr);
    grid-template-areas:
      "photo photo"
      "points points";
    gap: 1rem;
  }

  .blessing-image {
    grid-area: photo;
    justify-self: center;
    margin: 0 auto -0.2rem;
    transform: translateY(1.15rem);
    width: min(100%, 26rem);
  }

  .blessing-image img {
    aspect-ratio: 1.24 / 1;
    max-height: 18rem;
    object-fit: cover;
    object-position: center 48%;
  }

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

  .blessing-point {
    min-width: 0;
    min-height: 8.6rem;
    padding: 1.1rem;
  }
}

@media (min-width: 769px) and (max-width: 1100px) {
  .hero__grid,
  .theme-showcase__grid,
  .blessing-panel__inner {
    display: grid;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(19rem, 0.8fr);
  }

  .theme-showcase__grid,
  .blessing-panel__inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(19rem, 1fr);
  }
}

/* Desktop alignment rail: keep the invitation content inside one consistent margin. */
@media (min-width: 769px) {
  :root {
    --invitation-rail: 74rem;
  }

  .section {
    width: min(calc(100% - clamp(1rem, 4vw, 3.25rem)), var(--invitation-rail));
  }

  .hero__grid,
  .celebration-grid,
  .theme-showcase__grid,
  .blessing-panel,
  .details-grid {
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual,
  .details-image {
    justify-self: end;
  }

  .hero-frame__peek img {
    margin-right: 0;
  }

  .hero-floating-right {
    right: 0;
  }

  .theme-showcase__grid {
    justify-content: stretch;
  }

  .theme-showcase__photo {
    justify-self: start;
  }

  .location .map-panel {
    justify-self: stretch;
  }

  .location {
    grid-template-columns: minmax(0, 0.86fr) minmax(20rem, 1fr);
    column-gap: clamp(1.35rem, 3vw, 2.2rem);
  }

  .details {
    grid-template-columns: minmax(0, 0.9fr) minmax(19rem, 0.86fr);
    gap: 1.05rem clamp(1.35rem, 3vw, 2.2rem);
  }

  .location .section-heading,
  .details .section-heading {
    max-width: 100%;
  }

  .details-image {
    max-width: 25.5rem;
  }

  .details-grid {
    gap: clamp(0.9rem, 1.7vw, 1.15rem);
  }
}

/* Guardrail for narrow desktop/tablet widths: keep lower sections on the same rail. */
@media (min-width: 769px) and (max-width: 980px) {
  .location,
  .details {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.35rem;
    overflow: visible;
  }

  .location .section-heading,
  .details .section-heading,
  .location .map-panel,
  .details-image,
  .details-grid {
    grid-column: 1;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-left: 0;
    margin-right: 0;
    justify-self: stretch;
  }

  .location .section-heading {
    max-width: 48rem;
  }

  .details .section-heading {
    max-width: 44rem;
  }

  .location .map-panel {
    margin-top: 0.2rem;
  }

  .details-image {
    grid-row: auto;
    justify-self: end;
    width: min(100%, 30rem);
    max-width: 30rem;
    margin-left: auto;
  }

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

/* Device-specific responsive pass: tablet and phone get their own invitation rails. */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

@supports not (overflow-x: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  :root {
    --device-rail: 56rem;
  }

  .section {
    width: min(calc(100% - 2rem), var(--device-rail));
    padding: clamp(3rem, 5vw, 4rem) 0;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.78fr);
    gap: clamp(1.35rem, 3vw, 2rem);
    align-items: start;
  }

  .hero-copy h1 {
    font-size: clamp(3.55rem, 7.4vw, 4.8rem);
    max-width: 10ch;
  }

  .hero-copy__lead {
    max-width: 34rem;
  }

  .hero-visual {
    max-width: 24rem;
    justify-self: end;
  }

  .hero-frame {
    transform: translateY(0.85rem);
  }

  .hero-frame__peek img {
    max-height: 27rem;
    object-fit: cover;
    object-position: center 35%;
  }

  .hero-floating-left {
    left: -1.35rem;
    top: -1.1rem;
  }

  .hero-floating-right {
    right: -0.35rem;
    bottom: -1.65rem;
  }

  .celebration-grid,
  .details-grid,
  .blessing-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
  }

  .celebration-card,
  .detail-card,
  .blessing-point {
    padding: 1.05rem;
    min-height: auto;
  }

  .celebration-card h3,
  .theme-note h3,
  .detail-card h3 {
    font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  }

  .theme-showcase__grid {
    grid-template-columns: minmax(18rem, 0.9fr) minmax(0, 1fr);
    gap: 1.4rem;
    max-width: 100%;
  }

  .theme-showcase__photo {
    width: 100%;
  }

  .theme-showcase__photo img,
  .details-image img,
  .blessing-image img {
    aspect-ratio: 1.28 / 1;
    max-height: 19rem;
    object-fit: cover;
  }

  .blessing-panel {
    padding: 1.35rem;
  }

  .blessing-panel__inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(19rem, 1fr);
    gap: 1.35rem;
  }

  .blessing-copy h2 {
    font-size: clamp(3rem, 5.8vw, 4rem);
  }

  .blessing-image {
    width: min(100%, 23rem);
    transform: translateY(0.55rem);
  }

  .location,
  .details {
    width: min(calc(100% - 2rem), var(--device-rail));
  }

  .location .map-panel {
    min-width: 0;
  }

  .details-image {
    width: min(100%, 28rem);
  }

  .section-nav {
    width: min(calc(100% - 2rem), 34rem);
  }
}

@media (max-width: 768px) {
  :root {
    --mobile-section-gutter: clamp(1.75rem, 7vw, 2.75rem);
  }

  body {
    padding-bottom: 5.75rem;
  }

  main {
    width: 100%;
    overflow: visible;
  }

  .section {
    width: min(calc(100% - var(--mobile-section-gutter)), 32rem);
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    padding: clamp(2.15rem, 8vw, 3.2rem) 0;
    overflow: visible;
  }

  .hero {
    padding-top: 2.45rem;
  }

  .hero__grid,
  .theme-showcase__grid,
  .blessing-panel__inner,
  .location,
  .details {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.15rem;
    width: 100%;
  }

  .hero-copy h1,
  .section-heading h2,
  .blessing-copy h2 {
    font-size: clamp(2.45rem, 11.5vw, 3.55rem);
    line-height: 0.98;
    max-width: 11ch;
  }

  .section-heading,
  .location .section-heading,
  .details .section-heading {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0.8rem;
  }

  .hero-copy__lead,
  .blessing-copy p {
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .hero-copy__actions,
  .hero-copy__facts,
  .celebration-grid,
  .theme-showcase__cards,
  .details-grid,
  .blessing-points {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.78rem;
    width: 100%;
  }

  .hero-copy__actions {
    margin-top: 1.1rem;
  }

  .hero-copy__facts {
    margin-top: 1rem;
  }

  .button {
    min-height: 3.15rem;
  }

  .fact-card,
  .celebration-card,
  .theme-note,
  .detail-card,
  .blessing-point,
  .map-placeholder {
    padding: 1rem;
    border-radius: 1.25rem;
  }

  .celebration-card h3,
  .theme-note h3,
  .detail-card h3 {
    font-size: clamp(1.35rem, 6vw, 1.7rem);
    line-height: 1.08;
  }

  .hero-visual {
    width: 100%;
    max-width: 23rem;
    margin: 0 auto;
    justify-self: center;
  }

  .hero-frame {
    transform: none;
  }

  .hero-frame__peek {
    gap: 0.6rem;
  }

  .hero-frame__peek img {
    aspect-ratio: 0.88 / 1;
    max-height: 25rem;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 3rem 0 0 3rem;
    filter: drop-shadow(0 18px 18px rgba(95, 65, 66, 0.12));
  }

  .hero-frame__badge,
  .hero-floating {
    position: relative;
    inset: auto;
    width: min(100%, 17rem);
    margin-left: auto;
    padding: 0.82rem 0.9rem;
  }

  .hero-floating-left {
    margin-top: -0.2rem;
    margin-right: 2.6rem;
  }

  .hero-floating-right {
    margin-top: -0.18rem;
    margin-right: 0;
  }

  .hero-frame__badge {
    margin-top: -3.2rem;
    margin-right: 0.65rem;
  }

  .theme-showcase__photo,
  .details-image,
  .blessing-image {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }

  .theme-showcase__photo img,
  .details-image img {
    aspect-ratio: 1.42 / 1;
    max-height: none;
    object-fit: cover;
    object-position: center 54%;
    border-radius: 1.35rem;
  }

  .blessing-image {
    transform: none;
  }

  .blessing-image img {
    aspect-ratio: 1.18 / 1;
    max-height: none;
    object-fit: cover;
    object-position: center 43%;
    border-radius: 1.35rem;
  }

  .blessing-panel,
  .map-panel {
    padding: 1rem;
    border-radius: 1.35rem;
  }

  .map-placeholder {
    min-height: 15.5rem;
  }

  .map-placeholder strong {
    font-size: clamp(1.35rem, 6.6vw, 1.85rem);
  }

  .location .map-panel,
  .details-image,
  .details-grid {
    grid-column: 1;
    justify-self: stretch;
  }

  .details-image {
    justify-self: end;
    width: min(100%, 24rem);
    margin-left: auto;
  }

  .section-nav {
    left: 50%;
    bottom: 0.65rem;
    width: min(calc(100% - var(--mobile-section-gutter)), 31rem);
    padding: 0.28rem;
    gap: 0.12rem;
    transform: translateX(-50%);
  }

  .section-nav a {
    min-width: 0;
    padding: 0.66rem 0.32rem;
    font-size: 0.72rem;
  }

  .floating-balloons-page {
    display: block;
    right: -1.8rem;
    top: 5.5rem;
    width: 4.7rem;
    height: 5.5rem;
    opacity: 0.26;
  }

  .soft-bear,
  .floating-balloons,
  .section-cloud,
  .page-cloud {
    pointer-events: none;
  }

  .soft-bear-hero {
    right: -1.1rem;
    top: 22rem;
  }

  .soft-bear-celebration {
    right: -0.9rem;
    top: 0.6rem;
  }

  .floating-balloons-celebration,
  .floating-balloons-theme,
  .floating-balloons-location,
  .floating-balloons-details {
    display: block;
  }
}

@media (min-width: 560px) and (max-width: 768px) {
  .section {
    width: min(calc(100% - var(--mobile-section-gutter)), 42rem);
    max-width: 42rem;
  }

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

  .button {
    width: 100%;
  }

  .celebration-grid,
  .details-grid,
  .blessing-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .celebration-card,
  .detail-card,
  .blessing-point {
    padding: 0.95rem;
  }

  .theme-showcase__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    align-items: center;
  }

  .theme-showcase__photo img {
    aspect-ratio: 1.18 / 1;
  }

  .blessing-panel__inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    align-items: center;
  }
}

@media (max-width: 480px) {
  .section {
    width: min(calc(100% - var(--mobile-section-gutter)), 28rem);
    max-width: 28rem;
    padding: 2.05rem 0;
  }

  .hero {
    padding-top: 2.1rem;
  }

  .hero-copy h1,
  .section-heading h2,
  .blessing-copy h2 {
    font-size: clamp(2.2rem, 12vw, 2.85rem);
  }

  .hero-copy__lead,
  .blessing-copy p,
  .celebration-card p,
  .theme-note p,
  .detail-card p,
  .blessing-point p {
    font-size: 0.9rem;
  }

  .hero-visual {
    max-width: 21rem;
  }

  .hero-frame__peek img {
    max-height: 22.5rem;
    border-radius: 2.5rem 0 0 2.5rem;
  }

  .hero-frame__badge,
  .hero-floating {
    width: min(100%, 15.5rem);
  }

  .theme-showcase__photo img,
  .details-image img {
    aspect-ratio: 1.28 / 1;
  }

  .blessing-image img {
    aspect-ratio: 1.05 / 1;
  }

  .map-placeholder {
    min-height: 14rem;
  }

  .section-nav {
    width: min(calc(100% - var(--mobile-section-gutter)), 31rem);
  }

  .section-nav a {
    padding: 0.6rem 0.18rem;
    font-size: 0.68rem;
  }
}

/* Guest notes: health and gift reminders with a soft invitation tone */
.guest-notes {
  position: relative;
}

.guest-notes .section-heading {
  max-width: 44rem;
}

.guest-notes .section-heading p {
  max-width: 35rem;
  margin: 1rem 0 0;
  color: var(--text-muted);
  line-height: 1.75;
}

.guest-notes-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.05fr) minmax(15rem, 0.72fr);
  gap: clamp(1rem, 2vw, 1.45rem);
  width: 100%;
  margin: clamp(1.4rem, 3vw, 2.15rem) auto 0;
  align-items: stretch;
}

.guest-note-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border-radius: 2rem;
  padding: clamp(1.15rem, 2.2vw, 1.8rem);
  background:
    radial-gradient(circle at 12% 8%, rgba(198, 208, 241, 0.18), transparent 8rem),
    radial-gradient(circle at 92% 92%, rgba(231, 199, 188, 0.16), transparent 8rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 250, 254, 0.94));
  box-shadow: var(--shadow-card);
}

.guest-note-card::after {
  content: "";
  position: absolute;
  right: -1.5rem;
  top: -1.35rem;
  width: 5.4rem;
  height: 5.4rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 32%, rgba(255, 255, 255, 0.72) 0 12%, transparent 13%),
    linear-gradient(135deg, rgba(198, 208, 241, 0.22), rgba(231, 199, 188, 0.18));
  opacity: 0.62;
}

.guest-note-card h3 {
  position: relative;
  z-index: 1;
  max-width: 21rem;
  margin: 0.95rem 0 0.75rem;
  font-family: "Baloo 2", cursive;
  font-size: clamp(1.55rem, 2.25vw, 2.1rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--accent-rich);
}

.guest-note-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--text-muted);
  line-height: 1.72;
}

.guest-note-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.72rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.guest-note-list li {
  position: relative;
  padding-left: 1.35rem;
  color: rgba(95, 65, 66, 0.72);
  line-height: 1.6;
}

.guest-note-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 999px;
  background: rgba(198, 208, 241, 0.86);
  box-shadow: 0 0 0 0.22rem rgba(234, 229, 244, 0.68);
}

.gift-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.05rem;
}

.gift-tags span {
  border-radius: 999px;
  padding: 0.48rem 0.78rem;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(95, 65, 66, 0.72);
  box-shadow: inset 0 0 0 1px rgba(151, 107, 101, 0.08);
  font-family: "Baloo 2", cursive;
  font-size: 0.82rem;
  font-weight: 800;
}

.guest-note-card-small {
  align-self: stretch;
  min-height: 0;
  background:
    radial-gradient(circle at 85% 14%, rgba(198, 208, 241, 0.18), transparent 7rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 252, 0.95));
}

.soft-bear-notes {
  right: 3.5%;
  top: -1.2rem;
  width: 4.3rem;
  height: 4rem;
  opacity: 0.52;
  transform: rotate(8deg);
}

.floating-balloons-notes {
  left: -1.35rem;
  bottom: 1.1rem;
  width: 5.8rem;
  height: 6.4rem;
  opacity: 0.36;
}

@media (min-width: 769px) {
  .guest-notes {
    padding-top: 4.1rem;
  }
}

@media (max-width: 980px) {
  .guest-notes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guest-note-card-small {
    grid-column: 1 / -1;
    min-height: 0;
  }
}

@media (max-width: 768px) {
  .guest-notes-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.85rem;
    margin-top: 0.95rem;
  }

  .guest-note-card {
    border-radius: 1.35rem;
    padding: 1rem;
  }

  .guest-note-card h3 {
    max-width: 100%;
    font-size: clamp(1.4rem, 6.3vw, 1.9rem);
  }

  .guest-note-list {
    gap: 0.62rem;
  }

  .gift-tags {
    gap: 0.44rem;
  }

  .gift-tags span {
    padding: 0.42rem 0.66rem;
    font-size: 0.76rem;
  }

  .soft-bear-notes {
    right: -0.55rem;
    top: 0.2rem;
    opacity: 0.34;
  }

  .floating-balloons-notes {
    display: block;
    left: -1.1rem;
    bottom: -0.6rem;
    opacity: 0.24;
  }
}

/* RSVP: final invitation reply section */
.rsvp {
  position: relative;
}

.rsvp .section-heading {
  max-width: 42rem;
}

.rsvp-card {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(28rem, 1fr);
  gap: clamp(1.2rem, 3vw, 2.4rem);
  align-items: start;
  width: 100%;
  margin: 1.4rem auto 0;
  padding: clamp(1.1rem, 2.4vw, 2rem);
  border-radius: 2.35rem;
  background:
    radial-gradient(circle at 10% 18%, rgba(198, 208, 241, 0.12), transparent 15rem),
    radial-gradient(circle at 92% 86%, rgba(231, 199, 188, 0.13), transparent 14rem),
    linear-gradient(180deg, rgba(255, 254, 255, 0.98), rgba(252, 250, 254, 0.94));
  box-shadow: var(--shadow-card);
}

.rsvp-note {
  padding: clamp(0.45rem, 1.5vw, 1.1rem);
}

.rsvp-note h3 {
  max-width: 19rem;
  margin: 1rem 0 0.75rem;
  font-family: "Baloo 2", cursive;
  font-size: clamp(1.7rem, 2.8vw, 2.35rem);
  line-height: 0.94;
  color: var(--accent-rich);
  letter-spacing: -0.04em;
}

.rsvp-note p {
  max-width: 25rem;
  margin: 0;
  color: var(--text-muted);
  line-height: 1.8;
}

.rsvp-form {
  display: grid;
  gap: 1rem;
}

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

.form-field {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
  font-family: "Baloo 2", cursive;
  color: var(--accent-rich);
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-field span {
  width: max-content;
  max-width: 100%;
  padding: 0.38rem 0.78rem;
  border-radius: 999px;
  background: rgba(248, 246, 251, 0.92);
  color: rgba(95, 65, 66, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(151, 107, 101, 0.14);
  border-radius: 1.05rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
  color: var(--accent-rich);
  font: inherit;
  font-size: 1rem;
  line-height: 1.25;
  outline: 0;
  padding: 0.9rem 1rem;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.form-field textarea {
  min-height: 7rem;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(151, 107, 101, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 0 0 4px rgba(198, 208, 241, 0.28);
  transform: translateY(-1px);
}

.form-field-full {
  grid-column: 1 / -1;
}

.rsvp-submit {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.rsvp-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.rsvp-status {
  min-height: 1.35rem;
  margin: 0;
  color: rgba(95, 65, 66, 0.7);
  font-family: "Baloo 2", cursive;
  font-size: 0.96rem;
  font-weight: 700;
}

.rsvp-status.is-success {
  color: var(--accent-rich);
}

.rsvp-form.is-sent {
  animation: rsvpGlow 900ms ease;
}

.soft-bear-rsvp {
  left: -1.55rem;
  top: 6rem;
  width: 4.5rem;
  height: 4.2rem;
  opacity: 0.5;
  transform: rotate(-11deg);
}

.floating-balloons-rsvp {
  right: 4%;
  bottom: 4.5rem;
  width: 5.4rem;
  height: 6.2rem;
  opacity: 0.46;
}

@keyframes rsvpGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(198, 208, 241, 0));
  }

  45% {
    filter: drop-shadow(0 14px 24px rgba(198, 208, 241, 0.34));
  }
}

@media (min-width: 769px) {
  .rsvp {
    padding-top: 4.6rem;
  }
}

@media (min-width: 769px) and (max-width: 980px) {
  .rsvp-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .rsvp-note h3,
  .rsvp-note p {
    max-width: 34rem;
  }
}

@media (max-width: 768px) {
  .rsvp-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    margin-top: 0.85rem;
    padding: 1rem;
    border-radius: 1.35rem;
  }

  .rsvp-note {
    padding: 0.15rem 0.1rem 0.35rem;
  }

  .rsvp-note h3 {
    max-width: 100%;
    margin-top: 0.75rem;
    font-size: clamp(1.45rem, 6.5vw, 1.95rem);
  }

  .form-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.78rem;
  }

  .rsvp-submit {
    width: 100%;
    justify-content: space-between;
  }

  .soft-bear-rsvp {
    left: -0.9rem;
    top: auto;
    bottom: 1rem;
    opacity: 0.38;
  }

  .floating-balloons-rsvp {
    display: block;
    right: -1rem;
    top: 1rem;
    bottom: auto;
    opacity: 0.28;
  }
}

@media (min-width: 560px) and (max-width: 768px) {
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-field-full {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .form-field input,
  .form-field select,
  .form-field textarea {
    padding: 0.84rem 0.9rem;
  }

  .section-nav a {
    font-size: 0.64rem;
  }
}

@media (max-width: 768px) {
  .section-nav {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    width: min(calc(100% - 0.85rem), 32rem);
    gap: 0.05rem;
  }

  .section-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.62rem 0.08rem;
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .section-nav {
    width: calc(100% - 0.5rem);
    padding: 0.18rem;
  }

  .section-nav a {
    padding: 0.55rem 0;
    font-size: 0.58rem;
    letter-spacing: -0.01em;
  }
}

/* Final mobile guardrail: keep the invitation rail consistent after adding RSVP. */
@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  main {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }

  .section {
    box-sizing: border-box;
    width: calc(100vw - var(--mobile-section-gutter));
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-copy,
  .hero-copy__actions,
  .hero-notes,
  .section-heading,
  .celebration-grid,
  .theme-showcase__grid,
  .theme-showcase__cards,
  .blessing-panel,
  .blessing-panel__inner,
  .blessing-side,
  .blessing-points,
  .location,
  .location .section-heading,
  .location .map-panel,
  .details,
  .details .section-heading,
  .details-image,
  .details-grid,
  .guest-notes,
  .guest-notes .section-heading,
  .guest-notes-grid,
  .guest-note-card,
  .rsvp,
  .rsvp .section-heading,
  .rsvp-card,
  .rsvp-form,
  .form-grid,
  .site-footer {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-copy__lead,
  .section-heading p,
  .celebration-card p,
  .theme-note p,
  .blessing-copy p,
  .blessing-point p,
  .detail-card p,
  .guest-note-card p,
  .guest-note-list li,
  .rsvp-note p,
  .rsvp-status {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .button,
  .celebration-card,
  .theme-note,
  .blessing-point,
  .detail-card,
  .guest-note-card,
  .rsvp-card {
    max-width: 100%;
  }

  .section-nav {
    left: 50%;
    right: auto;
    width: min(calc(100vw - 0.75rem), 32rem);
    max-width: calc(100vw - 0.75rem);
    transform: translateX(-50%);
  }
}

@media (max-width: 480px) {
  :root {
    --mobile-section-gutter: clamp(2rem, 8vw, 2.65rem);
  }

  .section {
    width: calc(100vw - var(--mobile-section-gutter));
    max-width: 28rem;
  }

  .section-nav {
    width: calc(100vw - 0.5rem);
    max-width: calc(100vw - 0.5rem);
  }

  .section-nav a {
    font-size: clamp(0.52rem, 2.3vw, 0.58rem);
  }
}

/* Music control: small enough to feel decorative, clear enough to be accessible. */
.music-toggle {
  position: fixed;
  right: max(1rem, calc((100vw - var(--max-width)) / 2));
  bottom: 5.35rem;
  z-index: 13;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 0;
  border-radius: 999px;
  padding: 0.48rem 0.68rem 0.48rem 0.52rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(234, 229, 244, 0.78)),
    var(--white);
  color: var(--accent-rich);
  box-shadow: 0 18px 34px rgba(95, 65, 66, 0.14);
  cursor: pointer;
  backdrop-filter: blur(18px);
  transition:
    transform 420ms var(--ease-premium),
    box-shadow 420ms var(--ease-premium),
    color 420ms var(--ease-premium);
}

.music-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(95, 65, 66, 0.18);
}

.music-toggle:active {
  transform: translateY(0) scale(0.97);
}

.music-toggle:focus-visible {
  outline: 3px solid rgba(198, 208, 241, 0.85);
  outline-offset: 4px;
}

.music-toggle__disc {
  position: relative;
  display: grid;
  width: 2.1rem;
  height: 2.1rem;
  place-items: center;
  border-radius: 999px;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.9) 0 15%, transparent 16%),
    linear-gradient(135deg, #e7c7bc, #c6d0f1);
  box-shadow: inset 0 -3px 7px rgba(95, 65, 66, 0.08);
}

.music-toggle__disc::before,
.music-toggle__disc::after,
.music-toggle__disc span {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
}

.music-toggle__disc::before {
  width: 0.55rem;
  height: 0.55rem;
  left: 0.46rem;
  bottom: 0.46rem;
}

.music-toggle__disc::after {
  width: 0.36rem;
  height: 1rem;
  right: 0.62rem;
  top: 0.48rem;
}

.music-toggle__disc span {
  width: 0.78rem;
  height: 0.22rem;
  right: 0.32rem;
  top: 0.45rem;
  transform: rotate(-14deg);
}

.music-toggle__text,
.music-toggle__state {
  font-family: "Baloo 2", cursive;
  line-height: 1;
}

.music-toggle__text {
  font-size: 0.9rem;
  font-weight: 700;
}

.music-toggle__state {
  min-width: 2rem;
  border-radius: 999px;
  padding: 0.32rem 0.48rem;
  background: rgba(255, 255, 255, 0.76);
  color: var(--text-soft);
  font-size: 0.72rem;
  text-align: center;
}

.music-toggle.is-playing {
  color: var(--text);
}

.music-toggle.is-playing .music-toggle__disc {
  animation: musicBob 1.9s ease-in-out infinite;
}

.music-toggle.is-playing .music-toggle__state {
  background: rgba(198, 208, 241, 0.46);
  color: var(--accent-rich);
}

@keyframes musicBob {
  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }

  50% {
    transform: translateY(-3px) rotate(3deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .music-toggle,
  .music-toggle.is-playing .music-toggle__disc {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 768px) {
  .music-toggle {
    right: 0.75rem;
    bottom: 4.45rem;
    gap: 0.42rem;
    padding: 0.38rem 0.52rem 0.38rem 0.42rem;
  }

  .music-toggle__disc {
    width: 1.85rem;
    height: 1.85rem;
  }

  .music-toggle__text {
    font-size: 0.78rem;
  }

  .music-toggle__state {
    min-width: 1.8rem;
    padding: 0.28rem 0.38rem;
    font-size: 0.64rem;
  }
}

@media (max-width: 390px) {
  .music-toggle {
    right: 0.55rem;
    bottom: 4.1rem;
  }

  .music-toggle__text {
    display: none;
  }
}
