:root {
  --white: #ffffff;
  --ivory: #f8f4ea;
  --ivory-deep: #ebe3d2;
  --sage: #b9cfb3;
  --sage-deep: #5d755f;
  --ink: #263128;
  --muted: #68705f;
  --line: rgba(93, 117, 95, 0.24);
  --shadow: 0 18px 45px rgba(60, 78, 58, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  line-height: 1.5;
}

body.is-locked {
  overflow: hidden;
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
}

body::before {
  z-index: 0;
  background: url("./wedding-hero.png") center top / cover no-repeat;
  opacity: 0.55;
}

body::after {
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(248, 244, 234, 0.28) 0%,
    rgba(248, 244, 234, 0.72) 42%,
    rgba(255, 255, 255, 0.78) 100%
  );
}

main {
  position: relative;
  z-index: 1;
  padding-bottom: 82px;
}

.envelope-screen {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 18%, rgba(123, 93, 55, 0.1), transparent 28%),
    radial-gradient(circle at 82% 78%, rgba(93, 117, 95, 0.12), transparent 30%),
    #efe4cf;
  transition: opacity 0.55s ease 1.45s, visibility 0s linear 2s;
}

.envelope-screen__glow {
  position: absolute;
  z-index: 2;
  width: 92vw;
  max-width: 420px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
  filter: blur(34px);
}

.envelope {
  position: absolute;
  inset: 0;
  filter: drop-shadow(0 26px 42px rgba(69, 82, 61, 0.18));
}

.envelope__panel,
.envelope__fold {
  position: absolute;
  border: 1px solid rgba(93, 117, 95, 0.22);
  background:
    radial-gradient(circle at 18% 22%, rgba(129, 88, 48, 0.16), transparent 18%),
    radial-gradient(circle at 76% 70%, rgba(118, 83, 47, 0.12), transparent 22%),
    linear-gradient(135deg, rgba(255, 250, 238, 0.94), rgba(224, 205, 171, 0.96)),
    url("./wedding-hero.png") center / cover no-repeat;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.42),
    inset 0 0 38px rgba(112, 76, 39, 0.13);
}

.envelope__panel {
  top: 0;
  bottom: 0;
  width: 51%;
  transform-origin: center;
  transition: transform 1.15s cubic-bezier(0.72, 0, 0.18, 1);
}

.envelope__panel--left {
  left: 0;
  clip-path: polygon(0 0, 100% 0, 82% 50%, 100% 100%, 0 100%);
  border-right-color: rgba(95, 70, 42, 0.34);
}

.envelope__panel--right {
  right: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 18% 50%);
  border-left-color: rgba(95, 70, 42, 0.34);
}

.envelope__fold {
  display: none;
}

.envelope__fold--top {
  inset: 0 0 auto;
  height: 54%;
  background: linear-gradient(180deg, #fffdf8, #efe5cf);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform-origin: top;
  transition: transform 0.8s cubic-bezier(0.72, 0, 0.18, 1);
}

.envelope__fold--bottom {
  border-top: 0;
}

.wax-seal {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 92px;
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.24), transparent 24%),
    linear-gradient(135deg, #6c866d, #3f5d45);
  box-shadow:
    inset 0 -8px 16px rgba(31, 49, 36, 0.22),
    0 14px 32px rgba(60, 78, 58, 0.28);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.wax-seal::before {
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  content: "";
}

.wax-seal::after {
  position: absolute;
  inset: -4px;
  border-radius: 45% 54% 50% 48%;
  border: 1px solid rgba(50, 78, 54, 0.18);
  content: "";
}

.wax-seal span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  line-height: 1;
}

.wax-seal:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 5px;
}

.envelope-screen__hint {
  position: absolute;
  z-index: 4;
  bottom: calc(50% - 112px);
  left: 50%;
  width: min(100% - 40px, 320px);
  margin: 0;
  color: #6e5638;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
  opacity: 0.48;
  text-shadow: 0 2px 12px rgba(255, 248, 234, 0.82);
  transform: translateX(-50%);
}

.envelope-screen.is-open {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.envelope-screen.is-open .envelope__fold--top {
  transform: rotateX(72deg) translateY(-16px);
}

.envelope-screen.is-open .envelope__panel--left {
  animation: envelope-left-open 1.45s cubic-bezier(0.72, 0, 0.18, 1) forwards;
}

.envelope-screen.is-open .envelope__panel--right {
  animation: envelope-right-open 1.45s cubic-bezier(0.72, 0, 0.18, 1) forwards;
}

.envelope-screen.is-open .wax-seal {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.72);
}

.envelope-screen.is-open .envelope-screen__hint {
  opacity: 0;
}

@keyframes envelope-left-open {
  0% {
    transform: translateX(0) rotateY(0);
  }
  38% {
    transform: translateX(-8%) rotateY(-3deg);
  }
  100% {
    transform: translateX(-104%) rotateY(-12deg);
  }
}

@keyframes envelope-right-open {
  0% {
    transform: translateX(0) rotateY(0);
  }
  38% {
    transform: translateX(8%) rotateY(3deg);
  }
  100% {
    transform: translateX(104%) rotateY(12deg);
  }
}

.couple-intro {
  position: fixed;
  inset: 0;
  z-index: 15;
  display: grid;
  place-items: center;
  overflow: hidden;
  visibility: hidden;
  background:
    radial-gradient(circle at 50% 43%, rgba(255, 255, 255, 0.98) 0 18%, rgba(249, 239, 222, 0.9) 48%, transparent 72%),
    linear-gradient(145deg, #f8edda, #fffaf0 52%, #e8d8bd);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.75s ease, visibility 0s linear 0.75s;
}

.couple-intro::before,
.couple-intro::after {
  position: absolute;
  width: 44vw;
  max-width: 420px;
  aspect-ratio: 1;
  border: 1px solid rgba(161, 112, 77, 0.12);
  border-radius: 50%;
  content: "";
}

.couple-intro::before {
  top: -19vw;
  left: -14vw;
}

.couple-intro::after {
  right: -17vw;
  bottom: -21vw;
}

.couple-intro__light {
  position: absolute;
  width: min(92vw, 690px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 245, 222, 0.74);
  box-shadow: 0 0 90px 36px rgba(255, 255, 255, 0.72);
  transform: scale(0.78);
  opacity: 0;
  transition: transform 1.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 1s ease;
}

.couple-intro__image {
  position: relative;
  z-index: 2;
  display: block;
  width: min(88vw, 610px);
  max-height: 84svh;
  object-fit: contain;
  filter: blur(28px);
  opacity: 0;
  transform: scale(0.58) translateY(28px);
  will-change: filter, opacity, transform;
}

.couple-intro__hearts {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.couple-intro__heart {
  position: absolute;
  top: var(--heart-start-y);
  left: var(--heart-start-x);
  width: var(--heart-size);
  height: var(--heart-size);
  border-radius: 3px 0;
  background: var(--heart-color);
  opacity: 0;
  transform: translate(-50%, -50%) rotate(45deg) scale(0.15);
  box-shadow: 0 4px 12px rgba(54, 75, 57, 0.2);
  will-change: transform, opacity;
}

.couple-intro__heart::before,
.couple-intro__heart::after {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  content: "";
}

.couple-intro__heart::before {
  left: -50%;
}

.couple-intro__heart::after {
  top: -50%;
}

.couple-intro.is-ready,
.couple-intro.is-visible {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.couple-intro.is-ready {
  transition: none;
}

.couple-intro.is-visible .couple-intro__light {
  opacity: 1;
  transform: scale(1);
}

.couple-intro.is-visible .couple-intro__image {
  animation: couple-appear 0.95s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.couple-intro.is-celebrating .couple-intro__heart {
  animation: heart-burst 1.15s cubic-bezier(0.16, 0.7, 0.22, 1) var(--heart-delay) forwards;
}

.couple-intro.is-celebrating .couple-intro__image {
  animation: couple-dissolve 0.7s ease-in forwards;
}

.couple-intro.is-leaving {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.65s ease 0.05s, visibility 0s linear 0.75s;
}

.couple-intro.is-leaving .couple-intro__image {
  opacity: 0;
}

@keyframes couple-appear {
  0% {
    filter: blur(28px);
    opacity: 0;
    transform: scale(0.58) translateY(28px);
  }
  55% {
    filter: blur(7px);
    opacity: 0.9;
  }
  100% {
    filter: blur(0);
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes couple-dissolve {
  0% {
    filter: blur(0);
    opacity: 1;
    transform: scale(1);
  }
  45% {
    filter: blur(4px);
    opacity: 0.68;
    transform: scale(1.025);
  }
  100% {
    filter: blur(18px);
    opacity: 0;
    transform: scale(1.08);
  }
}

@keyframes heart-burst {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(45deg) scale(0);
  }
  22% {
    opacity: 0.95;
    transform: translate(-50%, -50%) rotate(45deg) scale(1);
  }
  48% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform:
      translate(calc(-50% + var(--heart-x)), calc(-50% + var(--heart-y)))
      rotate(calc(45deg + var(--heart-rotation)))
      scale(1.15);
  }
}

.hero {
  position: relative;
  display: grid;
  min-height: 92svh;
  overflow: hidden;
  place-items: center;
  text-align: center;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
}

.hero__shade {
  background: linear-gradient(
    180deg,
    rgba(248, 244, 234, 0.18) 0%,
    rgba(255, 255, 255, 0.42) 42%,
    rgba(248, 244, 234, 0.82) 100%
  );
}

.hero__content {
  position: relative;
  width: min(100% - 36px, 520px);
  padding-top: 10svh;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--sage-deep);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  margin-bottom: 16px;
  font-size: clamp(1.05rem, 4.5vw, 1.35rem);
  letter-spacing: 0.18em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 22vw, 7rem);
  font-weight: 400;
  line-height: 0.88;
}

h2 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 10vw, 3.4rem);
  font-weight: 400;
  line-height: 1;
}

h3 {
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 400;
}

.date {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  border: 1px solid var(--sage-deep);
  padding: 0 24px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.primary-action {
  color: var(--white);
  background: var(--sage-deep);
  box-shadow: var(--shadow);
}

.secondary-action {
  color: var(--sage-deep);
  background: var(--white);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: -38px auto 20px;
  width: min(100% - 32px, 520px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

.countdown div {
  min-width: 0;
  padding: 16px 8px;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.countdown strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1;
}

.countdown span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  width: min(100% - 32px, 680px);
  margin: 0 auto;
  padding: 44px 0;
}

.intro {
  text-align: center;
}

.intro p,
.gift p,
.rsvp p,
.note-band p {
  color: var(--muted);
}

.details-grid {
  display: grid;
  gap: 14px;
  padding-top: 16px;
}

.detail {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.location-trigger {
  border: 0;
  padding: 0;
  color: var(--sage-deep);
  background: transparent;
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
}

.location-modal {
  width: min(calc(100% - 28px), 580px);
  max-height: calc(100svh - 28px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 0;
  color: var(--ink);
  background: var(--ivory);
  box-shadow: 0 28px 80px rgba(38, 49, 40, 0.3);
}

.location-modal::backdrop {
  background: rgba(38, 49, 40, 0.62);
  backdrop-filter: blur(5px);
}

.location-modal__content {
  position: relative;
  padding: 30px 22px 24px;
  text-align: center;
}

.location-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  padding: 0;
  color: var(--sage-deep);
  background: rgba(255, 255, 255, 0.9);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  place-items: center;
}

.location-modal h2 {
  margin-bottom: 20px;
  padding: 0 30px;
}

.location-modal__photo {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 16 / 10;
  background: var(--sage);
}

.location-modal__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-modal__photo span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  border-radius: 10px;
  padding: 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 700;
}

.location-modal__hint {
  margin: 20px 0 12px;
  color: var(--muted);
}

.map-apps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.map-apps a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 5px;
  color: var(--sage-deep);
  background: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  text-decoration: none;
}

.map-apps__icon {
  display: block;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 13px;
  object-fit: cover;
}

.timeline {
  width: min(100% - 32px, 520px);
  margin-right: auto;
  margin-left: auto;
  margin-top: 28px;
  margin-bottom: 28px;
  overflow: hidden;
  border-radius: 18px;
  padding: 42px 24px 48px;
  border: 1px solid var(--line);
  color: var(--sage-deep);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.timeline h2 {
  margin-bottom: 30px;
  color: var(--sage-deep);
  font-style: italic;
  text-align: center;
}

.timeline ol {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(5, minmax(118px, auto));
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline__item:nth-child(1) {
  grid-row: 1;
}

.timeline__item:nth-child(2) {
  grid-row: 2;
}

.timeline__item:nth-child(3) {
  grid-row: 3;
}

.timeline__item:nth-child(4) {
  grid-row: 4;
}

.timeline__item:nth-child(5) {
  grid-row: 5;
}

.timeline ol::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  border-radius: 2px;
  background: var(--sage-deep);
  content: "";
  transform: translateX(-50%);
}

.timeline__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 118px;
  padding: 12px 18px;
  text-align: center;
}

.timeline__item--left {
  grid-column: 1;
}

.timeline__item--right {
  grid-column: 2;
}

.timeline__item::after {
  position: absolute;
  top: 50%;
  width: calc(100% - 8px);
  height: 1px;
  background: var(--line);
  content: "";
}

.timeline__item--left::after {
  right: 0;
}

.timeline__item--right::after {
  left: 0;
}

.timeline__icon,
.timeline__event,
.timeline time {
  position: relative;
  z-index: 1;
  background: #fbfaf5;
}

.timeline__icon {
  align-self: center;
  min-width: 44px;
  margin-bottom: 5px;
  color: var(--sage-deep);
  font-family: Georgia, "Times New Roman", "Segoe UI Symbol", serif;
  font-variant-emoji: text;
  font-size: 2rem;
  line-height: 1;
}

.timeline__event {
  width: 100%;
  padding: 0 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 4.6vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.15;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.timeline time {
  align-self: center;
  padding: 3px 5px 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.98rem;
  line-height: 1.25;
}

@media (max-width: 600px) {
  .timeline {
    width: calc(100% - 24px);
    padding: 34px 10px 40px;
  }

  .timeline h2 {
    margin-bottom: 22px;
  }

  .timeline ol {
    grid-template-rows: repeat(5, minmax(108px, auto));
  }

  .timeline__item {
    min-height: 108px;
    padding: 10px 7px;
  }

  .timeline__icon {
    min-width: 34px;
    font-size: 1.7rem;
  }

  .timeline__event {
    padding: 0 2px;
    font-size: clamp(0.78rem, 4.2vw, 1rem);
    letter-spacing: 0.02em;
  }

  .timeline time {
    padding-right: 2px;
    padding-left: 2px;
    font-size: clamp(0.78rem, 3.7vw, 0.92rem);
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  .timeline {
    width: min(calc(100% - 48px), 560px);
  }
}

.note-band {
  width: 100%;
  padding: 44px 16px;
  background: rgba(185, 207, 179, 0.78);
  backdrop-filter: blur(3px);
}

.note-band > div {
  width: min(100%, 680px);
  margin: 0 auto;
}

.note-band .section-kicker,
.note-band p {
  color: #314935;
}

.gift,
.rsvp {
  text-align: center;
}

.playlist {
  position: relative;
  width: min(100% - 32px, 680px);
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid rgba(93, 117, 95, 0.26);
  border-radius: 18px;
  padding: 52px 28px;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.76), transparent 28%),
    linear-gradient(145deg, rgba(216, 227, 212, 0.94), rgba(185, 207, 179, 0.9));
  box-shadow: var(--shadow);
  text-align: center;
}

.playlist::before,
.playlist::after {
  position: absolute;
  width: 120px;
  aspect-ratio: 1;
  border: 1px solid rgba(93, 117, 95, 0.16);
  border-radius: 50%;
  content: "";
}

.playlist::before {
  top: -62px;
  left: -42px;
}

.playlist::after {
  right: -48px;
  bottom: -72px;
}

.playlist h2,
.playlist p,
.playlist .section-kicker,
.playlist__action {
  position: relative;
  z-index: 1;
}

.playlist p {
  max-width: 520px;
  margin-right: auto;
  margin-bottom: 26px;
  margin-left: auto;
  color: #314935;
}

.playlist__notes {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--sage-deep);
}

.playlist__notes span {
  display: inline-block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  transform: rotate(-8deg);
}

.playlist__notes span:nth-child(2) {
  font-size: 2.25rem;
  transform: translateY(-5px) rotate(7deg);
}

.playlist__action {
  border: 0;
}

form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  text-align: left;
}

label {
  display: grid;
  gap: 7px;
  color: var(--sage-deep);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

input,
select {
  height: 50px;
  padding: 0 14px;
}

textarea {
  resize: vertical;
  padding: 13px 14px;
}

.primary-action--form {
  width: 100%;
  border: 0;
}

.bottom-nav {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.bottom-nav a {
  min-width: 0;
  padding: 13px 4px;
  color: var(--sage-deep);
  font-size: 0.76rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

@media (min-width: 720px) {
  .hero {
    min-height: 88vh;
  }

  .details-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bottom-nav {
    right: 50%;
    left: auto;
    width: 520px;
    transform: translateX(50%);
  }
}
