:root {
  --bg: #0e1116;
  --bg-soft: #131821;
  --bg-paper: rgba(255, 248, 240, 0.03);
  --card: rgba(255, 248, 240, 0.04);
  --text: #ece7df;
  --text-dim: #a9a39a;
  --text-soft: #c8c1b7;
  --line: rgba(255, 248, 240, 0.08);
  --line-strong: rgba(255, 248, 240, 0.16);
  --accent: #d6c2a2;
  --accent-soft: #e3d4bc;
  --max-width: 1180px;
  --narrow-width: 760px;
  --radius: 24px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.03), transparent 28%),
    linear-gradient(to bottom, #0e1116, #10141b 40%, #0e1116 100%);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.75;
  letter-spacing: 0.01em;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

.narrow {
  max-width: var(--narrow-width);
}

.center {
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 17, 22, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 248, 240, 0.05);
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
}

.nav-links {
  display: flex;
  gap: 22px;
}

.nav-links a {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-dim);
  font-size: 14px;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.hero {
  padding: 110px 0 80px;
}

.hero-inner {
  max-width: 980px;
}

.eyebrow,
.section-note {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: var(--accent);
  margin: 0 0 18px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(52px, 8vw, 96px);
  line-height: 0.96;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--text);
  max-width: 900px;
}

.hero-text {
  margin: 30px 0 0;
  max-width: 720px;
  font-size: 22px;
  line-height: 1.75;
  color: var(--text-soft);
}

.button-row {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  color: var(--text);
  background: rgba(255,255,255,0.01);
  transition: all 0.22s ease;
}

.button:hover {
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

.button.primary {
  background: var(--accent);
  color: #171717;
  border-color: var(--accent);
}

.button.primary:hover {
  background: var(--accent-soft);
  border-color: var(--accent-soft);
}

.section {
  padding: 84px 0;
}

.intro-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.01);
}

.lead-paragraph {
  margin: 0;
  font-size: 28px;
  line-height: 1.7;
  color: var(--text);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 34px;
}

.section-head h2,
.editorial-left h2,
.closing-title {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.section-side-text {
  max-width: 360px;
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.8;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.feature-card {
  display: block;
  background: linear-gradient(
    to bottom,
    rgba(255, 248, 240, 0.04),
    rgba(255, 248, 240, 0.02)
  );
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 28px 30px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 194, 162, 0.35);
  background: linear-gradient(
    to bottom,
    rgba(255, 248, 240, 0.06),
    rgba(255, 248, 240, 0.03)
  );
}

.card-index {
  display: inline-block;
  margin-bottom: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.16em;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 600;
}

.feature-card p {
  margin: 0;
  color: var(--text-dim);
  font-size: 17px;
  line-height: 1.8;
}

.editorial-section {
  border-top: 1px solid var(--line);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: start;
}

.editorial-right p {
  margin: 0 0 18px;
  color: var(--text-soft);
  font-size: 19px;
}

.closing-section {
  border-top: 1px solid var(--line);
}

.closing-title {
  margin-bottom: 18px;
}

.closing-text {
  margin: 0;
  color: var(--text-dim);
  font-size: 18px;
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 40px;
}

.footer-inner {
  padding: 26px 28px 42px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--text-dim);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
}

@media (max-width: 980px) {
  .section-head,
  .editorial-grid,
  .footer-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 88px 0 64px;
  }

  .hero-text {
    font-size: 19px;
  }

  .lead-paragraph {
    font-size: 23px;
  }
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  .hero h1 {
    line-height: 1.02;
  }

  .feature-card h3 {
    font-size: 24px;
  }

  .container {
    padding: 0 20px;
  }
}
