/* Dragon Rising Games — sunrise summit / heroic ascent aesthetic */
:root {
  --night: #1a0e2e;
  --dawn-1: #ff5a36; --dawn-2: #ffa726; --dawn-3: #ffd966;
  --paper: #faf3e0;
  --ink: #2a1f1d;
  --ink-soft: #5c4d49;
  --gold: #c98e35;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--paper); color: var(--ink); font-family: 'Sora', 'Inter', system-ui, sans-serif; font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: var(--dawn-1); text-decoration: none; font-weight: 600; }
a:hover { color: var(--ink); }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.wrap-narrow { max-width: 760px; margin: 0 auto; padding: 0 28px; }

/* Hero — gradient sunrise sky + silhouette mountains */
.hero-sky {
  background: linear-gradient(180deg, var(--night) 0%, #3a1a4a 18%, var(--dawn-1) 45%, var(--dawn-2) 65%, var(--dawn-3) 82%, var(--paper) 100%);
  color: white; padding: 32px 0 0; position: relative; overflow: hidden;
}
header.top { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; padding-bottom: 56px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-sun { width: 36px; height: 36px; border-radius: 50%; background: var(--dawn-3); box-shadow: 0 0 40px var(--dawn-2); }
.brand-name { font-family: 'DM Serif Display', Georgia, serif; font-size: 22px; font-weight: 600; letter-spacing: 0.04em; color: white; }
nav.menu a { margin-left: 24px; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.85); font-weight: 500; }
nav.menu a:hover { color: white; }

.hero-content { padding: 80px 0 160px; text-align: center; position: relative; z-index: 2; }
.hero-content .eyebrow { font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; color: rgba(255,255,255,0.9); margin-bottom: 24px; }
.hero-content h1 { font-family: 'DM Serif Display', Georgia, serif; font-size: clamp(56px, 9vw, 120px); font-weight: 600; line-height: 1.02; letter-spacing: -0.02em; margin: 0 0 32px; color: white; text-shadow: 0 2px 24px rgba(0,0,0,0.2); }
.hero-content h1 em { font-style: italic; color: var(--dawn-3); }
.hero-content p.lead { font-size: 20px; max-width: 540px; margin: 0 auto; color: rgba(255,255,255,0.92); }
.mountains { position: absolute; bottom: 0; left: 0; right: 0; height: 200px; pointer-events: none; }
.mountains svg { width: 100%; height: 100%; display: block; }

/* Sections */
section.block { padding: 96px 0; }
.section-eyebrow { font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--dawn-1); margin-bottom: 16px; }
section h2 { font-family: 'DM Serif Display', Georgia, serif; font-size: clamp(40px, 5vw, 64px); font-weight: 600; letter-spacing: -0.01em; line-height: 1.1; margin: 0 0 24px; }
section h2 em { font-style: italic; color: var(--dawn-1); }
section p.lead { font-size: 19px; color: var(--ink-soft); max-width: 60ch; }

/* Games — ridge cards */
.peaks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
@media (max-width: 800px) { .peaks-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .peaks-grid { grid-template-columns: 1fr; } }
.peak {
  background: white;
  border: 1px solid rgba(42,31,29,0.1);
  border-radius: 6px;
  padding: 28px 24px;
  position: relative;
  border-left: 3px solid var(--dawn-1);
  transition: all .15s ease;
}
.peak:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(42,31,29,0.08); }
.peak .summit-no { font-size: 11px; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; margin-bottom: 8px; }
.peak h3 { font-family: 'DM Serif Display', Georgia, serif; font-size: 22px; font-weight: 600; margin: 0 0 4px; line-height: 1.2; }
.peak .alt { font-size: 12px; color: var(--ink-soft); letter-spacing: 0.06em; }

/* Manifesto */
.manifesto-block { background: var(--night); color: white; padding: 80px 56px; text-align: center; border-radius: 8px; }
.manifesto-block h2 { color: white; margin-bottom: 24px; }
.manifesto-block h2 em { color: var(--dawn-3); }
.manifesto-block p { font-size: 19px; max-width: 56ch; margin: 0 auto; color: rgba(255,255,255,0.85); }
.manifesto-block .credo { display: flex; gap: 48px; justify-content: center; margin-top: 48px; flex-wrap: wrap; }
.manifesto-block .credo .item { font-family: 'DM Serif Display', Georgia, serif; font-style: italic; font-size: 24px; color: var(--dawn-3); }

/* Contact */
.contact-bar { background: linear-gradient(135deg, var(--dawn-1), var(--dawn-2)); color: white; padding: 64px 56px; border-radius: 8px; text-align: center; }
.contact-bar h3 { font-family: 'DM Serif Display', Georgia, serif; font-size: 40px; font-weight: 600; margin: 0 0 12px; color: white; }
.contact-bar a.mail { font-size: 22px; color: white; border-bottom: 2px solid white; padding-bottom: 4px; }

footer.foot { padding: 56px 0; text-align: center; color: var(--ink-soft); font-size: 14px; }
footer.foot a { color: var(--dawn-1); margin: 0 8px; }

/* Legal */
.legal-page { padding: 32px 0 96px; }
.legal-page .legal-eyebrow { font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--dawn-1); margin-bottom: 14px; }
.legal-page h1 { font-family: 'DM Serif Display', Georgia, serif; font-size: clamp(48px, 7vw, 80px); font-weight: 600; letter-spacing: -0.015em; margin: 0 0 16px; line-height: 1.05; }
.legal-page .back-link { font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); }
.legal-page .legal-body { font-size: 16px; line-height: 1.75; color: var(--ink); margin-top: 48px; border-top: 2px solid var(--dawn-1); padding-top: 32px; max-width: 70ch; }
.legal-page .legal-body h2, .legal-page .legal-body h3, .legal-page .legal-body h4 { font-family: 'DM Serif Display', Georgia, serif; font-weight: 600; color: var(--ink); margin: 2em 0 0.6em; }
.legal-page .legal-body h2 { font-size: 28px; color: var(--dawn-1); }
.legal-page .legal-body h3 { font-size: 22px; }
.legal-page .legal-body h4 { font-size: 18px; }
.legal-page .legal-body p { margin: 0 0 1em; }
.legal-page .legal-body strong { color: var(--ink); }
.legal-page .legal-body a { border-bottom: 1px solid var(--dawn-1); }
.legal-page .legal-body ul, .legal-page .legal-body ol { padding-left: 1.4em; margin: 0 0 1em; }
.legal-page .legal-body li { margin-bottom: 0.4em; }
.legal-page .legal-body table { width: 100%; border-collapse: collapse; margin: 1.5em 0; font-size: 14px; }
.legal-page .legal-body th, .legal-page .legal-body td { border: 1px solid rgba(42,31,29,0.15); padding: 10px 12px; vertical-align: top; text-align: left; }
.legal-page .legal-body th { background: rgba(255,90,54,0.06); font-family: 'DM Serif Display', Georgia, serif; font-weight: 600; }
