/* =====================================================================
   Luso Home — Feuille de style commune
   Conciergerie · Loire & Portugal
   ===================================================================== */

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

:root {
  --sand:        #F2EDE4;
  --sand-light:  #FAF7F2;
  --sand-dark:   #E8DFD0;
  --terra:       #C4714A;
  --terra-light: #D9956E;
  --terra-dark:  #9E5135;
  --ocean:       #1B3A52;
  --ocean-mid:   #2E5F82;
  --ocean-light: #A8C4D8;
  --sage:        #6B7F5E;
  --sage-light:  #B5C4A8;
  --gold:        #B8955A;
  --gold-light:  #D4B47A;
  --ink:         #1A1614;
  --ink-soft:    #3D3530;
  --white:       #FFFFFF;
  --ff-serif:    'Cormorant Garamond', Georgia, serif;
  --ff-sans:     'Jost', sans-serif;
  --nav-h:       72px;
  --transition:  0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--sand-light);
  color: var(--ink);
  font-family: var(--ff-sans);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── UTILITY ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 32px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}
/* On the home page the bar starts transparent and turns solid on scroll.
   Inner pages add the .nav-solid class to keep it solid from the start. */
nav.scrolled, nav.nav-solid {
  background: rgba(27, 58, 82, 0.97);
  box-shadow: 0 1px 24px rgba(0,0,0,0.18);
  backdrop-filter: blur(12px);
}
nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo svg { height: 48px; width: auto; }
@media (max-width: 768px) { .nav-logo svg { height: 42px; } }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--terra-light); }

.nav-right { display: flex; align-items: center; gap: 24px; }

.lang-switcher { display: flex; align-items: center; gap: 4px; }
.lang-btn {
  background: none;
  border: none;
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
}
.lang-btn:hover { color: rgba(255,255,255,0.9); }
.lang-btn.active {
  color: var(--terra-light);
  background: rgba(196,113,74,0.15);
}
.lang-sep { color: rgba(255,255,255,0.2); font-size: 10px; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--terra);
  color: white;
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 32px;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--terra-dark); transform: translateY(-1px); }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(27, 58, 82, 0.98);
  backdrop-filter: blur(12px);
  padding: 32px;
  flex-direction: column;
  gap: 24px;
  z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}
.mobile-lang {
  display: flex;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ── HERO ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ocean);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(46,95,130,0.6) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(107,127,94,0.25) 0%, transparent 60%),
    linear-gradient(160deg, #1B3A52 0%, #0f2233 55%, #1a2e1e 100%);
}
.hero-wave { position: absolute; bottom: -2px; left: 0; right: 0; }
/* display:block supprime l'espace de descente (gap inline) qui laissait
   apparaître une fine ligne du fond océan sous la vague. */
.hero-wave svg, .page-wave svg { display: block; width: 100%; }
.hero-content { position: relative; z-index: 2; padding-top: var(--nav-h); }
.hero-eyebrow {
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--terra-light);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.1;
  color: white;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.9s 0.5s forwards;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-tagline {
  font-family: var(--ff-serif);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 300;
  font-style: italic;
  color: var(--ocean-light);
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 0.7s forwards;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 0.9s forwards;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--terra);
  color: white;
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 48px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--terra-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(196,113,74,0.35);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 48px;
  transition: border-color var(--transition), color var(--transition);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.7); color: white; }
.btn-ocean {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--ocean);
  color: white;
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 48px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-ocean:hover {
  background: var(--ocean-mid);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(27,58,82,0.25);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s 1.4s forwards;
}
.hero-scroll-hint span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s 2s infinite;
}

/* ── SECTION COMMON ── */
section { padding: 96px 0; }
.section-label {
  font-family: var(--ff-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 300;
  color: var(--ocean);
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-lead {
  font-size: 17px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.8;
  max-width: 560px;
}
.gold-line { width: 48px; height: 1px; background: var(--gold); margin: 28px 0; }

/* ── SERVICES ── */
#services { background: var(--sand-light); }
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: white;
  border-radius: 20px;
  padding: 40px 32px;
  border: 1px solid var(--sand-dark);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(32px);
}
.service-card.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow var(--transition), border-color var(--transition);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--terra), var(--gold));
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(27,58,82,0.12);
  border-color: var(--sand-dark);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background var(--transition);
}
.service-card:hover .service-icon { background: rgba(196,113,74,0.1); }
.service-icon svg { width: 26px; height: 26px; }
.service-name {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ocean);
  margin-bottom: 12px;
  line-height: 1.2;
}
.service-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.7;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--terra);
  text-decoration: none;
  transition: gap var(--transition);
}
.service-link:hover { gap: 10px; }

/* ── TERRITORIES ── */
#territories { background: var(--ocean); position: relative; overflow: hidden; }
.territories-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 50%, rgba(46,95,130,0.5) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 10% 20%, rgba(107,127,94,0.2) 0%, transparent 60%);
}
.territories-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.territory-text .section-label { color: var(--terra-light); }
.territory-text .section-title { color: white; }
.territory-text .section-lead { color: var(--ocean-light); max-width: none; }
.territory-cards { display: flex; flex-direction: column; gap: 20px; }
.territory-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  transition: background var(--transition), border-color var(--transition);
  opacity: 0;
  transform: translateX(40px);
}
.territory-card.revealed {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.6s ease, transform 0.6s ease, background var(--transition);
}
.territory-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.22);
}
.territory-flag { font-size: 36px; line-height: 1; }
.territory-card-name {
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: 400;
  color: white;
  margin-bottom: 4px;
}
.territory-card-detail {
  font-size: 13px;
  font-weight: 300;
  color: var(--ocean-light);
  opacity: 0.75;
}

/* ── ABOUT ── */
#about { background: var(--sand); }
.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-arch { width: 100%; max-width: 380px; }
.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 120px;
  height: 120px;
  background: var(--terra);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  box-shadow: 0 8px 32px rgba(196,113,74,0.4);
}
.about-badge-num {
  font-family: var(--ff-serif);
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
}
.about-badge-text {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.85;
  line-height: 1.3;
  margin-top: 4px;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.value-item {
  padding: 20px 24px;
  background: white;
  border-radius: 14px;
  border-left: 3px solid var(--gold);
}
.value-name {
  font-family: var(--ff-serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--ocean);
  margin-bottom: 6px;
}
.value-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ── CTA ── */
#cta { background: var(--sand-light); padding: 112px 0; }
.cta-inner { text-align: center; max-width: 680px; margin: 0 auto; }
.cta-inner .section-label { text-align: center; margin-bottom: 20px; }
.cta-inner .section-title { text-align: center; margin-bottom: 16px; }
.cta-tagline {
  font-family: var(--ff-serif);
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 48px;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand-tagline {
  font-family: var(--ff-serif);
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  margin-top: 16px;
  line-height: 1.5;
}
.footer-col-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--terra-light); }
.footer-contact-item {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
  line-height: 1.5;
}
.footer-contact-item a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-contact-item a:hover { color: var(--terra-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-legal { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-domains { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-domains a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-domains a:hover { color: var(--terra-light); }
.footer-back {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  letter-spacing: 1px;
  transition: color var(--transition);
}
.footer-back:hover { color: var(--terra-light); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.1); }
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── INNER PAGE HEADER (contact / legal) ── */
.page-header {
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 64px;
  background: var(--ocean);
  position: relative;
  overflow: hidden;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 70% 50%, rgba(46,95,130,0.5) 0%, transparent 70%);
}
.page-header-content { position: relative; z-index: 2; }
.page-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--terra-light);
  margin-bottom: 16px;
}
.page-title {
  font-family: var(--ff-serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  color: white;
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-title em { font-style: italic; color: var(--gold-light); }
.page-subtitle {
  font-family: var(--ff-serif);
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: var(--ocean-light);
}
.page-wave { position: absolute; bottom: -2px; left: 0; right: 0; }

/* ── CONTACT LAYOUT ── */
.contact-section { padding: 80px 0 96px; }
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
.contact-info { position: sticky; top: calc(var(--nav-h) + 32px); }
.contact-lead {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 40px;
}
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  background: white;
  border: 1px solid var(--sand-dark);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-card-icon {
  width: 40px;
  height: 40px;
  background: var(--sand);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon svg { width: 18px; height: 18px; }
.contact-card-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 4px;
}
.contact-card-value { font-size: 14px; font-weight: 400; color: var(--ink); }
.contact-card-value a { color: var(--ocean); text-decoration: none; transition: color var(--transition); }
.contact-card-value a:hover { color: var(--terra); }
.languages-note {
  margin-top: 32px;
  padding: 16px 20px;
  background: rgba(184,149,90,0.1);
  border-radius: 12px;
  border-left: 3px solid var(--gold);
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ── FORM ── */
.contact-form-wrap {
  background: white;
  border-radius: 24px;
  padding: 48px;
  border: 1px solid var(--sand-dark);
  box-shadow: 0 4px 32px rgba(27,58,82,0.06);
}
.form-title {
  font-family: var(--ff-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--ocean);
  margin-bottom: 8px;
}
.form-subtitle { font-size: 14px; font-weight: 300; color: var(--ink-soft); margin-bottom: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group.full { grid-column: 1 / -1; }
label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
}
label span { color: var(--terra); margin-left: 2px; }
input, textarea, select {
  width: 100%;
  padding: 14px 18px;
  background: var(--sand-light);
  border: 1px solid var(--sand-dark);
  border-radius: 12px;
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
  appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--ink-soft); opacity: 0.4; }
input:focus, textarea:focus, select:focus {
  border-color: var(--ocean);
  background: white;
  box-shadow: 0 0 0 3px rgba(27,58,82,0.08);
}
textarea { resize: vertical; min-height: 140px; }
select {
  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='%233D3530' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
}
/* Honeypot anti-spam — hidden from users, catches bots */
.hp-field { position: absolute; left: -5000px; width: 1px; height: 1px; overflow: hidden; }
.checkbox-group { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 28px; }
.checkbox-group input[type="checkbox"] {
  /* Rétablir le rendu natif : la règle globale input{appearance:none}
     masquait la coche et neutralisait accent-color. */
  appearance: auto;
  -webkit-appearance: checkbox;
  width: 18px;
  height: 18px;
  padding: 0;
  flex-shrink: 0;
  margin-top: 2px;
  background: none;
  border: none;
  border-radius: 0;
  accent-color: var(--terra);
  cursor: pointer;
}
.checkbox-group label {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-soft);
  cursor: pointer;
}
.checkbox-group label a { color: var(--terra); }
.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 36px;
  background: var(--terra);
  color: white;
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 48px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.form-submit:hover {
  background: var(--terra-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(196,113,74,0.3);
}
.form-note {
  margin-top: 16px;
  font-size: 12px;
  font-weight: 300;
  color: var(--ink-soft);
  opacity: 0.6;
  text-align: center;
}
.form-error {
  display: none;
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(158,81,53,0.08);
  border: 1px solid rgba(158,81,53,0.25);
  border-radius: 10px;
  font-size: 13px;
  color: var(--terra-dark);
  text-align: center;
}
.form-error.show { display: block; }

/* ── SUCCESS STATE ── */
.form-success { display: none; text-align: center; padding: 48px 24px; }
.form-success.show { display: block; }
.success-icon {
  width: 72px;
  height: 72px;
  background: rgba(107,127,94,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.success-title {
  font-family: var(--ff-serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--ocean);
  margin-bottom: 12px;
}
.success-msg { font-size: 15px; font-weight: 300; color: var(--ink-soft); line-height: 1.7; }

/* ── LEGAL / PROSE PAGES ── */
.legal-section { padding: 64px 0 96px; }
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h2 {
  font-family: var(--ff-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--ocean);
  margin: 40px 0 12px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--terra);
  margin: 28px 0 8px;
}
.legal-content p,
.legal-content li {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-content ul { padding-left: 22px; margin-bottom: 12px; }
.legal-content a { color: var(--terra); }
.legal-content strong { font-weight: 600; color: var(--ink); }
.legal-updated {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--sand-dark);
  font-size: 13px;
  font-style: italic;
  color: var(--ink-soft);
  opacity: 0.7;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .territories-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-info { position: static; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-header { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  section { padding: 64px 0; }
  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .lang-sep:nth-child(4),
  .lang-sep:nth-child(4) + .lang-btn { display: none; }
}
