:root {
  --paper: #fff9f5;
  --paper-deep: #f8ebe7;
  --ink: #30222e;
  --muted: #806c79;
  --line: rgba(75, 42, 66, 0.16);
  --coral: #e87373;
  --coral-deep: #c85368;
  --plum: #39243a;
  --plum-light: #60405b;
  --lilac: #c7b4d3;
  --shadow: 0 24px 70px rgba(79, 39, 58, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #eadbdd;
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  text-decoration: none;
}

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

.page-shell {
  position: relative;
  isolation: isolate;
  width: min(100%, 1600px);
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background:
    radial-gradient(circle at 6% 11%, rgba(242, 195, 197, 0.27), transparent 24rem),
    radial-gradient(circle at 97% 34%, rgba(207, 187, 220, 0.28), transparent 25rem),
    var(--paper);
}

.grain {
  position: fixed;
  z-index: 20;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.topbar {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(100% - 9vw, 1450px);
  margin: 0 auto;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-heart {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid var(--coral);
  border-radius: 50%;
  color: var(--coral-deep);
  font-family: Georgia, serif;
  font-size: 1.2rem;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 52px);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nav-links a,
.brand,
.heart-counter {
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.brand:hover {
  color: var(--coral-deep);
}

.heart-counter {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 7px;
  border: 0;
  background: transparent;
  color: var(--coral-deep);
  font-family: Georgia, serif;
  font-size: 1.45rem;
  line-height: 1;
}

.heart-counter:hover {
  transform: scale(1.1) rotate(-4deg);
}

.heart-count {
  min-width: 18px;
  color: var(--muted);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(310px, 0.82fr) minmax(440px, 1.18fr);
  align-items: center;
  gap: clamp(24px, 4vw, 90px);
  min-height: 760px;
  width: min(100% - 9vw, 1450px);
  margin: 0 auto;
  padding: 70px 0 102px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 25px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  color: var(--coral-deep);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(232, 115, 115, 0.13);
}

h1,
h2,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

h1 {
  max-width: 720px;
  margin-bottom: 34px;
  font-size: clamp(4.25rem, 7.2vw, 7.95rem);
  letter-spacing: -0.075em;
  line-height: 0.85;
}

h1 em,
h2 em,
.note-message em {
  color: var(--coral-deep);
  font-style: italic;
}

.title-heart {
  display: inline-block;
  margin-left: 0.1em;
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 0.46em;
  transform: translateY(-0.9em) rotate(10deg);
}

.hero-description {
  margin-bottom: 35px;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.38;
}

.pill-button,
.secret-button {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--ink);
  border-radius: 99px;
  background: transparent;
  padding: 14px 17px 14px 21px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.pill-button:hover,
.secret-button:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-3px);
}

.button-arrow {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: white;
  font-size: 1rem;
  line-height: 1;
}

.hero-art {
  position: relative;
  min-height: 600px;
  margin-right: -5%;
}

.hero-orb {
  position: absolute;
  top: 6%;
  left: 11%;
  width: min(76%, 570px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 37% 29%, rgba(255, 255, 255, 0.72), transparent 15%),
    linear-gradient(135deg, #f4d2d0, #e8d5e7 75%);
  box-shadow: inset -20px -25px 65px rgba(180, 115, 150, 0.12);
}

.orbit-ring {
  position: absolute;
  border: 1px solid rgba(200, 83, 104, 0.24);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-ring-one {
  top: -2%;
  left: 0;
  width: 87%;
  height: 78%;
  transform: rotate(-27deg);
}

.orbit-ring-two {
  top: 8%;
  left: 12%;
  width: 75%;
  height: 75%;
  border-color: rgba(110, 73, 113, 0.17);
  transform: rotate(35deg);
}

.hero-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 10px solid var(--paper);
  border-bottom-width: 25px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-main {
  z-index: 2;
  top: 5%;
  left: 21%;
  width: min(57%, 380px);
  aspect-ratio: 0.72;
  transform: rotate(-4deg);
}

.hero-photo-main img {
  object-position: center 36%;
}

.hero-photo figcaption {
  position: absolute;
  right: 10px;
  bottom: 0;
  left: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: 0.82rem;
  font-style: italic;
}

.hero-photo figcaption span {
  color: var(--coral-deep);
  font-size: 1.15rem;
  font-style: normal;
}

.hero-photo-small {
  z-index: 3;
  top: 48%;
  right: 2%;
  width: min(35%, 250px);
  aspect-ratio: 0.69;
  border-width: 8px;
  border-bottom-width: 19px;
  transform: rotate(8deg);
}

.hero-photo-small img {
  object-position: 50% 43%;
}

.scribble {
  position: absolute;
  z-index: 4;
  color: var(--coral-deep);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  white-space: nowrap;
}

.scribble-keeps {
  bottom: 5%;
  left: 3%;
  transform: rotate(-13deg);
}

.sticker-heart {
  position: absolute;
  z-index: 5;
  top: 5%;
  right: 7%;
  display: grid;
  width: 69px;
  height: 69px;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: #fffaf5;
  box-shadow: 0 14px 28px rgba(200, 83, 104, 0.22);
  font-family: Georgia, serif;
  font-size: 2.2rem;
  transform: rotate(12deg);
}

.tiny-sparkle {
  position: absolute;
  z-index: 4;
  color: var(--coral);
  font-size: 1.7rem;
}

.sparkle-one {
  top: 24%;
  left: 4%;
}

.sparkle-two {
  right: 8%;
  bottom: 20%;
  color: var(--plum-light);
  font-size: 1rem;
}

.hero-footer-line {
  position: absolute;
  right: 0;
  bottom: 32px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-footer-line .line {
  height: 1px;
  flex: 1;
  background: var(--line);
}

.section-pad {
  width: min(100% - 9vw, 1450px);
  margin: 0 auto;
  padding-top: 145px;
}

.section-kicker {
  margin-bottom: 39px;
}

.section-kicker > span:first-child {
  color: var(--coral-deep);
}

.kicker-line {
  display: inline-block;
  width: 52px;
  height: 1px;
  background: currentColor;
  opacity: 0.65;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 65px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(3.5rem, 7vw, 7.7rem);
  letter-spacing: -0.075em;
  line-height: 0.84;
}

.section-heading p {
  margin: 0 5% 6px 0;
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: 1rem;
  line-height: 1.45;
}

.memory-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(42px, 6vw, 94px) clamp(18px, 2.4vw, 40px);
}

.memory {
  min-width: 0;
  margin: 0;
}

.memory-feature,
.memory-wide {
  grid-column: span 7;
}

.memory-tall {
  grid-column: span 5;
}

.memory-square {
  grid-column: span 6;
}

.memory-photo {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 3px;
  background: #eadbdd;
  box-shadow: 0 15px 40px rgba(70, 35, 53, 0.11);
}

.memory-feature .memory-photo {
  aspect-ratio: 1.17;
}

.memory-wide .memory-photo {
  aspect-ratio: 1.17;
}

.memory-tall .memory-photo {
  aspect-ratio: 0.76;
}

.memory-square .memory-photo {
  aspect-ratio: 1.08;
}

.memory-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(44, 21, 39, 0.02), rgba(46, 16, 40, 0.24));
  content: "";
  opacity: 0;
  transition: opacity 320ms ease;
}

.memory-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
  transition: transform 600ms cubic-bezier(0.2, 0.65, 0.25, 1), filter 400ms ease;
}

.memory-feature .memory-photo img {
  object-position: center 40%;
}

.memory-tall .memory-photo img {
  object-position: center 44%;
}

.memory-wide .memory-photo img {
  object-position: center 46%;
}

.memory-soft .memory-photo img {
  object-position: center 33%;
}

.memory-square .memory-photo img {
  object-position: center 40%;
}

.memory-photo:hover img,
.memory-photo:focus-visible img {
  filter: saturate(1.08);
  transform: scale(1.045);
}

.memory-photo:hover::after,
.memory-photo:focus-visible::after {
  opacity: 1;
}

.photo-hover {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 99px;
  color: white;
  font-family: Georgia, serif;
  font-size: 0.95rem;
  font-style: italic;
  opacity: 0;
  transform: translate(-50%, -40%);
  transition: opacity 300ms ease, transform 300ms ease;
}

.memory-photo:hover .photo-hover,
.memory-photo:focus-visible .photo-hover {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.memory figcaption {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 11px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  margin-top: 16px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.memory-number {
  color: var(--coral-deep);
  font-size: 0.58rem;
}

.memory-title {
  color: var(--muted);
}

.memory-heart {
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 1.15rem;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.reveal-delay-1 {
  transition-delay: 120ms;
}

.love-note {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 605px;
  width: min(100% - 9vw, 1450px);
  margin: 174px auto 0;
  overflow: hidden;
  border-radius: 4px;
  background:
    radial-gradient(circle at 84% 35%, rgba(210, 176, 211, 0.24), transparent 18rem),
    var(--plum);
  color: var(--paper);
}

.note-copy {
  position: relative;
  z-index: 2;
  padding: 76px clamp(32px, 8vw, 125px);
}

.section-kicker-light {
  color: #cdb3c9;
}

.section-kicker-light > span:first-child {
  color: #f19691;
}

.note-copy h2 {
  margin-bottom: 36px;
  color: var(--paper);
  font-size: clamp(3.55rem, 6.5vw, 7rem);
}

.note-message {
  margin-bottom: 38px;
  color: #d7c1d1;
  font-family: Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.15;
}

.note-message em {
  color: #f19691;
}

.secret-button {
  border-color: #d7c1d1;
  color: var(--paper);
}

.secret-button:hover {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--plum);
}

.secret-button span {
  color: #f19691;
  font-family: Georgia, serif;
  font-size: 1.2rem;
}

.secret-message {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: #f19691;
  font-family: Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  opacity: 0;
  transition: max-height 500ms ease, margin 500ms ease, opacity 500ms ease;
}

.secret-message.is-open {
  max-height: 50px;
  margin-top: 23px;
  opacity: 1;
}

.note-art {
  position: relative;
  align-self: stretch;
  min-height: 500px;
}

.note-heart-outline,
.note-heart-solid {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: Georgia, serif;
  line-height: 0.7;
  transform: translate(-50%, -50%);
}

.note-heart-outline {
  color: rgba(237, 207, 226, 0.16);
  font-size: min(42vw, 29rem);
  transform: translate(-50%, -50%) rotate(-9deg);
}

.note-heart-solid {
  color: #df7780;
  font-size: min(22vw, 14rem);
  text-shadow: 0 18px 45px rgba(222, 99, 119, 0.27);
  transform: translate(-50%, -53%) rotate(8deg);
  animation: heart-float 5s ease-in-out infinite;
}

.note-star {
  position: absolute;
  color: #f7b4a9;
  font-size: 1.6rem;
}

.note-star-one {
  top: 19%;
  left: 23%;
}

.note-star-two {
  top: 27%;
  right: 15%;
  font-size: 1rem;
}

.note-star-three {
  right: 23%;
  bottom: 23%;
}

.note-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.note-glow-one {
  top: -180px;
  left: 32%;
  background: rgba(221, 132, 151, 0.08);
}

.note-glow-two {
  right: -150px;
  bottom: -170px;
  background: rgba(205, 175, 219, 0.12);
}

.closing-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  width: min(100% - 9vw, 1450px);
  margin: 0 auto;
  padding: 145px 0 135px;
}

.closing-line p {
  margin: 0;
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-style: italic;
}

.closing-heart {
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 1.25rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  width: min(100% - 9vw, 1450px);
  margin: 0 auto;
  padding: 23px 0 29px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer span:nth-child(2) {
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 1.1rem;
  line-height: 0.5;
}

.lightbox {
  position: fixed;
  z-index: 30;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 40px;
  background: rgba(32, 18, 31, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-inner {
  max-width: min(90vw, 850px);
  max-height: 92vh;
}

.lightbox-inner img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border: 8px solid var(--paper);
  box-shadow: var(--shadow);
}

.lightbox-inner p {
  margin: 13px 0 0;
  color: var(--paper);
  font-family: Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 23px;
  right: 30px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 249, 245, 0.5);
  border-radius: 50%;
  background: transparent;
  color: var(--paper);
  font-size: 1.8rem;
  font-weight: 200;
  line-height: 1;
  transition: background 180ms ease, color 180ms ease;
}

.lightbox-close:hover {
  background: var(--paper);
  color: var(--plum);
}

.heart-pop {
  position: fixed;
  z-index: 40;
  pointer-events: none;
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: var(--heart-size, 1.5rem);
  line-height: 1;
  animation: heart-pop 1.35s cubic-bezier(0.15, 0.75, 0.35, 1) forwards;
}

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

@keyframes heart-pop {
  0% {
    opacity: 0;
    transform: translate(-50%, -20%) scale(0.4) rotate(-10deg);
  }
  18% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05) rotate(8deg);
  }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--heart-x)), calc(-50% - 125px)) scale(0.8) rotate(var(--heart-rotate));
  }
}

@keyframes heart-float {
  0%,
  100% {
    transform: translate(-50%, -53%) rotate(8deg) scale(1);
  }
  50% {
    transform: translate(-50%, -57%) rotate(3deg) scale(1.04);
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 18px;
    min-height: 700px;
  }

  h1 {
    font-size: clamp(3.7rem, 8vw, 6rem);
  }

  .hero-art {
    min-height: 530px;
    margin-right: -7%;
  }

  .hero-photo-main {
    left: 14%;
  }

  .hero-photo-small {
    right: 0;
  }

  .sticker-heart {
    right: 3%;
    width: 58px;
    height: 58px;
    font-size: 1.8rem;
  }

  .memory-grid {
    gap: 55px 18px;
  }

  .love-note {
    min-height: 570px;
  }

  .note-copy {
    padding-right: 35px;
  }
}

@media (max-width: 700px) {
  .topbar,
  .hero,
  .section-pad,
  .love-note,
  .closing-line,
  .footer {
    width: min(100% - 40px, 560px);
  }

  .topbar {
    grid-template-columns: 1fr auto;
    padding: 18px 0;
  }

  .nav-links {
    display: none;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    min-height: auto;
    padding: 78px 0 83px;
  }

  .hero-copy {
    padding: 0;
  }

  h1 {
    font-size: clamp(3.7rem, 17vw, 6.9rem);
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-art {
    min-height: 520px;
    margin: 33px -5% 0;
  }

  .hero-orb {
    top: 4%;
    left: 14%;
    width: 75%;
  }

  .hero-photo-main {
    top: 4%;
    left: 22%;
    width: 57%;
  }

  .hero-photo-small {
    top: 49%;
    right: 5%;
    width: 34%;
  }

  .sticker-heart {
    top: 1%;
    right: 8%;
  }

  .scribble-keeps {
    bottom: 1%;
    left: 7%;
  }

  .hero-footer-line {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    gap: 10px;
    font-size: 0.5rem;
  }

  .hero-footer-line span:last-child {
    text-align: right;
  }

  .section-pad {
    padding-top: 94px;
  }

  .section-heading {
    display: block;
    margin-bottom: 44px;
  }

  h2 {
    font-size: clamp(3.65rem, 16vw, 6rem);
  }

  .section-heading p {
    margin: 27px 0 0;
  }

  .memory-grid {
    display: block;
  }

  .memory {
    margin-bottom: 58px;
  }

  .memory-photo {
    aspect-ratio: 1.08 !important;
  }

  .memory-tall .memory-photo {
    aspect-ratio: 0.8 !important;
  }

  .memory figcaption {
    margin-top: 12px;
    padding-top: 12px;
  }

  .love-note {
    display: block;
    min-height: 710px;
    margin-top: 73px;
  }

  .note-copy {
    padding: 52px 29px 0;
  }

  .note-copy h2 {
    font-size: clamp(3.65rem, 15vw, 5.7rem);
  }

  .note-art {
    min-height: 310px;
  }

  .note-heart-outline {
    font-size: 18rem;
  }

  .note-heart-solid {
    font-size: 9rem;
  }

  .closing-line {
    gap: 15px;
    padding: 87px 0 92px;
  }

  .closing-line p {
    font-size: 1.5rem;
  }

  .footer {
    font-size: 0.5rem;
  }

  .lightbox {
    padding: 25px 16px;
  }

  .lightbox-close {
    top: 14px;
    right: 15px;
  }
}

@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;
  }
}
