/* Shared article styles — Clarive */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1C2B4A;
  --navy-light: #243560;
  --gold: #E8A838;
  --gold-light: #F5C96A;
  --cream: #F7F5F1;
  --cream-dark: #EDEAE4;
  --white: #ffffff;
  --muted: #888;
  --text: #2A2A2A;
  --border: #E0DBD3;
}

html { scroll-behavior: smooth; }

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

/* Language Bar */
.lang-bar {
  background: var(--navy);
  text-align: right;
  padding: 8px 40px;
}

.lang-toggle {
  display: inline-flex;
  gap: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 3px;
}

.lang-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.2s;
}

.lang-btn.active {
  background: var(--gold);
  color: var(--navy);
  font-weight: 500;
}

/* Nav */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247,245,241,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 0.04em;
}

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

.nav-links a {
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 6px;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--gold) !important; color: var(--navy) !important; }

/* Article Hero */
.article-hero {
  padding: 80px 40px 56px;
  max-width: 880px;
  margin: 0 auto;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 0.2s;
}

.article-back:hover { color: var(--gold); }
.article-back::before { content: '←'; }

.article-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  padding: 5px 14px;
  border: 1px solid var(--gold);
  border-radius: 20px;
}

.article-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

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

.article-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.article-meta span { display: inline-flex; align-items: center; gap: 6px; }

.article-lead {
  font-size: 1.1rem;
  line-height: 1.75;
  color: #555;
  margin-top: 32px;
  font-weight: 300;
  border-left: 2px solid var(--gold);
  padding-left: 22px;
}

/* Article Body */
.article-body {
  background: var(--white);
  padding: 72px 40px 96px;
}

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

.article-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--navy);
  margin: 56px 0 18px;
  line-height: 1.25;
}

.article-body h2:first-child { margin-top: 0; }

.article-body h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  margin: 36px 0 12px;
  letter-spacing: -0.01em;
}

.article-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
  font-weight: 300;
}

.article-body ul, .article-body ol {
  margin: 12px 0 24px 0;
  padding-left: 0;
  list-style: none;
}

.article-body li {
  font-size: 0.98rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 12px;
  font-weight: 300;
  padding-left: 28px;
  position: relative;
}

.article-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 14px;
  height: 1px;
  background: var(--gold);
}

.article-body ol { counter-reset: art; }
.article-body ol li {
  counter-increment: art;
}
.article-body ol li::before {
  content: counter(art);
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 500;
  width: 22px;
}

.article-body strong { color: var(--navy); font-weight: 500; }

.callout {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 22px 26px;
  border-radius: 4px;
  margin: 32px 0;
}

.callout p { margin-bottom: 0; font-size: 0.95rem; }
.callout .callout-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 8px;
}

/* Article CTA */
.article-cta {
  background: var(--navy);
  color: var(--white);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.article-cta::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 480px; height: 480px;
  border-radius: 50%;
  border: 50px solid rgba(255,255,255,0.03);
  pointer-events: none;
}

.article-cta-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
  position: relative;
}

.article-cta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  margin-bottom: 14px;
  position: relative;
}

.article-cta p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
  font-weight: 300;
  position: relative;
}

.article-cta .btn-primary {
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.2s;
  display: inline-block;
  position: relative;
}

.article-cta .btn-primary:hover {
  background: var(--white);
  border-color: var(--white);
}

/* Related */
.article-related {
  background: var(--cream);
  padding: 80px 40px;
}

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

.related-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.related-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.related-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 40px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.related-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}

.related-card-icon {
  font-size: 1.8rem;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: 10px;
  flex-shrink: 0;
}

.related-card-tag {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.related-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.3;
}

/* Footer */
footer {
  background: #111820;
  color: rgba(255,255,255,0.4);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
}

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

.footer-links a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.footer-copy { font-size: 0.72rem; }

/* Responsive */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links li:not(:last-child) { display: none; }
  .article-hero { padding: 48px 24px 32px; }
  .article-body { padding: 48px 24px 64px; }
  .article-cta { padding: 60px 24px; }
  .article-related { padding: 56px 24px; }
  .related-grid { grid-template-columns: 1fr; }
  .lang-bar { padding: 8px 20px; }
}
