:root {
  --plum: #2b1438;
  --plum-soft: #422552;
  --ink: #111014;
  --muted: #6d6871;
  --line: rgba(43, 20, 56, 0.14);
  --paper: #fbfaf7;
  --cream: #f0e7d9;
  --coral: #ef6c5b;
  --white: #fff;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.dialog-open {
  overflow: hidden;
}

.invite-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 78% 14%, rgba(239, 108, 91, 0.22), transparent 28%),
    linear-gradient(145deg, #fbf7ef 0%, #efe2d6 100%);
}

.invite-shell {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: max(28px, env(safe-area-inset-top)) 24px max(28px, env(safe-area-inset-bottom));
  overflow: hidden;
}

.invite-hero {
  width: min(100%, 760px);
  text-align: center;
  animation: invite-enter 650ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.invite-brand {
  margin: 0 auto 46px;
}

.invite-visual {
  position: relative;
  width: 170px;
  height: 170px;
  margin: 0 auto 34px;
  display: grid;
  place-items: center;
}

.invite-visual img {
  position: relative;
  z-index: 2;
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(43, 20, 56, 0.24);
  animation: invite-float 4.8s ease-in-out infinite;
}

.invite-orbit {
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(43, 20, 56, 0.14);
  border-radius: 50%;
}

.invite-orbit--two {
  inset: 24px -16px;
  border-color: rgba(239, 108, 91, 0.28);
  transform: rotate(24deg);
}

.invite-hero .eyebrow {
  margin-bottom: 18px;
}

.invite-hero h1 {
  max-width: 730px;
  margin: 0 auto;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 0.98;
}

.invite-copy {
  max-width: 560px;
  margin: 26px auto 28px;
  color: #5d5660;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.55;
}

.invite-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.invite-open {
  border: 0;
  cursor: pointer;
}

.invite-open:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.invite-store {
  color: var(--plum);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.invite-status,
.invite-error {
  margin: 24px auto 0;
  max-width: 540px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.invite-error {
  color: #9c3025;
}

@keyframes invite-enter {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes invite-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-9px) rotate(1deg); }
}

@media (prefers-reduced-motion: reduce) {
  .invite-hero,
  .invite-visual img {
    animation: none;
  }
}

a,
button {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  font: inherit;
}

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

.not-found {
  min-height: 100svh;
  padding: clamp(32px, 7vw, 100px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: var(--paper);
}

.not-found .brand {
  position: absolute;
  top: 34px;
  left: clamp(32px, 7vw, 100px);
}

.not-found .eyebrow {
  margin-bottom: 18px;
}

.not-found h1 {
  max-width: 850px;
}

.not-found > p:not(.eyebrow) {
  margin: 28px 0;
  color: var(--muted);
  font-size: 17px;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 88px;
  padding: 0 clamp(24px, 4.5vw, 72px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(43, 20, 56, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  font-family: var(--serif);
  font-size: 25px;
  letter-spacing: -0.04em;
  color: var(--plum);
}

.brand img {
  border-radius: 11px;
}

.site-header nav {
  display: flex;
  gap: 34px;
  font-size: 13px;
  font-weight: 600;
}

.site-header nav a {
  position: relative;
}

.site-header nav a::after,
.footer-links a::after,
.footer-links button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-header nav a:hover::after,
.footer-links a:hover::after,
.footer-links button:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
}

.language-link {
  padding: 9px 4px;
  color: var(--plum);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.12em;
  transition: opacity 180ms ease;
}

.language-link:hover {
  opacity: 0.58;
}

.header-cta {
  padding: 12px 18px;
  color: var(--white);
  background: var(--plum);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, background 180ms ease;
}

.header-cta:hover,
.primary-cta:hover {
  transform: translateY(-2px);
  background: var(--plum-soft);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 120px clamp(24px, 6vw, 96px) 70px;
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(560px, 1.18fr);
  align-items: center;
  background:
    radial-gradient(circle at 78% 31%, rgba(255, 255, 255, 0.96) 0 17%, transparent 43%),
    linear-gradient(108deg, #f8f4ec 0 47%, #eadccd 47% 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 88px auto 0 47%;
  width: 1px;
  background: rgba(43, 20, 56, 0.09);
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 590px;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--plum);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.68);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--plum);
}

h1 {
  max-width: 590px;
  margin: 0;
  font-size: clamp(62px, 6.5vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.hero-intro {
  max-width: 510px;
  margin: 34px 0 30px;
  color: #554e58;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  padding: 17px 22px 17px 24px;
  color: var(--white);
  background: var(--plum);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 720;
  transition: transform 180ms ease, background 180ms ease;
}

.primary-cta svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 180ms ease;
}

.primary-cta:hover svg {
  transform: translateX(3px);
}

.availability-note {
  margin: 13px 0 0 23px;
  color: var(--muted);
  font-size: 11px;
}

.phone-stage {
  position: relative;
  height: min(76vw, 760px);
  min-height: 620px;
  perspective: 1500px;
}

.halo {
  position: absolute;
  top: 5%;
  left: 14%;
  width: min(42vw, 630px);
  aspect-ratio: 1;
  border: 1px solid rgba(43, 20, 56, 0.15);
  border-radius: 50%;
}

.halo::before,
.halo::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(43, 20, 56, 0.11);
  border-radius: inherit;
}

.halo::before {
  inset: 9%;
}

.halo::after {
  inset: 18%;
}

.phone {
  position: absolute;
  z-index: 2;
  width: clamp(225px, 20vw, 304px);
  margin: 0;
  padding: 9px;
  background: #111015;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: clamp(36px, 3vw, 48px);
  box-shadow: 0 35px 80px rgba(43, 20, 56, 0.23), 0 8px 24px rgba(43, 20, 56, 0.13);
  will-change: transform;
}

.phone::after {
  content: "";
  position: absolute;
  inset: 5px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: calc(clamp(36px, 3vw, 48px) - 5px);
}

.phone-screen {
  overflow: hidden;
  aspect-ratio: 1206 / 2622;
  background: #fff;
  border-radius: calc(clamp(36px, 3vw, 48px) - 9px);
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-button {
  position: absolute;
  left: -4px;
  width: 3px;
  height: 55px;
  background: #2a282e;
  border-radius: 3px 0 0 3px;
}

.phone-button--top {
  top: 19%;
}

.phone-button--bottom {
  top: 31%;
  height: 72px;
}

.phone--front {
  z-index: 5;
  top: 5%;
  left: 34%;
  animation: phone-float 6s ease-in-out infinite;
}

.phone--albums {
  top: 14%;
  left: 2%;
  transform: rotate(-8deg) scale(0.86);
  animation: phone-float-left 7s ease-in-out 400ms infinite;
}

.phone--album {
  z-index: 3;
  top: 17%;
  left: 64%;
  transform: rotate(8deg) scale(0.86);
  animation: phone-float-right 7.5s ease-in-out 700ms infinite;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: clamp(24px, 6vw, 96px);
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  position: relative;
  width: 54px;
  height: 1px;
  overflow: hidden;
  background: var(--line);
}

.scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--plum);
  animation: scroll-line 2.2s ease-in-out infinite;
}

.privacy {
  min-height: 760px;
  padding: clamp(90px, 10vw, 150px) clamp(24px, 7vw, 112px);
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: clamp(48px, 6vw, 104px);
  align-items: center;
  color: var(--white);
  background: var(--plum);
}

.privacy h2 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: clamp(58px, 7.3vw, 118px);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.privacy-heading {
  max-width: 760px;
}

.privacy-lead {
  max-width: 560px;
  margin: 52px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--serif);
  font-size: clamp(24px, 2.1vw, 36px);
  line-height: 1.22;
}

.privacy-points {
  width: 100%;
  align-self: center;
}

.privacy-points article {
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 22px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.privacy-marker {
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.privacy-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.9);
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.privacy-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.privacy-index {
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  letter-spacing: 0.15em;
}

.privacy-points article:hover .privacy-icon {
  color: var(--white);
  background: var(--coral);
  border-color: var(--coral);
  transform: translateY(-2px);
}

.privacy-points h3,
.privacy-points p {
  grid-column: 2;
  margin: 0;
}

.privacy-points h3 {
  font-size: 15px;
}

.privacy-points p {
  max-width: 450px;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.55;
}

.moments {
  padding: clamp(90px, 11vw, 160px) clamp(24px, 7vw, 112px);
  background: var(--paper);
}

.section-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: end;
  margin-bottom: 90px;
}

.section-intro .eyebrow {
  align-self: start;
}

.section-intro h2 {
  grid-column: 2;
  margin: 0;
  font-size: clamp(56px, 6.8vw, 106px);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.section-intro > p:last-child {
  grid-column: 2;
  max-width: 430px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.moment {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  transition: padding 220ms ease, color 220ms ease;
}

.moment:last-child {
  border-bottom: 1px solid var(--line);
}

.moment:hover {
  padding-right: 18px;
  padding-left: 18px;
  color: var(--plum);
}

.moment-number {
  color: var(--coral);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.moment h3 {
  margin: 0 0 7px;
  font-family: var(--serif);
  font-size: clamp(29px, 3vw, 45px);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.moment p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.moment-tag {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-story {
  min-height: 900px;
  padding: clamp(90px, 10vw, 140px) clamp(24px, 8vw, 130px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 10vw;
  overflow: hidden;
  background: var(--cream);
}

.story-phone {
  position: relative;
  min-height: 650px;
}

.story-phone::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -80px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(43, 20, 56, 0.14);
  border-radius: 50%;
}

.phone--story {
  top: 0;
  left: 50%;
  width: min(340px, 72vw);
  transform: translateX(-50%) rotate(-4deg);
}

.story-copy h2 {
  margin: 0;
  font-size: clamp(52px, 5.5vw, 86px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.story-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin: 34px 0;
  color: #5b535b;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.6;
}

.story-rule {
  width: 100%;
  height: 1px;
  margin-top: 60px;
  background: rgba(43, 20, 56, 0.16);
}

.story-copy blockquote {
  margin: 26px 0 0;
  color: var(--plum);
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
}

.final-cta {
  min-height: 720px;
  padding: 110px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.13), transparent 34%),
    var(--plum);
}

.final-cta h2 {
  max-width: 1040px;
  margin: 0;
  color: var(--white);
  font-size: clamp(58px, 8vw, 126px);
  line-height: 0.91;
  letter-spacing: -0.065em;
}

.coming-soon {
  margin-top: 60px;
  padding: 10px 24px 10px 10px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 22px;
  text-align: left;
}

.coming-soon img {
  border-radius: 15px;
}

.coming-soon strong,
.coming-soon span {
  display: block;
}

.coming-soon strong {
  font-size: 15px;
}

.coming-soon span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

footer {
  padding: 72px clamp(24px, 7vw, 112px) 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px 80px;
  background: #f7f3ec;
}

.brand--footer {
  align-self: start;
}

footer > p {
  justify-self: end;
  margin: 0;
  color: var(--plum);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.25;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
}

.footer-links button {
  position: relative;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  font-size: 12px;
}

.footer-links a {
  position: relative;
  font-size: 12px;
}

footer small {
  justify-self: end;
  color: var(--muted);
  font-size: 11px;
}

.legal-dialog {
  width: min(720px, calc(100vw - 32px));
  max-height: min(84vh, 820px);
  padding: clamp(32px, 5vw, 64px);
  color: var(--ink);
  background: var(--paper);
  border: 0;
  border-radius: 28px;
  box-shadow: 0 40px 100px rgba(18, 8, 25, 0.35);
}

.legal-dialog::backdrop {
  background: rgba(19, 10, 23, 0.72);
  backdrop-filter: blur(8px);
}

.legal-dialog form {
  position: sticky;
  z-index: 2;
  top: 0;
  height: 0;
  text-align: right;
}

.dialog-close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--plum);
  background: var(--paper);
  cursor: pointer;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
}

.legal-dialog h2 {
  max-width: 560px;
  margin: 0 0 42px;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.legal-dialog h3 {
  margin: 32px 0 8px;
  color: var(--plum);
  font-size: 15px;
}

.legal-dialog p:not(.eyebrow) {
  margin: 0;
  color: #5f5862;
  font-size: 14px;
  line-height: 1.65;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@keyframes phone-float {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0.5deg); }
  50% { transform: translate3d(0, -13px, 0) rotate(-0.5deg); }
}

@keyframes phone-float-left {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-8deg) scale(0.86); }
  50% { transform: translate3d(-3px, 10px, 0) rotate(-6.5deg) scale(0.86); }
}

@keyframes phone-float-right {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(8deg) scale(0.86); }
  50% { transform: translate3d(4px, -9px, 0) rotate(6.5deg) scale(0.86); }
}

@keyframes scroll-line {
  0% { transform: translateX(-100%); }
  55%, 100% { transform: translateX(100%); }
}

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

  .site-header nav {
    display: none;
  }

  .hero {
    grid-template-columns: 0.85fr 1.15fr;
    padding-right: 24px;
  }

  .phone-stage {
    transform: translateX(-25px) scale(0.9);
  }

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

  .privacy-points {
    max-width: none;
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 72px;
    padding: 0 18px;
  }

  .brand {
    font-size: 22px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .header-cta {
    padding: 10px 13px;
    font-size: 10px;
  }

  .header-actions {
    gap: 8px;
  }

  .language-link {
    font-size: 10px;
  }

  .hero {
    min-height: 1040px;
    padding: 114px 20px 45px;
    display: block;
    background: linear-gradient(180deg, #f8f4ec 0 46%, #eadccd 46% 100%);
  }

  .hero::before {
    display: none;
  }

  h1 {
    max-width: 500px;
    font-size: clamp(58px, 19vw, 82px);
  }

  .hero-intro {
    margin: 25px 0 24px;
    font-size: 17px;
  }

  .phone-stage {
    height: 570px;
    min-height: 0;
    margin-top: 40px;
    transform: none;
  }

  .halo {
    top: 12%;
    left: 2%;
    width: 94vw;
  }

  .phone {
    width: 206px;
    padding: 7px;
    border-radius: 35px;
  }

  .phone::after {
    border-radius: 30px;
  }

  .phone-screen {
    border-radius: 28px;
  }

  .phone--front {
    top: 1%;
    left: calc(50% - 103px);
  }

  .phone--albums {
    top: 10%;
    left: -48px;
    transform: rotate(-8deg) scale(0.76);
  }

  .phone--album {
    top: 12%;
    right: -49px;
    left: auto;
    transform: rotate(8deg) scale(0.76);
  }

  .scroll-cue {
    display: none;
  }

  .privacy {
    min-height: auto;
    padding: 88px 22px;
    gap: 70px;
  }

  .privacy h2 {
    font-size: clamp(56px, 17vw, 78px);
  }

  .privacy-lead {
    margin-bottom: 38px;
  }

  .moments {
    padding: 88px 22px;
  }

  .section-intro {
    display: block;
    margin-bottom: 58px;
  }

  .section-intro h2 {
    font-size: clamp(55px, 17vw, 78px);
  }

  .section-intro > p:last-child {
    margin-top: 24px;
  }

  .moment {
    grid-template-columns: 34px 1fr;
    gap: 16px;
    align-items: start;
    padding: 27px 0;
  }

  .moment:hover {
    padding-right: 0;
    padding-left: 0;
  }

  .moment-tag {
    grid-column: 2;
    width: max-content;
  }

  .product-story {
    padding: 92px 22px;
    display: flex;
    flex-direction: column-reverse;
    gap: 78px;
  }

  .story-phone {
    width: 100%;
    min-height: 580px;
  }

  .story-phone::before {
    right: -160px;
  }

  .final-cta {
    min-height: 650px;
  }

  .final-cta h2 {
    font-size: clamp(55px, 17vw, 82px);
  }

  footer {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 62px 22px 30px;
  }

  footer > p,
  footer small {
    justify-self: start;
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

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