/* ============================================================
   Almeroq — Static stylesheet
   Faithful port of the Next.js + Tailwind v4 design.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --background: #F7F5F0;
  --foreground: #1C1C1E;
  --card: #FFFFFF;
  --primary: #1E3A5F;
  --primary-foreground: #F7F5F0;
  --secondary: #C9A84C;
  --accent: #4A7C6F;
  --muted: #E8E5DE;
  --muted-foreground: #6B7280;
  --border: #D4CFC5;
  --ring: #C9A84C;

  /* Brand aliases */
  --slate: #1E3A5F;
  --gold: #C9A84C;
  --sage: #4A7C6F;
  --ivory: #F7F5F0;
  --anthracite: #1C1C1E;
  --stone: #6B7280;

  --radius: 0.25rem;

  --font-sans: 'Inter', 'Helvetica Neue', Arial, system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0 solid var(--border);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  line-height: 1.1;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  color: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

ul {
  list-style: none;
}

strong {
  font-weight: 600;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: 80rem; /* max-w-7xl */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.container-4xl {
  max-width: 56rem; /* max-w-4xl */
}

main {
  display: block;
}

/* ---------- Custom brand utilities ---------- */
.mono-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.card-brutal {
  border: 2px solid var(--anthracite);
  background-color: var(--card);
}

/* ---------- Buttons ---------- */
.btn-primary,
.btn-outline,
.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.25;
  text-align: center;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--anthracite);
  border: 2px solid var(--gold);
  transition: background-color 150ms, color 150ms, transform 150ms;
}
.btn-primary:hover {
  background-color: var(--anthracite);
  color: var(--gold);
  border-color: var(--anthracite);
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  color: var(--slate);
  border: 2px solid var(--slate);
  transition: background-color 150ms, color 150ms;
}
.btn-outline:hover {
  background-color: var(--slate);
  color: var(--ivory);
}

.btn-ghost-light {
  background-color: transparent;
  color: var(--ivory);
  border: 2px solid var(--ivory);
  transition: background-color 150ms, color 150ms;
}
.btn-ghost-light:hover {
  background-color: var(--ivory);
  color: var(--slate);
}

.btn-sm {
  font-size: 0.875rem;
}

/* Icon inside buttons/links */
.icon {
  display: inline-block;
  flex-shrink: 0;
  vertical-align: middle;
}

/* ---------- Grain overlay ---------- */
.grain-overlay {
  position: relative;
}
.grain-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
  z-index: 0;
}

/* ---------- Fade-in on load (replaces framer-motion) ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in {
  animation: fadeInUp 0.6s ease-out both;
}
@media (prefers-reduced-motion: reduce) {
  .fade-in { animation: none; }
  * { scroll-behavior: auto; }
}

/* Floating badge animations */
@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@keyframes floatDown {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: #1E3A5F;
  transition: box-shadow 300ms, border-color 300ms;
  border-bottom: 2px solid transparent;
}
.site-header.scrolled {
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -4px rgba(0, 0, 0, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.brand-mark {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  background: transparent;
}
.brand-mark span {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
  color: var(--gold);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--ivory);
  font-size: 1rem;
  letter-spacing: -0.01em;
}
.brand-tag {
  color: var(--gold);
  font-size: 0.6rem;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 768px) {
  .desktop-nav { display: flex; }
}
.nav-link {
  position: relative;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(247, 245, 240, 0.8);
  transition: color 150ms;
}
.nav-link:hover { color: var(--gold); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background-color: var(--gold);
  transform: scaleX(0);
  transition: transform 200ms;
}
.nav-link:hover::after { transform: scaleX(1); }

.nav-cta { margin-left: 1rem; }

.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--ivory);
  border: 1px solid rgba(201, 168, 76, 0.4);
  transition: border-color 150ms;
}
.hamburger:hover { border-color: var(--gold); }
@media (min-width: 768px) {
  .hamburger { display: none; }
}
.hamburger .icon-close { display: none; }
.hamburger.open .icon-menu { display: none; }
.hamburger.open .icon-close { display: inline-block; }
.hamburger.open { border-color: var(--gold); background-color: rgba(201, 168, 76, 0.12); }

/* Full-screen dim backdrop behind the panel */
.mobile-nav::before {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  top: 100%;
  bottom: 0;
  height: 100vh;
  background: rgba(15, 26, 42, 0.55);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 350ms ease;
  pointer-events: none;
  z-index: -1;
}
.mobile-nav.open::before { opacity: 1; }

.mobile-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #1E3A5F 0%, #16304e 100%);
  border-top: 2px solid var(--gold);
  box-shadow: 0 26px 44px -18px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: max-height 450ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 300ms ease, transform 350ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s linear 450ms;
  z-index: 40;
}
.mobile-nav.open {
  max-height: 460px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: max-height 500ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 350ms ease, transform 400ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s;
}
.mobile-nav > nav { padding: 0.5rem 0 0.75rem; }
@media (min-width: 768px) {
  .mobile-nav { display: none !important; }
}

.mobile-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0.75rem;
  padding: 0.95rem 1.1rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ivory);
  border-bottom: 1px solid rgba(247, 245, 240, 0.08);
  border-radius: 2px;
  opacity: 0;
  transform: translateX(-14px);
  transition: background-color 180ms ease, color 180ms ease,
    transform 180ms ease, padding-left 180ms ease;
}
/* Chevron indicator */
.mobile-link::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid rgba(201, 168, 76, 0.55);
  border-right: 2px solid rgba(201, 168, 76, 0.55);
  transform: rotate(45deg);
  transition: border-color 180ms ease, transform 180ms ease;
}
.mobile-link:hover,
.mobile-link:focus-visible {
  background-color: rgba(201, 168, 76, 0.12);
  color: var(--gold);
  padding-left: 1.4rem;
}
.mobile-link:hover::after,
.mobile-link:focus-visible::after {
  border-color: var(--gold);
  transform: rotate(45deg) translate(2px, -2px);
}
/* Staggered entrance for each item once the panel opens */
.mobile-nav.open .mobile-link {
  opacity: 1;
  transform: translateX(0);
}
.mobile-nav.open .mobile-link:nth-child(1) { transition-delay: 90ms; }
.mobile-nav.open .mobile-link:nth-child(2) { transition-delay: 150ms; }
.mobile-nav.open .mobile-link:nth-child(3) { transition-delay: 210ms; }
.mobile-nav.open .mobile-link:nth-child(4) { transition-delay: 270ms; }

.mobile-cta-wrap {
  padding: 0.85rem 1.1rem 0.5rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}
.mobile-nav.open .mobile-cta-wrap {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 330ms;
}
.mobile-cta-wrap .btn-primary { width: 100%; }

@media (prefers-reduced-motion: reduce) {
  .mobile-nav,
  .mobile-link,
  .mobile-cta-wrap { transition-duration: 1ms; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: #1C1C1E;
  color: var(--ivory);
}
.footer-disclaimer {
  border-bottom: 2px solid rgba(201, 168, 76, 0.3);
}
.footer-disclaimer .container { padding-top: 2rem; padding-bottom: 2rem; }
.footer-disclaimer p {
  font-size: 0.75rem;
  color: var(--stone);
  line-height: 1.6;
  max-width: 56rem;
}
.footer-disclaimer .gold-lead { color: var(--gold); font-weight: 600; }

.footer-main { padding-top: 3rem; padding-bottom: 3rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
}
.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-brand-mark {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
}
.footer-brand-mark span {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--gold);
}
.footer-brand-name {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--ivory);
  font-size: 1rem;
}
.footer-desc {
  font-size: 0.875rem;
  color: var(--stone);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.footer-address {
  font-size: 0.75rem;
  color: var(--stone);
  line-height: 1.6;
}
.footer-col h3 { margin-bottom: 1rem; color: var(--gold); }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(247, 245, 240, 0.7);
  transition: color 150ms;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-contact li {
  font-size: 0.875rem;
  color: rgba(247, 245, 240, 0.7);
  margin-bottom: 0.5rem;
}
.footer-contact a { transition: color 150ms; }
.footer-contact a:hover { color: var(--gold); }
.footer-hours { color: var(--stone) !important; font-size: 0.75rem; padding-top: 0.5rem; }
.footer-compliance {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-compliance .label { font-size: 0.75rem; color: var(--stone); }
.compliance-badge {
  color: var(--sage);
  font-size: 0.7rem;
  border: 1px solid var(--sage);
  padding: 0.125rem 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(247, 245, 240, 0.1);
}
.footer-bottom .container {
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .footer-bottom .container { flex-direction: row; }
}
.footer-bottom p { font-size: 0.75rem; color: var(--stone); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background-color: #1E3A5F;
  border-top: 2px solid var(--gold);
  display: none;
}
.cookie-banner.visible {
  display: block;
  animation: fadeInUp 0.4s ease-out both;
}
.cookie-banner .container { padding-top: 1rem; padding-bottom: 1rem; }
.cookie-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
@media (min-width: 768px) {
  .cookie-inner { flex-direction: row; align-items: center; }
}
.cookie-text {
  flex: 1;
  font-size: 0.875rem;
  color: var(--ivory);
  line-height: 1.6;
}
.cookie-text .gold-lead { font-weight: 600; color: var(--gold); }
.cookie-text a {
  text-decoration: underline;
  color: var(--gold);
  transition: color 150ms;
}
.cookie-text a:hover { color: var(--ivory); }
.cookie-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.btn-decline {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(247, 245, 240, 0.7);
  border: 1px solid rgba(247, 245, 240, 0.3);
  min-height: 2.5rem;
  transition: border-color 150ms, color 150ms;
}
.btn-decline:hover {
  border-color: var(--ivory);
  color: var(--ivory);
}
.cookie-actions .btn-primary { min-height: 2.5rem; }

/* ============================================================
   SHARED SECTION BITS
   ============================================================ */
.section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 768px) {
  .section { padding-top: 6rem; padding-bottom: 6rem; }
}
.section-bg-ivory { background-color: var(--ivory); }
.section-bg-slate { background-color: var(--slate); }
.section-bg-dark  { background-color: var(--anthracite); }
.section-bg-sage-tint { background-color: #EEF2EF; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.eyebrow .rule {
  width: 2rem;
  height: 1px;
  background-color: var(--gold);
}
.eyebrow .rule-sage { background-color: var(--sage); }
.eyebrow .mono-label { color: var(--gold); }
.eyebrow.center { justify-content: center; }

.section-title {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.15;
  font-size: 1.875rem;
}
@media (min-width: 768px) {
  .section-title { font-size: 3rem; }
}
.section-title.light { color: var(--ivory); }
.section-title.on-slate { color: var(--ivory); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background-color: var(--ivory);
  padding-top: 4rem;
  overflow: hidden;
}
.hero-bg-block {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: var(--slate);
}
.hero-bg-bar {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 0.375rem;
  background-color: var(--gold);
  z-index: 1;
}
@media (min-width: 768px) {
  .hero-bg-block { width: 55%; }
  .hero-bg-bar { width: 55%; }
}
.hero-inner {
  position: relative;
  z-index: 10;
}
.hero-grid {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 64px);
}
@media (min-width: 768px) {
  .hero-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
  }
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .hero-left {
    grid-column: span 6 / span 6;
    padding: 6rem 2.5rem 6rem 0;
  }
}
.hero-h1 {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--foreground);
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .hero-h1 { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero-h1 { font-size: 4.5rem; } }
.hero-h1 .line { display: block; }
.hero-h1 .control {
  display: block;
  color: var(--slate);
  position: relative;
  width: max-content;
}
.hero-h1 .control::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 0.25rem;
  background-color: var(--gold);
}
.hero-h1 .finances {
  display: block;
  font-style: italic;
  color: var(--sage);
}
.hero-sub {
  font-size: 1rem;
  color: var(--stone);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 28rem;
}
@media (min-width: 768px) { .hero-sub { font-size: 1.125rem; } }
.hero-sub strong { color: var(--foreground); font-weight: 600; }
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .hero-ctas { flex-direction: row; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline { width: auto; }
}
.hero-ctas .btn-primary { gap: 0.5rem; }
.trust-badge {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.75rem;
  border: 1px solid var(--border);
  background-color: rgba(255, 255, 255, 0.6);
  max-width: 28rem;
}
.trust-badge svg { color: var(--sage); flex-shrink: 0; margin-top: 0.125rem; }
.trust-badge p {
  font-size: 0.75rem;
  color: var(--stone);
  line-height: 1.6;
}
.trust-badge strong { color: var(--foreground); }

.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 768px) {
  .hero-right {
    grid-column: span 6 / span 6;
    padding: 6rem 0 6rem 2.5rem;
  }
}
.hero-card-wrap {
  position: relative;
  width: 100%;
  max-width: 24rem;
}
.hero-card {
  background-color: var(--ivory);
  border: 2px solid var(--gold);
  padding: 1.5rem;
  position: relative;
}
.hero-card .mono-label { color: var(--gold); margin-bottom: 0.75rem; }
.hero-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.float-badge {
  position: absolute;
  padding: 0.5rem 1rem;
}
.float-badge.top {
  top: -1rem;
  right: -1rem;
  background-color: var(--gold);
  color: var(--anthracite);
  border: 2px solid var(--anthracite);
  animation: floatUp 3s ease-in-out infinite;
}
.float-badge.bottom {
  bottom: -1rem;
  left: -1rem;
  background-color: var(--slate);
  color: var(--ivory);
  border: 2px solid var(--gold);
  animation: floatDown 3.5s ease-in-out infinite 0.5s;
}
.float-badge .mono-label { font-size: 0.7rem; }
.float-badge.top .mono-label { color: var(--anthracite); }
.float-badge.bottom .mono-label { color: var(--gold); }
.float-badge .val {
  font-family: var(--font-serif);
  font-weight: 700;
}
.float-badge.top .val { font-size: 0.75rem; }
.float-badge.bottom .val { font-size: 0.875rem; }

.scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  z-index: 10;
}
.scroll-indicator .mono-label { color: var(--stone); font-size: 0.7rem; }
.scroll-indicator .bar {
  width: 1px;
  height: 2rem;
  background-color: var(--gold);
  animation: floatDown 1.5s ease-in-out infinite;
}

/* On mobile the hero sits on the full-width dark slate block, so switch the
   heading, subtitle and controls to light tones — otherwise the dark text
   (especially the slate-coloured "contrôle") blends into the background. */
@media (max-width: 767.98px) {
  .hero-h1 .line { color: var(--ivory); }
  .hero-h1 .control { color: var(--gold); }
  .hero-h1 .control::after { background-color: var(--ivory); }
  .hero-h1 .finances { color: #A7CDC0; }
  .hero-sub { color: rgba(247, 245, 240, 0.80); }
  .hero-sub strong { color: var(--ivory); }
  .hero-ctas .btn-outline { color: var(--ivory); border-color: var(--ivory); }
  .hero-ctas .btn-outline:hover { background-color: var(--ivory); color: var(--slate); }
  .trust-badge {
    background-color: rgba(247, 245, 240, 0.10);
    border-color: rgba(201, 168, 76, 0.35);
  }
  .trust-badge p { color: rgba(247, 245, 240, 0.78); }
  .trust-badge strong { color: var(--ivory); }
  .scroll-indicator .mono-label { color: rgba(247, 245, 240, 0.6); }
}

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  background-color: var(--slate);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}
.stat-cell {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-bottom: 1px solid rgba(247, 245, 240, 0.1);
}
.stat-cell:last-child { border-bottom: 0; }
@media (min-width: 768px) {
  .stat-cell { border-bottom: 0; border-right: 1px solid rgba(247, 245, 240, 0.1); }
  .stat-cell:last-child { border-right: 0; }
}
.stat-value {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) { .stat-value { font-size: 3.75rem; } }
.stat-value .suffix {
  font-size: 1.5rem;
  color: rgba(247, 245, 240, 0.5);
  margin-left: 0.25rem;
}
.stat-label {
  color: rgba(247, 245, 240, 0.6);
  margin-top: 0.5rem;
}

/* ============================================================
   PAIN POINTS
   ============================================================ */
.section-header { margin-bottom: 3rem; }
@media (min-width: 768px) { .section-header { margin-bottom: 4rem; } }

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .two-col-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
.three-col-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .three-col-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

.pain-card {
  border: 2px solid var(--anthracite);
  background-color: #fff;
  padding: 1.5rem;
  transition: background-color 300ms;
}
@media (min-width: 768px) { .pain-card { padding: 2rem; } }
.pain-card:hover { background-color: var(--slate); }
.pain-row { display: flex; align-items: flex-start; gap: 1rem; }
.pain-icon {
  width: 2.5rem;
  height: 2.5rem;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 150ms, border-color 150ms;
}
.pain-icon svg { color: var(--gold); transition: color 150ms; }
.pain-card:hover .pain-icon { background-color: var(--gold); border-color: var(--gold); }
.pain-card:hover .pain-icon svg { color: var(--anthracite); }
.pain-tag {
  color: var(--sage);
  margin-bottom: 0.5rem;
  transition: color 150ms;
}
.pain-card:hover .pain-tag { color: var(--gold); }
.pain-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  line-height: 1.35;
  transition: color 150ms;
}
@media (min-width: 768px) { .pain-title { font-size: 1.125rem; } }
.pain-card:hover .pain-title { color: var(--ivory); }
.pain-desc {
  font-size: 0.875rem;
  color: var(--stone);
  line-height: 1.6;
  transition: color 150ms;
}
.pain-card:hover .pain-desc { color: rgba(247, 245, 240, 0.7); }

/* ============================================================
   FEATURES (pillars)
   ============================================================ */
.features-header {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .features-header {
    margin-bottom: 4rem;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.pillar-card {
  border: 2px solid rgba(247, 245, 240, 0.1);
  padding: 1.5rem;
  transition: border-color 300ms;
}
@media (min-width: 768px) { .pillar-card { padding: 2rem; } }
.pillar-card:hover { border-color: var(--gold); }
.pillar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.pillar-top .mono-label { color: var(--gold); }
.pillar-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid;
}
.pillar-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ivory);
  margin-bottom: 1rem;
  line-height: 1.15;
}
@media (min-width: 768px) { .pillar-title { font-size: 1.875rem; } }
.pillar-divider {
  width: 3rem;
  height: 2px;
  background-color: var(--gold);
  margin-bottom: 1rem;
  transition: width 500ms;
}
.pillar-card:hover .pillar-divider { width: 100%; }
.pillar-desc {
  font-size: 0.875rem;
  color: var(--stone);
  line-height: 1.6;
}

/* ============================================================
   CHART SECTION
   ============================================================ */
.chart-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .chart-grid { grid-template-columns: repeat(12, 1fr); gap: 3rem; }
}
.chart-left { grid-column: span 4 / span 4; }
.chart-right { grid-column: span 8 / span 8; }
.chart-heading {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.875rem;
  color: var(--foreground);
  margin-bottom: 1rem;
  line-height: 1.15;
}
@media (min-width: 768px) { .chart-heading { font-size: 2.25rem; } }
.chart-lead {
  font-size: 0.875rem;
  color: var(--stone);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.mini-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.mini-stat {
  border: 1px solid var(--border);
  padding: 0.75rem;
}
.mini-stat .mono-label { margin-bottom: 0.25rem; }
.mini-stat .val {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--foreground);
}
.chart-note {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--stone);
  font-style: italic;
}
.chart-box {
  border: 2px solid var(--anthracite);
  background-color: #fff;
  padding: 1rem;
}
@media (min-width: 768px) { .chart-box { padding: 1.5rem; } }
.chart-box-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.chart-box-head h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1rem;
  color: var(--foreground);
}
.chart-box-head .mono-label { color: var(--stone); margin-top: 0.25rem; }
.chart-legend {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
}
.chart-legend span { display: flex; align-items: center; gap: 0.375rem; color: var(--stone); }
.legend-swatch { width: 0.75rem; height: 2px; display: inline-block; }
.legend-swatch.epargne { background-color: var(--slate); }
.legend-swatch.objectif {
  border-top: 2px dashed var(--sage);
  height: 0;
}
.chart-svg { width: 100%; height: auto; display: block; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-card {
  background-color: #fff;
  border: 2px solid var(--anthracite);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.stars { display: flex; align-items: center; gap: 0.125rem; margin-bottom: 1rem; }
.star { color: var(--border); }
.star.filled { color: var(--gold); }
.testi-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1rem;
  color: var(--foreground);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}
.testi-quote {
  font-size: 0.875rem;
  color: var(--stone);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--muted);
}
.testi-avatar {
  width: 2.25rem;
  height: 2.25rem;
  background-color: var(--slate);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-avatar span {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--gold);
}
.testi-name { font-weight: 600; font-size: 0.875rem; color: var(--foreground); }
.testi-meta { font-size: 0.75rem; color: var(--stone); }
.testi-disclaimer {
  font-size: 0.75rem;
  color: rgba(107, 114, 128, 0.6);
  margin-top: 0.75rem;
  font-style: italic;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .faq-grid { grid-template-columns: repeat(12, 1fr); gap: 4rem; }
}
.faq-left { grid-column: span 4 / span 4; }
.faq-left h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.875rem;
  color: var(--foreground);
  line-height: 1.15;
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .faq-left h2 { font-size: 2.25rem; } }
.faq-left p { font-size: 0.875rem; color: var(--stone); line-height: 1.6; }
.faq-left a { color: var(--slate); text-decoration: underline; transition: color 150ms; }
.faq-left a:hover { color: var(--gold); }
.faq-right { grid-column: span 8 / span 8; }
.faq-item {
  border-bottom: 2px solid var(--border);
}
.faq-item:first-child { border-top: 2px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  text-align: left;
}
.faq-q .q-text {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1rem;
  color: var(--foreground);
  line-height: 1.35;
  padding-right: 0.5rem;
  transition: color 150ms;
}
@media (min-width: 768px) { .faq-q .q-text { font-size: 1.125rem; } }
.faq-q:hover .q-text { color: var(--slate); }
.faq-toggle {
  width: 1.75rem;
  height: 1.75rem;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.faq-toggle .icon-minus { display: none; }
.faq-item.open .faq-toggle .icon-plus { display: none; }
.faq-item.open .faq-toggle .icon-minus { display: inline-block; }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 300ms ease-in-out;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer p {
  font-size: 0.875rem;
  color: var(--stone);
  line-height: 1.6;
  padding-bottom: 1.25rem;
  padding-right: 3rem;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background-color: var(--slate);
  position: relative;
  overflow: hidden;
}
.cta-bar-left,
.cta-bar-right {
  position: absolute;
  top: 0;
  width: 0.5rem;
  height: 100%;
  background-color: var(--gold);
}
.cta-bar-left { left: 0; }
.cta-bar-right { right: 0; }
.cta-inner {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
  position: relative;
}
.cta-inner h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.875rem;
  color: var(--ivory);
  margin-bottom: 1rem;
  line-height: 1.15;
}
@media (min-width: 768px) { .cta-inner h2 { font-size: 3rem; } }
.cta-inner > p {
  font-size: 0.875rem;
  color: rgba(247, 245, 240, 0.7);
  line-height: 1.6;
  margin-bottom: 2rem;
}
@media (min-width: 768px) { .cta-inner > p { font-size: 1rem; } }
.cta-form { width: 100%; max-width: 36rem; margin: 0 auto; }
.cta-input-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
@media (min-width: 640px) { .cta-input-row { flex-direction: row; } }
.cta-input-wrap { flex: 1; position: relative; }
.cta-input-wrap svg {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(247, 245, 240, 0.4);
}
.cta-input {
  width: 100%;
  background-color: rgba(247, 245, 240, 0.1);
  border: 2px solid rgba(247, 245, 240, 0.2);
  color: var(--ivory);
  padding: 0.75rem 1rem 0.75rem 2.25rem;
  font-size: 0.875rem;
  min-height: 3rem;
  transition: border-color 150ms;
}
.cta-input::placeholder { color: rgba(247, 245, 240, 0.4); }
.cta-input:focus { outline: none; border-color: var(--gold); }
.cta-form .btn-primary { white-space: nowrap; gap: 0.5rem; }
.rgpd-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  text-align: left;
}
.rgpd-box {
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(247, 245, 240, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.125rem;
  flex-shrink: 0;
  transition: background-color 150ms, border-color 150ms;
}
.rgpd-check-input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.rgpd-check-input:checked + .rgpd-box {
  background-color: var(--gold);
  border-color: var(--gold);
}
.rgpd-box .check-mark { display: none; color: var(--anthracite); }
.rgpd-check-input:checked + .rgpd-box .check-mark { display: inline-block; }
.rgpd-text {
  font-size: 0.75rem;
  color: rgba(247, 245, 240, 0.6);
  line-height: 1.6;
}
.rgpd-text a { color: var(--gold); text-decoration: underline; transition: color 150ms; }
.rgpd-text a:hover { color: var(--ivory); }
.form-error {
  font-size: 0.75rem;
  color: #f87171;
  margin-top: 0.5rem;
  text-align: left;
}
.cta-notice {
  font-size: 0.75rem;
  color: rgba(247, 245, 240, 0.4);
  margin-top: 1.5rem;
  line-height: 1.6;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}
.cta-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 0;
  animation: fadeInUp 0.4s ease-out both;
}
.cta-success-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--sage);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
}
.cta-success p:first-of-type {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--ivory);
}
.cta-success p:last-of-type { font-size: 0.875rem; color: rgba(247, 245, 240, 0.7); }
.hidden { display: none !important; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.page-pt { padding-top: 4rem; }

.about-hero {
  position: relative;
  background-color: var(--ivory);
  padding-top: 4rem;
  padding-bottom: 4rem;
  overflow: hidden;
}
@media (min-width: 768px) { .about-hero { padding-top: 7rem; padding-bottom: 7rem; } }
.about-hero-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.25rem;
  height: 100%;
  background-color: var(--gold);
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .about-hero-grid { grid-template-columns: repeat(12, 1fr); gap: 3rem; }
}
.about-hero-text { grid-column: span 7 / span 7; order: 2; }
@media (min-width: 768px) { .about-hero-text { order: 1; } }
.about-hero-img-wrap { grid-column: span 5 / span 5; order: 1; }
@media (min-width: 768px) { .about-hero-img-wrap { order: 2; } }
.about-hero-h1 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--foreground);
  line-height: 1;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .about-hero-h1 { font-size: 3.75rem; } }
.about-hero-h1 .accent { display: block; color: var(--slate); font-style: italic; }
.about-hero-p {
  font-size: 1rem;
  color: var(--stone);
  line-height: 1.6;
  max-width: 36rem;
}
@media (min-width: 768px) { .about-hero-p { font-size: 1.125rem; } }
.about-img-frame {
  border: 2px solid var(--anthracite);
  position: relative;
}
.about-img-frame::before {
  content: '';
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  z-index: -1;
}
.about-img-frame img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

/* Timeline */
.timeline-wrap { position: relative; }
.timeline-line {
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: rgba(201, 168, 76, 0.3);
}
@media (min-width: 768px) {
  .timeline-line { left: 50%; transform: translateX(-50%); }
}
.timeline-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .timeline-item {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
  }
}
.timeline-block { padding-left: 2.5rem; }
@media (min-width: 768px) {
  .timeline-block { padding-left: 0; }
  .timeline-item.left .timeline-block { grid-column: span 5 / span 5; text-align: right; padding-right: 2rem; justify-self: end; }
  .timeline-item.right .timeline-block { grid-column: 8 / span 5; padding-left: 2rem; }
}
.timeline-year {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) { .timeline-year { font-size: 3rem; } }
.timeline-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}
.timeline-desc {
  font-size: 0.875rem;
  color: var(--stone);
  line-height: 1.6;
  max-width: 24rem;
}
.timeline-item.left .timeline-desc { margin-left: auto; }
.timeline-dot-center {
  display: none;
}
@media (min-width: 768px) {
  .timeline-dot-center {
    display: flex;
    grid-column: 6 / span 2;
    justify-content: center;
    align-items: flex-start;
    padding-top: 0.75rem;
  }
  .timeline-dot-center > span {
    width: 1rem;
    height: 1rem;
    background-color: var(--gold);
    border: 2px solid var(--anthracite);
  }
}
.timeline-dot-mobile {
  position: absolute;
  left: 1rem;
  top: 0.75rem;
  width: 0.75rem;
  height: 0.75rem;
  background-color: var(--gold);
  transform: translateX(-50%);
}
@media (min-width: 768px) { .timeline-dot-mobile { display: none; } }

/* Team */
.team-card {
  border: 2px solid var(--anthracite);
  background-color: #fff;
  padding: 1.5rem;
}
@media (min-width: 768px) { .team-card { padding: 2rem; } }
.team-avatar {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 2px solid;
}
.team-avatar span {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ivory);
}
.team-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}
.team-role { color: var(--stone); margin-bottom: 1rem; }
.team-divider { width: 2.5rem; height: 2px; margin-bottom: 1rem; }
.team-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.875rem;
  color: var(--foreground);
  line-height: 1.6;
}
.team-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  margin-top: 1.5rem;
  filter: grayscale(1);
  transition: filter 500ms;
}
.team-img:hover { filter: grayscale(0); }

/* Engagements */
.engagement-card {
  background-color: #fff;
  border: 2px solid var(--anthracite);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
@media (min-width: 768px) { .engagement-card { padding: 2rem; } }
.engagement-icon {
  width: 2.5rem;
  height: 2.5rem;
  border: 2px solid var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--sage);
}
.engagement-card h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}
.engagement-card p {
  font-size: 0.875rem;
  color: var(--stone);
  line-height: 1.6;
}

/* About CTA */
.about-cta {
  background-color: var(--slate);
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 768px) { .about-cta { padding-top: 5rem; padding-bottom: 5rem; } }
.about-cta .container { text-align: center; }
.about-cta h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.875rem;
  color: var(--ivory);
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .about-cta h2 { font-size: 2.25rem; } }
.about-cta p { color: rgba(247, 245, 240, 0.7); margin-bottom: 2rem; font-size: 0.875rem; }
.about-cta .btn-primary { gap: 0.5rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
  background-color: var(--slate);
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (min-width: 768px) { .contact-hero { padding-top: 5rem; padding-bottom: 5rem; } }
.contact-hero h1 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--ivory);
  line-height: 1;
}
@media (min-width: 768px) { .contact-hero h1 { font-size: 3rem; } }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: repeat(12, 1fr); gap: 4rem; }
}
.contact-info { grid-column: span 4 / span 4; }
.contact-info h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}
.contact-info-list { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.contact-info-icon {
  width: 2.25rem;
  height: 2.25rem;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-info-item .label { color: var(--stone); margin-bottom: 0.125rem; }
.contact-info-item .val {
  font-size: 0.875rem;
  color: var(--foreground);
  white-space: pre-line;
}
.contact-siret {
  margin-top: 2rem;
  padding: 1rem;
  border: 2px solid var(--border);
  background-color: #fff;
}
.contact-siret .mono-label { color: var(--gold); margin-bottom: 0.5rem; }
.contact-siret .mono-label.mt { margin-top: 0.75rem; }
.contact-siret p { font-size: 0.875rem; color: var(--foreground); }
.contact-siret .fine { font-size: 0.75rem; color: var(--stone); line-height: 1.6; }
.contact-form-wrap { grid-column: span 8 / span 8; }
.contact-form {
  border: 2px solid var(--anthracite);
  background-color: #fff;
  padding: 1.5rem;
}
@media (min-width: 768px) { .contact-form { padding: 2rem; } }
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .form-row { grid-template-columns: repeat(2, 1fr); } }
.form-field { margin-bottom: 1rem; }
.form-label { color: var(--stone); display: block; margin-bottom: 0.375rem; }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border: 2px solid var(--border);
  background-color: var(--ivory);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--foreground);
  outline: none;
  transition: border-color 150ms;
}
.form-input { min-height: 3rem; }
.form-select { min-height: 3rem; }
.form-textarea { resize: none; }
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--slate); }
.form-input.error,
.form-textarea.error { border-color: #f87171; }
.field-error { font-size: 0.75rem; color: #ef4444; margin-top: 0.25rem; }
.contact-form .fine {
  font-size: 0.75rem;
  color: var(--stone);
  margin-top: 0.75rem;
  line-height: 1.6;
}
.contact-form .fine a { color: var(--slate); text-decoration: underline; }
.contact-success {
  border: 2px solid var(--sage);
  background-color: #fff;
  padding: 2rem;
  text-align: center;
}
.contact-success svg { color: var(--sage); margin: 0 auto 1rem; }
.contact-success h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}
.contact-success p { font-size: 0.875rem; color: var(--stone); }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-hero {
  background-color: var(--slate);
  position: relative;
  overflow: hidden;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (min-width: 768px) { .services-hero { padding-top: 6rem; padding-bottom: 6rem; } }
.services-hero-tint {
  position: absolute;
  top: 0;
  right: 0;
  width: 33.333%;
  height: 100%;
  background-color: rgba(201, 168, 76, 0.05);
}
.services-hero-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 8rem;
  height: 0.5rem;
  background-color: var(--gold);
}
.services-hero .container { position: relative; }
.services-hero h1 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--ivory);
  margin-bottom: 1rem;
  line-height: 1;
  max-width: 42rem;
}
@media (min-width: 768px) { .services-hero h1 { font-size: 3.75rem; } }
.services-hero p {
  font-size: 1rem;
  color: rgba(247, 245, 240, 0.7);
  max-width: 36rem;
  line-height: 1.6;
}
@media (min-width: 768px) { .services-hero p { font-size: 1.125rem; } }

.services-toolbar {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  background-color: var(--ivory);
  border-bottom: 2px solid var(--border);
}
.services-toolbar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 768px) { .services-toolbar-grid { grid-template-columns: repeat(12, 1fr); } }
.services-search { grid-column: span 5 / span 5; }
.search-wrap { position: relative; }
.search-wrap svg {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--stone);
}
.search-input {
  width: 100%;
  border: 2px solid var(--border);
  background-color: #fff;
  padding: 0.75rem 1rem 0.75rem 2.25rem;
  font-size: 0.875rem;
  color: var(--foreground);
  outline: none;
  min-height: 3rem;
  transition: border-color 150ms;
}
.search-input:focus { border-color: var(--slate); }
.search-count { color: var(--stone); margin-top: 0.5rem; }
.services-chart { grid-column: span 7 / span 7; }
.donut-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.donut-legend {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 0.375rem 1rem;
}
.donut-legend .item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  color: var(--foreground);
}
.donut-legend .swatch { width: 10px; height: 10px; display: inline-block; }

.services-filters {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  background-color: var(--ivory);
  border-bottom: 1px solid var(--border);
}
.filter-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.filter-btn {
  padding: 0.5rem 1rem;
  border: 2px solid var(--border);
  background-color: #fff;
  color: var(--stone);
  min-height: 2.5rem;
  transition: border-color 150ms, color 150ms, background-color 150ms;
}
.filter-btn:hover { border-color: var(--slate); color: var(--slate); }
.filter-btn.active {
  background-color: var(--slate);
  color: var(--gold);
  border-color: var(--slate);
}

.guides-section { padding-top: 3rem; padding-bottom: 3rem; background-color: var(--ivory); }
@media (min-width: 768px) { .guides-section { padding-top: 4rem; padding-bottom: 4rem; } }
.guides-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) { .guides-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
@media (min-width: 1024px) { .guides-grid { grid-template-columns: repeat(3, 1fr); } }
.guide-card {
  border: 2px solid var(--anthracite);
  background-color: #fff;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: border-color 200ms;
}
.guide-card:hover { border-color: var(--gold); }
.guide-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.guide-tag {
  padding: 0.25rem 0.5rem;
  color: var(--ivory);
}
.guide-icon {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid;
}
.guide-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  line-height: 1.35;
  flex: 1;
}
@media (min-width: 768px) { .guide-title { font-size: 1.125rem; } }
.guide-divider { width: 2rem; height: 2px; margin-bottom: 0.75rem; transition: width 300ms; }
.guide-card:hover .guide-divider { width: 100%; }
.guide-desc {
  font-size: 0.875rem;
  color: var(--stone);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.guide-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: auto;
  transition: gap 150ms;
}
.guide-card:hover .guide-cta { gap: 0.75rem; }
.guides-empty { text-align: center; padding: 4rem 0; }
.guides-empty p { font-family: var(--font-serif); font-size: 1.25rem; color: var(--stone); }

.services-disclaimer { padding-top: 2rem; padding-bottom: 2rem; background-color: var(--muted); }
.services-disclaimer p {
  font-size: 0.75rem;
  color: var(--stone);
  line-height: 1.6;
  max-width: 48rem;
}
.services-disclaimer strong { color: var(--foreground); }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-hero {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 768px) { .legal-hero { padding-top: 4rem; padding-bottom: 4rem; } }
.legal-hero.slate { background-color: var(--slate); }
.legal-hero.dark { background-color: var(--anthracite); border-bottom: 2px solid var(--gold); }
.legal-hero .mono-label { color: var(--gold); display: block; margin-bottom: 0.75rem; }
.legal-hero h1 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.875rem;
  color: var(--ivory);
  line-height: 1;
}
@media (min-width: 768px) { .legal-hero h1 { font-size: 3rem; } }
.legal-hero .updated { color: rgba(247, 245, 240, 0.6); font-size: 0.875rem; margin-top: 0.75rem; }

.legal-body {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: var(--ivory);
}
@media (min-width: 768px) { .legal-body { padding-top: 4rem; padding-bottom: 4rem; } }
.legal-sections { display: flex; flex-direction: column; gap: 2rem; }
.legal-item { border-left: 4px solid var(--gold); padding-left: 1.5rem; }
.legal-item.slate { border-left-color: var(--slate); }
.legal-item.sage { border-left-color: var(--sage); }
.legal-item h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) { .legal-item h2 { font-size: 1.25rem; } }
.legal-item p { font-size: 0.875rem; color: var(--stone); line-height: 1.6; }
.legal-contact-box {
  margin-top: 2.5rem;
  padding: 1rem;
  border: 2px solid var(--border);
  background-color: #fff;
  font-size: 0.75rem;
  color: var(--stone);
  line-height: 1.6;
}
.legal-contact-box a { color: var(--slate); text-decoration: underline; }
.legal-contact-box strong { color: var(--foreground); }
.disclaimer-box {
  border: 2px solid var(--gold);
  background-color: var(--slate);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .disclaimer-box { padding: 2rem; } }
.disclaimer-box .mono-label { color: var(--gold); margin-bottom: 0.75rem; }
.disclaimer-box p { font-size: 0.875rem; color: var(--ivory); line-height: 1.6; }

/* ---------- Utility ---------- */
.italic { font-style: italic; }
.underline { text-decoration: underline; }
