:root {
  color-scheme: light;
  --bg: #fff8f3;
  --bg-deep: #2a1f1a;
  --surface: #ffffff;
  --surface-cocoa: #f5ebe4;
  --text: #2a1f1a;
  --muted: #6b5c54;
  --coral: #e85d4c;
  --coral-soft: #ffddd6;
  --cocoa: #8b5e4b;
  --teal: #2a9d8f;
  --teal-soft: #d4f0ec;
  --border: rgba(42, 31, 26, 0.1);
  --shadow: 0 18px 50px rgba(232, 93, 76, 0.14);
  --radius: 24px;
  --radius-pill: 999px;
  --font-display: "Georgia", "Times New Roman", serif;
  --font-body:
    "SF Pro Rounded",
    "SF Pro Text",
    ui-rounded,
    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);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.backdrop__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.backdrop__blob--1 {
  width: 340px;
  height: 340px;
  top: -80px;
  left: -60px;
  background: var(--coral-soft);
  opacity: 0.9;
}

.backdrop__blob--2 {
  width: 280px;
  height: 280px;
  top: 40%;
  right: -70px;
  background: var(--teal-soft);
  opacity: 0.85;
}

.backdrop__blob--3 {
  width: 200px;
  height: 200px;
  bottom: 8%;
  left: 20%;
  background: var(--surface-cocoa);
  opacity: 0.7;
}

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

.hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 26px;
  padding: 28px 28px 32px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 2px solid var(--text);
  box-shadow: 6px 6px 0 var(--text);
}

.hero__main {
  min-width: 0;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--coral);
  border: 2px solid var(--text);
  box-shadow: 4px 4px 0 var(--text);
}

.brand-mark__glyph {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  font-style: italic;
  color: #fff;
  letter-spacing: -0.02em;
}

.brand-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.03em;
  color: var(--text);
}

.eyebrow {
  display: inline-block;
  margin: 0 0 8px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h2 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
}

.lead {
  margin-top: 12px;
  max-width: 50ch;
  font-size: 1rem;
  color: var(--muted);
}

.hero__badge {
  flex-shrink: 0;
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--surface-cocoa);
  border: 2px dashed var(--cocoa);
  text-align: center;
}

.hero__badge-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cocoa);
}

.hero__badge-date {
  display: block;
  margin-top: 4px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}

p {
  margin: 0;
}

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

a {
  color: var(--coral);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

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

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

.highlights li {
  padding: 18px 16px;
  border-radius: 20px;
  background: var(--surface);
  border: 2px solid var(--border);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.highlights li:nth-child(1) {
  background: var(--coral-soft);
  border-color: var(--coral);
}

.highlights li:nth-child(2) {
  background: var(--teal-soft);
  border-color: var(--teal);
}

.highlights li:nth-child(3) {
  background: var(--surface-cocoa);
  border-color: var(--cocoa);
}

.highlights li:hover {
  transform: rotate(-1deg);
  box-shadow: 4px 4px 0 rgba(42, 31, 26, 0.12);
}

.highlights strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.88rem;
  font-weight: 800;
}

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

.cards {
  display: grid;
  gap: 10px;
}

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

.card:nth-child(odd) {
  margin-right: 12px;
}

.card:nth-child(even) {
  margin-left: 12px;
  background: var(--surface-cocoa);
}

.card p {
  color: var(--muted);
  font-size: 0.93rem;
}

.footer {
  margin-top: 32px;
  padding: 18px 20px;
  border-radius: var(--radius-pill);
  background: var(--bg-deep);
  color: #fff8f3;
  text-align: center;
  font-size: 0.86rem;
}

.footer strong {
  color: var(--coral-soft);
  font-weight: 800;
}

@media (max-width: 700px) {
  .hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero__badge {
    justify-self: start;
  }

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

  .card:nth-child(odd),
  .card:nth-child(even) {
    margin-left: 0;
    margin-right: 0;
  }
}

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

  .hero {
    padding: 22px 18px 26px;
    box-shadow: 4px 4px 0 var(--text);
  }
}
