:root {
  color-scheme: light;
  --bg: #f7f1ea;
  --surface: #ffffff;
  --surface-muted: #f2ebe3;
  --text: #191611;
  --text-muted: #645c52;
  --border: #e6dbcf;
  --accent: #bb8d18;
  --accent-strong: #8b670c;
  --shadow: 0 24px 60px rgba(27, 20, 10, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  font-family: Inter, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

body {
  margin: 0;
  min-height: 100vh;
}

a {
  color: var(--accent-strong);
}

.shell {
  width: min(920px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 24px 0 64px;
}

.hero {
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, #1f1711 0%, #2b2217 100%);
  color: #fff8ef;
  box-shadow: var(--shadow);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 227, 154, 0.16);
  color: #ffe39a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 16px 0 8px;
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1.05;
}

.hero p {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 248, 239, 0.8);
  font-size: 16px;
  line-height: 1.6;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff8ef;
  text-decoration: none;
  font-weight: 600;
}

.nav a.active {
  background: #f4d06a;
  color: #221a0a;
}

.card {
  margin-top: 20px;
  padding: 28px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.meta {
  margin: 0 0 24px;
  color: var(--text-muted);
  font-size: 14px;
}

.section + .section {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.section h2 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.2;
}

.section p {
  margin: 0;
  color: var(--text);
  line-height: 1.7;
}

.section p + p,
.section ul + p,
.section p + ul {
  margin-top: 12px;
}

.section ul {
  margin: 0;
  padding-left: 20px;
  color: var(--text);
  line-height: 1.7;
}

.footer {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 14px;
  text-align: center;
}

@media (max-width: 640px) {
  .shell {
    width: min(100vw - 24px, 920px);
    padding-top: 12px;
  }

  .hero,
  .card {
    padding: 20px;
    border-radius: 20px;
  }
}

