/* Blog Article Styles — Il Bordello delle Ombre */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0a0a0f;
  --text: #e8e0d0;
  --gold: #c9a84c;
  --gold-dim: rgba(201,168,76,0.3);
  --red: #7a2828;
  --violet: #9b4ac4;
}

html { scroll-behavior: smooth; color-scheme: only dark; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* NAV */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, var(--bg) 60%, transparent);
}

.site-nav a {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 0.3s;
}

.site-nav a:hover { opacity: 0.7; }

.nav-title {
  font-size: 1.1rem;
  font-weight: 600;
}

/* HERO */
.article-hero {
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 8vw, 6rem) clamp(1.5rem, 5vw, 4rem);
  background:
    radial-gradient(ellipse at 30% 80%, rgba(122,40,40,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 20%, rgba(155,74,196,0.05) 0%, transparent 40%),
    var(--bg);
  border-bottom: 1px solid var(--gold-dim);
}

.article-hero .tag {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.article-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text);
  max-width: 800px;
}

.article-hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.article-meta {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: rgba(232,224,208,0.5);
  letter-spacing: 0.05em;
}

/* ARTICLE BODY */
.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4rem) clamp(1.5rem, 5vw, 3rem);
}

.article-body p {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  margin-bottom: 1.8rem;
  color: rgba(232,224,208,0.88);
}

.article-body h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 300;
  color: var(--gold);
  margin-top: 3rem;
  margin-bottom: 1.2rem;
  letter-spacing: 0.03em;
}

.article-body h3 {
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 400;
  color: var(--text);
  margin-top: 2.2rem;
  margin-bottom: 1rem;
}

.article-body blockquote {
  border-left: 2px solid var(--gold-dim);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: rgba(232,224,208,0.7);
  background: rgba(201,168,76,0.03);
}

.article-body a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.3s;
}

.article-body a:hover { opacity: 0.7; }

.article-body ul, .article-body ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
  color: rgba(232,224,208,0.88);
}

.article-body li {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  margin-bottom: 0.8rem;
  line-height: 1.7;
}

.separator {
  text-align: center;
  margin: 3rem 0;
  color: var(--gold-dim);
  font-size: 1.5rem;
  letter-spacing: 1em;
}

/* CTA */
.cta-box {
  margin: 3rem 0;
  padding: 2rem;
  border: 1px solid var(--gold-dim);
  background: rgba(201,168,76,0.04);
  text-align: center;
}

.cta-box p {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 1.2rem;
}

.cta-btn {
  display: inline-block;
  padding: 0.8rem 2.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.4s, color 0.4s;
}

.cta-btn:hover {
  background: var(--gold);
  color: var(--bg);
  opacity: 1;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--gold-dim);
  padding: 2.5rem clamp(1.5rem, 5vw, 3rem);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(232,224,208,0.4);
}

.site-footer a {
  color: var(--gold);
  text-decoration: none;
}

.site-footer a:hover { text-decoration: underline; }

/* RESPONSIVE */
@media (max-width: 600px) {
  .site-nav { padding: 0.8rem 1rem; }
  .article-hero { min-height: 45vh; }
}
