:root {
  color-scheme: dark;
  --bg: #0e1210;
  --bg-warm: #161a17;
  --surface: #1c221e;
  --surface-glow: #222a24;
  --text: #ebe8e2;
  --muted: #8f968e;
  --aveola: #d4a574;
  --aveola-dim: rgba(212, 165, 116, 0.14);
  --lounge: #6b9e8a;
  --lounge-dim: rgba(107, 158, 138, 0.12);
  --accent: #c47898;
  --border: rgba(235, 232, 226, 0.07);
  --glow: 0 0 60px rgba(107, 158, 138, 0.08);
  --radius: 14px;
  --radius-lg: 22px;
  --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 70% 45% at 50% 0%, var(--lounge-dim), transparent 55%),
    radial-gradient(ellipse 40% 30% at 90% 80%, var(--aveola-dim), transparent 50%),
    radial-gradient(ellipse 35% 25% at 5% 60%, rgba(196, 120, 152, 0.06), transparent 45%),
    linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
}

.backdrop__glow {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 120px;
  background: radial-gradient(ellipse, rgba(212, 165, 116, 0.12), transparent 70%);
  filter: blur(20px);
}

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

.hero {
  margin-bottom: 36px;
}

.hero__lounge {
  padding: 38px 32px 32px;
  background: linear-gradient(160deg, var(--surface-glow) 0%, var(--surface) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glow);
}

.eyebrow {
  display: inline-block;
  margin: 0 0 18px;
  padding: 5px 14px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lounge);
  background: var(--lounge-dim);
  border-radius: 999px;
}

.brand-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 9vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.05;
}

.brand-title .aveola {
  color: var(--aveola);
}

.brand-title .lounge {
  color: var(--text);
  font-style: italic;
  letter-spacing: 0.12em;
}

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

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

.updated {
  margin-top: 20px;
  font-size: 0.76rem;
  font-weight: 500;
  color: rgba(212, 165, 116, 0.8);
}

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

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

.highlights li:nth-child(1) {
  border-top: 2px solid var(--aveola);
}

.highlights li:nth-child(2) {
  border-top: 2px solid var(--lounge);
}

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

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

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

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

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

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

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

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

.card--wide {
  grid-column: 1 / -1;
  padding: 26px 24px;
  background: linear-gradient(135deg, var(--surface) 0%, rgba(28, 34, 30, 0.5) 100%);
  border-color: rgba(107, 158, 138, 0.15);
}

a {
  color: var(--lounge);
  text-decoration: none;
  border-bottom: 1px solid rgba(107, 158, 138, 0.35);
}

a:hover {
  color: var(--aveola);
  border-bottom-color: rgba(212, 165, 116, 0.45);
}

.footer {
  margin-top: 36px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  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: 1.05rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--text);
}

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

.footer strong .lounge {
  font-style: italic;
}

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

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

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

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

@media (max-width: 480px) {
  .page {
    padding: 36px 0 60px;
    width: min(100% - 24px, 920px);
  }
}
