@font-face {
  font-family: "Overpass";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("../fonts/overpass-latin-var.woff2") format("woff2");
}

@font-face {
  font-family: "Overpass Mono";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/overpass-mono-latin-var.woff2") format("woff2");
}

@font-face {
  font-family: "Lora";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/lora-latin-400.woff2") format("woff2");
}

@font-face {
  font-family: "Lora";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/lora-latin-400-italic.woff2") format("woff2");
}

:root {
  color-scheme: dark;
  --asphalt: #14161a;
  --dusk: #1d222b;
  --headlight: #f2ead8;
  --dryerase: #e03a2f;
  --parkway: #58a06f;
  --kodak: #d9a441;
  --muted: rgba(242, 234, 216, .72);
  --faint: rgba(242, 234, 216, .14);
  --route-x: clamp(1.5rem, 5vw, 5.5rem);
  --shell: min(100% - clamp(1.5rem, 6vw, 7rem), 96rem);
  --display: "Overpass", "Arial Narrow", Arial, sans-serif;
  --mono: "Overpass Mono", "SFMono-Regular", Consolas, monospace;
  --story: "Lora", Georgia, serif;
}

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

html {
  background: var(--asphalt);
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--asphalt);
  color: var(--headlight);
  font-family: var(--display);
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.is-locked {
  overflow: hidden;
}

::selection {
  background: var(--dryerase);
  color: var(--headlight);
}

img,
svg {
  display: block;
}

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

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 80;
  transform: translateY(-180%);
  border: 1px solid var(--headlight);
  border-radius: 4px;
  background: var(--headlight);
  color: var(--asphalt);
  padding: .7rem .95rem;
  font-family: var(--mono);
  font-size: .8rem;
  text-decoration: none;
  transition: transform .18s ease;
}

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

.route-spine {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--route-x);
  z-index: 1;
  width: clamp(3rem, 7vw, 5.5rem);
  transform: translateX(-50%);
  pointer-events: none;
}

.route-spine svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.route-spine__line {
  fill: none;
  stroke: rgba(242, 234, 216, .3);
  stroke-dasharray: 1 15;
  stroke-linecap: round;
  stroke-width: 2.25;
  vector-effect: non-scaling-stroke;
}

.route-heart {
  position: fixed;
  left: var(--route-x);
  top: var(--route-heart-y, 15svh);
  z-index: 15;
  width: clamp(1.8rem, 3vw, 2.55rem);
  transform: translate(-50%, -50%) rotate(var(--route-heart-rotate, -8deg));
  filter: drop-shadow(0 0 14px rgba(224, 58, 47, .55));
  pointer-events: none;
  transition: transform .08s linear, top .08s linear;
}

.route-heart path,
.footer-heart path {
  fill: none;
  stroke: var(--dryerase);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

.hero {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 92svh;
  overflow: hidden;
  align-items: end;
  isolation: isolate;
  background: var(--asphalt);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(20, 22, 26, .36);
  pointer-events: none;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__heart {
  position: absolute;
  left: 53%;
  top: 50%;
  z-index: 1;
  width: clamp(24rem, 58vw, 52rem);
  height: auto;
  transform: translate(-50%, -50%) rotate(-4deg);
  filter: drop-shadow(0 0 18px rgba(224, 58, 47, .42));
  pointer-events: none;
}

.hero__heart path {
  fill: none;
  stroke: var(--dryerase);
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
  animation: draw-heart 1.2s ease-out .25s forwards;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: var(--shell);
  margin-inline: auto;
  padding: clamp(2rem, 6vw, 5.5rem) 0 clamp(1.5rem, 4vw, 3.5rem) clamp(2rem, 9vw, 9rem);
  text-shadow: 0 2px 18px rgba(0, 0, 0, .48);
}

.road-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  margin: 0 0 1rem;
  border: 2px solid rgba(242, 234, 216, .32);
  border-radius: 4px;
  background: var(--parkway);
  color: var(--headlight);
  padding: .35rem .65rem .28rem;
  font-family: var(--display);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1;
  text-transform: uppercase;
}

.hero h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  line-height: .9;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(4.2rem, 14vw, 12rem);
  letter-spacing: .08em;
}

.hero__subhead {
  max-width: 45rem;
  margin: clamp(.9rem, 2vw, 1.4rem) 0 0;
  color: var(--headlight);
  font-family: var(--story);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-style: italic;
  line-height: 1.3;
}

.scroll-cue {
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: .55rem;
  align-items: end;
  margin-top: clamp(1.5rem, 3vw, 2.7rem);
  color: var(--headlight);
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue__post {
  position: relative;
  width: .45rem;
  height: 2.6rem;
  border: 1px solid rgba(242, 234, 216, .78);
  border-radius: 2px;
  background: var(--asphalt);
}

.scroll-cue__post::before {
  content: "";
  position: absolute;
  left: 50%;
  top: .45rem;
  width: .9rem;
  height: .38rem;
  transform: translateX(-50%);
  border-radius: 1px;
  background: var(--kodak);
}

.story-section {
  position: relative;
  z-index: 2;
  padding: clamp(4.5rem, 9vw, 8.5rem) 0;
}

.story-section--road,
.story-section--before {
  background: rgba(29, 34, 43, .46);
}

.route-stop::before {
  content: "";
  position: absolute;
  left: var(--route-x);
  top: clamp(3.2rem, 6vw, 6.2rem);
  z-index: 3;
  width: clamp(2rem, 4vw, 4.5rem);
  transform: translateX(-50%);
  border-top: 3px dashed var(--dryerase);
}

.section-shell,
.footer__inner {
  width: var(--shell);
  margin-inline: auto;
  padding-left: clamp(2.4rem, 7vw, 8rem);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(10rem, .42fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: clamp(2rem, 5vw, 4.5rem);
}

.mile-marker {
  display: grid;
  gap: .55rem;
  align-self: start;
  margin: .25rem 0 0;
  color: var(--kodak);
  font-family: var(--mono);
  font-size: clamp(.78rem, 1.2vw, .92rem);
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.mile-marker span:first-child {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(217, 164, 65, .46);
  border-radius: 4px;
  background: var(--dusk);
  padding: .5rem .62rem .43rem;
  color: var(--kodak);
  font-weight: 700;
}

.mile-marker span:last-child {
  color: var(--parkway);
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: .12em;
}

h2 {
  max-width: 12ch;
  overflow-wrap: anywhere;
  color: var(--headlight);
  font-size: clamp(2.45rem, 6.3vw, 6.4rem);
  letter-spacing: .07em;
}

h3 {
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  letter-spacing: .06em;
}

.section-intro {
  max-width: 58rem;
  margin: clamp(.9rem, 2vw, 1.35rem) 0 0;
  color: var(--muted);
  font-family: var(--story);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-style: italic;
  line-height: 1.42;
}

.gallery {
  margin-top: 0;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(7rem, 9vw, 11.25rem);
  gap: clamp(.55rem, 1.25vw, 1rem);
}

.photo-card {
  position: relative;
  min-width: 0;
  margin: 0;
  grid-column: span 4;
  grid-row: span 2;
}

.editorial-grid--wedding .photo-card:nth-child(1),
.editorial-grid--honeymoon .photo-card:nth-child(2),
.editorial-grid--honeymoon .photo-card:nth-child(12) {
  grid-column: span 8;
  grid-row: span 3;
}

.editorial-grid--wedding .photo-card:nth-child(5),
.editorial-grid--wedding .photo-card:nth-child(11),
.editorial-grid--honeymoon .photo-card:nth-child(5),
.editorial-grid--honeymoon .photo-card:nth-child(18) {
  grid-column: span 7;
  grid-row: span 3;
}

.editorial-grid--wedding .photo-card:nth-child(7),
.editorial-grid--wedding .photo-card:nth-child(15),
.editorial-grid--honeymoon .photo-card:nth-child(8),
.editorial-grid--honeymoon .photo-card:nth-child(20) {
  grid-column: span 5;
  grid-row: span 3;
}

.editorial-grid--wedding .photo-card:nth-child(9),
.editorial-grid--wedding .photo-card:nth-child(18),
.editorial-grid--honeymoon .photo-card:nth-child(1),
.editorial-grid--honeymoon .photo-card:nth-child(15),
.editorial-grid--honeymoon .photo-card:nth-child(23) {
  grid-column: span 4;
  grid-row: span 3;
}

.photo-card__button,
.travel-thumb,
.destination-card {
  border: 0;
  color: inherit;
}

.photo-card__button,
.travel-thumb {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.photo-frame {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--faint);
  border-radius: 6px;
  background: var(--dusk);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
}

.photo-frame img,
.travel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter .32s ease, transform .32s ease;
}

.photo-card figcaption {
  position: absolute;
  right: .55rem;
  bottom: .55rem;
  left: .55rem;
  border-left: 3px solid var(--kodak);
  border-radius: 4px;
  background: rgba(20, 22, 26, .78);
  color: var(--headlight);
  padding: .45rem .55rem;
  font-family: var(--story);
  font-size: .84rem;
  font-style: italic;
  line-height: 1.3;
  opacity: 0;
  pointer-events: none;
  transform: translateY(.3rem);
  transition: opacity .2s ease, transform .2s ease;
}

.photo-card__button:hover img,
.photo-card__button:focus-visible img,
.destination-card:hover img,
.travel-thumb:focus-visible img {
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.025);
}

.photo-card:hover figcaption,
.photo-card:focus-within figcaption {
  opacity: 1;
  transform: translateY(0);
}

.route-loop {
  position: relative;
  z-index: 2;
  width: var(--shell);
  margin: clamp(-1.5rem, -2vw, -.5rem) auto;
  padding-left: clamp(2.4rem, 7vw, 8rem);
}

.route-loop svg {
  width: 100%;
  height: clamp(5rem, 13vw, 9rem);
  overflow: visible;
}

.route-loop path {
  fill: none;
  stroke: var(--dryerase);
  stroke-dasharray: 1 14;
  stroke-linecap: round;
  stroke-width: 4;
  vector-effect: non-scaling-stroke;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  gap: clamp(.85rem, 1.8vw, 1.35rem);
}

.destination-card {
  position: relative;
  display: grid;
  min-width: 0;
  gap: 1rem;
  overflow: hidden;
  align-content: start;
  border: 1px solid rgba(242, 234, 216, .14);
  border-radius: 8px;
  background: var(--dusk);
  padding: 1rem;
  text-align: left;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .24);
  cursor: pointer;
}

.destination-card__header {
  min-height: 5rem;
  padding-right: 6.8rem;
}

.destination-card p {
  margin: .42rem 0 0;
  color: var(--kodak);
  font-family: var(--mono);
  font-size: .82rem;
  letter-spacing: .06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.destination-collage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: clamp(6rem, 9vw, 8.4rem);
  gap: .4rem;
  overflow: hidden;
  border-radius: 6px;
  background: var(--asphalt);
}

.travel-thumb {
  min-width: 0;
  overflow: hidden;
}

.travel-thumb:first-child {
  grid-row: span 2;
}

.travel-thumb:only-child,
.travel-thumb:nth-last-child(2):first-child {
  grid-column: span 2;
}

.stamp {
  position: absolute;
  top: .55rem;
  right: .55rem;
  width: clamp(6.5rem, 13vw, 9rem);
  height: auto;
  color: var(--dryerase);
  opacity: 0;
  pointer-events: none;
  transform: rotate(var(--stamp-rotate, -5deg)) scale(.84);
  transform-origin: center;
}

.destination-card--park .stamp {
  color: var(--parkway);
}

.stamp path,
.stamp rect,
.stamp circle {
  fill: none;
  stroke: currentColor;
  stroke-dasharray: 9 3 2 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.stamp text {
  fill: currentColor;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: .1em;
  text-anchor: middle;
  text-transform: uppercase;
}

.destination-card.is-visible .stamp {
  animation: stamp-thump .25s cubic-bezier(.2, .9, .25, 1.2) .08s forwards;
}

.before-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(.6rem, 1.4vw, 1rem);
}

.before-strip .photo-card {
  grid-column: auto;
  grid-row: auto;
  aspect-ratio: 3 / 2;
}

.before-strip .photo-card__button,
.before-strip .photo-frame {
  height: 100%;
}

.site-footer {
  position: relative;
  z-index: 2;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  border-top: 1px solid rgba(242, 234, 216, .12);
  background: var(--dusk);
  text-align: center;
}

.footer-kicker {
  margin: 0 0 1rem;
  color: var(--parkway);
  font-family: var(--mono);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.odometer {
  display: grid;
  gap: .75rem;
  justify-items: center;
}

.odometer__value {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(.25rem, .8vw, .45rem);
  font-family: var(--mono);
  font-size: clamp(2.7rem, 8vw, 6.8rem);
  font-weight: 700;
  line-height: 1;
}

.odometer__cell {
  display: grid;
  min-width: .82em;
  height: 1.12em;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(217, 164, 65, .38);
  border-radius: 5px;
  background: #101216;
  color: var(--kodak);
  box-shadow: inset 0 0 18px rgba(217, 164, 65, .08);
}

.odometer__digit {
  display: block;
}

.odometer.is-rolling .odometer__digit {
  animation: digit-roll .82s cubic-bezier(.18, .82, .25, 1) both;
  animation-delay: calc(var(--digit-index, 0) * 45ms);
}

.odometer p {
  margin: 0;
  color: var(--headlight);
  font-family: var(--display);
  font-size: clamp(.85rem, 1.5vw, 1.05rem);
  font-weight: 800;
  letter-spacing: .14em;
}

.signoff {
  display: inline-flex;
  gap: .6rem;
  align-items: center;
  justify-content: center;
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  color: var(--muted);
  font-family: var(--story);
  font-size: 1rem;
  font-style: italic;
}

.footer-heart {
  width: 1.5rem;
  flex: 0 0 auto;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: minmax(2.8rem, 8vw) minmax(0, 1fr) minmax(2.8rem, 8vw);
  align-items: center;
  background: rgba(20, 22, 26, .96);
  color: var(--headlight);
  padding: clamp(.75rem, 2vw, 1.5rem);
}

.lightbox[hidden] {
  display: none;
}

.lightbox__figure {
  display: grid;
  grid-column: 2;
  min-width: 0;
  margin: 0;
  gap: 1rem;
  justify-items: center;
}

.lightbox__figure img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(78svh, 58rem);
  border: 1px solid rgba(242, 234, 216, .12);
  border-radius: 6px;
  box-shadow: 0 22px 80px rgba(0, 0, 0, .55);
}

.lightbox__figure figcaption {
  max-width: 54rem;
  color: var(--kodak);
  font-family: var(--story);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  font-style: italic;
  line-height: 1.35;
  text-align: center;
}

.lightbox button {
  border: 1px solid rgba(242, 234, 216, .28);
  border-radius: 999px;
  background: rgba(29, 34, 43, .88);
  color: var(--headlight);
  cursor: pointer;
}

.lightbox__close {
  position: absolute;
  top: clamp(.75rem, 2vw, 1.5rem);
  right: clamp(.75rem, 2vw, 1.5rem);
  width: 2.75rem;
  height: 2.75rem;
  color: var(--dryerase);
  font-size: 1.8rem;
  line-height: 1;
}

.lightbox__nav {
  width: clamp(2.6rem, 5vw, 4rem);
  height: clamp(2.6rem, 5vw, 4rem);
  justify-self: center;
  color: var(--kodak);
  font-size: 2.3rem;
  line-height: .6;
}

.lightbox__nav--prev {
  grid-column: 1;
}

.lightbox__nav--next {
  grid-column: 3;
}

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

.heart-rain {
  position: fixed;
  inset: 0;
  z-index: 90;
  overflow: hidden;
  pointer-events: none;
}

.rain-heart {
  position: absolute;
  top: -3rem;
  left: var(--x, 50%);
  width: var(--size, 1rem);
  color: var(--dryerase);
  animation: heart-rain var(--duration, 3s) linear var(--delay, 0s) forwards;
}

.rain-heart path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

@media (hover: none), (max-width: 700px) {
  .photo-card figcaption {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 1500px) {
  body {
    font-size: 1.0625rem;
  }
}

@media (max-width: 980px) {
  .section-header {
    grid-template-columns: 1fr;
  }

  h2 {
    max-width: 14ch;
  }

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

  .photo-card,
  .editorial-grid--wedding .photo-card:nth-child(n),
  .editorial-grid--honeymoon .photo-card:nth-child(n) {
    grid-column: span 3;
    grid-row: span 2;
  }

  .editorial-grid--wedding .photo-card:nth-child(1),
  .editorial-grid--honeymoon .photo-card:nth-child(2),
  .editorial-grid--honeymoon .photo-card:nth-child(12) {
    grid-column: span 6;
    grid-row: span 3;
  }

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

@media (max-width: 720px) {
  :root {
    --route-x: 1.15rem;
    --shell: calc(100% - 1rem);
  }

  .route-spine {
    width: 2.6rem;
  }

  .route-heart {
    width: 1.65rem;
  }

  .hero {
    min-height: 88svh;
  }

  .hero__heart {
    left: 54%;
    top: 46%;
    width: min(122vw, 30rem);
  }

  .hero__content {
    padding-left: 2.35rem;
    padding-right: .75rem;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 18vw, 5.8rem);
    letter-spacing: .055em;
  }

  .road-chip {
    max-width: calc(100vw - 4rem);
    font-size: .66rem;
    line-height: 1.25;
  }

  .story-section {
    padding: clamp(3.5rem, 14vw, 5rem) 0;
  }

  .route-stop::before {
    top: 2.75rem;
    width: 2rem;
  }

  .section-shell,
  .footer__inner,
  .route-loop {
    padding-left: 2.35rem;
    padding-right: .7rem;
  }

  h2 {
    max-width: 13ch;
    font-size: clamp(2rem, 11vw, 3.7rem);
    letter-spacing: .045em;
  }

  .section-intro {
    font-size: 1.05rem;
  }

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

  .photo-card,
  .editorial-grid--wedding .photo-card:nth-child(n),
  .editorial-grid--honeymoon .photo-card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .photo-card__button {
    height: auto;
  }

  .photo-frame {
    height: auto;
    aspect-ratio: var(--photo-ratio, 4 / 3);
  }

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

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

  .destination-card__header {
    padding-right: 5.7rem;
  }

  .stamp {
    width: 6.2rem;
  }

  .lightbox {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }

  .lightbox__figure {
    grid-column: 1 / -1;
    align-self: center;
  }

  .lightbox__nav {
    align-self: end;
    margin-top: 1rem;
  }

  .lightbox__nav--prev {
    grid-column: 1;
    justify-self: start;
  }

  .lightbox__nav--next {
    grid-column: 2;
    justify-self: end;
  }
}

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

  .hero__heart path {
    animation: none !important;
    stroke-dashoffset: 0;
  }

  .route-heart {
    top: 16svh;
    transform: translate(-50%, -50%) rotate(-8deg);
  }

  .stamp {
    opacity: .9;
    transform: rotate(var(--stamp-rotate, -5deg)) scale(1);
  }
}

@keyframes draw-heart {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes stamp-thump {
  0% {
    opacity: 0;
    transform: rotate(var(--stamp-rotate, -5deg)) scale(1.15);
  }

  72% {
    opacity: .95;
    transform: rotate(calc(var(--stamp-rotate, -5deg) * .45)) scale(.98);
  }

  100% {
    opacity: .95;
    transform: rotate(var(--stamp-rotate, -5deg)) scale(1);
  }
}

@keyframes digit-roll {
  0% {
    opacity: .35;
    transform: translateY(-115%);
  }

  72% {
    transform: translateY(8%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heart-rain {
  0% {
    opacity: 0;
    transform: translate3d(0, -4rem, 0) rotate(0deg);
  }

  12% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(var(--drift, 0), 110svh, 0) rotate(var(--spin, 120deg));
  }
}
