/* ── NAV — fixed, uses .nav-logo ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(250,250,245,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.3px;
}
.nav-logo span { color: var(--green); }

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

.nav-links a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-light);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }

.nav-cta {
  background: var(--green) !important;
  color: var(--cream) !important;
  padding: 10px 22px !important;
  border-radius: 2px;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--green-dark) !important; }

/* ── ARTICLE LAYOUT ── */
.article-wrapper {
  max-width: 740px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-light);
  opacity: 0.6;
  margin-bottom: 40px;
}
.breadcrumb a { color: inherit; text-decoration: none; }
.breadcrumb a:hover { opacity: 1; color: var(--green); }
.breadcrumb span { opacity: 0.4; }

/* ── ARTICLE HEADER ── */
.article-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.article-kicker-line {
  width: 40px;
  height: 1px;
  background: var(--terracota);
}
.article-kicker span {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terracota);
  font-weight: 700;
}

.article-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: 24px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  color: var(--ink-light);
  opacity: 0.6;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule);
}

.article-meta span::before {
  content: '·';
  margin-right: 20px;
}
.article-meta span:first-child::before { content: ''; margin: 0; }

/* ── ARTICLE BODY ── */
.article-body {
  font-size: 17px;
  line-height: 1.85;
  color: var(--ink);
}

.article-body p {
  margin-bottom: 24px;
}

.article-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin: 56px 0 20px;
  padding-top: 8px;
  border-top: 1px solid var(--rule);
}

.article-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin: 36px 0 16px;
}

.article-body strong {
  font-weight: 700;
  color: var(--ink);
}

.article-body ul {
  list-style: none;
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.article-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--ink-light);
  line-height: 1.6;
}

.article-body ul li::before {
  content: '—';
  color: var(--terracota);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.article-body ol {
  list-style: none;
  margin: 20px 0 28px;
  counter-reset: article-counter;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.article-body ol li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 16px;
  color: var(--ink-light);
  line-height: 1.6;
  counter-increment: article-counter;
}

.article-body ol li::before {
  content: counter(article-counter);
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--rule);
  flex-shrink: 0;
  line-height: 1;
  min-width: 24px;
}

hr {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 48px 0;
}

/* ── PULL QUOTE ── */
.pull-quote {
  border-left: 3px solid var(--terracota);
  margin: 40px 0;
  padding: 24px 32px;
  background: white;
  border-radius: 0 4px 4px 0;
}

.pull-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
  margin: 0 !important;
}

/* ── FAQ ── */
.faq-section {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--rule);
}

.faq-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 36px;
}

.faq-item {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.4;
}

.faq-answer {
  font-size: 16px;
  color: var(--ink-light);
  line-height: 1.7;
}

/* ── CTA BOX ── */
.cta-box {
  background: var(--green-dark);
  border-radius: 4px;
  padding: 48px;
  margin: 56px 0;
  text-align: center;
}

.cta-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: white;
  line-height: 1.3;
  margin-bottom: 16px;
}

.cta-box h3 em {
  font-style: italic;
  color: var(--terracota);
}

.cta-box p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
  line-height: 1.7;
}

.cta-box-form {
  display: flex;
  gap: 0;
  max-width: 420px;
  margin: 0 auto;
}

.cta-box-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 2px 0 0 2px;
  background: white;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: var(--ink);
  outline: none;
}

.cta-box-form input::placeholder { color: #AAA; }

.cta-box-form button {
  padding: 14px 24px;
  background: var(--terracota);
  color: white;
  border: none;
  border-radius: 0 2px 2px 0;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.cta-box-form button:hover { background: #B5623C; }

.cta-box-note {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ── RESOURCES BOX ── */
.resources-box {
  background: white;
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 36px;
  margin: 40px 0;
}

.resources-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 20px;
}

.resources-box ul {
  margin: 0 !important;
}

/* ── SHARE ── */
.article-share {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 48px 0;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.article-share-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-light);
  opacity: 0.6;
}

.article-share-note {
  font-size: 14px;
  color: var(--ink-light);
  font-style: italic;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--rule);
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.footer-logo span { color: var(--green); }

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-links a {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-light);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.footer-links a:hover { opacity: 1; }

.footer-copy {
  font-size: 12px;
  color: var(--ink-light);
  opacity: 0.4;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s ease 0.1s forwards;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .article-wrapper { padding: 100px 20px 60px; }
  .cta-box { padding: 32px 24px; }
  .cta-box-form { flex-direction: column; }
  .cta-box-form input { border-radius: 2px 2px 0 0; }
  .cta-box-form button { border-radius: 0 0 2px 2px; }
  footer { flex-direction: column; gap: 20px; text-align: center; padding: 32px 24px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
