
:root {
  --terracotta: #C2785C;
  --terracotta-deep: #A35D42;
  --terracotta-light: #D99A7E;
  --blush: #E8C4B8;
  --blush-light: #F2DDD6;
  --rose: #B56576;
  --rose-light: #D4919E;
  --sand: #F5EDE4;
  --sand-dark: #E8DDD0;
  --cream: #FBF7F3;
  --white: #FFFFFF;
  --charcoal: #2D2926;
  --text-dark: #3A3330;
  --text-mid: #6B5E57;
  --text-light: #9A8D85;
  --sage: #8FA68A;
  --sage-deep: #6B8B65;
}

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

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.7rem 2rem;
  background: rgba(45, 41, 38, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.5px;
}

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

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

.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.3s;
  letter-spacing: 0.3px;
}

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

.nav-cta {
  background: var(--terracotta) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: transform 0.3s, box-shadow 0.3s !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(194, 120, 92, 0.4);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ARTICLE HERO */
.article-hero {
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, var(--charcoal) 0%, #4A3B34 40%, var(--terracotta-deep) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.article-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(232, 196, 184, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.article-hero .tag {
  display: inline-block;
  background: rgba(232, 196, 184, 0.15);
  border: 1px solid rgba(232, 196, 184, 0.3);
  color: var(--blush);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.article-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  line-height: 1.2;
  max-width: 750px;
  margin: 0 auto 1rem;
}

.article-hero .meta {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  font-weight: 300;
}

/* ARTICLE CONTENT */
.article-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.article-content .intro {
  font-size: 1.12rem;
  line-height: 1.9;
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--sand-dark);
}

.article-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--text-dark);
  margin: 2.5rem 0 1rem;
  line-height: 1.3;
}

.article-content p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 1.2rem;
}

/* CTA BLOCK */
.article-cta {
  background: var(--sand);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  margin: 3rem 0;
}

.article-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.article-cta p {
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  padding: 1rem 2.2rem;
  border: none;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--terracotta-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(194, 120, 92, 0.35);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--terracotta);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 2rem;
  transition: color 0.3s;
}

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

/* FOOTER */
footer {
  background: var(--charcoal);
  padding: 3rem 2rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--white);
}

.footer-logo span { color: var(--blush); }

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--blush); }

.footer-copy {
  width: 100%;
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .article-content { padding: 3rem 1.5rem; }
  .article-cta { padding: 2rem 1.5rem; }
}
