/* =============================================
   AVOCAT MONACO — Feuille de style principale
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&display=swap');

/* === VARIABLES === */
:root {
  --c-primary: #1C1C3A;
  --c-accent:  #C9A84C;
  --c-bg:      #FAFAF8;
  --c-white:   #fff;
  --c-text:    #1A1A2E;
  --c-muted:   #6B6B8A;
  --radius:    4px;
  --transition: 0.3s ease;
  --max-w:     1200px;
  --shadow:    0 4px 32px rgba(28,28,58,0.10);
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.75;
  font-weight: 400;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--c-primary);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 500; }
h4 { font-size: 1.2rem; font-weight: 500; }

p { font-size: 1.1rem; color: var(--c-text); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  color: var(--c-muted);
  font-style: italic;
  line-height: 1.8;
}

/* === LAYOUT === */
.container {
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
}

section { padding: 90px 0; }

.section-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 1rem;
}

.section-divider {
  width: 52px;
  height: 2px;
  background: var(--c-accent);
  margin: 1.2rem 0 2rem;
}
.section-divider.centered { margin: 1.2rem auto 2rem; }

.text-center { text-align: center; }
.text-accent { color: var(--c-accent); }

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.site-header.transparent { background: transparent; }
.site-header.scrolled {
  background: var(--c-primary);
  box-shadow: 0 2px 24px rgba(0,0,0,0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.logo-name {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--c-white);
  line-height: 1;
}
.logo-sub {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
}

.main-nav { display: flex; gap: 2.2rem; align-items: center; }
.main-nav a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--c-accent);
  transition: width var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--c-accent); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.nav-tel {
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: var(--c-accent) !important;
  letter-spacing: 0.05em !important;
  text-transform: none !important;
  white-space: nowrap;
  border: 1px solid var(--c-accent);
  padding: 0.4rem 1rem;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition) !important;
}
.nav-tel:hover {
  background: var(--c-accent) !important;
  color: var(--c-primary) !important;
}
.nav-tel::after { display: none !important; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: var(--transition);
}

/* === HERO === */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0e0e22 0%, #1C1C3A 55%, #252547 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='800' viewBox='0 0 800 800'%3E%3Crect width='800' height='800' fill='none'/%3E%3Ccircle cx='400' cy='400' r='350' stroke='%23C9A84C' stroke-width='0.4' fill='none' opacity='0.12'/%3E%3Ccircle cx='400' cy='400' r='280' stroke='%23C9A84C' stroke-width='0.4' fill='none' opacity='0.08'/%3E%3C/svg%3E") no-repeat center center / 70%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--c-bg), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-accent);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
}

.hero h1 {
  color: var(--c-white);
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--c-accent);
}

.hero .lead {
  color: rgba(255,255,255,0.72);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--c-accent);
  color: var(--c-primary);
}
.btn-primary:hover {
  background: #b8943e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--c-white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--c-primary);
  border: 1px solid var(--c-primary);
}
.btn-outline-dark:hover {
  background: var(--c-primary);
  color: var(--c-white);
}

/* === STATS BAR === */
.stats-bar {
  background: var(--c-primary);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--c-accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-item span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* === EXPERTISE CARDS === */
.expertise-section { background: var(--c-white); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: var(--c-bg);
  border: 1px solid rgba(28,28,58,0.08);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--c-accent);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card:hover::before { transform: scaleX(1); }

.card-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  color: var(--c-accent);
}
.card h3 { margin-bottom: 0.8rem; font-size: 1.3rem; }
.card p { font-size: 1rem; color: var(--c-muted); }

.card-link {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-accent);
  border-bottom: 1px solid var(--c-accent);
  padding-bottom: 2px;
  transition: opacity var(--transition);
}
.card-link:hover { opacity: 0.7; }

/* === INTRO SPLIT === */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.intro-text h2 { margin-bottom: 1rem; }
.intro-text p { color: var(--c-muted); }

.intro-aside {
  background: var(--c-primary);
  padding: 3.5rem;
  border-radius: var(--radius);
  position: relative;
}
.intro-aside::before {
  content: '\201C';
  position: absolute;
  top: -20px; left: 30px;
  font-size: 8rem;
  color: var(--c-accent);
  opacity: 0.25;
  line-height: 1;
  font-family: Georgia, serif;
}
.intro-aside blockquote {
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 300;
  color: var(--c-white);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.intro-aside cite {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-accent);
  font-style: normal;
}

/* === WHY MONACO === */
.why-section { background: var(--c-bg); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.why-item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--c-white);
  border-radius: var(--radius);
  border: 1px solid rgba(28,28,58,0.07);
  transition: box-shadow var(--transition);
}
.why-item:hover { box-shadow: var(--shadow); }

.why-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--c-accent);
}
.why-item h4 { margin-bottom: 0.4rem; }
.why-item p { font-size: 0.98rem; color: var(--c-muted); margin: 0; }

/* === CTA BAND === */
.cta-band {
  background: linear-gradient(135deg, var(--c-primary) 0%, #252547 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.12);
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.08);
}
.cta-band h2 { color: var(--c-white); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.65); font-size: 1.15rem; margin-bottom: 2rem; }
.cta-band .btn { position: relative; z-index: 1; }

/* === PROCESS STEPS === */
.process-section { background: var(--c-white); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px; left: 60px; right: 60px;
  height: 1px;
  background: linear-gradient(to right, var(--c-accent), transparent, var(--c-accent));
  opacity: 0.3;
}
.step-item { text-align: center; padding: 1rem; }
.step-num {
  width: 56px; height: 56px;
  background: var(--c-primary);
  color: var(--c-accent);
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border: 2px solid var(--c-accent);
}
.step-item h4 { margin-bottom: 0.6rem; }
.step-item p { font-size: 0.95rem; color: var(--c-muted); }

/* === DOMAINES PAGE === */
.domaines-hero {
  min-height: 50vh;
  background: linear-gradient(135deg, #0e0e22 0%, #1C1C3A 100%);
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  position: relative;
}
.domaines-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--c-bg), transparent);
}

.page-hero {
  min-height: 50vh;
  background: linear-gradient(135deg, #0e0e22 0%, #1C1C3A 100%);
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--c-bg), transparent);
}
.page-hero .hero-label { margin-bottom: 1rem; }
.page-hero h1 { color: var(--c-white); }
.page-hero .lead { color: rgba(255,255,255,0.68); max-width: 640px; }

.domaine-block {
  padding: 70px 0;
  border-bottom: 1px solid rgba(28,28,58,0.08);
}
.domaine-block:last-child { border-bottom: none; }
.domaine-block:nth-child(even) { background: var(--c-white); }

.domaine-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 5rem;
  align-items: start;
}
.domaine-sidebar {
  position: sticky;
  top: 100px;
}
.domaine-num {
  font-size: 5rem;
  font-weight: 700;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  margin-bottom: -1rem;
}
.domaine-sidebar h2 { font-size: 1.7rem; margin-bottom: 0.5rem; }
.domaine-sidebar .section-divider { margin: 0.8rem 0 1.2rem; }
.domaine-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-accent);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.25rem 0.8rem;
  border-radius: 20px;
  margin: 0.25rem 0.15rem;
}
.domaine-body h3 {
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
  color: var(--c-primary);
}
.domaine-body h3:first-child { margin-top: 0; }
.domaine-body p { color: var(--c-muted); font-size: 1.05rem; }

.domaine-body ul {
  list-style: none;
  margin: 1rem 0 1.5rem;
  padding: 0;
}
.domaine-body ul li {
  padding: 0.5rem 0 0.5rem 1.8rem;
  position: relative;
  font-size: 1.05rem;
  color: var(--c-muted);
  border-bottom: 1px solid rgba(28,28,58,0.05);
}
.domaine-body ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--c-accent);
  font-weight: 700;
}

/* === QUI SOMMES-NOUS === */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}
.value-card {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--c-white);
  border: 1px solid rgba(28,28,58,0.08);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-icon {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  color: var(--c-accent);
}
.value-card h3 { margin-bottom: 0.8rem; }
.value-card p { font-size: 1rem; color: var(--c-muted); }

.team-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.team-portrait {
  background: var(--c-primary);
  border-radius: var(--radius);
  padding: 4rem 3rem;
  text-align: center;
  color: var(--c-white);
}
.portrait-monogram {
  width: 100px; height: 100px;
  background: rgba(201,168,76,0.15);
  border: 2px solid var(--c-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--c-accent);
  margin: 0 auto 1.5rem;
}
.team-portrait h3 { color: var(--c-white); margin-bottom: 0.4rem; }
.team-portrait .role {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  display: block;
  margin-bottom: 1.5rem;
}
.team-portrait p { color: rgba(255,255,255,0.65); font-size: 1rem; }

.credentials-list {
  list-style: none;
  margin: 2rem 0;
  padding: 0;
}
.credentials-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(28,28,58,0.08);
  font-size: 1.05rem;
  color: var(--c-muted);
  display: flex;
  gap: 1rem;
  align-items: center;
}
.credentials-list li::before {
  content: '✦';
  color: var(--c-accent);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* === CONTACT PAGE === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: var(--c-muted); }

.contact-detail {
  display: flex;
  gap: 1.2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(28,28,58,0.08);
  align-items: flex-start;
}
.contact-detail:last-child { border-bottom: none; }
.detail-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.04));
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--c-accent);
}
.detail-body strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 0.3rem;
}
.detail-body a { color: var(--c-accent); font-size: 1.25rem; font-weight: 600; }
.detail-body p { font-size: 1rem; margin: 0; color: var(--c-text); }

.horaires-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
.horaires-table tr td {
  padding: 0.6rem 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(28,28,58,0.06);
}
.horaires-table tr td:first-child { color: var(--c-muted); width: 50%; }
.horaires-table tr td:last-child { font-weight: 600; color: var(--c-text); }

.access-box {
  background: var(--c-primary);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin-top: 2rem;
}
.access-box h4 { color: var(--c-white); margin-bottom: 1.2rem; }
.access-box ul {
  list-style: none;
  padding: 0;
}
.access-box ul li {
  padding: 0.5rem 0;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  padding-left: 1.5rem;
  position: relative;
}
.access-box ul li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--c-accent);
}

.elfsight-wrapper { margin-top: 0; }
.elfsight-wrapper h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.elfsight-wrapper p {
  color: var(--c-muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* === BREADCRUMB === */
.breadcrumb {
  padding: 1.2rem 0;
  background: var(--c-white);
  border-bottom: 1px solid rgba(28,28,58,0.07);
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb li {
  font-size: 0.82rem;
  color: var(--c-muted);
  letter-spacing: 0.05em;
}
.breadcrumb li a { color: var(--c-accent); }
.breadcrumb li + li::before { content: '/'; margin-right: 0.5rem; opacity: 0.5; }

/* === FOOTER === */
.site-footer {
  background: var(--c-primary);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 50px;
}
.footer-brand .logo-name { font-size: 1.35rem; margin-bottom: 0.5rem; }
.footer-brand .logo-sub { font-size: 0.68rem; margin-bottom: 1.5rem; }
.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  line-height: 1.8;
}
.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--c-accent); }
.footer-tel-big {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--c-accent);
  margin-bottom: 0.8rem;
}
.footer-address {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  font-style: normal;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
}
.footer-bottom a {
  color: rgba(255,255,255,0.3);
  font-size: 0.78rem;
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--c-accent); }

/* === FLOATING BUTTON === */
.float-tel {
  display: none;
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 999;
  background: var(--c-accent);
  color: var(--c-primary);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 1.6rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(201,168,76,0.45);
  align-items: center;
  gap: 0.6rem;
  transition: all var(--transition);
}
.float-tel:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.55);
}
.float-tel svg { width: 18px; height: 18px; flex-shrink: 0; }

/* === NAV MOBILE DROPDOWN === */
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: var(--c-primary);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 2rem;
  z-index: 999;
  flex-direction: column;
  gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 1rem 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--c-accent); }
.mobile-nav .nav-tel {
  margin-top: 1.5rem;
  text-align: center;
  border: 1px solid var(--c-accent);
  border-radius: var(--radius);
  padding: 0.8rem;
}

/* === RESPONSIVE 768px === */
@media (max-width: 768px) {

  section { padding: 60px 0; }

  .main-nav { display: none; }
  .burger { display: flex; }

  .float-tel { display: flex; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .cards-grid { grid-template-columns: 1fr; }

  .intro-split { grid-template-columns: 1fr; gap: 2.5rem; }

  .why-grid { grid-template-columns: 1fr; }

  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }

  .domaine-inner { grid-template-columns: 1fr; gap: 2rem; }
  .domaine-sidebar { position: static; }

  .values-grid { grid-template-columns: 1fr; }

  .team-split { grid-template-columns: 1fr; gap: 2rem; }

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-actions { flex-direction: column; align-items: flex-start; }

  .page-hero { min-height: 40vh; }

}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
}
