/* ============================================
   Sébastien Daniel — Fiscalité, Retraite, Patrimoine
   ============================================ */

:root {
  --navy: #0b1f2d;
  --navy-deep: #060f17;
  --navy-mid: #15324a;
  --forest: #14402f;
  --forest-deep: #0a2820;
  --forest-mid: #1f5a44;
  --gold: #d4b876;
  --gold-bright: #e8cf94;
  --gold-deep: #a78a4d;
  --ivory: #f7f3ea;
  --cream: #fdfbf6;
  --cream-warm: #f0eadc;
  --ink: #0d1620;
  --ink-soft: #4a5260;
  --ink-mute: #7a8290;
  --line: rgba(11, 31, 45, 0.1);
  --line-strong: rgba(11, 31, 45, 0.18);
  --shadow-sm: 0 4px 12px rgba(11, 31, 45, 0.08);
  --shadow-md: 0 12px 32px rgba(11, 31, 45, 0.12);
  --shadow-lg: 0 24px 60px rgba(11, 31, 45, 0.18);
  --shadow-gold: 0 12px 32px rgba(212, 184, 118, 0.3);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, .serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.1;
}

em { font-style: italic; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== Utility ===== */
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.eyebrow.light { color: var(--gold); }

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Header ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(253, 251, 246, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  z-index: 100;
  padding: 18px 0;
  transition: all 0.3s;
}

header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

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

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
  text-decoration: none;
}

.logo span {
  color: var(--gold-deep);
  font-style: italic;
}

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

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:not(.btn):hover { color: var(--gold-deep); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--navy);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '→';
  font-size: 16px;
  font-family: serif;
  transition: transform 0.3s;
}

.btn:hover::after { transform: translateX(4px); }

.btn-primary {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}

.btn-primary:hover {
  background: var(--forest);
  border-color: var(--forest);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
  font-weight: 700;
}

.btn-gold:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line-strong);
}

.btn-ghost:hover {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}

.btn-sm { padding: 12px 22px; font-size: 12px; }

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(6, 15, 23, 0.94) 0%, rgba(11, 31, 45, 0.88) 50%, rgba(10, 40, 32, 0.92) 100%),
    radial-gradient(circle at 75% 25%, var(--navy-mid) 0%, var(--navy-deep) 70%);
  color: var(--cream);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 15% 30%, rgba(212, 184, 118, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(31, 90, 68, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  opacity: 0.4;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  width: 100%;
}

.hero h1 {
  font-size: clamp(44px, 6vw, 76px);
  margin-bottom: 32px;
  color: var(--cream);
  font-weight: 400;
}

.hero h1 em {
  color: var(--gold);
  font-weight: 500;
}

.hero-lede {
  font-size: 19px;
  color: rgba(247, 243, 234, 0.82);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-trust {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid rgba(212, 184, 118, 0.25);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-item svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
  flex-shrink: 0;
  stroke-width: 1.5;
}

.trust-label {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  line-height: 1.35;
}

.trust-label strong {
  color: var(--cream);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
}

.trust-label span {
  color: rgba(247, 243, 234, 0.6);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.hero-image {
  position: relative;
}

.hero-image-frame {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.hero-image-frame img {
  width: 100%;
  display: block;
  filter: contrast(1.05) brightness(0.95);
}

.hero-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(6, 15, 23, 0.4) 100%);
  pointer-events: none;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -24px;
  left: -24px;
  width: 50%;
  height: 50%;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  z-index: 1;
}

.hero-image::after {
  content: '';
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 50%;
  height: 50%;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  z-index: 1;
}

.hero-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(11, 31, 45, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 14px 20px;
  border-left: 2px solid var(--gold);
  color: var(--cream);
  font-size: 13px;
  z-index: 2;
}

.hero-badge strong {
  display: block;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* ===== Stats band ===== */
.stats {
  background: var(--navy);
  color: var(--cream);
  padding: 60px 0;
  border-bottom: 1px solid rgba(212, 184, 118, 0.15);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.stat-item {
  padding: 0 16px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: rgba(212, 184, 118, 0.2);
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 5vw, 64px);
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-num em { font-style: italic; }

.stat-label {
  font-size: 14px;
  color: rgba(247, 243, 234, 0.75);
  letter-spacing: 0.02em;
}

/* ===== Sections ===== */
section {
  padding: 120px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 80px;
}

.section-header h2 {
  font-size: clamp(38px, 4.5vw, 56px);
  color: var(--navy);
  margin-bottom: 24px;
}

.section-header h2 em {
  color: var(--gold-deep);
}

.section-header p {
  font-size: 19px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.section-header .eyebrow {
  justify-content: center;
}

/* ===== Pour qui ===== */
.audience {
  background: var(--cream-warm);
  position: relative;
}

.audience::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  opacity: 0.4;
}

.audience-question {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 38px);
  font-style: italic;
  color: var(--navy);
  max-width: 800px;
  margin: 0 auto 64px;
  line-height: 1.3;
}

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

.audience-card {
  background: var(--cream);
  padding: 40px 32px;
  border-radius: 2px;
  position: relative;
  transition: all 0.4s;
  border: 1px solid var(--line);
}

.audience-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.audience-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  font-weight: 500;
  opacity: 0.85;
}

.audience-card h3 {
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 14px;
}

.audience-card p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}

/* ===== Expertise piliers ===== */
.expertise {
  background: var(--cream);
  padding: 100px 0;
}

.pillar-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 56px;
}

.pillar-row:last-child { margin-bottom: 0; }
.pillar-row.reverse { direction: rtl; }
.pillar-row.reverse > * { direction: ltr; }

/* Pillar text animations */
.pillar-text {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pillar-row.reverse .pillar-text {
  transform: translateX(40px);
}

.pillar-row.visible .pillar-text {
  opacity: 1;
  transform: translateX(0);
}

.pillar-visual {
  opacity: 0;
  transform: translateX(40px) scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.15s, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.15s;
}

.pillar-row.reverse .pillar-visual {
  transform: translateX(-40px) scale(0.95);
}

.pillar-row.visible .pillar-visual {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.pillar-text .pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
  opacity: 0.65;
}

.pillar-text h2 {
  font-size: clamp(32px, 3.6vw, 42px);
  color: var(--navy);
  margin-bottom: 20px;
}

.pillar-text h2 em {
  color: var(--gold-deep);
}

.pillar-text p {
  color: var(--ink-soft);
  font-size: 16px;
  margin-bottom: 14px;
  line-height: 1.65;
}

.pillar-text .quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--navy);
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 20px;
  margin: 24px 0 0;
  line-height: 1.4;
}

.pillar-text ul {
  list-style: none;
  margin: 16px 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 24px;
}

.pillar-text ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--ink-soft);
  font-size: 14px;
}

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

.pillar-visual {
  position: relative;
  padding: 24px;
}

.pillar-visual-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--forest-deep) 100%);
  padding: 36px 32px;
  border-radius: 2px;
  color: var(--cream);
  position: relative;
  overflow: hidden;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.4s, box-shadow 0.4s;
}

.pillar-row.visible .pillar-visual-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(11, 31, 45, 0.3);
}

.pillar-visual-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(212, 184, 118, 0.2);
  border-radius: 50%;
  transition: transform 0.6s;
}

.pillar-visual-card::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(212, 184, 118, 0.15);
  border-radius: 50%;
  transition: transform 0.6s;
}

.pillar-row.visible .pillar-visual-card:hover::before { transform: rotate(45deg) scale(1.1); }
.pillar-row.visible .pillar-visual-card:hover::after { transform: rotate(-45deg) scale(1.1); }

.pillar-icon {
  width: 52px;
  height: 52px;
  background: rgba(212, 184, 118, 0.12);
  border: 1px solid rgba(212, 184, 118, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.pillar-icon svg { width: 24px; height: 24px; }

.pillar-stat {
  position: relative;
  z-index: 1;
  margin-top: 24px;
}

.pillar-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}

.pillar-stat-text {
  font-size: 14px;
  color: rgba(247, 243, 234, 0.8);
  max-width: 280px;
  line-height: 1.5;
}

.pillar-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 48px;
  bottom: 48px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  z-index: 0;
  opacity: 0.35;
}

/* ===== Bio ===== */
.bio {
  background: var(--navy-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.bio::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(212, 184, 118, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(31, 90, 68, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.bio h2 {
  color: var(--cream);
  font-size: clamp(36px, 4vw, 48px);
  margin-bottom: 28px;
}

.bio h2 em { color: var(--gold); }

.bio-text p {
  color: rgba(247, 243, 234, 0.85);
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.7;
}

.bio-credentials {
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid rgba(212, 184, 118, 0.25);
}

.bio-credentials h4 {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.bio-credentials ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.bio-credentials li {
  padding: 10px 0 10px 28px;
  color: rgba(247, 243, 234, 0.9);
  font-size: 15px;
  position: relative;
}

.bio-credentials li::before {
  content: '◆';
  color: var(--gold);
  position: absolute;
  left: 0;
  font-size: 10px;
  top: 14px;
}

.bio-image {
  position: relative;
  padding: 24px;
}

.bio-image img {
  width: 100%;
  display: block;
  border-radius: 2px;
  filter: contrast(1.05);
  position: relative;
  z-index: 2;
}

.bio-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 70%;
  border: 1px solid var(--gold);
  z-index: 1;
}

.bio-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
  height: 70%;
  background: rgba(212, 184, 118, 0.08);
  z-index: 0;
}

/* ===== Process ===== */
.process {
  background: var(--cream-warm);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 16%;
  right: 16%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-deep) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  opacity: 0.4;
}

.step {
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.step-marker {
  width: 80px;
  height: 80px;
  background: var(--cream);
  border: 1px solid var(--gold);
  border-radius: 50%;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-style: italic;
  color: var(--gold-deep);
  position: relative;
  z-index: 1;
  font-weight: 500;
  transition: all 0.3s;
}

.step:hover .step-marker {
  background: var(--gold);
  color: var(--navy-deep);
  transform: scale(1.05);
}

.step h3 {
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 16px;
}

.step p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}

.step-time {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-top: 12px;
}

/* ===== Testimonials ===== */
.testimonials {
  background: var(--cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial {
  background: var(--cream-warm);
  padding: 40px 36px;
  border-radius: 2px;
  position: relative;
  border: 1px solid var(--line);
  transition: all 0.3s;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  color: var(--gold);
  line-height: 0.6;
  font-style: italic;
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
}

.testimonial p {
  color: var(--ink);
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--forest));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 18px;
  font-style: italic;
}

.testimonial-meta strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
}

.testimonial-meta span {
  font-size: 12px;
  color: var(--ink-mute);
}

/* ===== Articles ===== */
.articles-section {
  background: var(--cream-warm);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.article-card {
  background: var(--cream);
  border-radius: 2px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.article-card-image {
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--forest) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-card-image svg {
  width: 80px;
  height: 80px;
  color: var(--gold);
  opacity: 0.8;
}

.article-card-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(212, 184, 118, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(31, 90, 68, 0.2) 0%, transparent 50%);
}

.article-card-body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 14px;
}

.article-card h3 {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.2;
}

.article-card p {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 20px;
  flex: 1;
}

.article-card-cta {
  font-size: 13px;
  color: var(--gold-deep);
  font-weight: 600;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.article-card:hover .article-card-cta { gap: 12px; }

.articles-cta {
  text-align: center;
  margin-top: 48px;
}

/* ===== FAQ ===== */
.faq {
  background: var(--cream);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0;
}

.faq-item summary {
  padding: 28px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--navy);
  font-weight: 500;
  transition: color 0.2s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover { color: var(--gold-deep); }

.faq-item summary::after {
  content: '+';
  font-size: 28px;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: '−';
  transform: rotate(0);
}

.faq-item[open] summary { color: var(--gold-deep); }

.faq-answer {
  padding: 0 0 28px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
  max-width: 720px;
}

.faq-answer p:not(:last-child) { margin-bottom: 12px; }

/* ===== CTA Final ===== */
.cta-final {
  background: linear-gradient(135deg, var(--forest-deep) 0%, var(--navy) 50%, var(--navy-deep) 100%);
  color: var(--cream);
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 70%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(212, 184, 118, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-final::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 70%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(31, 90, 68, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-final .container { position: relative; z-index: 1; }

.cta-final h2 {
  font-size: clamp(38px, 5vw, 60px);
  margin-bottom: 28px;
  color: var(--cream);
  font-weight: 400;
}

.cta-final h2 em {
  color: var(--gold);
  font-weight: 500;
}

.cta-final p {
  font-size: 19px;
  color: rgba(247, 243, 234, 0.85);
  margin-bottom: 48px;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 40px;
  flex-wrap: wrap;
  font-size: 14px;
  color: rgba(247, 243, 234, 0.75);
}

.cta-features span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-features span::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-deep);
  font-size: 11px;
  font-weight: 700;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%230b1f2d' d='M6.5 11L3 7.5l1-1L6.5 9l5-5 1 1z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ===== Footer ===== */
footer {
  background: var(--navy-deep);
  color: rgba(247, 243, 234, 0.7);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}

.footer-brand .logo {
  color: var(--cream);
  font-size: 28px;
  margin-bottom: 20px;
  display: block;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 360px;
  color: rgba(247, 243, 234, 0.65);
}

.footer-col h4 {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 12px; }

.footer-col a {
  color: rgba(247, 243, 234, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

.footer-disclaimer {
  background: rgba(0, 0, 0, 0.25);
  padding: 24px 28px;
  border-radius: 2px;
  margin-bottom: 40px;
  border-left: 2px solid var(--gold);
  font-size: 13px;
  color: rgba(247, 243, 234, 0.7);
  line-height: 1.65;
}

.footer-bottom {
  border-top: 1px solid rgba(247, 243, 234, 0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(247, 243, 234, 0.5);
}

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

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  body { font-size: 16px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 24px 32px;
    gap: 20px;
    align-items: flex-start;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--line);
  }
  .nav-links.open .btn { width: 100%; justify-content: center; }
  .menu-toggle { display: block; }

  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-image { max-width: 440px; margin: 0 auto; }
  .hero-trust { gap: 24px; }

  section { padding: 80px 0; }
  .section-header { margin-bottom: 56px; }

  .audience-grid { grid-template-columns: 1fr; }
  .pillar-row { grid-template-columns: 1fr; gap: 48px; margin-bottom: 80px; }
  .pillar-row.reverse { direction: ltr; }
  .pillar-row.reverse .pillar-visual { order: -1; }

  .bio-grid { grid-template-columns: 1fr; gap: 56px; }
  .bio-image { max-width: 440px; margin: 0 auto; }
  .bio-credentials ul { grid-template-columns: 1fr; }

  .process-timeline { grid-template-columns: 1fr; gap: 56px; }
  .process-timeline::before { display: none; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 600px) {
  .container, .container-narrow { padding: 0 20px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .cta-features { flex-direction: column; gap: 16px; align-items: center; }
  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
  .stat-item::after { display: none !important; }
  .pillar-text ul { grid-template-columns: 1fr; }
  .hero-trust { gap: 20px; }
}

/* ===== Article page styles ===== */
.article-page {
  background: var(--cream);
}

.article-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--cream);
  padding: 160px 0 80px;
  position: relative;
}

.article-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.article-breadcrumb {
  font-size: 13px;
  color: rgba(247, 243, 234, 0.6);
  margin-bottom: 24px;
}

.article-breadcrumb a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.article-breadcrumb a:hover { color: var(--gold); }

.article-breadcrumb .sep {
  margin: 0 8px;
  color: var(--gold);
}

.article-hero .tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}

.article-hero h1 {
  font-size: clamp(36px, 4.5vw, 56px);
  color: var(--cream);
  margin-bottom: 28px;
  font-weight: 400;
  max-width: 900px;
}

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

.article-meta {
  display: flex;
  gap: 24px;
  color: rgba(247, 243, 234, 0.75);
  font-size: 14px;
  flex-wrap: wrap;
  align-items: center;
}

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

.article-meta svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

.article-body {
  padding: 80px 0;
}

.article-content {
  font-size: 18px;
  line-height: 1.8;
  color: var(--ink);
}

.article-content > p:first-of-type::first-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  float: left;
  line-height: 0.85;
  padding: 8px 12px 0 0;
  color: var(--gold-deep);
  font-weight: 500;
  font-style: italic;
}

.article-content h2 {
  font-size: 36px;
  color: var(--navy);
  margin: 56px 0 24px;
  font-weight: 500;
}

.article-content h3 {
  font-size: 26px;
  color: var(--navy);
  margin: 40px 0 16px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.01em;
}

.article-content p { margin-bottom: 24px; color: var(--ink-soft); }

.article-content strong { color: var(--ink); font-weight: 600; }

.article-content ul, .article-content ol {
  margin: 0 0 28px 28px;
  color: var(--ink-soft);
}

.article-content li { margin-bottom: 10px; }

.article-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 8px 0 8px 28px;
  margin: 32px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.4;
}

.article-content .info-box {
  background: var(--cream-warm);
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
  margin: 32px 0;
  border-radius: 2px;
}

.article-content .info-box h4 {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
  font-weight: 700;
}

.article-content .info-box p:last-child { margin-bottom: 0; }

.article-content .toc {
  background: var(--cream-warm);
  padding: 28px 32px;
  border-radius: 2px;
  margin: 32px 0 48px;
  border: 1px solid var(--line);
}

.article-content .toc h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
  font-weight: 700;
}

.article-content .toc ol { margin: 0; padding-left: 20px; counter-reset: toc; list-style: none; }

.article-content .toc li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 10px;
  font-size: 15px;
  counter-increment: toc;
}

.article-content .toc li::before {
  content: counter(toc, decimal-leading-zero);
  position: absolute;
  left: 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
  font-size: 18px;
}

.article-content .toc a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}

.article-content .toc a:hover { color: var(--gold-deep); }

.article-cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--forest) 100%);
  color: var(--cream);
  padding: 48px 40px;
  border-radius: 2px;
  margin: 48px 0;
  text-align: center;
}

.article-cta-box h3 {
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 16px;
}

.article-cta-box p {
  color: rgba(247, 243, 234, 0.85);
  margin-bottom: 24px;
  font-size: 16px;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-deep);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 32px;
  transition: gap 0.3s;
}

.article-back:hover { gap: 12px; }

/* Articles list page */
.articles-page-header {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--cream);
  padding: 160px 0 100px;
  text-align: center;
}

.articles-page-header h1 {
  font-size: clamp(40px, 5vw, 64px);
  color: var(--cream);
  margin-bottom: 24px;
  font-weight: 400;
}

.articles-page-header h1 em { color: var(--gold); font-weight: 500; }

.articles-page-header p {
  font-size: 19px;
  color: rgba(247, 243, 234, 0.8);
  max-width: 660px;
  margin: 0 auto;
}

.articles-page-list {
  padding: 100px 0;
}
