/* ============================================================
   COVALI – Feuille de style partagée
   Partenaire de Confiance · Entre le Maroc et l'Europe
   ============================================================ */

/* === VARIABLES === */
:root {
  --brun:        #3a1f0d;
  --brun-mid:    #5c2d0e;
  --brun-light:  #7a3d1a;
  --or:          #c0874a;
  --or-light:    #d4a56a;
  --or-pale:     #e8c890;
  --beige:       #f5ede0;
  --beige-dark:  #e8d8c4;
  --blanc:       #faf7f2;
  --texte:       #2a1a0a;
  --texte-mid:   #4a2e16;
  --texte-light: #6b4c30;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', sans-serif;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--blanc); color: var(--texte); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }

/* === NAVIGATION === */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 72px;
  background: rgba(250, 247, 242, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(192, 135, 74, 0.18);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 28px rgba(58, 31, 13, 0.10); }

.nav-logo {
  font-family: var(--font-serif); font-size: 1.55rem; font-weight: 600;
  color: var(--brun); text-decoration: none; letter-spacing: 0.1em;
  display: flex; align-items: center; gap: 0.55rem; flex-shrink: 0;
}
.nav-logo .logo-globe { flex-shrink: 0; }
.nav-logo .logo-i { color: var(--or); }

.nav-links { display: flex; gap: 0; list-style: none; align-items: center; }
.nav-links > li { position: relative; }

.nav-links a {
  font-family: var(--font-sans); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--texte-mid); text-decoration: none;
  padding: 0.5rem 0.9rem; display: block;
  transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover { color: var(--or); }
.nav-links a.active { color: var(--brun); }

/* Dropdown */
.has-dropdown > a { cursor: default; }
.has-dropdown > a::after { content: ' ▾'; font-size: 0.6rem; opacity: 0.55; }

.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--blanc); border: 1px solid rgba(192, 135, 74, 0.2);
  border-radius: 4px; box-shadow: 0 16px 48px rgba(58, 31, 13, 0.12);
  min-width: 230px; padding: 0.5rem 0; z-index: 200;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu { display: block; }

.dropdown-menu li { list-style: none; }
.dropdown-menu a {
  padding: 0.65rem 1.3rem; font-size: 0.73rem;
  letter-spacing: 0.08em; color: var(--texte-mid);
  display: flex; align-items: center; gap: 0.6rem;
}
.dropdown-menu a:hover { background: var(--beige); color: var(--or); }

.nav-cta {
  background: var(--brun) !important; color: var(--or-pale) !important;
  padding: 0.55rem 1.3rem !important; border-radius: 2px !important;
  font-weight: 600 !important; margin-left: 0.5rem;
}
.nav-cta:hover { background: var(--or) !important; color: var(--brun) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--brun); transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === PAGE HERO (pages internes) === */
.page-hero {
  background: var(--brun); padding: 9.5rem 5vw 6rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; right: -5%; top: -25%;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(192,135,74,0.09) 0%, transparent 70%);
}
.page-hero::after {
  content: ''; position: absolute; left: 8%; bottom: -12%;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(192,135,74,0.05) 0%, transparent 70%);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; }

.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(232, 216, 196, 0.4); margin-bottom: 1.8rem;
}
.breadcrumb a { color: var(--or); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--or-light); }
.breadcrumb .sep { opacity: 0.3; }

.page-eyebrow {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--or);
  margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.8rem;
}
.page-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--or); flex-shrink: 0; }

.page-title {
  font-family: var(--font-serif); font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 300; color: var(--beige); line-height: 1.1;
}
.page-title strong { font-weight: 600; color: var(--or-light); }
.page-title em { font-style: italic; color: var(--or-light); }

.page-subtitle {
  font-size: 0.95rem; color: rgba(232, 216, 196, 0.65);
  line-height: 1.85; max-width: 540px; margin-top: 1.5rem;
}

/* === SECTIONS === */
.section { padding: 6rem 5vw; }
.section.alt { background: var(--beige); }
.section.dark { background: var(--brun); }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--or);
  margin-bottom: 1rem; display: flex; align-items: center; gap: 0.8rem;
}
.section-label::before { content: ''; width: 28px; height: 1px; background: var(--or); flex-shrink: 0; }
.section-label.center { justify-content: center; }
.section-label.center::before { display: none; }
.section-label.center::after { content: ''; width: 28px; height: 1px; background: var(--or); }

.section-title {
  font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.9rem);
  font-weight: 300; line-height: 1.2; color: var(--brun); margin-bottom: 1.5rem;
}
.section-title strong { font-weight: 600; }
.section-title em { font-style: italic; }
.section-title.light { color: var(--beige); }
.section-title.light strong { color: var(--or-light); }

.section-desc { font-size: 0.95rem; line-height: 1.85; color: var(--texte-light); }
.section-desc + .section-desc { margin-top: 1rem; }

/* === BOUTONS === */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--or); color: var(--brun);
  font-family: var(--font-sans); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  text-decoration: none; padding: 0.95rem 2.2rem; border-radius: 2px;
  border: none; cursor: pointer; transition: all 0.25s;
}
.btn-primary:hover { background: var(--or-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(192,135,74,0.35); }

.btn-dark {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--brun); color: var(--or-pale);
  font-family: var(--font-sans); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  text-decoration: none; padding: 0.95rem 2.2rem; border-radius: 2px;
  border: none; cursor: pointer; transition: all 0.25s;
}
.btn-dark:hover { background: var(--brun-mid); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.6rem;
  border: 1px solid rgba(192,135,74,0.45); color: var(--or-light);
  font-family: var(--font-sans); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  text-decoration: none; padding: 0.95rem 2.2rem; border-radius: 2px;
  background: transparent; cursor: pointer; transition: all 0.25s;
}
.btn-outline:hover { border-color: var(--or); color: var(--or); }

/* === GRILLE DE FEATURES === */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.feature-card {
  background: var(--blanc); border: 1px solid rgba(192,135,74,0.15);
  border-radius: 2px; padding: 2rem; transition: all 0.3s;
}
.feature-card:hover {
  border-color: var(--or); transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(58,31,13,0.09);
}
.feature-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.feature-title {
  font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600;
  color: var(--brun); margin-bottom: 0.6rem;
}
.feature-desc { font-size: 0.83rem; line-height: 1.75; color: var(--texte-light); }

/* === ÉTAPES DE PROCESSUS === */
.process-list { display: flex; flex-direction: column; margin-top: 2.5rem; }
.process-step {
  display: flex; gap: 2rem; align-items: flex-start;
  padding: 2rem 0; border-bottom: 1px solid rgba(192,135,74,0.1);
}
.process-step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-serif); font-size: 2.8rem; font-weight: 600;
  color: rgba(192,135,74,0.2); line-height: 1; flex-shrink: 0; width: 56px; text-align: center;
}
.step-content { flex: 1; }
.step-title { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; color: var(--brun); margin-bottom: 0.4rem; }
.step-desc { font-size: 0.85rem; line-height: 1.75; color: var(--texte-light); }

/* === BANDE CTA === */
.cta-band { background: var(--brun); padding: 5.5rem 5vw; text-align: center; }
.cta-band-inner { max-width: 620px; margin: 0 auto; }
.cta-band-label {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--or); margin-bottom: 1rem;
}
.cta-band-title {
  font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300; color: var(--beige); margin-bottom: 1rem; line-height: 1.2;
}
.cta-band-title strong { color: var(--or-light); font-weight: 600; }
.cta-band-desc {
  font-size: 0.92rem; color: rgba(232,216,196,0.6);
  max-width: 460px; margin: 0 auto 2.5rem; line-height: 1.85;
}
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* === DEUX COLONNES === */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

/* === GRILLE DE SERVICES (tuiles) === */
.services-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5px; background: rgba(192,135,74,0.15);
}
.service-tile {
  background: var(--blanc); padding: 2.5rem 2rem;
  text-decoration: none; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  transition: background 0.35s;
}
.service-tile:hover { background: var(--brun); }
.service-tile-num {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-family: var(--font-serif); font-size: 2.8rem; font-weight: 600;
  color: rgba(192,135,74,0.08); line-height: 1; transition: color 0.35s;
}
.service-tile:hover .service-tile-num { color: rgba(192,135,74,0.14); }
.service-tile-icon {
  width: 52px; height: 52px; background: var(--beige); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; font-size: 1.4rem;
  transition: background 0.35s; flex-shrink: 0;
}
.service-tile:hover .service-tile-icon { background: rgba(192,135,74,0.15); }
.service-tile-title {
  font-family: var(--font-serif); font-size: 1.2rem; font-weight: 600;
  color: var(--brun); margin-bottom: 0.8rem; transition: color 0.35s;
}
.service-tile:hover .service-tile-title { color: var(--beige); }
.service-tile-desc {
  font-size: 0.82rem; line-height: 1.75; color: var(--texte-light);
  flex: 1; transition: color 0.35s;
}
.service-tile:hover .service-tile-desc { color: rgba(232,216,196,0.6); }
.service-tile-cta {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--or); margin-top: 1.5rem;
  transition: color 0.35s;
}

/* === CARTES VALEURS === */
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.value-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(192,135,74,0.15);
  border-radius: 2px; padding: 1.8rem; transition: border-color 0.25s;
}
.value-card:hover { border-color: rgba(192,135,74,0.35); }
.value-card-icon { font-size: 1.6rem; margin-bottom: 1rem; }
.value-card-title {
  font-family: var(--font-serif); font-size: 1rem; font-weight: 600;
  color: var(--or-light); margin-bottom: 0.5rem;
}
.value-card-desc { font-size: 0.8rem; line-height: 1.65; color: rgba(232,216,196,0.55); }

/* === CONTACT === */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; align-items: start; padding: 7rem 5vw; max-width: 1300px; margin: 0 auto; }
.contact-info-sticky { position: sticky; top: 6rem; }
.contact-cards { display: flex; flex-direction: column; gap: 1rem; margin-top: 2.5rem; }
.contact-card {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.3rem 1.5rem; background: var(--beige);
  border-radius: 2px; border-left: 3px solid var(--or);
  transition: background 0.2s;
}
.contact-card:hover { background: var(--beige-dark); }
.contact-card-icon { font-size: 1.2rem; flex-shrink: 0; line-height: 1.4; }
.contact-card-label {
  font-size: 0.67rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--texte-light); margin-bottom: 0.25rem;
}
.contact-card-value { font-size: 0.9rem; color: var(--texte); font-weight: 500; }
.contact-card-value a { color: inherit; text-decoration: none; transition: color 0.2s; }
.contact-card-value a:hover { color: var(--or); }

.response-box {
  margin-top: 2rem; padding: 1.4rem 1.6rem;
  background: var(--brun); color: var(--or-pale);
  border-radius: 2px; font-size: 0.84rem; line-height: 1.7;
}
.response-box strong { color: var(--or-light); }

/* Formulaire */
.form-wrapper {
  background: var(--blanc); border: 1px solid rgba(192,135,74,0.15);
  border-radius: 4px; padding: 3rem;
  box-shadow: 0 20px 60px rgba(58,31,13,0.06);
}
.form-title {
  font-family: var(--font-serif); font-size: 2rem; font-weight: 300;
  color: var(--brun); margin-bottom: 0.4rem;
}
.form-subtitle { font-size: 0.88rem; color: var(--texte-light); margin-bottom: 2rem; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-label {
  display: block; font-size: 0.68rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--texte-mid);
  margin-bottom: 0.5rem; font-weight: 600;
}
.form-label .req { color: var(--or); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--beige-dark); border-radius: 2px;
  font-family: var(--font-sans); font-size: 0.9rem;
  color: var(--texte); background: var(--beige);
  transition: all 0.25s; outline: none; appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--or); background: var(--blanc);
  box-shadow: 0 0 0 3px rgba(192,135,74,0.1);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23c0874a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem;
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-check { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1.5rem; }
.form-check input[type="checkbox"] { margin-top: 3px; accent-color: var(--or); flex-shrink: 0; cursor: pointer; }
.form-check label { font-size: 0.82rem; color: var(--texte-light); line-height: 1.6; cursor: pointer; }
.form-check label a { color: var(--or); text-decoration: none; }
.btn-submit {
  width: 100%; padding: 1rem; background: var(--brun); color: var(--or-pale);
  font-family: var(--font-sans); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  border: none; border-radius: 2px; cursor: pointer;
  transition: all 0.25s; display: flex; align-items: center; justify-content: center; gap: 0.6rem;
}
.btn-submit:hover { background: var(--or); color: var(--brun); }

.form-success { display: none; text-align: center; padding: 3rem 1rem; }
.form-success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success-title {
  font-family: var(--font-serif); font-size: 1.8rem;
  color: var(--brun); margin-bottom: 0.5rem;
}
.form-success-desc { color: var(--texte-light); font-size: 0.9rem; line-height: 1.75; }
.form-success-desc a { color: var(--or); }

/* === PAGES LÉGALES === */
.legal-page { padding: 10rem 5vw 6rem; max-width: 860px; margin: 0 auto; }
.legal-title {
  font-family: var(--font-serif); font-size: 2.5rem; font-weight: 300;
  color: var(--brun); margin-bottom: 0.5rem;
}
.legal-meta {
  font-size: 0.78rem; color: var(--texte-light); letter-spacing: 0.1em;
  padding-bottom: 1.5rem; border-bottom: 1px solid var(--beige-dark); margin-bottom: 3rem;
}
.legal-page h2 { font-family: var(--font-serif); font-size: 1.35rem; color: var(--brun); margin: 2.5rem 0 0.8rem; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(192,135,74,0.15); }
.legal-page h3 { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 600; color: var(--brun); margin: 1.5rem 0 0.6rem; }
.legal-page p { font-size: 0.9rem; color: var(--texte-light); line-height: 1.85; margin-bottom: 1rem; }
.legal-page ul { font-size: 0.9rem; color: var(--texte-light); line-height: 1.85; padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-page ul li { margin-bottom: 0.4rem; }
.legal-page a { color: var(--or); }
.legal-page section { margin-bottom: 2.5rem; }
.legal-highlight {
  background: var(--beige); border-left: 3px solid var(--or);
  padding: 1rem 1.5rem; margin: 1rem 0; border-radius: 0 2px 2px 0;
}
.legal-highlight p { margin: 0; }
.legal-table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.5rem; font-size: 0.85rem; }
.legal-table th { background: var(--brun); color: var(--or-light); padding: 0.7rem 1rem; text-align: left; font-weight: 500; font-size: 0.78rem; letter-spacing: 0.08em; }
.legal-table td { padding: 0.7rem 1rem; border-bottom: 1px solid rgba(192,135,74,0.1); color: var(--texte-light); }
.legal-table tr:nth-child(even) td { background: var(--beige); }

/* === FOOTER === */
footer { background: #1a0c04; color: rgba(232,216,196,0.65); padding: 5rem 5vw 2.5rem; }
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 4rem; padding-bottom: 4rem; border-bottom: 1px solid rgba(192,135,74,0.12);
}
.footer-logo {
  font-family: var(--font-serif); font-size: 1.8rem; font-weight: 600;
  color: var(--beige); letter-spacing: 0.1em; margin-bottom: 0.25rem;
}
.footer-logo span { color: var(--or); }
.footer-tag1 { font-size: 0.67rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--or); margin-bottom: 0.2rem; }
.footer-tag2 { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(232,216,196,0.3); margin-bottom: 1.2rem; }
.footer-about { font-size: 0.82rem; line-height: 1.75; max-width: 280px; }
.footer-socials { display: flex; gap: 0.8rem; margin-top: 1.5rem; }
.social-link {
  width: 36px; height: 36px; border: 1px solid rgba(192,135,74,0.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--or-light); font-size: 0.82rem; text-decoration: none;
  font-style: normal; transition: all 0.2s;
}
.social-link:hover { background: var(--or); color: var(--brun); border-color: var(--or); }
.footer-col-title { font-size: 0.67rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--or); margin-bottom: 1.3rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a { font-size: 0.82rem; color: rgba(232,216,196,0.55); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--or-light); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.82rem; margin-bottom: 0.9rem; }
.footer-contact-item a { color: inherit; text-decoration: none; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--or-light); }
.footer-contact-icon { color: var(--or); flex-shrink: 0; line-height: 1.4; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.75rem; }
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a { font-size: 0.75rem; color: rgba(232,216,196,0.35); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--or-light); }

/* === ANIMATIONS === */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: none; }
.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .services-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 5vw; }
  .contact-info-sticky { position: static; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--blanc); padding: 2rem 5vw;
    gap: 0; z-index: 999; overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a { font-size: 0.9rem; padding: 1rem 0.5rem; border-bottom: 1px solid rgba(192,135,74,0.08); }
  .nav-links > li:last-child > a { border-bottom: none; }
  .dropdown-menu {
    position: static; box-shadow: none; border: none; border-radius: 0;
    background: var(--beige); padding: 0.4rem 0 0.4rem 1.5rem;
  }
  .dropdown-menu a { padding: 0.6rem 0.5rem; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .services-strip { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
}
@media (max-width: 600px) {
  .footer-legal { flex-wrap: wrap; gap: 1rem; }
}
