/* ==========================================================================
   Love, Reserved — landing page
   Mirrors the app's design system (AppTheme.swift):
   pearl base, soft rose accent, amber-blush secondary, Georgia for
   editorial moments, SF Pro for UI, SF Pro Rounded for numbers,
   20pt-ish continuous corners, pill buttons, glass surfaces.
   ========================================================================== */

:root {
  /* Base — Palette.bgPrimary / bgSecondary / bgTertiary + onboarding pearl */
  --pearl: #FDFBFA;
  --surface: #FBF9FE;
  --lavender: #F1E9FB;
  --lavender-deep: #E4D6FA;
  --mist: #EAE4F5;

  /* Ink — Palette.textPrimary / textSecondary / textTertiary */
  --ink: #211C2B;
  --ink-2: #6B6478;
  --ink-3: #9A93A8;

  /* Accent — the app's default "Rose" accent theme */
  --rose: #FCA9C6;
  --rose-light: #FFC6DC;
  --rose-deep: #D893AC;

  /* Secondary — "amber blush" */
  --amber: #F5B896;
  --amber-light: #FADBCA;
  --amber-deep: #E89570;

  --success: #22B573;

  /* Radii — Radius.sm / md / lg, plus larger for hero surfaces */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 32px;

  --serif: Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, system-ui, sans-serif;
  --rounded: ui-rounded, "SF Pro Rounded", var(--sans);

  --wrap: 1120px;
  --gutter: clamp(20px, 5vw, 40px);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--pearl);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, p, figure { margin: 0; }

a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--rose-deep);
  outline-offset: 3px;
  border-radius: 6px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

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

/* ---------- Type ---------- */

.display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.06;
  text-wrap: balance;
}

.h1 { font-size: clamp(2.75rem, 8vw, 5.25rem); }
.h2 { font-size: clamp(2rem, 5vw, 3.4rem); }

.lede {
  font-size: clamp(1.125rem, 2.2vw, 1.3rem);
  line-height: 1.55;
  color: var(--ink-2);
  text-wrap: pretty;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1.75rem 0.85rem 1.4rem;
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  background: linear-gradient(180deg, var(--rose-light), var(--rose));
  box-shadow:
    0 10px 28px rgba(216, 147, 172, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 34px rgba(216, 147, 172, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.btn:active { transform: scale(0.98); }

.btn svg { width: 1.9rem; height: 1.9rem; flex: none; fill: currentColor; }

.btn__label { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.btn__small { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.01em; }
.btn__big { font-size: 1.3rem; font-weight: 600; letter-spacing: -0.01em; }

.btn--sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(216, 147, 172, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(253, 251, 250, 0.72);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(33, 28, 43, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}

.brand img {
  width: 30px;
  height: 30px;
  border-radius: 22.37%;
  box-shadow: 0 1px 4px rgba(33, 28, 43, 0.15);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-block: clamp(48px, 9vw, 96px) clamp(112px, 10vw, 130px);
}

/* Two slow rose blooms — same idea as the app's onboarding wash,
   on a 34s cycle so it reads as ambient light, not motion. */
.hero__blooms {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, #000 62%, transparent);
  mask-image: linear-gradient(to bottom, #000 62%, transparent);
}

.bloom {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
  animation: drift 34s ease-in-out infinite alternate;
}

.bloom--a {
  width: min(90vw, 880px);
  aspect-ratio: 1;
  left: -18%;
  top: -30%;
  background: rgba(252, 169, 198, 0.34);
}

.bloom--b {
  width: min(80vw, 760px);
  aspect-ratio: 1;
  right: -20%;
  top: 22%;
  background: rgba(255, 198, 220, 0.42);
  animation-direction: alternate-reverse;
}

@keyframes drift {
  from { transform: translate3d(-4%, -2%, 0); }
  to   { transform: translate3d(6%, 4%, 0); }
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__icon {
  width: 92px;
  height: 92px;
  border-radius: 22.37%;
  box-shadow:
    0 18px 40px rgba(216, 147, 172, 0.35),
    0 2px 6px rgba(33, 28, 43, 0.12);
}

.hero h1 { margin-top: 1.75rem; max-width: 12ch; }
.hero .lede { margin-top: 1.4rem; max-width: 34rem; }
.hero .btn { margin-top: 2.25rem; }

.hero__note {
  margin-top: 1.1rem;
  font-size: 0.9rem;
  color: var(--ink-2);
}

/* ---------- Phone ---------- */
/* To use a real screenshot instead of the drawn screen below, replace
   everything inside .phone__screen with:
   <img class="phone__shot" src="hero-mockup.png" alt="…">           */

.phone {
  position: relative;
  z-index: 1;
  width: clamp(250px, 72vw, 300px);
  margin-top: clamp(48px, 7vw, 72px);
  padding: 9px;
  border-radius: 48px;
  background: linear-gradient(145deg, #3a3346, #17131e);
  box-shadow:
    0 40px 80px rgba(120, 70, 100, 0.28),
    0 8px 24px rgba(33, 28, 43, 0.2),
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.14);
}

.phone__screen {
  position: relative;
  container-type: inline-size;
  aspect-ratio: 9 / 18.8;
  overflow: hidden;
  border-radius: 40px;
  background: var(--pearl);
  text-align: center;
}

.phone__shot { width: 100%; height: 100%; object-fit: cover; }

/* Drawn "Present" screen. Everything is sized in cqw so it scales
   with the phone. */
.scr-glow {
  position: absolute;
  left: 50%;
  top: 22cqw;
  width: 110cqw;
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(252, 169, 198, 0.55), rgba(252, 169, 198, 0) 65%);
}

.scr-island {
  position: absolute;
  top: 3cqw;
  left: 50%;
  width: 27cqw;
  height: 7.6cqw;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #0d0b12;
}

.scr-body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 17cqw 6cqw 6cqw;
}

.scr-orbit {
  position: relative;
  width: 64cqw;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 0.35cqw dashed rgba(216, 147, 172, 0.7);
}

.scr-avatar {
  width: 42cqw;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 17cqw;
  color: var(--ink);
  background: linear-gradient(150deg, var(--amber-light), var(--rose));
  box-shadow: 0 3cqw 8cqw rgba(216, 147, 172, 0.5), inset 0 0.5cqw 0 rgba(255, 255, 255, 0.7);
}

.scr-dot {
  position: absolute;
  top: 7cqw;
  right: 7.5cqw;
  width: 7cqw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  border: 0.7cqw solid var(--rose);
  box-shadow: 0 1cqw 3cqw rgba(216, 147, 172, 0.5);
}

.scr-name {
  margin-top: 5cqw;
  font-family: var(--serif);
  font-size: 9cqw;
  line-height: 1.1;
}

.scr-sub {
  margin-top: 1cqw;
  font-size: 3.5cqw;
  color: var(--ink-2);
}

.scr-pills {
  display: flex;
  gap: 2cqw;
  margin-top: 5cqw;
}

.scr-pill {
  display: inline-flex;
  align-items: center;
  gap: 1.5cqw;
  padding: 1.8cqw 3.2cqw;
  border-radius: 999px;
  font-family: var(--rounded);
  font-size: 3.4cqw;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.85);
  border: 0.3cqw solid rgba(252, 169, 198, 0.55);
}

.scr-pill i {
  width: 2.2cqw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--success);
}

.scr-card {
  width: 100%;
  margin-top: 4.5cqw;
  padding: 4cqw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3cqw;
  text-align: left;
  border-radius: 6cqw;
  background: rgba(255, 255, 255, 0.8);
  border: 0.3cqw solid rgba(252, 169, 198, 0.55);
  box-shadow: 0 2cqw 6cqw rgba(216, 147, 172, 0.18);
}

.scr-card b { display: block; font-size: 3.7cqw; font-weight: 600; line-height: 1.25; }
.scr-card span { display: block; margin-top: 0.5cqw; font-size: 3.1cqw; color: var(--ink-2); line-height: 1.3; }

.scr-card em {
  flex: none;
  font-style: normal;
  font-size: 3.3cqw;
  font-weight: 600;
  padding: 2cqw 3.6cqw;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--rose-light), var(--rose));
}

.scr-count {
  width: 100%;
  margin-top: 3cqw;
  padding: 3.6cqw 4cqw 4cqw;
  text-align: left;
  border-radius: 6cqw;
  background: rgba(255, 255, 255, 0.8);
  border: 0.3cqw solid rgba(252, 169, 198, 0.55);
}

.scr-count div { display: flex; align-items: baseline; justify-content: space-between; }
.scr-count b { font-family: var(--serif); font-weight: 400; font-size: 6.6cqw; }
.scr-count span { font-size: 3.1cqw; color: var(--ink-2); }

.scr-count i {
  display: block;
  height: 1.6cqw;
  margin-top: 2.6cqw;
  border-radius: 999px;
  background: var(--lavender);
  overflow: hidden;
}

.scr-count i::after {
  content: "";
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--rose-light), var(--rose-deep));
}

.scr-spark {
  position: relative;
  margin-top: auto;
  width: 17cqw;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--rose-light), var(--rose));
  box-shadow: 0 3cqw 7cqw rgba(216, 147, 172, 0.55), inset 0 0.5cqw 0 rgba(255, 255, 255, 0.7);
}

.scr-spark::before {
  content: "";
  position: absolute;
  inset: -3.2cqw;
  border-radius: 50%;
  border: 0.4cqw solid rgba(252, 169, 198, 0.55);
}

.scr-spark svg { width: 7.5cqw; fill: var(--ink); }

/* ---------- Statement ---------- */

.statement {
  padding-block: clamp(24px, 4vw, 48px) clamp(64px, 9vw, 120px);
  text-align: center;
}

.statement h2 { max-width: 16ch; margin-inline: auto; }
.statement p { max-width: 32rem; margin: 1.6rem auto 0; }

/* ---------- Feature tiles ---------- */

.features { padding-bottom: clamp(72px, 10vw, 140px); }

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}

.tile {
  --tile-bg: linear-gradient(160deg, #fff, var(--surface));
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-radius: var(--r-xl);
  border: 1px solid transparent;
  background:
    var(--tile-bg) padding-box,
    linear-gradient(135deg, rgba(255, 198, 220, 0.95), rgba(255, 255, 255, 0.7)) border-box;
  box-shadow: 0 10px 30px rgba(216, 147, 172, 0.12);
  overflow: hidden;
}

.tile h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2rem);
  letter-spacing: -0.015em;
  line-height: 1.15;
}

.tile__copy p {
  margin-top: 0.7rem;
  max-width: 26rem;
  color: var(--ink-2);
  font-size: 1rem;
  text-wrap: pretty;
}

.tile__art {
  flex: 1;
  display: grid;
  place-items: center;
}

.tile--calendar { grid-column: span 7; --tile-bg: linear-gradient(160deg, #ffffff, #F4ECFC); }
.tile--flight   { grid-column: span 5; --tile-bg: linear-gradient(160deg, #FFF0F6, #FFD3E3); }
.tile--scrap    { grid-column: span 5; --tile-bg: linear-gradient(160deg, #FFF6EF, var(--amber-light)); }
.tile--widgets  { grid-column: span 7; --tile-bg: linear-gradient(160deg, #F7F1FE, var(--lavender-deep)); }


/* Calendar */
.cal {
  width: 292px;
  padding: 1.1rem 1.1rem 1.2rem;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(228, 214, 250, 0.9);
  box-shadow: 0 8px 24px rgba(139, 92, 240, 0.08);
}

.cal__month {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin-bottom: 0.7rem;
}

.cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  font-family: var(--rounded);
  font-size: 0.78rem;
  text-align: center;
}

.cal__dow { color: var(--ink-3); font-size: 0.68rem; padding-bottom: 2px; }

.cal__d {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 50%;
  color: var(--ink-2);
}

.cal__d--you  { background: var(--lavender-deep); color: var(--ink); }
.cal__d--them { background: var(--amber-light); color: var(--ink); }
.cal__d--both { background: var(--rose); color: var(--ink); font-weight: 700; box-shadow: 0 3px 8px rgba(216, 147, 172, 0.45); }

.cal__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.9rem;
  margin-top: 0.9rem;
  font-size: 0.72rem;
  color: var(--ink-2);
}

.cal__legend span { display: inline-flex; align-items: center; gap: 0.35rem; }
.cal__legend i { width: 0.7rem; height: 0.7rem; border-radius: 50%; }

.cal__chip {
  margin-top: 0.9rem;
  padding: 0.55rem 0.8rem;
  border-radius: var(--r-md);
  background: var(--surface);
  font-size: 0.82rem;
  font-weight: 600;
}

/* Flight */
.flight {
  width: 100%;
  max-width: 340px;
  padding: 1.3rem 1.3rem 1.2rem;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 198, 220, 0.9);
  box-shadow: 0 12px 30px rgba(216, 147, 172, 0.25);
}

.flight__route {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.flight__code {
  font-family: var(--rounded);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.flight__city { margin-top: 0.3rem; font-size: 0.78rem; color: var(--ink-2); }
.flight__to { text-align: right; }

.flight__track {
  position: relative;
  height: 6px;
  margin: 1.5rem 0 1.4rem;
  border-radius: 999px;
  background: var(--lavender);
}

.flight__fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 62%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--rose-light), var(--rose-deep));
}

.flight__plane {
  position: absolute;
  top: 50%;
  left: 62%;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 3px 10px rgba(216, 147, 172, 0.55);
}

.flight__plane svg { width: 16px; fill: var(--rose-deep); transform: rotate(90deg); }

.flight__status {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.flight__eta { font-family: var(--rounded); font-weight: 700; font-size: 1.05rem; }
.flight__meta { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; color: var(--ink-2); }
.flight__meta i { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--success); }

/* Scrapbook */
.scrap {
  position: relative;
  width: 324px;
  height: 246px;
}

.polaroid {
  position: absolute;
  width: 132px;
  padding: 8px 8px 0;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 10px 24px rgba(160, 100, 70, 0.22);
}

.polaroid figcaption {
  height: 34px;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.74rem;
  color: var(--ink-2);
}

.photo {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 2px;
}

.photo::before,
.photo::after { content: ""; position: absolute; border-radius: 50%; }

.polaroid--1 { left: 0; top: 22px; transform: rotate(-6deg); z-index: 1; }
.polaroid--2 { left: 98px; top: 0; transform: rotate(2deg); z-index: 3; }
.polaroid--3 { left: 192px; top: 40px; transform: rotate(8deg); z-index: 2; }

.photo--sun { background: linear-gradient(180deg, #FADBCA, #FCA9C6); }
.photo--sun::before { width: 46%; aspect-ratio: 1; left: 27%; top: 22%; background: #FFF6EF; }
.photo--sun::after { width: 160%; aspect-ratio: 1; left: -30%; top: 70%; background: #D893AC; }

.photo--dusk { background: linear-gradient(180deg, #E4D6FA, #FBDCE4); }
.photo--dusk::before { width: 34%; aspect-ratio: 1; left: 18%; top: 26%; background: #fff; opacity: 0.9; }
.photo--dusk::after { width: 34%; aspect-ratio: 1; left: 46%; top: 36%; background: var(--rose); }

.photo--warm { background: linear-gradient(180deg, #FFF0E6, #F5B896); }
.photo--warm::before { width: 120%; aspect-ratio: 1; left: -40%; top: 62%; background: #E89570; }
.photo--warm::after { width: 90%; aspect-ratio: 1; left: 30%; top: 72%; background: #D893AC; }

/* Widgets */
.wall {
  width: 300px;
  padding: 16px;
  border-radius: 34px;
  background: linear-gradient(160deg, #FFE3EE, #E4D6FA 70%, #FADBCA);
  box-shadow: 0 14px 34px rgba(139, 92, 240, 0.16), inset 0 0 0 1px rgba(255, 255, 255, 0.7);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.wdg {
  aspect-ratio: 1;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 6px 16px rgba(33, 28, 43, 0.08);
}

.wdg small { font-size: 0.72rem; color: var(--ink-2); line-height: 1.3; }
.wdg__num { font-family: var(--serif); font-size: 3.2rem; line-height: 1; letter-spacing: -0.03em; }
.wdg__time { font-family: var(--rounded); font-size: 2rem; font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.wdg--rose { background: linear-gradient(160deg, var(--rose-light), var(--rose)); }
.wdg--rose small { color: rgba(33, 28, 43, 0.7); }

.wdg--wide {
  grid-column: 1 / -1;
  aspect-ratio: auto;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 12px 14px;
}

.wdg--wide b { display: block; font-size: 0.9rem; font-weight: 600; line-height: 1.25; }
.wdg--wide small { display: block; }

.wdg__spark {
  flex: none;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--rose-light), var(--rose));
  box-shadow: 0 4px 10px rgba(216, 147, 172, 0.5);
}

.wdg__spark svg { width: 20px; fill: var(--ink); }

/* ---------- More ---------- */

.more { padding-bottom: clamp(72px, 10vw, 140px); }
.more h2 { text-align: center; }

.more__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.25rem) clamp(1.5rem, 3vw, 3rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.more__ico {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lavender);
}

.more__ico svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.more h3 {
  margin-top: 1rem;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
}

.more p { margin-top: 0.4rem; color: var(--ink-2); font-size: 1rem; max-width: 22rem; text-wrap: pretty; }

/* ---------- Closing CTA ---------- */

.closing {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-block: clamp(80px, 12vw, 160px);
  background: linear-gradient(180deg, var(--pearl), #FFEAF2 55%, var(--pearl));
}

.closing .h2 { max-width: 14ch; margin-inline: auto; }
.closing .lede { max-width: 30rem; margin: 1.4rem auto 0; }
.closing .btn { margin-top: 2.25rem; }

/* ---------- Footer ---------- */

.footer {
  padding-block: 2.5rem 3rem;
  border-top: 1px solid rgba(33, 28, 43, 0.08);
  font-size: 0.9rem;
  color: var(--ink-2);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
}

.footer nav { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; }
.footer nav a { text-decoration: none; }
.footer nav a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .bento .tile { grid-column: 1 / -1; }

  .more__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .more__grid { grid-template-columns: 1fr; }
  .more h2 { text-align: left; }
  .hero__icon { width: 80px; height: 80px; }
  .btn__big { font-size: 1.2rem; }
  .cal, .wall { width: 100%; max-width: 320px; }
  .scrap { transform: scale(0.88); margin-block: -14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .bloom { animation: none; }
  .btn { transition: none; }
}
