/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark: #0f1117;
  --dark2: #1a1d27;
  --accent: #c8a96e;
  --text: #e8e8e8;
  --muted: #888;
  --max: 900px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Georgia', serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
}

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

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(15,17,23,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200,169,110,0.15);
  z-index: 100;
  padding: 1rem 2rem;
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--text);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.logo span { color: var(--accent); }
nav ul { list-style: none; display: flex; gap: 2rem; }
nav ul a { color: var(--muted); font-family: sans-serif; font-size: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase; }
nav ul a:hover { color: var(--accent); text-decoration: none; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  background: radial-gradient(ellipse at 60% 40%, rgba(200,169,110,0.08) 0%, transparent 60%);
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.eyebrow {
  font-family: sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: #fff;
}
.subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 580px;
  margin-bottom: 2.5rem;
}

/* ===== BUTTON ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--accent);
  color: var(--dark);
  font-family: sans-serif;
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: opacity 0.2s;
}
.btn:hover { opacity: 0.85; text-decoration: none; }

/* ===== SECTIONS ===== */
section { padding: 6rem 2rem; }
.alt { background: var(--dark2); }
.container { max-width: var(--max); margin: 0 auto; }
.center { text-align: center; }
.center .btn { margin-top: 1.5rem; }

section h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #fff;
}
section p { color: #aaa; margin-bottom: 1rem; max-width: 680px; }
.center p { margin-left: auto; margin-right: auto; }

/* ===== CARDS ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.card {
  background: var(--dark);
  border: 1px solid rgba(200,169,110,0.15);
  border-radius: 4px;
  padding: 2rem;
}
.card .icon { font-size: 2rem; margin-bottom: 1rem; }
.card h3 { font-size: 1.1rem; color: #fff; margin-bottom: 0.75rem; }
.card p { font-size: 0.95rem; margin: 0; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark2);
  border-top: 1px solid rgba(200,169,110,0.1);
  padding: 2rem;
  text-align: center;
}
footer p { color: var(--muted); font-size: 0.85rem; margin-bottom: 0.5rem; font-family: sans-serif; }
footer a { color: var(--muted); }
footer a:hover { color: var(--accent); }

/* ===== INNER PAGES ===== */
.page {
  max-width: 760px;
  margin: 8rem auto 4rem;
  padding: 0 2rem;
}
.page h1 { font-size: 2.2rem; color: #fff; margin-bottom: 0.5rem; }
.page .updated { color: var(--muted); font-size: 0.85rem; font-family: sans-serif; margin-bottom: 2.5rem; }
.page h2 { font-size: 1.3rem; color: var(--accent); margin: 2rem 0 0.75rem; }
.page p, .page li { color: #aaa; margin-bottom: 0.75rem; }
.page ul { padding-left: 1.5rem; }
.page a { color: var(--accent); }
