:root {
  --gold:        #B69974;
  --gold-soft:   #d4bf9c;
  --gold-deep:   #8c714d;
  --ink:         #1C1A1D;
  --navy:        #072032;
  --bg:          #ECE8E0;
  --bg2:         #F5F2EC;
  --paper:       #FFFFFF;
  --muted:       #6E6A6A;
  --line:        #DAD2C5;
  --radius:      14px;
  --max:         1240px;
  --max-narrow:  900px;
  --shadow:      0 30px 60px -30px rgba(7, 32, 50, 0.18), 0 10px 30px -10px rgba(7, 32, 50, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  font-weight: 400;
}
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--navy);
  line-height: 1.15;
}
h1 { font-size: clamp(2.4rem, 5vw + 1rem, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 2.5vw + 1rem, 2.7rem); }
h3 { font-size: 1.4rem; font-weight: 600; color: var(--ink); }
p  { color: #2a2a2a; }
.muted { color: var(--muted); }
.italic { font-style: italic; }
a { color: inherit; text-decoration: none; }

/* Layout helpers */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.narrow    { max-width: var(--max-narrow); margin: 0 auto; }
.center    { text-align: center; }

.section { padding: 110px 0; }
.section-tight { padding: 80px 0; }

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  padding: 6px 14px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  background: rgba(182, 153, 116, 0.07);
  margin-bottom: 18px;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  margin: 0;
  width: 100%;
}

/* ================ NAV ================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(236, 232, 224, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(218, 210, 197, 0.5);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--navy), var(--ink));
  display: grid; place-items: center;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: var(--shadow);
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; display: block; }
.brand-logo { height: 46px; width: auto; display: block; }
@media (max-width: 480px) { .brand-logo { height: 40px; } }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 0.93rem;
  font-weight: 500;
}
.nav-links a {
  color: var(--ink);
  position: relative;
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--gold-deep); }
.nav-links a.cta-mini {
  background: var(--navy);
  color: var(--bg);
  padding: 10px 20px;
  border-radius: 100px;
  transition: transform .2s ease, background .2s ease;
}
.nav-links a.cta-mini:hover { background: var(--ink); transform: translateY(-1px); }
@media (max-width: 760px) {
  .nav-links { display: none; }
}

/* ================ HERO ================ */
.hero {
  position: relative;
  padding: 90px 0 130px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -10%;
  width: 60%; height: 70%;
  background: radial-gradient(closest-side, rgba(182, 153, 116, 0.18), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 {
  margin-bottom: 24px;
}
.hero h1 .gold {
  color: var(--gold-deep);
  font-style: italic;
  font-weight: 400;
}
.hero .lead {
  font-size: 1.18rem;
  color: #3a3a3a;
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 28px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--navy);
  color: var(--bg);
  padding: 16px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  transition: transform .2s ease, box-shadow .25s ease, background .2s ease;
  box-shadow: 0 14px 30px -10px rgba(7, 32, 50, 0.5);
}
.btn-primary:hover { background: var(--ink); transform: translateY(-2px); box-shadow: 0 20px 38px -10px rgba(7, 32, 50, 0.55); }
.btn-primary svg { flex-shrink: 0; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  padding: 16px 22px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid var(--line);
  transition: all .2s ease;
}
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }

.hero-meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 8px;
}
.hero-meta div { display: flex; align-items: center; gap: 8px; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* iPhone mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.device-iphone {
  position: relative;
  width: min(100%, 320px);
  aspect-ratio: 1242 / 2688;
  background: var(--ink);
  border-radius: 48px;
  padding: 12px;
  box-shadow:
    0 60px 120px -30px rgba(7, 32, 50, 0.35),
    0 30px 60px -20px rgba(7, 32, 50, 0.2),
    inset 0 0 0 2px rgba(255, 255, 255, 0.06);
  transform: rotate(-2.5deg);
  transition: transform .5s ease;
}
.device-iphone:hover { transform: rotate(0deg) scale(1.02); }
.device-iphone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 36px;
  display: block;
}
.device-iphone::after {
  content: '';
  position: absolute;
  top: 18px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 28px;
  background: var(--ink);
  border-radius: 18px;
  z-index: 2;
}
.hero-orb {
  position: absolute;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  filter: blur(6px);
  opacity: 0.55;
  z-index: -1;
}
.hero-orb.top    { top: -10px; right: 20%; }
.hero-orb.bottom { bottom: 10%; left: -10px; width: 130px; height: 130px; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { order: -1; }
  .device-iphone { width: 240px; }
}

/* ================ TRUST BAR ================ */
.trust {
  padding: 36px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.trust-row .label {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.trust-row .items {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
}
.trust-row .items span { display: flex; align-items: center; gap: 8px; }
.trust-row .items svg { color: var(--gold-deep); flex-shrink: 0; }

/* ================ MANIFESTO ================ */
.manifesto {
  background: var(--paper);
  padding: 130px 0;
  position: relative;
}
.manifesto::before {
  content: '«';
  position: absolute;
  top: 60px; left: 10%;
  font-family: 'Playfair Display', serif;
  font-size: 380px;
  line-height: 1;
  color: var(--bg);
  pointer-events: none;
  user-select: none;
}
.manifesto-text {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.55rem, 2.4vw + 0.6rem, 2.15rem);
  line-height: 1.45;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.manifesto-text em {
  color: var(--gold-deep);
  font-style: italic;
}
.manifesto-sig {
  text-align: center;
  margin-top: 50px;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ================ PILLARS ================ */
.pillars-head {
  text-align: center;
  margin-bottom: 80px;
}
.pillars-head h2 { margin-bottom: 18px; }
.pillars-head p { color: var(--muted); font-size: 1.08rem; max-width: 640px; margin: 0 auto; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pillar {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 38px 30px;
  border: 1px solid var(--line);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold-soft);
}
.pillar-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold-deep);
  font-size: 0.95rem;
  margin-bottom: 24px;
  display: block;
}
.pillar h3 { margin-bottom: 14px; font-size: 1.18rem; color: var(--navy); }
.pillar p  { color: var(--muted); font-size: 0.96rem; line-height: 1.65; }

@media (max-width: 1000px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .pillars-grid { grid-template-columns: 1fr; } }

/* ================ SHOWCASE (parcours) ================ */
.showcase {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}
.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  margin-bottom: 130px;
}
.showcase-row:last-child { margin-bottom: 0; }
.showcase-row.reverse { direction: rtl; }
.showcase-row.reverse > * { direction: ltr; }

.showcase-text .eyebrow { background: var(--paper); }
.showcase-text h2 { margin-bottom: 22px; max-width: 460px; }
.showcase-text p  { color: var(--muted); font-size: 1.05rem; max-width: 480px; line-height: 1.7; margin-bottom: 16px; }
.showcase-text ul {
  list-style: none;
  margin-top: 24px;
}
.showcase-text li {
  padding: 10px 0 10px 32px;
  position: relative;
  color: #3a3a3a;
  font-size: 0.97rem;
  border-bottom: 1px solid var(--line);
}
.showcase-text li:last-child { border-bottom: none; }
.showcase-text li::before {
  content: '';
  position: absolute;
  left: 6px; top: 18px;
  width: 14px; height: 9px;
  border-left: 1.5px solid var(--gold-deep);
  border-bottom: 1.5px solid var(--gold-deep);
  transform: rotate(-45deg);
}

.device-ipad {
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 28px;
  padding: 14px;
  box-shadow: var(--shadow);
}
.device-ipad img {
  width: 100%;
  border-radius: 18px;
  display: block;
}

@media (max-width: 900px) {
  .showcase-row, .showcase-row.reverse { grid-template-columns: 1fr; gap: 50px; direction: ltr; margin-bottom: 80px; }
  .showcase-row.reverse > * { direction: ltr; }
}

/* ================ PRICING ================ */
.pricing {
  background: var(--paper);
  padding: 130px 0;
}
.pricing-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 70px;
}
.pricing-head p { color: var(--muted); margin-top: 14px; font-size: 1.05rem; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.plan {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px 36px;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.plan.featured {
  background: var(--navy);
  color: var(--bg);
  border-color: var(--navy);
}
.plan.featured h3 { color: var(--bg); }
.plan.featured .plan-tag {
  background: var(--gold);
  color: var(--navy);
}
.plan.featured .plan-price { color: var(--gold-soft); }
.plan.featured .plan-li { color: rgba(236, 232, 224, 0.85); border-color: rgba(255,255,255,0.1); }
.plan.featured .plan-li::before { border-color: var(--gold); }
.plan.featured .btn-primary { background: var(--gold); color: var(--navy); box-shadow: none; }
.plan.featured .btn-primary:hover { background: var(--gold-soft); }

.plan-tag {
  position: absolute;
  top: -14px;
  left: 36px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
}
.plan h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  margin-bottom: 6px;
}
.plan-sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 28px; }
.plan.featured .plan-sub { color: rgba(236, 232, 224, 0.65); }
.plan-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.plan-price .small {
  font-size: 0.95rem;
  font-weight: 500;
  margin-left: 6px;
  color: var(--muted);
}
.plan.featured .plan-price .small { color: rgba(236, 232, 224, 0.65); }
.plan-detail { font-size: 0.85rem; color: var(--muted); margin-bottom: 30px; }
.plan.featured .plan-detail { color: rgba(236, 232, 224, 0.6); }

.plan-features { list-style: none; margin-bottom: 36px; }
.plan-li {
  padding: 12px 0 12px 28px;
  position: relative;
  font-size: 0.95rem;
  color: #3a3a3a;
  border-bottom: 1px solid var(--line);
}
.plan-li:last-child { border-bottom: none; }
.plan-li::before {
  content: '';
  position: absolute;
  left: 0; top: 18px;
  width: 13px; height: 8px;
  border-left: 1.5px solid var(--gold-deep);
  border-bottom: 1.5px solid var(--gold-deep);
  transform: rotate(-45deg);
}
.plan .btn-primary { width: 100%; justify-content: center; box-shadow: none; }

@media (max-width: 950px)  { .pricing-grid { grid-template-columns: 1fr; gap: 36px; max-width: 480px; } }

/* ================ CTA FINAL ================ */
.cta-final {
  background: var(--ink);
  color: var(--bg);
  padding: 130px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(182, 153, 116, 0.15), transparent 60%);
  pointer-events: none;
}
.cta-final .eyebrow { background: rgba(182,153,116,0.13); border-color: rgba(182,153,116,0.3); color: var(--gold-soft); }
.cta-final h2 {
  color: var(--bg);
  max-width: 720px;
  margin: 0 auto 28px;
}
.cta-final p {
  color: rgba(236, 232, 224, 0.7);
  max-width: 540px;
  margin: 0 auto 40px;
  font-size: 1.08rem;
}
.cta-final .btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 14px 30px -10px rgba(182, 153, 116, 0.4);
}
.cta-final .btn-primary:hover { background: var(--gold-soft); box-shadow: 0 20px 40px -10px rgba(182, 153, 116, 0.5); }

/* ================ FOOTER ================ */
.footer {
  background: var(--ink);
  color: rgba(236, 232, 224, 0.6);
  padding: 60px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
}
.footer .brand { color: var(--bg); }
.footer .brand-mark { background: rgba(255,255,255,0.06); color: var(--gold); }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a:hover { color: var(--gold); }

/* ================ ANIMATIONS ================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  animation: fadeUp 0.9s ease-out forwards;
  animation-play-state: paused;
}
.reveal.in { animation-play-state: running; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.in { opacity: 1; animation: none; }
  .device-iphone { transform: none; }
}

/* ============ Page Contact ============ */
button.btn-primary{border:none;cursor:pointer;font-family:inherit}
.btn-primary:disabled{opacity:.6;cursor:default;transform:none}
.contact-hero{position:relative;padding:80px 0 40px;overflow:hidden;text-align:center}
.contact-hero::before{content:'';position:absolute;top:-30%;left:50%;transform:translateX(-50%);width:60%;height:90%;background:radial-gradient(closest-side,rgba(182,153,116,.16),transparent 70%);pointer-events:none}
.contact-hero .lead{font-size:1.15rem;color:#3a3a3a;max-width:640px;margin:18px auto 0;line-height:1.6}
.contact-main{padding:60px 0 110px}
.contact-grid{display:grid;grid-template-columns:.85fr 1.15fr;gap:60px;align-items:start}
.contact-card{background:var(--paper);border:1px solid var(--line);border-radius:var(--radius);padding:44px 40px;box-shadow:var(--shadow)}
.contact-info h2{font-size:1.5rem;margin-bottom:14px}
.contact-info p{color:var(--muted);font-size:1.02rem;line-height:1.7;margin-bottom:28px}
.info-list{list-style:none;display:flex;flex-direction:column;gap:22px}
.info-list li{display:flex;gap:14px;align-items:flex-start}
.info-ico{flex-shrink:0;width:42px;height:42px;border-radius:11px;background:var(--bg2);border:1px solid var(--line);display:grid;place-items:center;color:var(--gold-deep)}
.info-list .k{font-size:.78rem;letter-spacing:.14em;text-transform:uppercase;color:var(--muted);font-weight:600;margin-bottom:2px}
.info-list .v{font-size:1.02rem;color:var(--ink);font-weight:500}
.info-list a.v:hover{color:var(--gold-deep)}
.field{margin-bottom:20px}
.field label{display:block;font-size:.82rem;letter-spacing:.06em;text-transform:uppercase;color:var(--muted);font-weight:600;margin-bottom:8px}
.field input,.field textarea{width:100%;font-family:inherit;font-size:1rem;color:var(--ink);background:var(--bg2);border:1px solid var(--line);border-radius:11px;padding:14px 16px;transition:border-color .2s ease,box-shadow .2s ease}
.field input:focus,.field textarea:focus{outline:none;border-color:var(--gold);box-shadow:0 0 0 3px rgba(182,153,116,.18);background:var(--paper)}
.field textarea{min-height:150px;resize:vertical}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.form-foot{display:flex;align-items:center;gap:18px;flex-wrap:wrap;margin-top:6px}
.form-status{font-size:.95rem;font-weight:500}
.form-status.ok{color:#1f7a4d}
.form-status.err{color:#b3261e}
.form-note{font-size:.82rem;color:var(--muted);margin-top:18px}
@media(max-width:900px){.contact-grid{grid-template-columns:1fr;gap:36px}.contact-card{padding:32px 24px}}
@media(max-width:520px){.field-row{grid-template-columns:1fr}}
/* ============ Blog ============ */
.blog-hero{padding:80px 0 30px;text-align:center;position:relative;overflow:hidden}
.blog-hero::before{content:'';position:absolute;top:-30%;left:50%;transform:translateX(-50%);width:60%;height:90%;background:radial-gradient(closest-side,rgba(182,153,116,.16),transparent 70%);pointer-events:none}
.blog-hero .lead{font-size:1.15rem;color:#3a3a3a;max-width:660px;margin:18px auto 0;line-height:1.6}
.blog-list-section{padding:50px 0 110px}
.blog-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:28px}
.blog-card{display:flex;flex-direction:column;background:var(--paper);border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);transition:transform .25s ease,border-color .25s ease}
.blog-card:hover{transform:translateY(-4px);border-color:var(--gold-soft)}
.blog-card-cover{display:block;height:180px;background-size:cover;background-position:center;background-color:var(--bg2)}
.blog-card-body{display:flex;flex-direction:column;padding:24px 26px;gap:10px}
.blog-card-meta{font-size:.78rem;letter-spacing:.08em;text-transform:uppercase;color:var(--gold-deep);font-weight:600}
.blog-card-title{font-family:'Playfair Display',serif;font-size:1.3rem;font-weight:700;color:var(--navy);line-height:1.25}
.blog-card-excerpt{color:var(--muted);font-size:.96rem;line-height:1.6}
.blog-card-link{margin-top:6px;color:var(--gold-deep);font-weight:600;font-size:.95rem}

/* ============ Article ============ */
.article{padding-bottom:90px}
.article .narrow{max-width:760px}
.article-back{display:inline-block;margin:70px 0 16px;color:var(--gold-deep);font-weight:600;font-size:.9rem}
.article h1{font-size:clamp(2rem,3.5vw + 1rem,3rem);margin-bottom:14px}
.article-meta{color:var(--muted);font-size:.9rem;margin-bottom:30px}
.article-cover{height:340px;background-size:cover;background-position:center;border-radius:var(--radius);max-width:1100px;margin:0 auto 50px;box-shadow:var(--shadow);background-color:var(--bg2)}
.article-body{font-size:1.08rem;line-height:1.75;color:#2a2a2a}
.article-body .lead{font-size:1.2rem;color:#3a3a3a}
.article-body h2{font-family:'Playfair Display',serif;color:var(--navy);font-size:1.7rem;margin:42px 0 14px}
.article-body h3{font-size:1.18rem;color:var(--ink);margin:28px 0 8px}
.article-body p{margin-bottom:18px}
.article-body ul{margin:0 0 18px 0;padding-left:22px}
.article-body li{margin-bottom:8px}
.article-body .muted{color:var(--muted);font-size:.95rem}
.article-cta{margin-top:50px;background:var(--navy);color:var(--bg);border-radius:var(--radius);padding:40px 38px;text-align:center}
.article-cta h3{font-family:'Playfair Display',serif;color:var(--bg);font-size:1.5rem;margin-bottom:10px}
.article-cta p{color:rgba(236,232,224,.8);margin-bottom:24px}
.article-cta .btn-primary{background:var(--gold);color:var(--navy)}
.article-cta .btn-primary:hover{background:var(--gold-soft)}
@media(max-width:560px){.article-cover{height:220px}.article-back{margin-top:40px}}