:root {
  color-scheme: light;
  --bg: #faf8f6;
  --bg-silk: #f0ebe6;
  --surface: #ffffff;
  --text: #2a2420;
  --muted: #6d6358;
  --ome: #8b6b58;
  --ome-light: #b8947a;
  --hair: #3d3028;
  --hair-soft: #6d5a48;
  --muse: #c49a8a;
  --muse-soft: #f0ddd6;
  --gold: #d4b896;
  --border: rgba(42, 36, 32, 0.1);
  --shadow: 0 22px 58px rgba(139, 107, 88, 0.14);
  --radius: 16px;
  --font-display: "Didot", "Bodoni 72", Georgia, serif;
  --font-body:
    "SF Pro Text",
    Inter,
    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);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

.backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 100% 0%, var(--muse-soft), transparent 55%),
    radial-gradient(ellipse 45% 35% at 0% 100%, var(--bg-silk), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, #fff 100%);
}

.backdrop__wave {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 400px;
  opacity: 0.15;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 200'%3E%3Cpath d='M20 0 Q60 50 30 100 T20 200' stroke='%233d3028' stroke-width='2' fill='none'/%3E%3Cpath d='M50 0 Q90 60 60 120 T50 200' stroke='%233d3028' stroke-width='1.5' fill='none'/%3E%3Cpath d='M75 0 Q95 40 80 90 T75 200' stroke='%233d3028' stroke-width='1' fill='none'/%3E%3C/svg%3E") no-repeat center / contain;
}

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

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

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--muse-soft));
  opacity: 0.5;
}

.hero__inner {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ome);
}

.brand-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.1;
  color: var(--hair);
}

.brand-title .ome {
  font-style: normal;
  font-weight: 600;
  color: var(--ome);
}

.brand-title .hair {
  font-style: normal;
  font-weight: 500;
  color: var(--hair-soft);
}

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

h1 {
  margin: 18px 0 0;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted);
}

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

.updated {
  margin-top: 16px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--gold);
}

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

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

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

.highlights li:nth-child(2) {
  border-left: 3px solid var(--hair-soft);
}

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

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

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

.cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.card:nth-child(even) {
  margin-left: 24px;
  background: linear-gradient(90deg, var(--surface) 0%, var(--muse-soft) 100%);
}

.card h2 {
  margin: 0 0 10px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ome);
}

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

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

a {
  color: var(--ome);
  font-weight: 650;
}

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

.footer {
  margin-top: 34px;
  padding: 22px 28px;
  border-radius: var(--radius);
  background: var(--hair);
  color: var(--muse-soft);
  text-align: center;
  font-size: 0.86rem;
}

.footer strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: #fff;
}

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

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

  .hero {
    padding: 30px 24px 34px;
  }
}

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