:root {
  --bg: #08020a;
  --surface: #14070d;
  --text: #fdfcfd;
  --muted: rgba(255, 255, 255, .70);
  --muted-2: rgba(255, 255, 255, .55);
  --gold: #dfc06a;
  --gold-2: #f0dfa0;
  --line: rgba(223, 192, 106, .18);
  --sans: Inter, "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Playfair Display", Georgia, serif;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.68;
  background: radial-gradient(circle at 18% 0%, rgba(122, 36, 66, .34), transparent 36%), linear-gradient(180deg, #08020a, #12060a 48%, #08020a);
}
a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
header { position: sticky; top: 0; z-index: 10; border-bottom: 1px solid rgba(223, 192, 106, .12); background: rgba(8, 2, 10, .88); backdrop-filter: blur(18px); }
.nav { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { width: 36px; }
.brand strong { display: block; font-family: var(--serif); font-size: 17px; font-weight: 400; line-height: 1.05; }
nav { display: flex; flex-wrap: wrap; gap: 16px; justify-content: flex-end; color: rgba(255, 255, 255, .74); font-size: 14px; }
nav a { text-decoration: none; }
.hero { padding: clamp(58px, 8vw, 104px) 0 clamp(44px, 7vw, 84px); }
.eyebrow { color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 880px; margin-bottom: 22px; font-family: var(--serif); font-size: clamp(42px, 7vw, 78px); font-weight: 500; line-height: .98; }
h1 em, h2 em { color: var(--gold); font-style: italic; font-weight: 300; }
.lead { max-width: 780px; color: var(--muted); font-size: clamp(17px, 2vw, 21px); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; padding: 12px 20px; border: 1px solid rgba(223, 192, 106, .28); border-radius: 999px; text-decoration: none; font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.button.primary { background: linear-gradient(135deg, #c9a040, #f0dfa0); color: #2a0a14; }
main { background: rgba(8, 2, 10, .40); }
section { padding: clamp(54px, 7vw, 88px) 0; border-top: 1px solid rgba(255, 255, 255, .06); }
h2 { margin-bottom: 16px; font-family: var(--serif); font-size: clamp(30px, 4.6vw, 52px); font-weight: 400; line-height: 1.06; }
h3 { margin-bottom: 10px; font-family: var(--serif); font-size: 24px; font-weight: 400; line-height: 1.14; }
.answer, .card { border: 1px solid var(--line); background: rgba(20, 8, 13, .66); }
.answer { padding: clamp(24px, 4vw, 38px); border-radius: 24px; background: linear-gradient(135deg, rgba(201, 160, 64, .10), rgba(122, 36, 66, .10)); }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card { padding: 24px; border-radius: 20px; }
.card p, .answer p { color: var(--muted); }
.card a { color: var(--gold-2); }
.link-list { display: grid; gap: 12px; margin-top: 22px; }
.text-link { display: flex; justify-content: space-between; gap: 16px; padding: 16px 18px; border: 1px solid rgba(223, 192, 106, .16); border-radius: 16px; background: rgba(255, 255, 255, .035); text-decoration: none; }
.text-link span { color: var(--muted-2); font-size: 14px; }
.note { color: var(--muted-2); font-size: 14px; }
footer { padding: 36px 0 46px; border-top: 1px solid rgba(255, 255, 255, .06); color: var(--muted-2); font-size: 14px; }
@media (max-width: 820px) {
  .nav { align-items: flex-start; flex-direction: column; padding: 16px 0; }
  nav { justify-content: flex-start; }
  .grid, .grid.two { grid-template-columns: 1fr; }
  .text-link { display: block; }
  .text-link span { display: block; margin-top: 4px; }
}
