:root {
  --bg: #0b0d13;
  --panel: rgba(255, 250, 238, .07);
  --panel2: rgba(255, 250, 238, .1);
  --line: rgba(214, 181, 103, .22);
  --gold: #d5aa58;
  --gold2: #f0d78b;
  --text: #f4ecd9;
  --muted: #b8ad95;
  --blue: #8fb5d6;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(143,181,214,.18), transparent 32rem),
    radial-gradient(circle at 88% 10%, rgba(213,170,88,.18), transparent 30rem),
    linear-gradient(180deg, #0b0d13, #15130f 48%, #090a0e);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: inherit; text-decoration: none; }

.nav {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold2);
  font-weight: 800;
  letter-spacing: .08em;
}

.brand-mark {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
}

.nav nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.nav nav a {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0 70px;
}

.hero, .section-card, .article-card, .disclaimer {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
}

.hero {
  padding: clamp(36px, 7vw, 78px);
  background:
    radial-gradient(circle at 82% 20%, rgba(213,170,88,.16), transparent 26rem),
    linear-gradient(135deg, rgba(255,255,255,.08), transparent 42%),
    rgba(10, 11, 14, .72);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold2);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.65rem, 6vw, 5.5rem);
  line-height: .95;
  letter-spacing: -.04em;
}

h2 {
  color: #fff5df;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
}

h3 {
  color: #fff4df;
  font-size: 1.48rem;
  line-height: 1.08;
}

.lead {
  max-width: 770px;
  margin: 24px 0 0;
  color: #ded1b8;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.72;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold2);
  background: rgba(255,255,255,.04);
  font-weight: 800;
}

.btn--primary {
  color: #1d160c;
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
}

.notice {
  max-width: 760px;
  margin: 24px 0 0;
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  border-radius: 14px;
  color: var(--muted);
  background: rgba(0,0,0,.18);
  font-size: .94rem;
}

.sections {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.section-card {
  min-height: 220px;
  padding: 26px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.section-card:hover, .article-card:hover {
  transform: translateY(-3px);
  border-color: rgba(240,215,139,.48);
  background: var(--panel2);
}

.section-card span {
  color: rgba(240,215,139,.42);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 700;
}

.section-card h2 {
  margin-top: 12px;
  font-size: 2.1rem;
}

.section-card p, .article-card p, .disclaimer p, .section-head > p {
  color: var(--muted);
  line-height: 1.68;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin: 58px 0 18px;
}

.section-head > p {
  max-width: 420px;
  margin: 0;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.article-card {
  min-height: 250px;
  padding: 24px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.article-card__num {
  color: rgba(143,181,214,.46);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.15rem;
  font-weight: 700;
  line-height: 1;
}

.article-card__date {
  margin-top: 14px;
  color: rgba(184,173,149,.78);
  font-size: .78rem;
  font-weight: 800;
}

.article-card h3 {
  margin-top: 10px;
}

.article-card p {
  display: -webkit-box;
  min-height: 72px;
  margin: 12px 0 16px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  font-size: .94rem;
}

.article-card a {
  color: var(--gold2);
  font-weight: 800;
}

.disclaimer {
  margin-top: 54px;
  padding: 30px;
}

.disclaimer h2 {
  font-size: 2.1rem;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 42px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .sections, .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .nav { display: block; }
  .nav nav { justify-content: flex-start; margin-top: 14px; }
  .section-head { display: block; }
  .sections, .article-grid { grid-template-columns: 1fr; }
  .actions { flex-direction: column; }
  .btn { width: 100%; }
}

@media (max-width: 520px) {
  main, .nav, footer { width: min(100% - 22px, 1180px); }
  .hero, .section-card, .article-card, .disclaimer { border-radius: 20px; }
  h1 { font-size: clamp(2.35rem, 14vw, 4rem); }
}
