:root {
  color-scheme: light;
  --bg: #faf7f5;
  --bg-rose: #f3e8ea;
  --bg-plum: #ebe4ef;
  --surface: #ffffff;
  --text: #2a2228;
  --muted: #756b72;
  --aevoia: #8b4a6b;
  --aevoia-light: #b06d8a;
  --couple: #5a7a8c;
  --couple-light: #7a9aab;
  --gold: #c9a87c;
  --gold-soft: rgba(201, 168, 124, 0.25);
  --border: rgba(42, 34, 40, 0.09);
  --shadow: 0 20px 56px rgba(139, 74, 107, 0.1);
  --radius: 24px;
  --radius-sm: 14px;
  --font-display: Georgia, "Times New Roman", Times, 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.74;
  -webkit-font-smoothing: antialiased;
}

.backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 40% at 0% 30%, var(--bg-rose), transparent 55%),
    radial-gradient(ellipse 50% 35% at 100% 70%, var(--bg-plum), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, #fdfbfa 100%);
}

.backdrop__rings {
  position: absolute;
  top: 12%;
  right: 8%;
  width: 120px;
  height: 120px;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
}

.backdrop__rings::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(90, 122, 140, 0.2);
  border-radius: 50%;
}

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

.hero {
  margin-bottom: 40px;
}

.hero__frame {
  padding: 40px 36px 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero__frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--aevoia) 0%, var(--gold) 50%, var(--couple) 100%);
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--couple);
}

.brand-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 3.4rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--text);
}

.brand-title .aevoia {
  color: var(--aevoia);
  letter-spacing: 0.06em;
}

.brand-title .couple {
  display: block;
  margin-top: 6px;
  font-size: 0.55em;
  font-style: italic;
  color: var(--couple);
}

.brand-title .collection {
  display: block;
  margin-top: 4px;
  font-size: 0.38em;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
}

h1 {
  margin: 22px 0 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.lead {
  margin-top: 16px;
  max-width: 50ch;
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.82;
}

.updated {
  margin-top: 20px;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--aevoia-light);
}

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

.highlights li {
  padding: 24px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.highlights li:nth-child(1) {
  border-bottom: 3px solid var(--aevoia);
}

.highlights li:nth-child(2) {
  border-bottom: 3px solid var(--gold);
}

.highlights li:nth-child(3) {
  border-bottom: 3px solid var(--couple);
}

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

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

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.card {
  padding: 24px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.card h2 {
  margin: 0 0 10px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--aevoia);
}

.card p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.68;
}

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

.card--wide {
  grid-column: 1 / -1;
  padding: 28px 26px;
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-rose) 100%);
}

a {
  color: var(--aevoia);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-soft);
}

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

.footer {
  margin-top: 44px;
  padding: 22px 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--text);
}

.footer strong .aevoia {
  color: var(--aevoia);
  font-style: normal;
}

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

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

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

  .hero__frame {
    padding: 28px 22px 24px;
  }

  .backdrop__rings {
    width: 80px;
    height: 80px;
    top: 6%;
    right: 4%;
  }
}

@media (max-width: 480px) {
  .page {
    padding: 36px 0 64px;
    width: min(100% - 28px, 900px);
  }
}
