:root {
  --dark: #0f1115;
  --dark-2: #1a1d23;
  --gold: #c9a961;
  --gold-light: #e0c890;
  --gold-dark: #9b7e3c;
  --cream: #faf8f3;
  --cream-2: #f4f0e8;
  --bg: #fdfcf9;
  --white: #ffffff;
  --text: #1a1d23;
  --text-muted: #6b7180;
  --border: #ece8df;
  --shadow-sm: 0 2px 8px rgba(15, 17, 21, 0.04);
  --shadow: 0 12px 36px rgba(15, 17, 21, 0.08);
  --shadow-lg: 0 24px 64px rgba(15, 17, 21, 0.14);
  --radius: 8px;
  --radius-lg: 18px;
  --container: 1180px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-sans); font-size: 16px; line-height: 1.65; color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.15; color: var(--dark); letter-spacing: -0.015em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; margin-bottom: 1.2rem; }
h3 { font-size: 1.4rem; margin-bottom: 0.6rem; font-weight: 600; }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-sans); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 1.2rem; }
.eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.eyebrow.center::before, .eyebrow.center::after { display: inline-block; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ''; width: 24px; height: 1px; background: var(--gold); }

.lead { font-size: 1.15rem; color: var(--text-muted); max-width: 640px; line-height: 1.7; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem; padding: 15px 30px; font-size: 0.94rem; font-weight: 600; letter-spacing: 0.02em; border-radius: var(--radius); transition: all var(--transition); cursor: pointer; border: 1.5px solid transparent; white-space: nowrap; font-family: inherit; }
.btn-primary { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(201, 169, 97, 0.35); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3); }
.btn-outline:hover { background: var(--white); color: var(--dark); border-color: var(--white); }
.btn-dark { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-dark:hover { background: var(--dark-2); border-color: var(--dark-2); transform: translateY(-2px); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(15, 17, 21, 0.94); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid rgba(201, 169, 97, 0.1); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; max-width: var(--container); margin: 0 auto; }
.logo { display: flex; align-items: center; gap: 12px; color: var(--white); }
.logo-mark { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; }
.logo-text { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 600; letter-spacing: 0.2em; color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 2.2rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.85); font-size: 0.94rem; font-weight: 500; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { background: var(--gold); color: var(--dark) !important; padding: 11px 22px; border-radius: var(--radius); font-weight: 600 !important; transition: background var(--transition); }
.nav-cta:hover { background: var(--gold-light); }
.menu-toggle { display: none; width: 32px; height: 32px; flex-direction: column; justify-content: center; gap: 5px; }
.menu-toggle span { width: 22px; height: 2px; background: var(--white); transition: all var(--transition); }

/* ─── Dropdown navigation ─── */
.nav-dropdown { position: relative; }
.nav-sub { display: none; position: absolute; top: calc(100% + 10px); left: 0; background: #1a1d23; border-radius: var(--radius); box-shadow: var(--shadow-lg); min-width: 220px; padding: 8px 0; border: 1px solid rgba(201,169,97,0.18); list-style: none; z-index: 200; }
.nav-dropdown:hover .nav-sub { display: block; }
.nav-sub li a { display: block; padding: 11px 20px; color: rgba(255,255,255,0.82); font-size: 0.92rem; font-weight: 500; transition: all var(--transition); }
.nav-sub li a:hover, .nav-sub li a.active { color: var(--gold); background: rgba(255,255,255,0.04); }
.nav-sub li + li { border-top: 1px solid rgba(255,255,255,0.06); }
.nav-pro { color: var(--gold) !important; font-weight: 700 !important; }

/* ─── Two-tone section split (Pro / Particuliers) ─── */
.section-pro { background: var(--dark); color: var(--white); }
.section-pro h2 { color: var(--white); }
.section-pro .lead { color: rgba(255,255,255,0.72); max-width: 640px; }
.section-pro .eyebrow { color: var(--gold-light); }
.section-pro .eyebrow::before, .section-pro .eyebrow::after { background: var(--gold); }
.service-card-pro { background: rgba(255,255,255,0.04); border: 1px solid rgba(201,169,97,0.18); border-radius: var(--radius-lg); padding: 36px 30px; color: var(--white); transition: all var(--transition); }
.service-card-pro:hover { background: rgba(255,255,255,0.07); border-color: rgba(201,169,97,0.4); transform: translateY(-4px); }
.service-card-pro h3 { color: var(--gold); font-size: 1.25rem; margin-bottom: 0.7rem; }
.service-card-pro p { color: rgba(255,255,255,0.68); font-size: 0.95rem; line-height: 1.65; }
.pro-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; margin-bottom: 2.5rem; }

/* Hero */
.hero { position: relative; background: var(--dark); color: var(--white); overflow: hidden; padding: 90px 0 110px; }
.hero::before { content: ''; position: absolute; inset: 0; background:
  radial-gradient(circle at 15% 25%, rgba(201, 169, 97, 0.18) 0%, transparent 45%),
  radial-gradient(circle at 85% 75%, rgba(201, 169, 97, 0.1) 0%, transparent 50%);
  pointer-events: none; }
.hero::after { content: ''; position: absolute; inset: 0; background-image:
  linear-gradient(rgba(201, 169, 97, 0.025) 1px, transparent 1px),
  linear-gradient(90deg, rgba(201, 169, 97, 0.025) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr 1fr; gap: 70px; align-items: center; z-index: 1; }
.hero-content { max-width: 580px; }
.hero h1 { color: var(--white); margin-bottom: 1.6rem; font-size: clamp(2.4rem, 5.5vw, 4rem); }
.hero h1 .accent { color: var(--gold); font-style: italic; font-weight: 500; }
.hero h1 .underline { position: relative; display: inline-block; }
.hero h1 .underline::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: var(--gold); opacity: 0.6; }
.hero-lead { font-size: 1.18rem; color: rgba(255,255,255,0.78); margin-bottom: 2.2rem; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.8rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 28px; padding-top: 2.2rem; border-top: 1px solid rgba(255,255,255,0.12); }
.hero-trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: rgba(255,255,255,0.85); }
.hero-trust-item svg { color: var(--gold); flex-shrink: 0; }
.hero-image-wrap { position: relative; }
.hero-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; background: linear-gradient(135deg, #2a2d35, #1a1d23); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.hero-image::after { content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg); border: 1px solid rgba(201, 169, 97, 0.25); pointer-events: none; }
.hero-decoration { position: absolute; bottom: -20px; right: -20px; width: 120px; height: 120px; border: 2px solid var(--gold); border-radius: var(--radius-lg); z-index: -1; opacity: 0.5; }
.hero-decoration-2 { position: absolute; top: -20px; left: -20px; width: 80px; height: 80px; background: var(--gold); border-radius: var(--radius-lg); z-index: -1; opacity: 0.15; }
.hero-badge { position: absolute; bottom: 24px; left: 24px; background: var(--white); color: var(--dark); padding: 14px 20px; border-radius: var(--radius); font-size: 0.85rem; font-weight: 600; display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow); }
.hero-badge .dot { width: 8px; height: 8px; background: #28a745; border-radius: 50%; box-shadow: 0 0 0 4px rgba(40,167,69,0.2); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 4px rgba(40,167,69,0.2); } 50% { box-shadow: 0 0 0 8px rgba(40,167,69,0); } }

/* Hero simple (homepage) */
.hero-simple { padding: 100px 0 110px; }
.hero-simple-inner { text-align: center; max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }
.hero-simple .hero-lead { margin: 1.4rem auto 2.4rem; font-size: 1.15rem; color: rgba(255,255,255,0.78); max-width: 600px; }
.hero-simple .hero-actions { justify-content: center; }
.hero-simple .hero-trust { justify-content: center; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 2rem; margin-top: 2.8rem; }

/* Section choice (homepage) */
.section-choice { background: var(--bg); padding: 90px 0; }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.choice-card { border-radius: var(--radius-lg); padding: 56px 48px; display: flex; flex-direction: column; gap: 0; transition: all var(--transition); text-decoration: none; }
.choice-card-pro { background: var(--dark); color: var(--white); border: 1px solid rgba(201,169,97,0.2); }
.choice-card-pro:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(201,169,97,0.45); }
.choice-card-part { background: var(--white); border: 1px solid var(--border); color: var(--text); }
.choice-card-part:hover { box-shadow: var(--shadow); }
.choice-label { font-family: var(--font-sans); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.choice-card h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 1.2rem; line-height: 1.2; }
.choice-card-pro h2 { color: var(--white); }
.choice-card-part h2 { color: var(--dark); }
.choice-card > p { font-size: 1.02rem; line-height: 1.7; margin-bottom: 2rem; }
.choice-card-pro > p { color: rgba(255,255,255,0.72); }
.choice-card-part > p { color: var(--text-muted); }
.choice-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 2.4rem; }
.choice-list li { display: flex; align-items: center; gap: 10px; font-size: 0.97rem; color: rgba(255,255,255,0.85); }
.choice-list li::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.choice-cta { display: inline-flex; align-items: center; padding: 15px 30px; background: var(--gold); color: var(--dark); font-weight: 700; font-size: 0.95rem; border-radius: var(--radius); margin-top: auto; align-self: flex-start; transition: all var(--transition); }
.choice-card-pro:hover .choice-cta { background: var(--gold-light); }
.choice-links { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 2rem; }
.choice-links li a { display: flex; align-items: center; gap: 8px; font-size: 1.05rem; font-weight: 600; color: var(--dark); border-bottom: 1px solid var(--border); padding: 12px 0; transition: color var(--transition); }
.choice-links li a:hover { color: var(--gold-dark); }
.choice-cta-part { display: inline-flex; align-items: center; padding: 15px 30px; background: var(--dark); color: var(--white); font-weight: 700; font-size: 0.95rem; border-radius: var(--radius); margin-top: auto; transition: all var(--transition); }
.choice-cta-part:hover { background: var(--dark-2); transform: translateY(-2px); }

/* Testimonials 3-col variant */
.testimonials-3 { grid-template-columns: repeat(3, 1fr); }

/* Stats Bar */
.stats-bar { background: var(--cream); border-bottom: 1px solid var(--border); padding: 35px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; align-items: center; text-align: center; }
.stat-num { font-family: var(--font-serif); font-size: 2.4rem; font-weight: 600; color: var(--dark); line-height: 1; }
.stat-num .gold { color: var(--gold-dark); }
.stat-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 6px; letter-spacing: 0.04em; }

/* Sections */
.section { padding: 100px 0; }
.section-light { background: var(--cream); }
.section-cream { background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%); }
.section-dark { background: var(--dark); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 70px; }
.section-header .lead { margin: 1rem auto 0; }

/* Services Cards */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 44px 36px; transition: all var(--transition); display: flex; flex-direction: column; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--cream-2); }
.service-card:hover::before { transform: scaleX(1); }
.service-illustration { width: 100%; height: 140px; background: var(--cream); border-radius: var(--radius); margin-bottom: 28px; display: flex; align-items: center; justify-content: center; color: var(--gold-dark); position: relative; overflow: hidden; }
.service-illustration svg { position: relative; z-index: 1; }
.service-illustration::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 30% 30%, rgba(201, 169, 97, 0.15) 0%, transparent 50%); }
.service-card h3 { font-size: 1.5rem; }
.service-card p { color: var(--text-muted); margin-bottom: 1.6rem; flex-grow: 1; }
.service-link { font-weight: 600; color: var(--dark); display: inline-flex; align-items: center; gap: 8px; padding-top: 18px; border-top: 1px solid var(--border); transition: color var(--transition); }
.service-link svg { transition: transform var(--transition); }
.service-link:hover { color: var(--gold-dark); }
.service-link:hover svg { transform: translateX(4px); }

/* Process / Steps */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 36px; counter-reset: step; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent); opacity: 0.3; }
.step { text-align: center; position: relative; z-index: 1; }
.step-number { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: var(--white); color: var(--gold-dark); font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; margin-bottom: 1.4rem; border: 2px solid var(--gold); box-shadow: 0 0 0 6px rgba(201, 169, 97, 0.08); }
.step h3 { font-size: 1.18rem; margin-bottom: 0.6rem; }
.step p { color: var(--text-muted); font-size: 0.95rem; }

/* Two-column block */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.two-col-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/5; background: var(--cream); }
.two-col-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.two-col-image::after { content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg); border: 1px solid rgba(201, 169, 97, 0.2); pointer-events: none; }
.image-deco-frame { position: absolute; bottom: -24px; right: -24px; width: 70%; height: 70%; border: 2px solid var(--gold); border-radius: var(--radius-lg); z-index: -1; opacity: 0.4; }

.feature-list { list-style: none; margin-top: 1.8rem; }
.feature-list li { padding: 14px 0 14px 36px; position: relative; border-bottom: 1px solid var(--border); color: var(--text); }
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before { content: ''; position: absolute; left: 0; top: 18px; width: 22px; height: 22px; background: var(--gold); border-radius: 50%; opacity: 0.15; }
.feature-list li::after { content: '✓'; position: absolute; left: 5px; top: 14px; color: var(--gold-dark); font-weight: 700; font-size: 0.95rem; }

/* Zones */
.zones-list { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 2rem; max-width: 900px; margin-left: auto; margin-right: auto; }
.zone-tag { background: var(--white); border: 1px solid var(--border); padding: 10px 20px; border-radius: 999px; font-size: 0.9rem; color: var(--text); transition: all var(--transition); }
.zone-tag:hover { border-color: var(--gold); color: var(--gold-dark); transform: translateY(-2px); }

/* Testimonials */
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 28px; }
.testimonial { background: var(--white); border-radius: var(--radius-lg); padding: 36px; border: 1px solid var(--border); position: relative; }
.testimonial::before { content: '"'; position: absolute; top: 16px; right: 28px; font-family: var(--font-serif); font-size: 5rem; line-height: 1; color: var(--gold); opacity: 0.18; font-weight: 700; }
.stars { color: var(--gold); margin-bottom: 1rem; letter-spacing: 3px; font-size: 1.05rem; }
.testimonial-text { font-size: 1.02rem; color: var(--text); margin-bottom: 1.4rem; line-height: 1.7; }
.testimonial-author { font-size: 0.9rem; color: var(--text-muted); font-weight: 500; padding-top: 1rem; border-top: 1px solid var(--border); }
.testimonial-author strong { color: var(--dark); }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 22px 0; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question { display: flex; justify-content: space-between; align-items: center; width: 100%; text-align: left; font-family: var(--font-serif); font-size: 1.22rem; font-weight: 600; color: var(--dark); padding: 4px 0; cursor: pointer; list-style: none; }
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after { content: '+'; font-family: var(--font-sans); font-size: 1.8rem; font-weight: 300; color: var(--gold-dark); transition: transform var(--transition); flex-shrink: 0; margin-left: 1rem; }
.faq-item[open] .faq-question::after { content: '−'; }
.faq-answer { padding: 14px 0 6px; color: var(--text-muted); line-height: 1.8; }

/* CTA Block */
.cta-block { background: var(--dark); border-radius: var(--radius-lg); padding: 80px 40px; text-align: center; color: var(--white); position: relative; overflow: hidden; }
.cta-block::before { content: ''; position: absolute; inset: 0; background:
  radial-gradient(circle at 30% 30%, rgba(201, 169, 97, 0.18) 0%, transparent 50%),
  radial-gradient(circle at 70% 70%, rgba(201, 169, 97, 0.08) 0%, transparent 50%); }
.cta-block > * { position: relative; }
.cta-block h2 { color: var(--white); margin-bottom: 1.2rem; }
.cta-block p { color: rgba(255,255,255,0.78); max-width: 580px; margin: 0 auto 2.2rem; font-size: 1.08rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* Footer */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-col h4 { color: var(--white); font-family: var(--font-sans); font-size: 0.84rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1.4rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; font-size: 0.92rem; }
.footer-col a { color: rgba(255,255,255,0.7); }
.footer-col a:hover { color: var(--gold); }
.footer-brand p { font-size: 0.92rem; margin: 1.2rem 0; max-width: 320px; line-height: 1.7; }
.footer-bottom { padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--gold); }

/* Floating CTA */
.floating-cta { position: fixed; bottom: 24px; right: 24px; z-index: 50; display: flex; flex-direction: column; gap: 10px; }
.floating-cta a { width: 58px; height: 58px; border-radius: 50%; background: var(--gold); color: var(--dark); display: flex; align-items: center; justify-content: center; box-shadow: 0 14px 30px rgba(0,0,0,0.18); transition: all var(--transition); }
.floating-cta a:hover { transform: scale(1.08); }

/* Responsive */
@media (max-width: 960px) {
  .hero { padding: 60px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-content { max-width: none; order: 2; }
  .hero-image-wrap { order: 1; max-width: 460px; margin: 0 auto; width: 100%; }
  .hero-image { aspect-ratio: 4/4; }
  .two-col { grid-template-columns: 1fr; gap: 50px; }
  .two-col-image { max-width: 500px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 720px) {
  .nav-links { position: fixed; top: 70px; right: 0; left: 0; background: var(--dark); flex-direction: column; align-items: stretch; padding: 24px; gap: 1rem; border-bottom: 1px solid rgba(201,169,97,0.12); transform: translateY(-120%); transition: transform var(--transition); }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 10px 0; font-size: 1.05rem; }
  .menu-toggle { display: flex; }
  /* Dropdown mobile : toujours visible, indenté */
  .nav-sub { display: block; position: static; background: transparent; box-shadow: none; border: none; border-left: 2px solid rgba(201,169,97,0.3); padding: 4px 0 4px 14px; min-width: auto; margin-top: 2px; }
  .nav-sub li a { padding: 7px 0; font-size: 0.95rem; color: rgba(255,255,255,0.6); }
  .nav-sub li + li { border-top: none; }
  .section { padding: 70px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-block { padding: 50px 24px; }
  .steps-grid::before { display: none; }
}

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }

/* ─── Page Hero (pages services & contact) ─── */
.page-hero { background: var(--dark); color: var(--white); padding: 80px 0 90px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 40%, rgba(201,169,97,0.16) 0%, transparent 50%), radial-gradient(circle at 75% 60%, rgba(201,169,97,0.08) 0%, transparent 50%); pointer-events: none; }
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--white); margin-bottom: 1.2rem; }
.page-hero h1 .accent { color: var(--gold); font-style: italic; }
.page-hero > .container > p, .page-hero p { color: rgba(255,255,255,0.78); max-width: 680px; margin: 0 auto; font-size: 1.1rem; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; margin-bottom: 1.6rem; justify-content: center; }
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.25); }

/* ─── Pricing — layout horizontal pro ─── */
.pricing-grid { display: flex; gap: 0; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-top: 2.5rem; box-shadow: var(--shadow-sm); }
.price-card { flex: 1; padding: 44px 28px; text-align: center; border-right: 1px solid var(--border); background: var(--white); position: relative; transition: background var(--transition), box-shadow var(--transition); }
.price-card:last-child { border-right: none; }
.price-card:hover { background: var(--cream); }
.price-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); opacity: 0; transition: opacity var(--transition); }
.price-card:hover::after { opacity: 1; }
.price-card h3 { font-family: var(--font-sans); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.4rem; }
.price-amount { font-family: var(--font-serif); font-size: 3rem; font-weight: 600; color: var(--dark); line-height: 1; margin-bottom: 0.8rem; }
.price-amount small { font-size: 1.1rem; color: var(--text-muted); font-family: var(--font-sans); font-weight: 400; vertical-align: middle; }
.price-card > p { font-size: 0.88rem; color: var(--text-muted); margin-top: 0.6rem; }

/* ─── Contact page ─── */
.contact-grid { display: grid; grid-template-columns: 360px 1fr; gap: 60px; align-items: start; }
.contact-info-card { background: var(--dark); color: var(--white); border-radius: var(--radius-lg); padding: 44px 36px; position: sticky; top: 90px; }
.contact-info-card h3 { color: var(--gold); font-size: 1.5rem; margin-bottom: 2rem; font-family: var(--font-serif); }
.contact-row { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.contact-row:last-child { border-bottom: none; }
.contact-row svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.contact-row strong { display: block; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 5px; font-family: var(--font-sans); font-weight: 600; }
.contact-row a, .contact-row div > span { color: rgba(255,255,255,0.88); font-size: 0.95rem; }
.contact-row a:hover { color: var(--gold); }

/* ─── Form styles ─── */
.form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.form-field label { font-size: 0.84rem; font-weight: 600; color: var(--text); letter-spacing: 0.03em; }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 14px 16px; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: inherit; font-size: 0.95rem; color: var(--text); background: var(--white); transition: border-color var(--transition), box-shadow var(--transition); line-height: 1.5; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,97,0.12); }
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7180' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 44px; cursor: pointer; }

/* ─── Responsive extras ─── */
@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-radius: var(--radius); }
  .price-card { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .price-card:nth-child(even) { border-right: none; }
  .price-card:nth-last-child(-n+2) { border-bottom: none; }
  .choice-grid { grid-template-columns: 1fr; gap: 24px; }
  .testimonials-3 { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .page-hero { padding: 60px 0 70px; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .price-amount { font-size: 2.2rem; }
  .hero-simple { padding: 70px 0 80px; }
  .choice-card { padding: 40px 28px; }
}