:root {
  --bg: #111214;
  --panel: #18191c;
  --panel-2: #202126;
  --text: #f5efe2;
  --muted: #c8c0b2;
  --soft: #8d8a83;
  --gold: #c7a66b;
  --gold-2: #9b7a45;
  --line: rgba(245, 239, 226, 0.14);
  --shadow: 0 24px 80px rgba(0,0,0,.45);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 5%, rgba(199,166,107,.16), transparent 32rem),
    radial-gradient(circle at 10% 20%, rgba(61,83,120,.18), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration-color: rgba(199,166,107,.55);
  text-underline-offset: .22em;
}

img { max-width: 100%; display: block; }

.site-header {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: .95rem;
}

nav a { text-decoration: none; }
nav a:hover { color: var(--text); }

.hero {
  width: min(1180px, calc(100% - 32px));
  min-height: 74vh;
  margin: 0 auto;
  padding: 52px 0 72px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 48px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 700;
  font-size: .78rem;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -.035em;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.6rem);
  max-width: 900px;
}

h1 span {
  color: var(--gold);
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 4.3rem);
  max-width: 860px;
}

h3 {
  font-size: 1.28rem;
  margin-bottom: 10px;
}

.lead {
  margin: 24px 0 0;
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
}

.lead.small {
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid var(--line);
}

.button.primary {
  background: var(--gold);
  color: #111214;
  border-color: var(--gold);
}

.button.secondary {
  background: rgba(255,255,255,.04);
  color: var(--text);
}

.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  padding: 12px;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.hero-card img {
  border-radius: 22px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 32px;
}

.text-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  color: var(--muted);
  font-size: 1.08rem;
}

.quote-block {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 74px 0;
}

blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3.8rem);
  line-height: 1.18;
  color: var(--text);
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.cards.three .card {
  min-height: 260px;
}

.card {
  background: rgba(255,255,255,.045);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
}

.card p {
  color: var(--muted);
  margin: 0;
}

.card a {
  display: inline-block;
  margin-top: 16px;
  color: var(--gold);
  font-weight: 700;
}

.number {
  display: inline-block;
  color: var(--gold);
  font-size: .78rem;
  letter-spacing: .18em;
  margin-bottom: 36px;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.checklist {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.checklist label {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.checklist label:last-child { border-bottom: 0; }

.checklist input {
  margin-top: 5px;
  accent-color: var(--gold);
}

.dark {
  background: linear-gradient(145deg, rgba(199,166,107,.13), rgba(255,255,255,.035));
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 44px;
  margin-bottom: 72px;
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 54px;
  color: var(--soft);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    gap: 12px;
    font-size: .9rem;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 28px;
  }

  .hero-card {
    order: -1;
  }

  .hero-card img {
    max-height: 520px;
    width: 100%;
  }

  .text-grid,
  .cards,
  .split {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .dark {
    padding: 28px;
  }
}

.text-content {
  margin-top: 42px;
  max-width: 860px;
  color: var(--muted);
  font-size: 1.1rem;
}
.text-content h2 {
  margin-top: 52px;
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  color: var(--text);
}
.text-content p {
  margin: 0 0 18px;
}
.text-content blockquote {
  margin: 32px 0;
  padding: 26px;
  border-left: 4px solid var(--gold);
  background: rgba(255,255,255,.04);
  text-align: left;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
}
