:root {
  --bg-0: #160e08;
  --bg-1: #0c0805;
  --text: #f3e7d3;
  --muted: rgba(243, 231, 211, 0.62);
  --accent: #e8a85a;
  --line: rgba(255, 230, 200, 0.12);
  --card: rgba(255, 240, 215, 0.04);
  --max: 960px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: radial-gradient(130% 100% at 50% 0%, var(--bg-0) 0%, var(--bg-1) 60%, #070402 100%);
  min-height: 100vh;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 22px; }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(12, 8, 5, 0.72); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { font-family: "Cormorant Garamond", serif; font-size: 1.5rem; font-weight: 500; letter-spacing: 0.02em; color: var(--text); }
.brand:hover { text-decoration: none; color: var(--accent); }
.nav { display: flex; gap: 22px; }
.nav a { color: var(--muted); font-size: 0.92rem; }
.nav a:hover { color: var(--text); text-decoration: none; }

/* ---- Hero ---- */
.hero { text-align: center; padding: clamp(56px, 12vw, 120px) 0 clamp(40px, 8vw, 72px); }
.hero .eyebrow { font-size: 0.72rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.hero h1 { font-family: "Cormorant Garamond", serif; font-weight: 300; font-size: clamp(2.6rem, 8vw, 5rem); line-height: 1.02; }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero p { max-width: 620px; margin: 1.4rem auto 0; color: var(--muted); font-size: 1.06rem; }

.btn {
  display: inline-block; margin-top: 2rem;
  font-family: "Cormorant Garamond", serif; font-size: 1.15rem; letter-spacing: 0.06em;
  color: #1a0f06; background: var(--accent); padding: 13px 30px; border-radius: 999px;
  transition: filter .25s, transform .25s;
}
.btn:hover { filter: brightness(1.08); transform: translateY(-1px); text-decoration: none; }
.btn.ghost { color: var(--text); background: transparent; border: 1px solid var(--line); }
.btn.ghost:hover { border-color: var(--accent); }

/* ---- Sections / content ---- */
section { padding: clamp(36px, 7vw, 64px) 0; }
.section-title { font-family: "Cormorant Garamond", serif; font-weight: 400; font-size: clamp(1.8rem, 5vw, 2.6rem); margin-bottom: 0.4rem; }
.lede { color: var(--muted); margin-bottom: 2rem; max-width: 680px; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 22px 22px 24px;
  transition: border-color .25s, transform .25s;
}
.card:hover { border-color: var(--accent); transform: translateY(-2px); }
.card h3 { font-family: "Cormorant Garamond", serif; font-weight: 500; font-size: 1.4rem; margin-bottom: 0.5rem; }
.card p { color: var(--muted); font-size: 0.96rem; }
.card a.more { display: inline-block; margin-top: 0.8rem; font-size: 0.9rem; }

/* ---- Article / prose ---- */
.prose { max-width: 720px; margin: 0 auto; }
.prose h1 { font-family: "Cormorant Garamond", serif; font-weight: 300; font-size: clamp(2.2rem, 6vw, 3.4rem); line-height: 1.06; margin-bottom: 0.6rem; }
.prose .meta { color: var(--muted); font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 2rem; }
.prose h2 { font-family: "Cormorant Garamond", serif; font-weight: 500; font-size: 1.7rem; margin: 2rem 0 0.7rem; }
.prose p { margin-bottom: 1.1rem; }
.prose ul { margin: 0 0 1.1rem 1.2rem; }
.prose li { margin-bottom: 0.4rem; }

/* ---- Ad slot ---- */
.ad-slot { margin: 2.4rem auto; text-align: center; min-height: 90px; }
.ad-slot small { display: block; color: var(--muted); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 6px; opacity: 0.5; }

/* ---- Contact form ---- */
.form { max-width: 540px; margin: 1.5rem auto 0; display: flex; flex-direction: column; gap: 14px; }
.form label { font-size: 0.85rem; color: var(--muted); }
.form input, .form textarea {
  width: 100%; font-family: inherit; font-size: 0.98rem; color: var(--text);
  background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; outline: none;
}
.form input:focus, .form textarea:focus { border-color: var(--accent); }
.form textarea { min-height: 140px; resize: vertical; }

/* ---- Footer ---- */
.site-footer { border-top: 1px solid var(--line); margin-top: 40px; padding: 36px 0; color: var(--muted); font-size: 0.9rem; }
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 16px 28px; align-items: center; justify-content: space-between; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 18px; }
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--text); text-decoration: none; }

@media (max-width: 560px) {
  .nav { gap: 14px; }
  .nav a { font-size: 0.84rem; }
  .site-header .wrap { height: 56px; }
}

/* ---- Support / donate button ---- */
.nav a.support { color: #1a0f06; background: var(--accent); padding: 6px 14px; border-radius: 999px; }
.nav a.support:hover { filter: brightness(1.08); text-decoration: none; color: #1a0f06; }
.site-footer a.support { color: var(--accent); }
.support-cta { text-align: center; margin: 8px auto 0; }
.support-cta .btn { margin-top: 0; }
