@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Italiana&display=swap");

:root {
  --red: #a80f2d;
  --red-dark: #6f071d;
  --red-bright: #d52047;
  --pink: #f4a5b8;
  --blush: #f9dfe5;
  --cream: #fffaf4;
  --ink: #2d1319;
  --gold: #d9aa56;
  --serif: "Italiana", "Times New Roman", serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: clip;
}

button,
a {
  font: inherit;
}

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

.petal-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  overflow: hidden;
}

.falling-petal {
  position: absolute;
  top: -8vh;
  left: var(--left);
  width: var(--size);
  height: calc(var(--size) * 1.7);
  border-radius: 80% 10% 80% 10%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
  animation: petal-fall var(--duration) linear var(--delay) infinite;
  transform-origin: center;
}

@keyframes petal-fall {
  0% {
    transform: translate3d(0, -10vh, 0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.9;
  }
  100% {
    transform: translate3d(var(--drift), 115vh, 0) rotate(var(--spin));
    opacity: 0.2;
  }
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 73% 38%, rgba(244, 165, 184, 0.26), transparent 31%),
    linear-gradient(125deg, #75071d 0%, #a80f2d 52%, #c61a3e 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
  pointer-events: none;
}

.nav {
  width: min(1380px, calc(100% - 8vw));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.nav p,
.nav-link {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.67rem;
}

.nav-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--red);
  background: white;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.45rem;
  text-decoration: none;
}

.nav-link {
  color: white;
  text-underline-offset: 5px;
}

.hero-content {
  width: min(1380px, calc(100% - 8vw));
  margin: auto;
  padding: 7vh 0 13vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(40px, 7vw, 110px);
  position: relative;
  z-index: 2;
}

.hero-glow {
  width: 54vw;
  height: 54vw;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  position: absolute;
  right: -15vw;
  top: 4vh;
}

.hero-glow::before,
.hero-glow::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  inset: 9%;
}

.hero-glow::after {
  inset: 22%;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 26px;
  text-transform: uppercase;
  letter-spacing: 0.23em;
  font-size: 0.7rem;
  font-weight: 600;
}

.eyebrow span {
  width: 42px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.5rem, 8.5vw, 9rem);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.04em;
}

.hero h1 em {
  color: var(--pink);
  font-weight: 400;
}

.hero-note {
  width: min(520px, 92%);
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.celebrate-button {
  border: 0;
  padding: 16px 19px 16px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--red-dark);
  background: white;
  border-radius: 100px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.celebrate-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(67, 0, 15, 0.3);
}

.celebrate-button svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.scroll-note {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
}

.hero-portrait-wrap {
  width: min(470px, 90%);
  margin-left: auto;
  position: relative;
}

.hero-portrait {
  aspect-ratio: 0.8;
  overflow: hidden;
  border-radius: 48% 48% 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  padding: 10px;
  position: relative;
  z-index: 2;
}

.hero-portrait img {
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  border-radius: 48% 48% 5px 5px;
  filter: saturate(0.88) contrast(1.03);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  z-index: 1;
}

.orbit-one {
  width: 125%;
  height: 73%;
  left: -13%;
  top: 11%;
  transform: rotate(-22deg);
}

.orbit-two {
  width: 115%;
  height: 91%;
  left: -7%;
  top: 2%;
  transform: rotate(19deg);
}

.photo-tag {
  position: absolute;
  z-index: 4;
  right: -45px;
  bottom: 26px;
  width: 155px;
  padding: 16px 18px;
  color: var(--ink);
  background: var(--blush);
  box-shadow: 0 12px 30px rgba(76, 0, 19, 0.22);
  transform: rotate(-4deg);
}

.photo-tag span {
  display: block;
  color: #7e4c58;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.photo-tag strong {
  display: block;
  margin-top: 5px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.hero-lily {
  position: absolute !important;
  z-index: 5;
  left: -90px;
  bottom: -36px;
}

.ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(97, 4, 25, 0.22);
  padding: 12px 0;
  white-space: nowrap;
}

.ticker div {
  display: inline-flex;
  gap: 28px;
  align-items: center;
  min-width: max-content;
  animation: ticker 22s linear infinite;
}

.ticker span {
  font-family: var(--serif);
  font-size: 1.2rem;
}

.ticker b {
  color: var(--pink);
  font-size: 0.7rem;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.lily {
  --lily-size: 120px;
  position: relative;
  width: var(--lily-size);
  height: var(--lily-size);
}

.lily-large {
  --lily-size: 155px;
}

.lily-small {
  --lily-size: 70px;
}

.lily .petal {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 31%;
  height: 51%;
  border-radius: 70% 70% 45% 45%;
  background: linear-gradient(90deg, #ede7e2, #fff 48%, #f7efea);
  box-shadow: inset 0 -10px 15px rgba(218, 191, 180, 0.28);
  transform-origin: 50% 100%;
}

.lily .petal::after {
  content: "";
  width: 1px;
  height: 65%;
  position: absolute;
  left: 50%;
  bottom: 4%;
  background: rgba(219, 179, 174, 0.55);
}

.lily .lily-center {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 18%;
  height: 18%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, #f8d778 0 24%, #c99b32 28% 45%, #fff5c8 48% 100%);
  box-shadow: 0 0 18px rgba(255, 215, 116, 0.6);
}

.letter-section {
  width: min(1150px, calc(100% - 10vw));
  margin: 0 auto;
  padding: 140px 0 160px;
  position: relative;
}

.section-number {
  color: var(--red);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  font-weight: 600;
}

.letter-heading {
  max-width: 780px;
  margin: 26px auto 75px;
  text-align: center;
}

.eyebrow.dark {
  color: var(--red);
  justify-content: center;
}

.letter-heading h2,
.memory-copy h2,
.wish-section h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.letter-heading h2 {
  font-size: clamp(2.8rem, 5.5vw, 5.25rem);
  line-height: 1.05;
}

.letter-card {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: clamp(42px, 7vw, 86px);
  position: relative;
  border: 1px solid #ead1d6;
  background:
    linear-gradient(rgba(255, 250, 244, 0.94), rgba(255, 250, 244, 0.94)),
    repeating-linear-gradient(0deg, transparent, transparent 31px, #edd9db 32px);
  box-shadow: 0 32px 90px rgba(98, 26, 43, 0.09);
  transform: rotate(-0.6deg);
}

.letter-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(168, 15, 45, 0.13);
  pointer-events: none;
}

.letter-card p {
  position: relative;
  z-index: 2;
  color: #56333a;
  font-family: Georgia, serif;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.9;
}

.letter-card .letter-opening {
  color: var(--red);
  font-family: var(--serif);
  font-size: 2.15rem;
  line-height: 1.2;
}

.letter-card .letter-ending {
  color: var(--ink);
  font-style: italic;
}

.signature {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 38px;
}

.signature span {
  color: #91616c;
  font-size: 0.8rem;
}

.signature strong {
  margin-top: 5px;
  color: var(--red);
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
}

.letter-lily {
  position: absolute;
  right: -55px;
  top: -60px;
  z-index: 5;
  filter: drop-shadow(0 12px 9px rgba(94, 24, 40, 0.12));
}

.my-moment-section {
  min-height: 820px;
  padding: 120px max(6vw, calc((100vw - 1280px) / 2));
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(70px, 10vw, 150px);
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 80% 45%, rgba(244, 165, 184, 0.19), transparent 30%),
    var(--red);
}

.my-moment-copy {
  position: relative;
  z-index: 2;
}

.my-moment-copy .section-number {
  margin-bottom: 34px;
  color: var(--pink);
}

.my-moment-copy .eyebrow {
  justify-content: flex-start;
}

.my-moment-copy h2 {
  margin: 0 0 34px;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5.5vw, 5.8rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.035em;
}

.my-moment-copy h2 em {
  color: var(--pink);
  font-weight: 400;
}

.my-moment-copy > p:not(.eyebrow) {
  max-width: 510px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.my-moment-note {
  margin-top: 44px;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  border-left: 2px solid var(--pink);
}

.my-moment-note span {
  color: var(--pink);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.my-moment-note strong {
  margin-top: 7px;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
}

.my-moment-photo {
  position: relative;
  width: min(100%, 650px);
  margin-left: auto;
  transform: rotate(2deg);
}

.my-moment-photo img {
  aspect-ratio: 1.18;
  object-fit: cover;
  position: relative;
  z-index: 2;
  border: 10px solid #fff8f3;
  box-shadow: 0 35px 80px rgba(72, 0, 16, 0.32);
}

.my-moment-photo > p {
  width: 235px;
  margin: -10px 22px 0 auto;
  padding: 27px 25px 20px;
  position: relative;
  z-index: 3;
  color: var(--red-dark);
  background: var(--blush);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.22;
  transform: rotate(-4deg);
  box-shadow: 0 14px 30px rgba(72, 0, 16, 0.17);
}

.my-moment-orbit {
  width: 115%;
  aspect-ratio: 1.5;
  position: absolute;
  z-index: 1;
  left: -7%;
  top: -14%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transform: rotate(-10deg);
}

.my-moment-orbit::after {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.my-moment-lily {
  --lily-size: 115px;
  position: absolute;
  z-index: 4;
  left: -48px;
  bottom: -28px;
  filter: drop-shadow(0 10px 10px rgba(72, 0, 16, 0.2));
}

.timeline-section {
  padding: 130px 0 120px;
  overflow: hidden;
  background: #f7e7e8;
}

.timeline-heading {
  width: min(1280px, calc(100% - 10vw));
  margin: 0 auto 65px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}

.timeline-heading .section-number {
  margin-bottom: 28px;
}

.timeline-heading .eyebrow {
  justify-content: flex-start;
  margin-bottom: 20px;
}

.timeline-heading h2 {
  margin: 0;
  color: var(--red-dark);
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6vw, 6rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.035em;
}

.timeline-heading h2 em {
  color: var(--red-bright);
  font-weight: 400;
}

.timeline-beginning {
  margin: 28px 0 0;
  display: flex;
  align-items: center;
  gap: 13px;
  color: #80505b;
  font-family: var(--serif);
  font-size: 1.12rem;
}

.timeline-beginning span {
  padding-right: 13px;
  color: var(--red);
  border-right: 1px solid rgba(168, 15, 45, 0.3);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.timeline-tools {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 8px;
}

.timeline-tools p {
  max-width: 160px;
  margin: 0;
  color: #87525e;
  font-size: 0.72rem;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.timeline-buttons {
  display: flex;
  gap: 8px;
}

.timeline-button {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(168, 15, 45, 0.28);
  border-radius: 50%;
  color: var(--red);
  background: transparent;
  cursor: pointer;
  font-size: 1.25rem;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.timeline-button:hover {
  color: white;
  background: var(--red);
  transform: translateY(-2px);
}

.timeline-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(250px, 25vw, 360px);
  gap: clamp(18px, 2.2vw, 32px);
  padding: 8px max(5vw, calc((100vw - 1280px) / 2)) 28px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: none;
  scrollbar-width: none;
  cursor: grab;
}

.timeline-track::-webkit-scrollbar {
  display: none;
}

.timeline-track:active {
  cursor: grabbing;
}

.timeline-track:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: -2px;
}

.timeline-card {
  margin: 0;
  scroll-snap-align: start;
  position: relative;
}

.timeline-card:nth-child(even) {
  padding-top: 55px;
}

.timeline-card img {
  width: 100%;
  aspect-ratio: 0.76;
  object-fit: cover;
  object-position: center top;
  border-radius: 160px 160px 8px 8px;
  background: #e5cdd1;
  box-shadow: 0 18px 50px rgba(103, 23, 41, 0.13);
  transition: transform 350ms ease, box-shadow 350ms ease;
}

.timeline-card:hover img {
  transform: translateY(-7px);
  box-shadow: 0 28px 60px rgba(103, 23, 41, 0.19);
}

.timeline-card figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 4px 0;
  color: #794651;
}

.timeline-card figcaption strong {
  color: var(--red);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.timeline-card figcaption span {
  max-width: 145px;
  text-align: right;
  font-size: 0.68rem;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.timeline-progress {
  width: min(1280px, calc(100% - 10vw));
  height: 2px;
  margin: 38px auto 0;
  overflow: hidden;
  background: rgba(168, 15, 45, 0.14);
}

.timeline-progress span {
  display: block;
  width: 18%;
  height: 100%;
  background: var(--red);
  transform-origin: left;
  transform: scaleX(1);
}

.journey-films {
  width: min(1280px, calc(100% - 10vw));
  margin: 125px auto 15px;
  padding-top: 100px;
}

.journey-films-heading {
  max-width: 780px;
  margin: 0 auto 70px;
  text-align: center;
}

.journey-films-heading .eyebrow {
  justify-content: center;
  margin-bottom: 22px;
}

.journey-films-heading h3 {
  margin: 0;
  color: var(--red-dark);
  font-family: var(--serif);
  font-size: clamp(3rem, 5.8vw, 5.8rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.035em;
}

.journey-films-heading h3 em {
  color: var(--red-bright);
  font-weight: 400;
}

.journey-films-heading > p:not(.eyebrow) {
  max-width: 590px;
  margin: 32px auto 0;
  color: #7a4e58;
  line-height: 1.75;
}

.journey-film-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
}

.journey-film-card {
  min-width: 0;
}

.journey-film-card:nth-child(2) {
  padding-top: 75px;
}

.journey-video-frame {
  position: relative;
  padding: 9px;
  background: #fff9f4;
  box-shadow: 0 24px 65px rgba(104, 27, 44, 0.14);
}

.journey-video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--red-dark);
}

.journey-film-year {
  position: absolute;
  right: -12px;
  bottom: -17px;
  padding: 10px 15px;
  color: white;
  background: var(--red);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.journey-film-copy {
  padding: 34px 12px 0;
}

.journey-film-label {
  margin: 0 0 13px;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.journey-film-copy h4 {
  margin: 0;
  color: var(--red-dark);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.7vw, 2.8rem);
  font-weight: 400;
  line-height: 1.08;
}

.journey-film-copy > p:last-child {
  margin: 0;
  color: #744a53;
  line-height: 1.75;
}

.journey-sound-note {
  margin: 65px 0 0;
  color: #986873;
  text-align: center;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.memory-section {
  min-height: 900px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--red-dark);
  color: white;
}

.memory-photo {
  min-height: 800px;
  position: relative;
  overflow: hidden;
}

.memory-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 70%, rgba(111, 7, 29, 0.8));
}

.memory-photo img {
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
}

.photo-corners {
  position: absolute;
  inset: 34px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.memory-copy {
  padding: clamp(80px, 10vw, 170px) clamp(50px, 9vw, 150px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.memory-copy::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -210px;
  top: -140px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(255, 255, 255, 0.025), 0 0 0 100px rgba(255, 255, 255, 0.02);
}

.memory-copy .section-number {
  color: var(--pink);
  margin-bottom: 38px;
}

.eyebrow.light {
  color: var(--pink);
}

.memory-copy h2 {
  max-width: 650px;
  font-size: clamp(3rem, 5.2vw, 5.5rem);
  line-height: 0.98;
}

.memory-copy > p:not(.eyebrow) {
  max-width: 550px;
  margin: 38px 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.memory-copy blockquote {
  margin: 0;
  padding-left: 24px;
  border-left: 2px solid var(--pink);
  color: white;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.45;
}

.founder-section {
  padding: 145px max(5vw, calc((100vw - 1280px) / 2)) 150px;
  overflow: hidden;
  background: var(--cream);
}

.founder-intro {
  max-width: 1050px;
  margin: 0 auto 100px;
  text-align: center;
}

.founder-intro .section-number {
  margin-bottom: 28px;
}

.founder-intro .eyebrow {
  justify-content: center;
}

.founder-intro h2 {
  margin: 0;
  color: var(--red-dark);
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6.7vw, 7rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.founder-intro h2 em {
  color: var(--red-bright);
  font-weight: 400;
}

.founder-editorial {
  display: grid;
  grid-template-columns: 0.85fr 1.2fr 0.8fr;
  grid-template-rows: auto auto auto;
  gap: clamp(25px, 4vw, 65px);
  align-items: center;
}

.founder-photo {
  margin: 0;
  position: relative;
}

.founder-photo img {
  height: 100%;
  object-fit: cover;
  box-shadow: 0 25px 70px rgba(84, 18, 33, 0.13);
}

.founder-photo-main {
  grid-column: 2;
  grid-row: 1 / span 2;
  height: 720px;
  padding: 12px;
  border: 1px solid #e4c8cd;
}

.founder-photo-main img {
  object-position: center;
}

.founder-photo-event {
  grid-column: 1;
  grid-row: 2 / span 2;
  height: 440px;
  align-self: end;
}

.founder-photo-event img {
  object-position: center 18%;
  border-radius: 190px 190px 0 0;
}

.founder-photo-soft {
  grid-column: 3;
  grid-row: 2 / span 2;
  height: 430px;
  align-self: end;
}

.founder-photo-soft img {
  object-position: center;
  border-radius: 0 0 190px 190px;
}

.founder-quote {
  margin: 0;
  position: relative;
  color: var(--red-dark);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.4vw, 2.55rem);
  line-height: 1.25;
}

.founder-quote > span {
  display: block;
  height: 45px;
  color: var(--pink);
  font-size: 5rem;
  line-height: 1;
}

.founder-quote-one {
  grid-column: 1;
  grid-row: 1;
}

.founder-quote-two {
  grid-column: 3;
  grid-row: 1;
}

.founder-closing {
  max-width: 920px;
  margin: 130px auto 0;
  padding-top: 55px;
  text-align: center;
  border-top: 1px solid #e5cdd2;
}

.founder-closing p {
  margin: 0;
  color: #5c353e;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.35;
}

.founder-closing strong {
  display: block;
  margin-top: 34px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 0.72rem;
}

.many-sides-section {
  padding: 140px max(5vw, calc((100vw - 1280px) / 2)) 150px;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.52), transparent 28%),
    radial-gradient(circle at 88% 78%, rgba(194, 102, 124, 0.1), transparent 30%),
    linear-gradient(135deg, #edd8da, #f0dcde 54%, #e6ced2);
}

.many-sides-heading {
  max-width: 850px;
  margin: 0 auto 85px;
  text-align: center;
}

.many-sides-heading .section-number {
  margin-bottom: 28px;
  color: var(--red);
}

.many-sides-heading .eyebrow {
  justify-content: center;
  color: var(--red);
}

.many-sides-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 7vw, 7rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.many-sides-heading h2 em {
  color: var(--red);
  font-weight: 400;
}

.many-sides-heading > p:not(.eyebrow) {
  max-width: 610px;
  margin: 38px auto 0;
  color: #754651;
  line-height: 1.8;
}

.expression-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.3vw, 34px);
  align-items: start;
}

.expression-card {
  margin: 0;
}

.expression-card:nth-child(even) {
  padding-top: 70px;
}

.expression-card img {
  width: 100%;
  aspect-ratio: 0.83;
  object-fit: cover;
  object-position: center;
  border: 7px solid #fff9f4;
  box-shadow: 0 22px 55px rgba(102, 24, 43, 0.18);
  transition: transform 300ms ease;
}

.expression-card:hover img {
  transform: translateY(-7px) rotate(-1deg);
}

.expression-card figcaption {
  padding: 20px 7px 0;
  color: #673943;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  line-height: 1.4;
}

.expression-two img {
  object-position: 48% center;
}

.expression-three img {
  object-position: 52% center;
}

.many-sides-quote {
  max-width: 900px;
  margin: 120px auto 0;
  padding-top: 55px;
  border-top: 1px solid rgba(127, 22, 48, 0.25);
  color: var(--red-dark);
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.3vw, 3.2rem);
  line-height: 1.35;
}

.mini-lilies {
  display: flex;
  align-items: center;
  margin: 70px 0 0;
}

.mini-lilies .lily:nth-child(2) {
  margin-left: -17px;
  transform: translateY(14px) scale(0.85) rotate(24deg);
}

.mini-lilies .lily:nth-child(3) {
  margin-left: -16px;
  transform: translateY(-5px) scale(0.72) rotate(-15deg);
}

.wish-section {
  min-height: 850px;
  padding: 130px 5vw 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(244, 165, 184, 0.22), transparent 37%),
    var(--blush);
}

.wish-orbit {
  position: absolute;
  width: min(70vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(168, 15, 45, 0.15);
  border-radius: 50%;
}

.wish-orbit::before,
.wish-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(168, 15, 45, 0.1);
  border-radius: 50%;
}

.wish-orbit::before {
  inset: 9%;
}

.wish-orbit::after {
  inset: 19%;
}

.eyebrow.centered {
  color: var(--red);
  justify-content: center;
  position: relative;
}

.wish-section h2 {
  position: relative;
  z-index: 2;
  color: var(--red-dark);
  font-size: clamp(4rem, 9vw, 8.5rem);
  line-height: 0.85;
}

.wish-section h2 em {
  color: var(--red-bright);
  font-weight: 400;
}

.wish-copy {
  max-width: 470px;
  margin: 32px auto 15px;
  position: relative;
  z-index: 2;
  color: #81515c;
  line-height: 1.7;
}

.cake {
  width: 180px;
  height: 200px;
  margin-top: 25px;
  position: relative;
  z-index: 3;
  border: 0;
  background: none;
  cursor: pointer;
  transition: transform 180ms ease;
}

.cake:hover {
  transform: scale(1.04);
}

.cake span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.flame {
  width: 16px;
  height: 28px;
  top: 2px;
  border-radius: 50% 50% 45% 45%;
  background: #ffbd38;
  box-shadow: 0 0 18px #ff9d20, 0 0 35px rgba(255, 142, 35, 0.6);
  transform-origin: 50% 100%;
  animation: flicker 0.8s ease-in-out infinite alternate;
}

@keyframes flicker {
  to {
    transform: translateX(-50%) rotate(5deg) scale(0.88, 1.06);
  }
}

.wick {
  width: 2px;
  height: 10px;
  top: 29px;
  background: #4b2a22;
}

.candle {
  width: 18px;
  height: 52px;
  top: 37px;
  border-radius: 4px 4px 0 0;
  background: repeating-linear-gradient(-45deg, white 0 7px, #e9889e 7px 13px);
}

.icing {
  width: 138px;
  height: 32px;
  top: 81px;
  z-index: 2;
  border-radius: 50% 50% 12px 12px;
  background: #fff9f1;
  box-shadow: 0 5px 0 #f0c8d1;
}

.cake-body {
  width: 128px;
  height: 83px;
  top: 96px;
  display: grid;
  place-items: center;
  color: #ffe9ed;
  border-radius: 8px 8px 15px 15px;
  background: linear-gradient(90deg, #9c0c29, #c72045 55%, #900620);
  font-family: var(--serif);
  font-size: 2.4rem;
}

.plate {
  width: 170px;
  height: 13px;
  top: 176px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 10px rgba(100, 17, 36, 0.12);
}

.cake.is-blown .flame {
  animation: flame-out 400ms ease forwards;
}

@keyframes flame-out {
  to {
    transform: translate(-50%, -25px) scale(0);
    opacity: 0;
  }
}

.cake-hint {
  margin: 0;
  color: var(--red);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

footer {
  min-height: 400px;
  padding: 90px 5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  background: var(--red);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

footer p {
  margin: 25px 0 2px;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.67rem;
}

footer h2 {
  margin: 0 0 30px;
  position: relative;
  font-family: var(--serif);
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 400;
}

footer a {
  position: relative;
  color: white;
  font-size: 0.75rem;
  text-underline-offset: 5px;
}

.footer-lily {
  z-index: 2;
}

.wish-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0;
  background: rgba(87, 2, 21, 0.75);
  backdrop-filter: blur(8px);
  transition: opacity 450ms ease;
}

.wish-overlay.is-visible {
  opacity: 1;
}

.wish-message {
  width: min(90%, 650px);
  padding: 70px 30px;
  color: white;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(168, 15, 45, 0.85);
  transform: scale(0.85);
  transition: transform 500ms cubic-bezier(0.2, 0.9, 0.25, 1.2);
}

.wish-overlay.is-visible .wish-message {
  transform: scale(1);
}

.wish-message p {
  margin: 0 0 10px;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
}

.wish-message strong {
  font-family: var(--serif);
  font-size: clamp(2.7rem, 7vw, 5.5rem);
  font-weight: 400;
}

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

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

.burst {
  position: fixed;
  z-index: 120;
  width: 12px;
  height: 20px;
  border-radius: 70% 20% 70% 20%;
  pointer-events: none;
  animation: burst 1.2s cubic-bezier(0.1, 0.7, 0.2, 1) forwards;
}

@keyframes burst {
  to {
    transform: translate(var(--x), var(--y)) rotate(var(--r)) scale(0.2);
    opacity: 0;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 70px;
    padding-bottom: 130px;
  }

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

  .eyebrow {
    justify-content: center;
  }

  .hero-note {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-portrait-wrap {
    width: min(480px, 82%);
    margin: 50px auto 0;
  }

  .photo-tag {
    right: -24px;
  }

  .memory-section {
    grid-template-columns: 1fr;
  }

  .my-moment-section {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .my-moment-copy {
    max-width: 650px;
  }

  .my-moment-photo {
    width: min(90%, 650px);
    margin: 0 auto;
  }

  .timeline-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .journey-film-grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(18px, 4vw, 40px);
  }

  .journey-film-card {
    width: 100%;
    margin: 0 auto;
  }

  .journey-film-card:nth-child(2) {
    padding-top: 0;
  }

  .memory-photo {
    min-height: 760px;
  }

  .memory-copy {
    order: 1;
  }

  .memory-photo {
    order: 2;
  }

  .memory-photo::after {
    background: linear-gradient(180deg, var(--red-dark), transparent 25%);
  }

  .memory-copy {
    min-height: 650px;
    align-items: center;
    text-align: center;
  }

  .founder-editorial {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .founder-photo-main {
    grid-column: 1 / span 2;
    grid-row: auto;
    width: min(560px, 82%);
    height: 680px;
    margin: 0 auto;
  }

  .founder-quote-one,
  .founder-quote-two,
  .founder-photo-event,
  .founder-photo-soft {
    grid-column: 1;
  }

  .founder-quote-two {
    grid-column: 2;
  }

  .founder-photo-event {
    grid-column: 1;
  }

  .founder-photo-soft {
    grid-column: 2;
  }

  .expression-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .memory-copy blockquote {
    padding: 20px 0 0;
    border-left: 0;
    border-top: 2px solid var(--pink);
  }
}

@media (max-width: 600px) {
  .nav {
    width: calc(100% - 40px);
  }

  .nav p {
    display: none;
  }

  .hero-content {
    width: calc(100% - 40px);
    gap: 10px;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 22vw, 6rem);
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-portrait-wrap {
    width: 82%;
  }

  .photo-tag {
    right: -25px;
    width: 135px;
  }

  .hero-lily {
    left: -65px;
    --lily-size: 110px;
  }

  .letter-section {
    width: calc(100% - 34px);
    padding: 100px 0;
  }

  .letter-heading {
    margin-bottom: 55px;
  }

  .letter-card {
    padding: 52px 30px;
  }

  .letter-lily {
    right: -12px;
    top: -50px;
    --lily-size: 90px;
  }

  .my-moment-section {
    min-height: auto;
    padding: 90px 28px 105px;
    gap: 65px;
  }

  .my-moment-copy h2 {
    font-size: clamp(3.1rem, 15vw, 4.4rem);
  }

  .my-moment-photo {
    width: 94%;
  }

  .my-moment-photo img {
    border-width: 7px;
  }

  .my-moment-photo > p {
    width: 200px;
    margin-right: -10px;
    font-size: 1.15rem;
  }

  .my-moment-lily {
    --lily-size: 85px;
    left: -30px;
  }

  .timeline-section {
    padding: 95px 0 85px;
  }

  .timeline-heading {
    width: calc(100% - 40px);
    margin-bottom: 42px;
    gap: 32px;
  }

  .timeline-heading h2 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .timeline-beginning {
    align-items: flex-start;
    flex-direction: column;
  }

  .timeline-beginning span {
    padding: 0 0 8px;
    border-right: 0;
    border-bottom: 1px solid rgba(168, 15, 45, 0.3);
  }

  .timeline-tools p {
    max-width: 150px;
  }

  .timeline-track {
    grid-auto-columns: 78vw;
    padding-left: 20px;
    padding-right: 20px;
  }

  .timeline-card:nth-child(even) {
    padding-top: 35px;
  }

  .timeline-progress {
    width: calc(100% - 40px);
  }

  .journey-films {
    width: calc(100% - 40px);
    margin-top: 90px;
    padding-top: 75px;
  }

  .journey-films-heading {
    margin-bottom: 52px;
  }

  .journey-films-heading h3 {
    font-size: clamp(3rem, 14vw, 4.25rem);
  }

  .journey-film-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .journey-video-frame {
    padding: 6px;
  }

  .journey-film-year {
    right: -5px;
  }

  .journey-film-copy {
    padding: 20px 3px 0;
  }

  .journey-film-copy > p:last-child {
    font-size: 0.76rem;
    line-height: 1.55;
  }

  .journey-sound-note {
    margin-top: 42px;
    font-size: 0.58rem;
  }

  .founder-section {
    padding: 95px 20px 105px;
  }

  .founder-intro {
    margin-bottom: 65px;
  }

  .founder-intro h2 {
    font-size: clamp(3.1rem, 15vw, 4.5rem);
  }

  .founder-editorial {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .founder-photo-main,
  .founder-quote-one,
  .founder-quote-two,
  .founder-photo-event,
  .founder-photo-soft {
    grid-column: 1;
  }

  .founder-photo-main {
    width: 92%;
    height: 520px;
    margin-bottom: 15px;
  }

  .founder-quote-one {
    order: 2;
  }

  .founder-photo-event {
    height: 390px;
  }

  .founder-photo-soft {
    height: 400px;
  }

  .founder-closing {
    margin-top: 85px;
  }

  .many-sides-section {
    padding: 95px 20px 105px;
  }

  .many-sides-heading {
    margin-bottom: 58px;
  }

  .many-sides-heading h2 {
    font-size: clamp(3.2rem, 15vw, 4.6rem);
  }

  .expression-gallery {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .expression-card,
  .expression-card:nth-child(even) {
    width: 88%;
    padding-top: 0;
  }

  .expression-card:nth-child(even) {
    margin-left: auto;
  }

  .expression-card img {
    aspect-ratio: 0.92;
  }

  .many-sides-quote {
    margin-top: 85px;
  }

  .memory-photo {
    min-height: 590px;
  }

  .photo-corners {
    inset: 18px;
  }

  .memory-copy {
    padding: 85px 28px;
  }

  .wish-section {
    min-height: 760px;
  }

  .wish-orbit {
    width: 110vw;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
