:root {
  --cream: #F5F0E8;
  --cream-dark: #EDE6D8;
  --brown-deep: #3D2B1F;
  --brown-mid: #7A5C4A;
  --terracotta: #B5705B;
  --terracotta-dark: #9A5A47;
  --gold: #C4A882;
  --bordeaux: #2D0F0F;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--brown-deep);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(245,240,232,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(181,112,91,0.12);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--brown-mid);
  text-decoration: none;
}

.nav-logo span { color: var(--terracotta); }

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--brown-mid);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--terracotta); }

.nav-links .btn-nav {
  background: var(--terracotta);
  color: var(--cream);
  padding: 9px 22px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
}

/* ARTICLE HERO */
.article-hero {
  background: var(--brown-deep);
  padding: 140px 80px 80px;
  position: relative;
  overflow: hidden;
}

.article-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(181,112,91,0.1);
}

.article-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.article-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 20px;
}

.article-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 24px;
}

.article-meta {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.45);
  letter-spacing: 0.05em;
}

/* ARTICLE BODY */
.article-body {
  padding: 80px;
}

.article-inner {
  max-width: 720px;
  margin: 0 auto;
}

.lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--brown-deep);
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(181,112,91,0.2);
}

.article-inner p {
  font-size: 0.97rem;
  color: var(--brown-mid);
  line-height: 1.9;
  margin-bottom: 20px;
}

.article-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--brown-deep);
  margin: 52px 0 20px;
  line-height: 1.2;
}

.article-inner blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 300;
  color: var(--brown-deep);
  border-left: 3px solid var(--terracotta);
  padding: 20px 28px;
  margin: 36px 0;
  background: var(--cream-dark);
  line-height: 1.6;
}

.article-inner strong {
  font-weight: 500;
  color: var(--brown-deep);
}

.article-inner em {
  font-style: italic;
}

/* ARTICLE CTA */
.article-cta {
  background: var(--brown-deep);
  padding: 52px 48px;
  margin-top: 60px;
  position: relative;
}

.article-cta::after {
  content: '';
  position: absolute;
  bottom: -10px; right: -10px;
  width: 100%; height: 100%;
  border: 1px solid var(--terracotta);
  opacity: 0.2;
  z-index: -1;
}

.article-cta-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}

.article-cta p {
  font-size: 0.95rem;
  color: rgba(245,240,232,0.6);
  margin-bottom: 28px;
  line-height: 1.7;
}

.btn-primary {
  display: inline-block;
  background: var(--terracotta);
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 32px;
  text-decoration: none;
  transition: background 0.3s;
  margin-right: 20px;
  margin-bottom: 12px;
}

.btn-primary:hover { background: var(--terracotta-dark); }

.btn-ghost {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(245,240,232,0.5);
  text-decoration: none;
  border-bottom: 1px solid rgba(181,112,91,0.4);
  padding-bottom: 2px;
  transition: color 0.3s;
}

.btn-ghost:hover { color: var(--terracotta); }

/* FOOTER */
footer {
  background: #2A1E15;
  padding: 32px 80px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(245,240,232,0.2);
}

.footer-back {
  font-size: 0.75rem;
  color: rgba(245,240,232,0.35);
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: 0.05em;
}

.footer-back:hover { color: var(--terracotta); }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 18px 24px; }
  .nav-links { display: none; }
  .article-hero { padding: 120px 24px 60px; }
  .article-body { padding: 48px 24px; }
  footer { padding: 28px 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
