:root {
  --paper: #fff9f5;
  --blush: #f7ddd9;
  --rose: #d95d78;
  --rose-dark: #b84361;
  --plum: #2d1828;
  --ink: #301f2c;
  --cream: #fff2e3;
  --gold: #dba75b;
  --line: rgba(48, 31, 44, .18);
  --serif: 'Bodoni MT', Didot, 'Times New Roman', serif;
  --sans: 'Segoe UI', Arial, sans-serif;
  --shadow: 0 24px 70px rgba(72, 35, 56, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  overflow-x: hidden;
}
body.intro-open { overflow: hidden; }
::selection { color: #fff; background: var(--rose); }
img, video { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
a { color: inherit; text-decoration: none; }

.noise {
  position: fixed;
  z-index: 20;
  inset: 0;
  opacity: .035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.85'/%3E%3C/svg%3E");
}

.welcome {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 24px;
  color: #fff;
  background: var(--plum);
  transition: opacity .8s ease, visibility .8s ease;
}
.welcome::before,
.welcome::after {
  content: '';
  position: absolute;
  width: min(43vw, 620px);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
}
.welcome::before { left: -18vw; top: -25%; }
.welcome::after { right: -18vw; bottom: -35%; }
.welcome.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.welcome__glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(217, 93, 120, .22);
  filter: blur(100px);
}
.welcome__card {
  position: relative;
  z-index: 2;
  max-width: 660px;
  text-align: center;
}
.welcome__seal {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 28px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.7rem;
  box-shadow: 0 0 0 7px rgba(255,255,255,.04);
}
.welcome .eyebrow { color: #e7bac5; }
.welcome h1 {
  margin: 18px 0 10px;
  font-family: var(--serif);
  font-size: clamp(4rem, 10vw, 7.8rem);
  font-weight: 400;
  line-height: .95;
}
.welcome__note {
  margin: 24px auto 30px;
  color: rgba(255,255,255,.74);
  font-family: Georgia, serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: italic;
  line-height: 1.75;
}
.welcome__hint { display: block; margin-top: 18px; color: rgba(255,255,255,.42); font-size: .69rem; letter-spacing: .09em; }
.welcome__side {
  position: absolute;
  top: 50%;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .55em;
  color: rgba(255,255,255,.28);
}
.welcome__side--left { left: 30px; transform: rotate(-90deg) translateY(-50%); }
.welcome__side--right { right: 14px; transform: rotate(90deg) translateY(-50%); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.button:hover { transform: translateY(-3px); }
.button--primary { color: var(--plum); background: #fff5ee; box-shadow: 0 12px 30px rgba(0,0,0,.2); }
.button--primary svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.button--light { color: var(--plum); background: var(--cream); box-shadow: 0 14px 35px rgba(0,0,0,.18); }

.nav {
  position: absolute;
  z-index: 15;
  top: 0;
  left: 0;
  width: 100%;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(22px, 6vw, 92px);
}
.nav.is-sticky {
  position: fixed;
  height: 68px;
  background: rgba(255,249,245,.88);
  border-bottom: 1px solid rgba(48,31,44,.08);
  backdrop-filter: blur(16px);
  animation: navIn .4s ease both;
}
@keyframes navIn { from { transform: translateY(-100%); } }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--serif); font-size: 1.05rem; }
.brand__mark { display: grid; place-items: center; width: 34px; height: 34px; color: #fff; background: var(--plum); border-radius: 50%; font-family: var(--serif); }
.nav__links { display: flex; gap: 34px; font-size: .72rem; font-weight: 600; letter-spacing: .06em; }
.nav__links a { position: relative; padding: 8px 0; }
.nav__links a::after { content: ''; position: absolute; left: 0; bottom: 2px; width: 0; height: 1px; background: currentColor; transition: width .25s ease; }
.nav__links a:hover::after { width: 100%; }
.nav__heart { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; font-size: 1.3rem; }

.hero {
  position: relative;
  min-height: min(900px, 100svh);
  overflow: hidden;
  padding: 125px clamp(22px, 6vw, 92px) 70px;
  background: linear-gradient(135deg, #fffaf6 25%, #f9e5e1 100%);
}
.hero::before {
  content: 'PINKU';
  position: absolute;
  right: -4vw;
  bottom: -4vw;
  color: transparent;
  -webkit-text-stroke: 1px rgba(184,67,97,.12);
  font-family: var(--serif);
  font-size: clamp(8rem, 21vw, 19rem);
  line-height: .8;
  letter-spacing: -.04em;
}
.hero__content { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(40px, 7vw, 110px); max-width: 1280px; min-height: calc(100svh - 205px); margin: auto; }
.eyebrow { margin: 0; color: var(--rose-dark); font-size: .69rem; font-weight: 600; text-transform: uppercase; letter-spacing: .24em; }
.hero .eyebrow { display: flex; align-items: center; gap: 12px; }
.hero .eyebrow span { width: 32px; height: 1px; background: var(--rose); }
.hero h2,
.section h2 {
  margin: 22px 0;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 7vw, 7rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .91;
}
.hero h2 em,
.section h2 em { color: var(--rose); font-family: Georgia, serif; font-weight: 400; }
.hero__intro { max-width: 500px; margin: 30px 0; color: #6d5968; font-family: Georgia, serif; font-size: clamp(1rem, 1.4vw, 1.18rem); line-height: 1.8; }
.hero__intro strong { color: var(--ink); }
.text-link { display: inline-flex; align-items: center; gap: 14px; padding-bottom: 7px; border-bottom: 1px solid var(--ink); font-size: .75rem; font-weight: 600; letter-spacing: .04em; }
.text-link span { color: var(--rose); }

.hero__visual { position: relative; width: min(100%, 580px); aspect-ratio: 1 / 1.05; justify-self: end; }
.portrait { position: absolute; margin: 0; overflow: hidden; box-shadow: var(--shadow); }
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.portrait--main { right: 8%; top: 0; width: 64%; height: 87%; border: 10px solid rgba(255,255,255,.9); border-radius: 48% 48% 5px 5px; transform: rotate(2.5deg); }
.portrait--main img { object-position: 50% 28%; }
.portrait--small { z-index: 2; left: 0; bottom: 2%; width: 35%; aspect-ratio: .8; border: 7px solid #fff; transform: rotate(-7deg); }
.portrait--small img { object-position: 50% 15%; }
.hero__stamp { position: absolute; z-index: 3; right: -2%; bottom: 1%; display: grid; place-items: center; width: 118px; height: 118px; color: var(--cream); background: var(--rose-dark); border-radius: 50%; box-shadow: 0 18px 30px rgba(133,44,69,.23); }
.hero__stamp svg { position: absolute; inset: 8px; width: calc(100% - 16px); height: calc(100% - 16px); animation: spin 20s linear infinite; }
.hero__stamp text { fill: currentColor; font-family: var(--sans); font-size: 8px; font-weight: 600; letter-spacing: 1.6px; }
.hero__stamp span { font-size: 1.5rem; }
@keyframes spin { to { transform: rotate(360deg); } }
.hero__caption { position: absolute; top: 20%; left: 4%; color: var(--rose-dark); font-family: Georgia, serif; font-size: 1rem; font-style: italic; transform: rotate(-10deg); }
.hero__scribble { position: absolute; z-index: 4; right: 1%; top: 1%; width: 185px; color: var(--rose); transform: rotate(17deg); }
.hero__scribble svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 1.2; }
.hero__orb { position: absolute; border-radius: 50%; filter: blur(2px); }
.hero__orb--one { top: 18%; left: -80px; width: 180px; height: 180px; background: rgba(228,158,172,.16); }
.hero__orb--two { right: 30%; bottom: -100px; width: 230px; height: 230px; background: rgba(255,255,255,.4); }
.scroll-cue { position: absolute; z-index: 4; bottom: 26px; left: clamp(22px, 6vw, 92px); display: flex; align-items: center; gap: 12px; color: #8b7784; font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; }
.scroll-cue i { display: block; width: 52px; height: 1px; background: currentColor; }

.ticker { overflow: hidden; padding: 18px 0; color: #fff; background: var(--rose-dark); transform: rotate(-1deg) scale(1.015); }
.ticker__track { display: flex; width: max-content; align-items: center; gap: 34px; animation: marquee 24s linear infinite; }
.ticker span { font-family: var(--serif); font-size: 1.1rem; letter-spacing: .12em; }
.ticker b { color: #f2b8c6; font-size: 1.1rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { position: relative; padding: clamp(90px, 12vw, 170px) clamp(22px, 7vw, 110px); }
.section__number { position: absolute; top: 80px; right: 7vw; color: rgba(48,31,44,.12); font-family: var(--serif); font-size: 5rem; }
.letter { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: clamp(60px, 10vw, 150px); max-width: 1440px; margin: auto; }
.letter__photo { position: relative; max-width: 460px; margin: auto; }
.letter__arch { aspect-ratio: .75; overflow: hidden; border-radius: 48% 48% 4px 4px; box-shadow: var(--shadow); }
.letter__arch img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; filter: saturate(.78) sepia(.1); }
.letter__photo::before { content: ''; position: absolute; z-index: -1; inset: -22px 26px 30px -24px; border: 1px solid rgba(184,67,97,.36); border-radius: 48% 48% 4px 4px; }
.letter__photo > p { position: absolute; right: -55px; bottom: 38px; padding: 14px 17px; color: var(--rose-dark); background: var(--paper); font-family: Georgia, serif; font-size: 1rem; font-style: italic; line-height: 1.45; transform: rotate(-5deg); }
.flower { position: absolute; z-index: 2; display: grid; place-items: center; color: var(--cream); background: var(--rose); border-radius: 50%; box-shadow: 0 8px 20px rgba(99,43,64,.18); }
.flower--one { top: 8%; left: -26px; width: 56px; height: 56px; font-size: 1.7rem; transform: rotate(-14deg); }
.flower--two { right: -15px; bottom: 23%; width: 38px; height: 38px; font-size: 1.1rem; }
.letter__paper { max-width: 680px; }
.letter__paper h2 { font-size: clamp(3.3rem, 6vw, 6.3rem); }
.letter__body { padding-left: 28px; border-left: 1px solid var(--rose); color: #6b5865; font-family: Georgia, serif; font-size: clamp(1rem, 1.25vw, 1.13rem); line-height: 1.9; }
.letter__body strong { color: var(--ink); font-weight: 400; background: linear-gradient(transparent 58%, #f4ced2 58%); }
.letter__sign { display: flex; flex-direction: column; gap: 5px; margin: 34px 0 0 30px; }
.letter__sign span { color: #8a7683; font-size: .72rem; }
.letter__sign strong { color: var(--rose-dark); font-family: Georgia, serif; font-size: 1.18rem; font-style: italic; font-weight: 400; }

.reasons { max-width: 1440px; margin: auto; padding-top: 50px; }
.reasons__heading { max-width: 780px; text-align: center; margin: 0 auto 65px; }
.reasons__heading h2 { font-size: clamp(3.1rem, 6vw, 5.6rem); }
.reasons__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.reason-card { position: relative; min-height: 315px; padding: 42px; overflow: hidden; border: 1px solid var(--line); border-radius: 2px 46px 2px 2px; background: #fffdfb; }
.reason-card::after { content: ''; position: absolute; right: -50px; bottom: -70px; width: 160px; height: 160px; border: 1px solid rgba(217,93,120,.18); border-radius: 50%; }
.reason-card--dark { color: #fff; background: var(--plum); transform: translateY(-18px); }
.reason-card__icon { display: grid; place-items: center; width: 52px; height: 52px; color: var(--rose-dark); background: var(--blush); border-radius: 50%; font-family: Georgia, serif; font-size: 1.6rem; }
.reason-card--dark .reason-card__icon { color: var(--cream); background: rgba(255,255,255,.09); }
.reason-card__no { position: absolute; top: 25px; right: 28px; color: #b8a6af; font-family: var(--serif); font-size: 1rem; }
.reason-card h3 { margin: 48px 0 12px; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.reason-card p { max-width: 250px; margin: 0; color: #88727f; font-family: Georgia, serif; font-size: .95rem; line-height: 1.65; }
.reason-card--dark p { color: rgba(255,255,255,.62); }

.memories { overflow: hidden; color: #fff; background: var(--plum); }
.memories::before { content: 'MEMORIES'; position: absolute; top: 8%; left: -2%; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.055); font-family: var(--serif); font-size: clamp(7rem, 17vw, 16rem); line-height: 1; }
.memories__top { position: relative; z-index: 1; display: flex; align-items: end; justify-content: space-between; max-width: 1250px; margin: 0 auto 75px; }
.memories__top h2 { margin-bottom: 0; }
.memories__top > p { max-width: 310px; margin-bottom: 15px; color: rgba(255,255,255,.57); font-family: Georgia, serif; font-size: 1rem; font-style: italic; line-height: 1.7; }
.memories .eyebrow { color: #e7a8b7; }
.gallery { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .8fr .85fr; grid-template-rows: 310px 260px 330px; gap: 22px; max-width: 1250px; margin: auto; }
.gallery__item { position: relative; display: block; width: 100%; height: 100%; padding: 0; overflow: hidden; border: 0; background: #1d101a; cursor: zoom-in; }
.gallery__item::after { content: '↗'; position: absolute; right: 16px; top: 16px; display: grid; place-items: center; width: 34px; height: 34px; color: #fff; background: rgba(45,24,40,.48); border: 1px solid rgba(255,255,255,.28); border-radius: 50%; opacity: 0; transform: translateY(6px); transition: .25s ease; }
.gallery__item:hover::after { opacity: 1; transform: none; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1), opacity .3s; }
.gallery__item:hover img { transform: scale(1.045); opacity: .86; }
.gallery__item span { position: absolute; left: 18px; bottom: 16px; color: #fff; font-family: Georgia, serif; font-size: .8rem; font-style: italic; text-shadow: 0 2px 10px #000; }
.gallery__item--a { grid-row: 1 / 3; }
.gallery__item--a img { object-position: 50% 15%; }
.gallery__item--b { grid-column: 2 / 4; }
.gallery__item--b img { object-position: 50% 35%; }
.gallery__item--c img { object-position: 50% 35%; }
.gallery__item--d img { object-position: 50% 22%; }
.gallery__item--e { grid-column: 1 / 3; }
.gallery__item--e img { object-position: 50% 22%; }
.gallery__item--f img { object-position: 50% 24%; }
.gallery__quote { display: none; }

.film { display: grid; grid-template-columns: .7fr 1.3fr; align-items: center; gap: clamp(50px, 7vw, 110px); max-width: 1440px; margin: auto; }
.film__copy h2 { font-size: clamp(3.5rem, 6vw, 6rem); }
.film__copy > p:not(.eyebrow) { max-width: 380px; color: #786370; font-family: Georgia, serif; font-size: 1rem; font-style: italic; line-height: 1.75; }
.film__arrow { display: inline-block; margin-top: 18px; color: var(--rose); font-family: Georgia, serif; font-size: 3rem; transform: rotate(4deg); }
.film__frame { position: relative; padding: 13px; background: #fff; box-shadow: var(--shadow); transform: rotate(1.4deg); }
.film__frame::before { content: ''; position: absolute; z-index: -1; inset: 14px -20px -18px 18px; border: 1px solid var(--rose); }
.film__frame video { width: 100%; max-height: 650px; aspect-ratio: 9 / 13; object-fit: contain; background: #180d15; }
.film__label { position: absolute; bottom: 25px; left: -44px; padding: 10px 18px; color: #fff; background: var(--rose-dark); font-size: .6rem; font-weight: 600; letter-spacing: .16em; transform: rotate(-90deg); }

.wish { min-height: 790px; display: grid; place-items: center; overflow: hidden; color: #fff; background: var(--rose-dark); text-align: center; }
.wish::before, .wish::after { content: ''; position: absolute; width: 430px; height: 430px; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; }
.wish::before { left: -200px; top: -130px; }
.wish::after { right: -190px; bottom: -160px; }
.wish__stars { position: absolute; top: 80px; left: 50%; color: #f4c6cf; font-size: 1rem; letter-spacing: .8em; transform: translateX(-50%); white-space: nowrap; }
.wish__content { position: relative; z-index: 1; }
.wish .eyebrow { color: #f1bdc9; }
.wish h2 { margin: 18px 0; font-size: clamp(3.8rem, 8vw, 7.6rem); }
.wish h2 em { color: var(--cream); }
.wish__content > p:not(.eyebrow):not(.wish__result) { color: rgba(255,255,255,.7); font-family: Georgia, serif; font-style: italic; }
.cake { position: relative; width: 260px; height: 205px; margin: 44px auto 28px; }
.cake__candles { position: absolute; z-index: 3; top: 0; left: 50%; display: flex; gap: 26px; transform: translateX(-50%); }
.cake__candles i { position: relative; display: block; width: 9px; height: 55px; border-radius: 3px 3px 0 0; background: repeating-linear-gradient(-45deg, #f1b3c1 0 5px, #fff2e3 5px 10px); }
.cake__candles b { position: absolute; left: 50%; top: -22px; width: 13px; height: 23px; background: #ffd579; border-radius: 50% 50% 45% 45%; filter: drop-shadow(0 0 8px #ffd579); transform: translateX(-50%); transform-origin: 50% 100%; animation: flame .8s ease-in-out infinite alternate; transition: .3s ease; }
.cake.is-blown .cake__candles b { opacity: 0; transform: translateX(-50%) translateY(-12px) scale(.2); }
@keyframes flame { from { transform: translateX(-50%) rotate(-5deg) scale(.9); } to { transform: translateX(-50%) rotate(5deg) scale(1.05); } }
.cake__top { position: absolute; z-index: 2; top: 51px; left: 32px; width: 196px; height: 27px; background: #ffe4dc; border-radius: 50%; }
.cake__top span { position: relative; top: 7px; display: inline-block; width: 7px; height: 7px; margin: 0 9px; background: var(--rose); border-radius: 50%; }
.cake__layer { position: absolute; left: 32px; width: 196px; }
.cake__layer--one { top: 63px; height: 60px; background: #f9c7cb; }
.cake__layer--one::after { content: ''; position: absolute; left: 0; bottom: -13px; width: 100%; height: 25px; background: #f9c7cb; border-radius: 50%; }
.cake__layer--two { z-index: 2; top: 117px; display: grid; place-items: center; height: 60px; color: var(--rose-dark); background: #fff0e5; font-family: var(--serif); font-size: 1rem; letter-spacing: .35em; }
.cake__layer--two::after { content: ''; position: absolute; left: 0; bottom: -13px; width: 100%; height: 25px; background: #fff0e5; border-radius: 50%; }
.cake__plate { position: absolute; bottom: 8px; left: 12px; width: 236px; height: 18px; background: rgba(255,255,255,.25); border-radius: 50%; }
.wish__result { height: 26px; margin: 20px 0 0; color: var(--cream); font-family: Georgia, serif; font-style: italic; opacity: 0; transform: translateY(8px); transition: .4s ease; }
.wish__result.is-visible { opacity: 1; transform: none; }

.closing { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(65px, 9vw, 130px); max-width: 1440px; margin: auto; }
.closing__collage { position: relative; min-height: 640px; }
.closing__photo { position: absolute; margin: 0; padding: 9px 9px 34px; background: #fff; box-shadow: var(--shadow); }
.closing__photo img { width: 100%; height: 100%; object-fit: cover; }
.closing__photo--one { z-index: 1; top: 0; left: 4%; width: 48%; height: 61%; transform: rotate(-7deg); }
.closing__photo--two { z-index: 2; top: 17%; right: 4%; width: 47%; height: 66%; transform: rotate(6deg); }
.closing__photo--three { z-index: 3; bottom: 0; left: 22%; width: 40%; height: 52%; transform: rotate(-2deg); }
.closing__photo--one img { object-position: 50% 20%; }
.closing__photo--two img { object-position: 50% 20%; }
.closing__photo--three img { object-position: 50% 26%; }
.closing__copy h2 { font-size: clamp(3.5rem, 6.2vw, 6.2rem); }
.closing__copy > p { color: #755f6d; font-family: Georgia, serif; font-size: 1.05rem; line-height: 1.8; }
.closing__xoxo { margin-top: 45px; color: var(--rose-dark); font-family: Georgia, serif; font-size: 1.4rem; font-style: italic; }
.closing__xoxo span { display: inline-grid; place-items: center; width: 35px; height: 35px; margin-left: 8px; color: #fff; background: var(--rose); border-radius: 50%; font-style: normal; }

footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 28px clamp(22px, 6vw, 92px); color: rgba(255,255,255,.63); background: var(--plum); font-size: .63rem; letter-spacing: .08em; text-transform: uppercase; }
footer b { color: #ef8298; }
footer a { color: #fff; }

.lightbox { width: min(92vw, 650px); max-height: 90vh; padding: 0; overflow: visible; border: 0; background: transparent; }
.lightbox::backdrop { background: rgba(25,11,21,.9); backdrop-filter: blur(7px); }
.lightbox img { width: 100%; max-height: 82vh; object-fit: contain; box-shadow: 0 30px 80px rgba(0,0,0,.4); }
.lightbox p { margin: 12px 0 0; color: #fff; font-family: Georgia, serif; font-style: italic; text-align: center; }
.lightbox__close { position: absolute; z-index: 2; top: -15px; right: -15px; display: grid; place-items: center; width: 40px; height: 40px; padding: 0; color: #fff; background: var(--rose-dark); border: 1px solid rgba(255,255,255,.5); border-radius: 50%; cursor: pointer; font-size: 1.7rem; line-height: 1; }

.reveal { opacity: 0; transform: translateY(36px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal--delay { transition-delay: .13s; }
.reveal--delay-2 { transition-delay: .26s; }
.reveal.is-visible { opacity: 1; transform: none; }

.petal-field, .confetti { position: fixed; z-index: 90; inset: 0; overflow: hidden; pointer-events: none; }
.petal { position: absolute; top: -40px; width: 10px; height: 15px; background: var(--petal-color, #f4a6b8); border-radius: 80% 0 80% 30%; animation: petalFall var(--duration, 4s) linear forwards; }
@keyframes petalFall { to { transform: translate3d(var(--drift, 40px), 110vh, 0) rotate(720deg); opacity: .2; } }
.confetti-piece { position: absolute; width: 8px; height: 12px; border-radius: 2px; animation: burst var(--duration, 2.4s) cubic-bezier(.1,.7,.3,1) forwards; }
@keyframes burst { 0% { transform: translate3d(0,0,0) rotate(0); opacity: 1; } 100% { transform: translate3d(var(--x), var(--y), 0) rotate(var(--r)); opacity: 0; } }

@media (max-width: 1000px) {
  .hero { min-height: auto; padding-top: 120px; }
  .hero__content { grid-template-columns: 1fr; min-height: auto; text-align: center; }
  .hero .eyebrow { justify-content: center; }
  .hero__intro { margin-left: auto; margin-right: auto; }
  .hero__visual { justify-self: center; width: min(80vw, 550px); }
  .scroll-cue { display: none; }
  .letter { gap: 70px; }
  .letter__photo > p { right: -18px; }
  .reasons__grid { gap: 14px; }
  .reason-card { padding: 30px; }
  .gallery { grid-template-rows: 270px 220px 280px; }
  .film { grid-template-columns: 1fr; max-width: 850px; }
  .film__copy { text-align: center; }
  .film__copy > p:not(.eyebrow) { margin-left: auto; margin-right: auto; }
  .film__arrow { display: none; }
}

@media (max-width: 760px) {
  .nav { height: 72px; padding: 0 20px; }
  .nav.is-sticky { height: 62px; }
  .nav__links { display: none; }
  .brand { font-size: .95rem; }
  .welcome__side { display: none; }
  .welcome h1 { font-size: clamp(3.8rem, 18vw, 5.5rem); }
  .welcome__note br { display: none; }
  .hero { padding: 108px 20px 72px; }
  .hero__content { gap: 50px; }
  .hero h2, .section h2 { font-size: clamp(3.2rem, 15vw, 4.8rem); }
  .hero__visual { width: min(92vw, 460px); }
  .portrait--main { right: 5%; width: 69%; height: 86%; }
  .portrait--small { left: 1%; width: 36%; }
  .hero__stamp { right: 0; width: 92px; height: 92px; }
  .hero__caption { left: 0; }
  .hero__scribble { width: 130px; }
  .ticker { padding: 14px 0; }
  .section { padding: 95px 21px; }
  .section__number { top: 40px; }
  .letter { grid-template-columns: 1fr; }
  .letter__photo { width: 83%; }
  .letter__paper { text-align: left; }
  .letter__paper h2 { font-size: clamp(3.2rem, 14vw, 4.7rem); }
  .letter__body { padding-left: 20px; }
  .reasons { padding-top: 30px; }
  .reasons__heading { margin-bottom: 42px; }
  .reasons__grid { grid-template-columns: 1fr; gap: 16px; }
  .reason-card { min-height: 260px; }
  .reason-card--dark { transform: none; }
  .reason-card h3 { margin-top: 38px; }
  .memories__top { display: block; margin-bottom: 48px; }
  .memories__top > p { margin-top: 28px; }
  .gallery { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 340px 245px 270px 320px; gap: 10px; }
  .gallery__item--a { grid-row: auto; }
  .gallery__item--b, .gallery__item--e { grid-column: 1 / 3; }
  .gallery__item--c, .gallery__item--d { grid-row: 2; }
  .gallery__item--e { grid-row: 3; }
  .gallery__item--f { grid-row: 4; grid-column: 1 / 3; }
  .gallery__item--b { grid-row: 1; grid-column: 2; }
  .gallery__item--a { grid-row: 1; grid-column: 1; }
  .film { gap: 50px; }
  .film__frame { transform: none; padding: 8px; }
  .film__label { left: -35px; }
  .wish { min-height: 760px; }
  .wish__stars { top: 55px; }
  .closing { grid-template-columns: 1fr; gap: 70px; }
  .closing__collage { min-height: 520px; }
  .closing__copy { text-align: center; }
  .closing__copy h2 { font-size: clamp(3.2rem, 14vw, 4.8rem); }
  footer { flex-direction: column; text-align: center; }
  footer span:nth-child(2) { display: none; }
}

@media (max-width: 440px) {
  .welcome { padding: 20px; }
  .welcome__seal { margin-bottom: 22px; }
  .hero h2 { font-size: 3.4rem; }
  .hero__intro { font-size: .98rem; }
  .hero__visual { aspect-ratio: .95; }
  .portrait--main { border-width: 7px; }
  .portrait--small { border-width: 5px; }
  .hero__stamp { bottom: -2%; }
  .letter__photo { width: 88%; }
  .flower--one { left: -18px; }
  .letter__photo > p { right: -12px; bottom: 15px; font-size: .85rem; }
  .gallery { grid-template-rows: 280px 220px 240px 285px; }
  .gallery__item span { font-size: .72rem; }
  .cake { transform: scale(.9); margin-top: 35px; margin-bottom: 18px; }
  .wish .button { margin-top: -5px; }
  .closing__collage { min-height: 420px; }
  .closing__photo--one { width: 52%; height: 61%; }
  .closing__photo--two { width: 50%; height: 66%; }
  .closing__photo--three { width: 44%; height: 52%; }
}

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