:root {
  color-scheme: light;
  --bg: #faf7f9;
  --bg-blush: #f5e8ee;
  --surface: #ffffff;
  --text: #2a2228;
  --muted: #7a6b74;
  --lace: #e8dce4;
  --lace-deep: #c9b4c0;
  --mood: #9b6b8a;
  --mood-soft: #d4a8c4;
  --rose: #e8b4c8;
  --ink: #4a3d45;
  --border: rgba(42, 34, 40, 0.1);
  --shadow: 0 22px 58px rgba(155, 107, 138, 0.14);
  --radius: 2px;
  --radius-soft: 28px;
  --font-display: "Didot", "Bodoni 72", Georgia, serif;
  --font-body:
    "Helvetica Neue",
    Helvetica,
    Arial,
    ui-sans-serif,
    system-ui,
    -apple-system,
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.78;
  -webkit-font-smoothing: antialiased;
}

.backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, var(--bg-blush), transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(232, 220, 228, 0.8), transparent 50%),
    var(--bg);
}

.backdrop__lace {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0v60M0 30h60M15 15l30 30M45 15L15 45' stroke='%23c9b4c0' stroke-width='0.5' fill='none'/%3E%3C/svg%3E");
}

.page {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 52px 0 80px;
}

.hero {
  margin-bottom: 44px;
  padding: 44px 40px 48px;
  border: 1px solid var(--lace-deep);
  background: var(--surface);
  box-shadow: var(--shadow);
  text-align: center;
}

.lace-frame {
  display: inline-block;
  margin-bottom: 24px;
  padding: 16px 32px;
  border: 1px solid var(--lace);
  outline: 1px solid var(--lace-deep);
  outline-offset: 6px;
}

.eyebrow {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mood);
}

.brand-title {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 3.8rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--ink);
}

.brand-title .amp {
  font-style: normal;
  font-weight: 300;
  font-size: 0.5em;
  color: var(--lace-deep);
  margin: 0 0.12em;
}

.brand-title .mood {
  font-style: normal;
  color: var(--mood);
}

h1 {
  margin: 28px 0 0;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.lead {
  margin: 18px auto 0;
  max-width: 42ch;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.9;
}

.updated {
  margin-top: 22px;
  font-size: 0.78rem;
  font-style: italic;
  color: var(--mood-soft);
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
}

.highlights li {
  padding: 28px 24px;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--lace);
}

.highlights li:nth-child(2) {
  background: var(--bg-blush);
}

.highlights strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
}

.highlights span {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.55;
}

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--lace);
  border: 1px solid var(--lace);
}

.card {
  padding: 28px 30px;
  background: var(--surface);
}

.card--wide {
  grid-column: 1 / -1;
}

.card h2 {
  margin: 0 0 12px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mood);
}

.card p {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
}

.card p + p {
  margin-top: 11px;
}

a {
  color: var(--mood);
  text-decoration: none;
  border-bottom: 1px solid var(--rose);
}

a:hover {
  color: var(--ink);
}

.footer {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--lace);
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.footer strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--ink);
}

@media (max-width: 720px) {
  .highlights,
  .cards {
    grid-template-columns: 1fr;
  }

  .card--wide {
    grid-column: auto;
  }

  .hero {
    padding: 32px 24px 36px;
  }
}

@media (max-width: 480px) {
  .page {
    padding: 36px 0 60px;
  }
}
