*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── Palette refonte 2026 ──
     Ivoire doux · Bleu-vert profond · Rose argile · Bronze chaud */
  --nuit:      #2C4A4D;   /* Bleu-vert profond — hero / textes forts */
  --nuit-clair: #4A7478;  /* Teal éclairci — sections sombres intérieures */
  --bleu:      #3A5C5F;   /* Teal légèrement plus clair (hover / variations) */
  --or:        #B87856;   /* Terracotta — CTA / accents premium */
  --or-eclat:  #C99B8C;   /* Rose argile / nude profond — pour gradients */
  --or-fonce:  #8C5740;   /* Terracotta foncée — éléments fins lisibles sur ivoire */
  --ivoire:    #F4EDE0;   /* Ivoire doux — fond principal */
  --brume:     #EAE0CF;   /* Ivoire nuancé — sections alternées / séparateurs */
  --rose:      #C99B8C;   /* Rose argile — douceur, séparateurs subtils */

  /* Text on dark bg */
  --on-dark:         #F4EDE0;
  --on-dark-muted:   rgba(244,237,224,0.78);
  /* Text on light bg */
  --on-light:        #2C4A4D;
  --on-light-muted:  rgba(44,74,77,0.75);

  --font-display: 'Cinzel', 'Georgia', serif;
  --font-editorial: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Montserrat', sans-serif;
  --font-signature: 'Italianno', cursive;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--ivoire);
  color: var(--on-light);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--ivoire); }
::-webkit-scrollbar-thumb { background: var(--brume); }

.page-enter { animation: fadeIn 0.45s ease forwards; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SEPARATOR ─────────────────────────────────────── */
.sep {
  width: 48px; height: 1px;
  background: var(--rose);
  margin: 0 auto;
}
.sep.left { margin: 0; }
.sep.dark { background: rgba(201,155,140,0.55); }

/* ── NAV ────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 22px 60px;
  background: var(--ivoire);
  box-shadow: 0 1px 0 var(--brume);
  transition: box-shadow 0.3s;
}
nav.scrolled {
  box-shadow: 0 4px 24px -8px rgba(44,74,77,0.15), 0 1px 0 var(--brume);
}
.nav-inner {
  max-width: 1160px; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 15px; letter-spacing: 0.22em;
  color: var(--nuit); cursor: pointer;
  font-weight: 500; text-decoration: none;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-link {
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--nuit); cursor: pointer;
  transition: color 0.2s; background: none; border: none;
  font-family: var(--font-body); font-weight: 500;
  text-decoration: none;
}
.nav-link:hover, .nav-link.active { color: var(--or); }

.nav-hamburger { display: none; cursor: pointer; background: none; border: none; }
.nav-hamburger span { display: block; width: 22px; height: 1px; background: var(--or); margin: 5px 0; transition: 0.3s; }

@media (max-width: 768px) {
  nav { padding: 18px 24px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 28px;
    position: fixed; inset: 0;
    background: var(--ivoire); justify-content: center; align-items: center; z-index: 99;
  }
  .nav-link { font-size: 13px; color: var(--on-light-muted); }
  .nav-hamburger { display: block; z-index: 101; }
}

/* ── SECTION SHELLS ─────────────────────────────────── */
.s-dark  { background: var(--nuit); }
.s-light { background: var(--ivoire); }
.s-brume { background: var(--brume); }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 60px; }
@media (max-width: 768px) { .wrap { padding: 0 24px; } }

/* ── EYEBROW / TITLES ───────────────────────────────── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 13px; letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 600;
  color: var(--or);
  background: linear-gradient(135deg, #C99B8C 0%, #B87856 55%, #8C5740 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px; display: block;
}
.s-dark .eyebrow {
  color: var(--or-eclat);
  background: linear-gradient(135deg, #D9B0A2 0%, #C99B8C 50%, #B87856 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.body-text { font-size: 18px; line-height: 1.8; }
.h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; line-height: 1.15;
}
.h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 400; letter-spacing: 0.1em;
  text-transform: uppercase; line-height: 1.25;
}
.h2-ed {
  font-family: var(--font-editorial);
  font-size: clamp(32px, 3.5vw, 54px);
  font-weight: 300; line-height: 1.2;
}
.body-text.muted { color: var(--on-light-muted); }
.body-text.muted-dark { color: var(--on-dark-muted); }

/* ── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
  font-family: var(--font-body); font-weight: 500;
  padding: 16px 40px; cursor: pointer; border: none;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold  {
  background: linear-gradient(135deg, #C99B8C 0%, #B87856 55%, #8C5740 100%);
  color: var(--ivoire);
  box-shadow: 0 6px 22px -8px rgba(184,120,86,0.45), 0 2px 6px -2px rgba(44,74,77,0.18), inset 0 1px 0 rgba(255,240,225,0.25);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #D4A899 0%, #C08363 55%, #9A6248 100%);
  box-shadow: 0 10px 30px -8px rgba(184,120,86,0.55), 0 3px 8px -2px rgba(44,74,77,0.22), inset 0 1px 0 rgba(255,240,225,0.3);}
.btn-link-gold {
  display: inline-block;
  background: linear-gradient(135deg, #C99B8C 0%, #B87856 55%, #8C5740 100%);
  color: var(--ivoire);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  padding: 12px 24px;
  border-radius: 999px;
  cursor: pointer;
  margin-left: 6px;
  vertical-align: middle;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px -4px rgba(184,120,86,0.4), inset 0 1px 0 rgba(255,240,225,0.25);
  text-decoration: none;
}
.btn-link-gold:hover {
  background: linear-gradient(135deg, #D4A899 0%, #C08363 55%, #9A6248 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px -4px rgba(185,138,102,0.65);
}
.btn-outline-dark {
  background: transparent; color: var(--or);
  border: 1px solid rgba(184,120,86,0.35);
}
.btn-outline-dark:hover { border-color: var(--or); }
.btn-outline-bright { color: var(--or-eclat); border-color: rgba(201,155,140,0.7); font-weight: 600; }
.btn-outline-bright:hover { color: #F2D7C9; border-color: var(--or-eclat); background: rgba(201,155,140,0.08); }
.btn-outline-light {
  background: transparent; color: var(--nuit);
  border: 1px solid rgba(44,74,77,0.25);
}
.btn-outline-light:hover { border-color: var(--nuit); }

/* ── HERO ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--nuit);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 100px 24px 100px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 60%, rgba(58,92,95,0.5) 0%, transparent 70%);
}
.hero-inner { position: relative; z-index: 1; max-width: 720px; }
.hero-tagline {
  font-size: 14px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--or); margin-bottom: 36px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; line-height: 1.12;
  color: var(--ivoire); margin-bottom: 28px;
}
.hero-sub {
  font-family: var(--font-editorial);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 300; font-style: italic;
  color: var(--on-dark-muted); margin-bottom: 52px;
  line-height: 1.6; max-width: 560px; margin-left: auto; margin-right: auto;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 0; }
.hero-divider {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--or), transparent);
  margin: 0 auto;
}

/* ── GRID UTILITIES ─────────────────────────────────── */
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.g3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; }
.g-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1px; }
.tarifs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1100px; margin: 0 auto; }
@media (max-width: 1100px) { .tarifs-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px)  { .tarifs-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) {
  .g2 { grid-template-columns: 1fr; gap: 48px; }
  .g3 { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(22px, 6.5vw, 36px); letter-spacing: 0.05em; white-space: normal; }
  .hero-sub { font-size: 16px; max-width: 100%; }
  nav { padding: 18px 20px; }
  .wrap { padding-left: 20px !important; padding-right: 20px !important; }
  .grid-2col-mobile { grid-template-columns: 1fr !important; gap: 40px !important; }
  .cards-selector { grid-template-columns: 1fr !important; }
}

/* ── CARDS ──────────────────────────────────────────── */
.card-grid { background: var(--brume); border: 1px solid var(--brume); }
.card {
  background: var(--ivoire); padding: 36px 32px;
  transition: background 0.25s;
}
.card:hover { background: #fff; }
.card-dark { background: var(--bleu); padding: 36px 32px; }
.card-dark:hover { background: rgba(58,92,95,0.8); }
.card-title-light {
  font-family: var(--font-display);
  font-size: 15px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--on-light); margin-bottom: 12px; font-weight: 400;
}
.card-title-dark {
  font-family: var(--font-display);
  font-size: 15px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--or); margin-bottom: 12px; font-weight: 400;
}

/* ── PILLAR ─────────────────────────────────────────── */
.pillar-row {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 40px; padding: 56px 0;
  border-bottom: 1px solid var(--brume);
  align-items: start;
}
.pillar-row:first-child { border-top: 1px solid var(--brume); }
.pillar-num {
  font-family: var(--font-display);
  font-size: 11px; letter-spacing: 0.22em;
  color: var(--or); padding-top: 6px;
}
.pillar-body-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 60px; align-items: start; }
@media (max-width: 768px) {
  .pillar-row { grid-template-columns: 1fr; gap: 16px; }
  .pillar-body-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ── PRICING ────────────────────────────────────────── */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--brume); border: 1px solid var(--brume); }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; } }
@media (max-width: 1000px) {
  .benefits-layout { grid-template-columns: 1fr !important; }
  .benefits-layout > div:first-child { min-height: 320px !important; }
}
@media (max-width: 640px) { .benefits-grid { grid-template-columns: 1fr !important; } }
.price-card {
  background: var(--ivoire); padding: 44px 36px;
  display: flex; flex-direction: column;
  position: relative; transition: background 0.25s;
  border-radius: 16px;
}
.price-card:hover { background: #fff; }
.price-card.featured { background: var(--nuit); }
.price-card.featured:hover { background: var(--bleu); }
.price-label {
  font-family: var(--font-display);
  font-size: 15px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500;
  color: var(--or);
  background: linear-gradient(135deg, #C99B8C 0%, #B87856 55%, #8C5740 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}
.price-title-text {
  font-family: var(--font-display);
  font-size: 18px; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 400; margin-bottom: 6px;
}
.price-amount {
  font-family: var(--font-editorial);
  font-size: 52px; font-weight: 300; color: var(--or);
  line-height: 1; margin: 20px 0 6px;
}
.price-amount sup { font-size: 20px; vertical-align: super; }
.price-dur { font-size: 12px; margin-bottom: 24px; }
.hr-brume { height: 1px; background: var(--brume); margin: 20px 0; }
.hr-nuit  { height: 1px; background: rgba(184,120,86,0.15); margin: 20px 0; }

/* ── ABOUT ──────────────────────────────────────────── */
.photo-placeholder {
  background: var(--brume);
  border: 1px solid var(--brume);
  aspect-ratio: 3/4;
  display: flex; align-items: center; justify-content: center;
  font-family: monospace; font-size: 11px;
  color: var(--on-light-muted);
  text-align: center; line-height: 1.6;
}

/* ── FORM ───────────────────────────────────────────── */
.form-group { margin-bottom: 28px; }
.form-label { display: block; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--on-light-muted); margin-bottom: 10px; }
.form-input, .form-textarea, .form-select {
  width: 100%; background: #FFFFFF;
  border: 1px solid var(--brume); border-radius: 12px;
  color: var(--on-light); font-family: var(--font-body); font-size: 16px;
  padding: 14px 18px; outline: none; transition: border-color 0.2s; appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--or); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--on-light-muted); }

/* ── FOOTER ─────────────────────────────────────────── */
footer {
  background: var(--nuit);
  border-top: 1px solid rgba(184,120,86,0.12);
  padding: 72px 64px 44px;
}
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 64px; margin-bottom: 56px; }
@media (max-width: 768px) { footer { padding: 48px 24px 32px; } .footer-top { grid-template-columns: 1fr; gap: 40px; } }
.footer-brand { font-family: var(--font-display); font-size: 16px; color: var(--ivoire); letter-spacing: 0.2em; margin-bottom: 10px; font-weight: 700; }
.footer-sub { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--on-dark-muted); margin-bottom: 20px; }
.footer-desc { font-size: 13px; line-height: 1.75; color: var(--on-dark-muted); }
.footer-col-title { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ivoire); margin-bottom: 22px; font-weight: 700; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 13px; color: var(--on-dark-muted); background: none; border: none; cursor: pointer; font-family: var(--font-body); transition: color 0.2s; padding: 0; text-decoration: none; display: inline; }
.footer-links a:hover { color: var(--on-dark); }
.footer-links button { font-size: 13px; color: var(--on-dark-muted); background: none; border: none; cursor: pointer; font-family: var(--font-body); transition: color 0.2s; padding: 0; }
.footer-links button:hover { color: var(--on-dark); }
.footer-bottom { padding-top: 28px; border-top: 1px solid rgba(184,120,86,0.08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 13px; color: rgba(244,237,224,0.72); letter-spacing: 0.02em; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal button { font-size: 11px; color: rgba(244,237,224,0.25); background: none; border: none; cursor: pointer; font-family: var(--font-body); transition: color 0.2s; }
.footer-legal button:hover { color: var(--on-dark-muted); }

/* ── FAQ ACCORDION ───────────────────────────────────── */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--brume); }
.faq-item:first-child { border-top: 1px solid var(--brume); }
.faq-item summary {
  font-family: var(--font-display);
  font-size: 17px; letter-spacing: 0.06em; font-weight: 600;
  color: var(--or-fonce); cursor: pointer;
  padding: 26px 0;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 22px; font-weight: 300;
  color: var(--or); flex-shrink: 0;
  font-family: var(--font-body); line-height: 1;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] summary { color: var(--or-fonce); }
.faq-answer { padding: 0 0 28px; font-size: 17px; line-height: 1.85; color: #1c3235; }
.faq-answer p { margin-bottom: 14px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul { padding-left: 22px; margin-bottom: 14px; }
.faq-answer li { margin-bottom: 8px; }
.faq-answer a { color: var(--or-fonce); text-decoration: underline; text-underline-offset: 3px; }
.faq-answer strong { color: var(--or-fonce); font-weight: 600; }
.faq-warning {
  background: rgba(184,120,86,0.08); border-left: 3px solid var(--or);
  padding: 14px 18px; border-radius: 0 8px 8px 0;
  font-size: 15px; color: var(--or-fonce); margin: 14px 0;
}
.faq-sources {
  font-size: 13px; color: var(--on-light-muted);
  border-top: 1px solid var(--brume); padding-top: 12px; margin-top: 16px;
}
.faq-sources a { color: var(--or-fonce); }

/* ── SOCIAL ICONS ───────────────────────────────────── */
.social-icons { display: flex; gap: 12px; margin-top: 20px; }
.social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 10px;
  border: 1px solid rgba(184,120,86,0.3);
  color: rgba(244,237,224,0.65);
  transition: all 0.25s;
  text-decoration: none;
}
.social-icon:hover {
  border-color: var(--or-eclat);
  color: var(--or-eclat);
  background: rgba(184,120,86,0.1);
}

/* ── MODALS ─────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(20,36,38,0.82); z-index: 1000;
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
.modal-box {
  background: var(--ivoire); border-radius: 20px; overflow: hidden;
  width: 100%; max-width: 720px;
  display: flex; flex-direction: column;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5);
}
.modal-box-wide { max-width: 960px; }
.modal-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 28px; border-bottom: 1px solid rgba(140,87,64,0.15); flex-shrink: 0;
}
.modal-title {
  font-family: var(--font-display); font-size: 13px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--nuit); font-weight: 700;
}
.modal-close {
  background: none; border: none; cursor: pointer;
  font-size: 22px; color: var(--nuit); line-height: 1; padding: 4px 8px;
}
.modal-body {
  overflow-y: auto; max-height: 65vh; overscroll-behavior: contain;
  padding: 32px 36px 48px; line-height: 1.8; color: var(--nuit); font-size: 15px;
}
.modal-footer {
  padding: 14px 28px; text-align: center;
  border-top: 1px solid rgba(140,87,64,0.1); flex-shrink: 0;
}
.modal-footer span { font-size: 12px; color: rgba(44,74,77,0.5); font-style: italic; }
.modal-h3 {
  font-family: var(--font-display); font-size: 13px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--or-fonce); font-weight: 700;
  margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid rgba(140,87,64,0.2);
}
.modal-table { width: 100%; border-collapse: collapse; margin-bottom: 28px; }
.modal-table tr { border-bottom: 1px solid rgba(140,87,64,0.1); }
.modal-table td { padding: 8px 0; font-size: 14px; vertical-align: top; }
.modal-table td:first-child { font-weight: 600; width: 50%; color: rgba(44,74,77,0.85); }
.modal-table td:last-child { padding-left: 16px; }

/* ── TWEAKS ─────────────────────────────────────────── */
.tweaks-panel {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  background: var(--nuit); border: 1px solid rgba(184,120,86,0.2);
  padding: 24px; width: 260px; border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  display: none;
}
.tweaks-panel.open { display: block; }
.tweaks-title { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--or); margin-bottom: 20px; }
.tweak-row { margin-bottom: 16px; }
.tweak-label { font-size: 12px; color: var(--on-dark-muted); margin-bottom: 6px; display: block; }
.tweak-select { width: 100%; background: rgba(58,92,95,0.5); border: 1px solid rgba(184,120,86,0.15); border-radius: 8px; color: var(--on-dark); font-family: var(--font-body); font-size: 13px; padding: 8px 10px; outline: none; cursor: pointer; }

/* ── MISC ───────────────────────────────────────────── */
.success-msg { padding: 20px; background: rgba(184,120,86,0.08); border: 1px solid rgba(184,120,86,0.2); text-align: center; font-size: 15px; color: var(--or); margin-top: 16px; }
.pt-hero { padding-top: 130px; }

/* ── CARD HOVER (JS-less fallback) ──────────────────── */
.profile-card { transition: background 0.25s; }
.profile-card:hover { background: var(--ivoire) !important; }
.pillar-card { transition: all 0.25s; }
.pillar-card:hover {
  background: var(--ivoire) !important;
  border-color: var(--or) !important;
  transform: translateY(-2px);
}
.benefit-card { transition: background 0.25s; }
.benefit-card:hover { background: var(--ivoire) !important; }
.review-link { transition: border-color 0.25s, background 0.25s; }
.review-link:hover { border-color: var(--or) !important; background: rgba(184,120,86,0.06) !important; }
.social-icon-footer { transition: all 0.25s; }
.social-icon-footer:hover {
  border-color: var(--or-eclat) !important;
  color: var(--or-eclat) !important;
  background: rgba(184,120,86,0.1) !important;
}
