/* =====================================================================
   ARMOR HOME SERENITY — Feuille de style
   Palette : bleu nuit + or, fonds crème et granit.
   Approche « mobile d'abord » : styles de base = mobile,
   puis enrichissement via media queries.
   ===================================================================== */

/* ----------------------------------------------------------------------
   1. VARIABLES & RÉGLAGES GLOBAUX
   ---------------------------------------------------------------------- */
:root {
  /* Couleurs de marque */
  --navy:        #1A2C47;   /* bleu nuit profond (dominante) */
  --navy-deep:   #122036;   /* variante plus sombre (footer, dégradés) */
  --navy-soft:   #243a5c;   /* navy légèrement éclairci (survols) */
  --gold:        #C9A45C;   /* or (accents, filets, icônes) */
  --gold-light:  #DCC18B;   /* or clair (survols, dégradés) */
  --gold-deep:   #A8853F;   /* or profond */
  --cream:       #F5F1E8;   /* beige crème (fonds clairs) */
  --cream-dark:  #ECE4D3;   /* crème plus soutenu */
  --granite:     #6E7480;   /* gris granit */
  --granite-light:#9AA0AA;

  /* Texte */
  --ink:         #20242B;   /* texte principal sur fond clair */
  --ink-soft:    #4A5159;   /* texte secondaire */
  --on-dark:     #E9E5DB;   /* texte sur fond navy */
  --on-dark-soft:#B7BDC8;   /* texte secondaire sur fond navy */

  /* Typographie — deux familles seulement */
  --font-serif:  'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:   'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Mise en page */
  --container:   1180px;
  --radius:      14px;
  --radius-sm:   8px;
  --header-h:    78px;
  --shadow-sm:   0 6px 18px rgba(18, 32, 54, .08);
  --shadow-md:   0 16px 40px rgba(18, 32, 54, .14);
  --shadow-lg:   0 30px 70px rgba(18, 32, 54, .22);
  --ease:        cubic-bezier(.22, .61, .36, 1);
}

/* Réinitialisation légère */
*,
*::before,
*::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1.0625rem;       /* ~17px */
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: var(--gold-deep); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--gold); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.12;
  color: var(--navy);
  margin: 0 0 .5em;
  letter-spacing: .2px;
}

h2 { font-size: clamp(1.9rem, 4.6vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2.6vw, 1.7rem); }

p { margin: 0 0 1.1em; }

/* ----------------------------------------------------------------------
   2. UTILITAIRES
   ---------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 22px;
}

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-navy  { background: var(--navy); color: var(--on-dark); }
.section-cream { background: var(--cream-dark); }

/* Décalage du défilement vers les ancres pour ne pas passer sous le header fixe */
section[id] { scroll-margin-top: calc(var(--header-h) + 8px); }

.text-gold  { color: var(--gold); }
.text-cream { color: var(--cream); }
.muted       { color: var(--granite); font-weight: 400; }
.muted-light { color: var(--on-dark-soft); }

/* Surtitre (eyebrow) : petite étiquette dorée au-dessus des titres */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 .9em;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}
.eyebrow-gold { color: var(--gold); }
.eyebrow-gold::before { background: var(--gold); }

.section-head { max-width: 760px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-head .eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}
.section-sub { color: var(--ink-soft); font-size: 1.05rem; margin-top: .4em; }
.section-navy .section-sub { color: var(--on-dark-soft); }

.lead { font-size: 1.15rem; color: var(--ink-soft); }
.section-navy .lead { color: var(--on-dark); }

/* ----------------------------------------------------------------------
   3. BOUTONS
   ---------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--gold);
  --btn-fg: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .03em;
  line-height: 1;
  padding: 15px 28px;
  border: 1px solid transparent;
  border-radius: 50px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 3px; }

.btn-icon { width: 1.1em; height: 1.1em; fill: currentColor; }

/* Or plein */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(201, 164, 92, .32);
}
.btn-gold:hover { box-shadow: 0 16px 32px rgba(201, 164, 92, .42); color: var(--navy-deep); }

/* Navy plein */
.btn-navy { background: var(--navy); color: var(--cream); }
.btn-navy:hover { background: var(--navy-soft); color: #fff; box-shadow: var(--shadow-md); }

/* Contour clair (sur fond sombre) */
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(233, 229, 219, .45);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,164,92,.08); }

.btn-lg { padding: 17px 34px; font-size: 1rem; }
.btn-block { display: flex; width: 100%; }

/* ----------------------------------------------------------------------
   4. HEADER
   ---------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(201, 164, 92, .18);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled { box-shadow: 0 8px 30px rgba(0,0,0,.28); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 16px;
}

.brand { display: flex; align-items: center; gap: 12px; color: var(--cream); }
/* Nouveau logo fond transparent : pas de border-radius nécessaire */
.brand-logo { height: 48px; width: auto; }
.brand-name { display: flex; flex-direction: column; line-height: 1; }
.brand-name-top {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.28rem;
  letter-spacing: .18em;
  color: var(--cream);
}
.brand-name-bottom {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .62rem;
  letter-spacing: .34em;
  color: var(--gold);
  margin-top: 3px;
}

.main-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.main-nav > a {
  color: var(--on-dark);
  font-weight: 600;
  font-size: .92rem;
  padding: 10px 14px;
  border-radius: 6px;
  position: relative;
}
.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.main-nav > a:not(.nav-cta):hover { color: var(--gold-light); }
.main-nav > a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-cta { margin-left: 10px; padding: 12px 22px; }

/* Bouton hamburger (mobile) */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(201,164,92,.4);
  border-radius: 10px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  margin-inline: auto;
  background: var(--gold);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Sélecteur de langue (drapeaux FR / EN) — toujours visible */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  margin-left: 14px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(201, 164, 92, .3);
  border-radius: 50px;
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  border: 0;
  border-radius: 50px;
  background: transparent;
  color: var(--on-dark-soft);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.lang-btn .flag {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .12);
  flex: none;
}
.lang-btn:hover { color: var(--cream); }
.lang-btn.is-active {
  background: var(--gold);
  color: var(--navy);
}
.lang-btn:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 2px; }

/* ----------------------------------------------------------------------
   5. HERO
   ---------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 90px 0 110px;
  /* Photo d'ambiance côtière + couleur navy de repli */
  background-color: var(--navy);
  background-image: url("../images/saint-quay-portrieux.jpg");
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  color: var(--cream);
  isolation: isolate;
}
/* Voile dégradé navy pour la lisibilité et masquer la faible résolution */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(18,32,54,.55) 0%, rgba(18,32,54,.42) 35%, rgba(18,32,54,.86) 100%),
    radial-gradient(120% 90% at 15% 30%, rgba(26,44,71,.30), rgba(18,32,54,.78));
}
.hero-content { max-width: 880px; }

.hero-eyebrow {
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2em;
}
.hero-title {
  font-size: clamp(2.3rem, 6vw, 4.4rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.08;
  margin-bottom: .35em;
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.hero-slogan {
  /* Même famille serif que le titre, droit et léger — pas d'italique, pas de script */
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  color: var(--gold-light);
  line-height: 1.45;
  margin: .3em 0 .85em;
  text-shadow: 0 1px 12px rgba(0,0,0,.3);
  letter-spacing: .03em;
}
.hero-subtitle {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--on-dark);
  max-width: 620px;
  margin-bottom: 2em;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Indicateur de défilement */
.scroll-cue {
  position: absolute;
  left: 50%; bottom: 26px;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(233,229,219,.5);
  border-radius: 14px;
}
.scroll-cue span {
  position: absolute;
  left: 50%; top: 8px;
  width: 4px; height: 8px;
  margin-left: -2px;
  background: var(--gold-light);
  border-radius: 2px;
  animation: scrollCue 1.8s var(--ease) infinite;
}
@keyframes scrollCue {
  0% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  80% { opacity: 0; transform: translateY(14px); }
  100% { opacity: 0; }
}

/* ----------------------------------------------------------------------
   6. QUI SUIS-JE
   ---------------------------------------------------------------------- */
.about-grid { display: grid; gap: clamp(36px, 5vw, 64px); align-items: center; }

.about-photo { position: relative; max-width: 440px; margin: 0 auto; }
.about-photo img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
/* Filet doré décoratif derrière la photo */
.about-photo::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}
/* Pastille supprimée — styles conservés commentés si besoin de réactivation */
/* .about-photo-badge { … } */

.about-text .lead { margin-bottom: 1.1em; }

/* ----------------------------------------------------------------------
   7. CARTES (engagements & atouts) — grille de 3
   ---------------------------------------------------------------------- */
.cards-3 { display: grid; gap: 24px; }

.pillar, .reason {
  background: var(--cream);
  border: 1px solid rgba(110,116,128,.16);
  border-radius: var(--radius);
  padding: 38px 30px;
  text-align: center;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.pillar h3, .reason h3 { color: var(--navy); margin-bottom: .35em; }
.pillar p, .reason p { color: var(--ink-soft); margin: 0; }
.pillar:hover, .reason:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

/* Sur fond navy (engagements) */
.section-navy .pillar {
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border-color: rgba(201,164,92,.22);
}
.section-navy .pillar h3 { color: var(--cream); }
.section-navy .pillar p { color: var(--on-dark-soft); }
.section-navy .pillar:hover { border-color: var(--gold); background: rgba(201,164,92,.08); }

/* Icônes (SVG en trait) */
.pillar-icon, .reason-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px; height: 78px;
  margin-bottom: 22px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: rgba(201,164,92,.08);
}
.pillar-icon svg, .reason-icon svg {
  width: 38px; height: 38px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pillar:hover .pillar-icon, .reason:hover .reason-icon { background: var(--gold); }
.pillar:hover .pillar-icon svg, .reason:hover .reason-icon svg { stroke: var(--navy); }
.section-navy .pillar:hover .pillar-icon svg { stroke: var(--navy); }

/* ----------------------------------------------------------------------
   8. FORMULES (tarifs)
   ---------------------------------------------------------------------- */
.pricing-grid { display: grid; gap: 26px; align-items: stretch; }

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(110,116,128,.18);
  border-radius: 18px;
  padding: 40px 30px 34px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.plan:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }

.plan-topper { display: flex; justify-content: center; margin-bottom: 16px; }
.plan-medal {
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: 50%;
  background: rgba(110,116,128,.10);
  border: 1px solid var(--granite-light);
}
.plan-medal svg { width: 30px; height: 30px; fill: none; stroke: var(--granite); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.plan-name { text-align: center; color: var(--navy); margin-bottom: .15em; }
.plan-tagline { text-align: center; color: var(--ink-soft); font-style: italic; font-family: var(--font-serif); font-size: 1.15rem; margin-bottom: 1.1em; }

.plan-price { text-align: center; margin: 0 0 .1em; display: flex; align-items: baseline; justify-content: center; gap: .35em; }
.plan-amount { font-family: var(--font-serif); font-size: 2.9rem; font-weight: 700; color: var(--navy); line-height: 1; }
.plan-period { font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--granite); }
.plan-price-day { text-align: center; font-size: .9rem; color: var(--granite); margin-bottom: 1.6em; }

.plan-features { list-style: none; margin: 0 0 28px; padding: 0; flex: 1; }
.plan-features li {
  position: relative;
  padding: 11px 0 11px 30px;
  border-top: 1px solid rgba(110,116,128,.14);
  font-size: .98rem;
  color: var(--ink);
  line-height: 1.45;
}
.plan-features li::before {
  content: "";
  position: absolute;
  left: 0; top: 16px;
  width: 16px; height: 16px;
  background:
    no-repeat center/contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A45C' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4 10-11'/%3E%3C/svg%3E");
}
.plan-features .muted { font-size: .86rem; }

/* Carte mise en avant : Pack Sérénité */
.plan-featured {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  border: 1.5px solid var(--gold);
  box-shadow: var(--shadow-lg);
}
.plan-featured .plan-name { color: #fff; }
.plan-featured .plan-tagline { color: var(--gold-light); }
.plan-featured .plan-amount { color: var(--gold); }
.plan-featured .plan-period,
.plan-featured .plan-price-day { color: var(--on-dark-soft); }
.plan-featured .plan-features li { color: var(--on-dark); border-top-color: rgba(201,164,92,.22); }
.plan-featured .plan-features .muted { color: var(--on-dark-soft); }
.plan-flag {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(201,164,92,.4);
  white-space: nowrap;
}

/* Triskèle (motif breton, en pseudo-élément) */
.plan-triskele {
  display: inline-block;
  width: 58px; height: 58px;
  border-radius: 50%;
  background:
    no-repeat center/30px
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%236E7480' stroke-width='6' stroke-linecap='round'%3E%3Cg%3E%3Cpath d='M50 50 q0 -22 -18 -24 q-22 -2 -22 20 q0 16 16 16'/%3E%3C/g%3E%3Cg transform='rotate(120 50 50)'%3E%3Cpath d='M50 50 q0 -22 -18 -24 q-22 -2 -22 20 q0 16 16 16'/%3E%3C/g%3E%3Cg transform='rotate(240 50 50)'%3E%3Cpath d='M50 50 q0 -22 -18 -24 q-22 -2 -22 20 q0 16 16 16'/%3E%3C/g%3E%3C/svg%3E");
  background-color: rgba(110,116,128,.10);
  border: 1px solid var(--granite-light);
}
.plan-triskele-gold {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%23C9A45C' stroke-width='6' stroke-linecap='round'%3E%3Cg%3E%3Cpath d='M50 50 q0 -22 -18 -24 q-22 -2 -22 20 q0 16 16 16'/%3E%3C/g%3E%3Cg transform='rotate(120 50 50)'%3E%3Cpath d='M50 50 q0 -22 -18 -24 q-22 -2 -22 20 q0 16 16 16'/%3E%3C/g%3E%3Cg transform='rotate(240 50 50)'%3E%3Cpath d='M50 50 q0 -22 -18 -24 q-22 -2 -22 20 q0 16 16 16'/%3E%3C/g%3E%3C/svg%3E");
  background-color: rgba(201,164,92,.12);
  border-color: var(--gold);
}

/* Conditions communes */
.plan-conditions {
  list-style: none;
  margin: clamp(36px, 5vw, 54px) auto 0;
  padding: 0;
  max-width: 880px;
  display: grid;
  gap: 14px;
}
.plan-conditions li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 1rem;
}
.plan-conditions .check {
  flex: none;
  width: 22px; height: 22px;
  margin-top: 2px;
  fill: none; stroke: var(--gold-deep); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}

/* ----------------------------------------------------------------------
   9. AVANTAGE FISCAL
   ---------------------------------------------------------------------- */
.tax-section { background: var(--navy); color: var(--on-dark); }
.tax-card {
  display: grid;
  gap: 30px;
  align-items: center;
  background: linear-gradient(135deg, rgba(201,164,92,.14), rgba(201,164,92,.04));
  border: 1px solid rgba(201,164,92,.35);
  border-radius: 20px;
  padding: clamp(30px, 5vw, 52px);
}
.tax-badge { display: flex; justify-content: center; }
.tax-percent {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(3.6rem, 9vw, 5.4rem);
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 4px 30px rgba(201,164,92,.3);
}
.tax-percent-sign { font-size: .5em; margin-left: .05em; }
.tax-body h2 { color: var(--cream); }
.tax-body p { color: var(--on-dark); margin: 0; }
.tax-body strong { color: var(--gold-light); }

/* ----------------------------------------------------------------------
   10. CITATION DE CLÔTURE
   ---------------------------------------------------------------------- */
.quote-band {
  position: relative;
  background:
    linear-gradient(rgba(18,32,54,.9), rgba(18,32,54,.94)),
    url("../images/saint-quay-portrieux.jpg") center / cover no-repeat;
  color: var(--cream);
  text-align: center;
  padding: clamp(60px, 9vw, 110px) 0;
}
.quote-mark {
  display: block;
  font-family: var(--font-serif);
  font-size: 6rem;
  line-height: .4;
  color: var(--gold);
  margin-bottom: .2em;
  opacity: .8;
}
.quote-band blockquote {
  margin: 0 auto;
  max-width: 820px;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 3.6vw, 2.5rem);
  line-height: 1.32;
  color: #fff;
}
.quote-author {
  margin-top: 1.4em;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .82rem;
  color: var(--gold-light);
}

/* ----------------------------------------------------------------------
   11. ZONE D'INTERVENTION
   ---------------------------------------------------------------------- */
.zone-grid { display: grid; gap: clamp(34px, 5vw, 56px); align-items: center; }
.zone-towns {
  list-style: none;
  margin: 1.4em 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 18px;
}
.zone-towns li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-weight: 600;
}
.zone-towns li::before {
  content: "";
  position: absolute;
  left: 0; top: .55em;
  width: 9px; height: 9px;
  background: var(--gold);
  border-radius: 50%;
}
.zone-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201,164,92,.4);
  background: var(--cream-dark);
}
.zone-map iframe { display: block; width: 100%; height: 380px; border: 0; filter: saturate(.9); }

/* ----------------------------------------------------------------------
   12. TÉMOIGNAGES — carousel horizontal (une ligne, défilement + boutons)
   ---------------------------------------------------------------------- */

/* Enveloppe : boutons + piste côte à côte */
.testimonials-slider {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Piste défilante */
.testimonials-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  /* Scrollbar fine dorée */
  scrollbar-width: thin;
  scrollbar-color: var(--gold) rgba(201,164,92,.18);
  -webkit-overflow-scrolling: touch;
  /* Léger padding vertical pour que box-shadow des cartes ne soit pas rogné */
  padding: 6px 2px 18px;
  flex: 1;
  min-width: 0; /* évite le débordement flex */
}
.testimonials-track::-webkit-scrollbar          { height: 3px; }
.testimonials-track::-webkit-scrollbar-track    { background: rgba(201,164,92,.15); border-radius: 2px; }
.testimonials-track::-webkit-scrollbar-thumb    { background: var(--gold); border-radius: 2px; }

/* Carte individuelle */
.testimonial {
  flex: none;
  /* Mobile : ~85 % de l'écran → fort signal de défilement
     Tablette : ~44 vw → 2 cartes visibles
     Desktop : fixe 330 px → 3 cartes visibles sur 1180 px de conteneur */
  width: min(85vw, 330px);
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid rgba(110,116,128,.16);
  border-radius: var(--radius);
  padding: 30px 26px 26px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.testimonial:hover { box-shadow: var(--shadow-md); border-color: var(--gold); }

/* Guillemet décoratif SVG */
.testimonial-quote {
  width: 26px; height: 19px;
  fill: var(--gold);
  opacity: .45;
  margin-bottom: 14px;
  flex: none;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  line-height: 1.68;
  color: var(--ink);
  flex: 1;
  margin: 0 0 1em;
}

.testimonial-author {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: .9rem;
  color: var(--navy);
  margin: 0;
  letter-spacing: .02em;
}
.testimonial-city { font-weight: 400; color: var(--granite); }

/* Boutons ← → */
.tslider-btn {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(110,116,128,.25);
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: background .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease), box-shadow .22s var(--ease);
}
.tslider-btn svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.tslider-btn:hover:not(:disabled) { background: var(--navy); color: #fff; border-color: var(--navy); box-shadow: var(--shadow-md); }
.tslider-btn:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 2px; }
.tslider-btn:disabled { opacity: .28; cursor: default; }

/* ----------------------------------------------------------------------
   13. FORMULAIRE DE CONTACT
   ---------------------------------------------------------------------- */
.contact-grid { display: grid; gap: clamp(36px, 5vw, 60px); align-items: start; }

.contact-intro p { color: var(--on-dark); }
.contact-direct { list-style: none; margin: 1.8em 0 0; padding: 0; display: grid; gap: 14px; }
.contact-direct li { display: flex; align-items: center; gap: 14px; font-weight: 600; }
.contact-direct svg { width: 22px; height: 22px; fill: none; stroke: var(--gold); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.contact-direct a { color: var(--cream); }
.contact-direct a:hover { color: var(--gold-light); }

.contact-form {
  background: var(--cream);
  border-radius: 20px;
  padding: clamp(26px, 4vw, 40px);
  box-shadow: var(--shadow-lg);
}
.form-row { display: grid; gap: 18px; }
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--navy);
  margin-bottom: 7px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(110,116,128,.34);
  border-radius: 10px;
  padding: 13px 15px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.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,164,92,.22);
}

/* Pot de miel : caché aux humains, visible des robots */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: .9rem;
  color: var(--ink-soft);
  margin: 4px 0 22px;
  line-height: 1.5;
}
.form-consent input { flex: none; width: 19px; height: 19px; margin-top: 2px; accent-color: var(--gold-deep); }

.form-status { margin: 16px 0 0; font-weight: 600; text-align: center; }
.form-status.is-success { color: #2f7d46; }
.form-status.is-error   { color: #b5402f; }

/* ----------------------------------------------------------------------
   14. FOOTER
   ---------------------------------------------------------------------- */
.site-footer { background: var(--navy-deep); color: var(--on-dark-soft); padding-top: clamp(50px, 7vw, 80px); }
.footer-grid { display: grid; gap: 40px; padding-bottom: 50px; }
/* Fond transparent : pas de border-radius */
.footer-logo { height: 64px; width: auto; margin-bottom: 16px; }
.footer-name { font-family: var(--font-serif); font-weight: 700; letter-spacing: .2em; color: var(--cream); font-size: 1.2rem; margin: 0 0 .4em; }
.footer-tagline { font-family: var(--font-serif); font-style: italic; font-size: 1.05rem; color: var(--gold-light); margin: 0; }

.footer-col h4 {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.1em;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { color: var(--on-dark); }
.footer-col a:hover { color: var(--gold-light); }
.placeholder { color: var(--granite-light); font-style: italic; }
.placeholder-link { color: var(--on-dark); border-bottom: 1px dashed rgba(183,189,200,.5); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; }
.footer-bottom p { margin: 0; font-size: .85rem; color: var(--granite-light); text-align: center; }

/* ----------------------------------------------------------------------
   15. BOUTON D'APPEL FLOTTANT (mobile)
   ---------------------------------------------------------------------- */
.floating-call {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 90;
  width: 56px; height: 56px;
  display: none;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(201,164,92,.5);
}
.floating-call svg { width: 26px; height: 26px; fill: none; stroke: var(--navy); stroke-width: 1.8; }

/* ----------------------------------------------------------------------
   16. ANIMATIONS AU DÉFILEMENT
   ---------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ----------------------------------------------------------------------
   17. RESPONSIVE — tablette puis ordinateur
   ---------------------------------------------------------------------- */

/* Petits écrans : bouton d'appel flottant visible, retours à la ligne masqués */
/* Très petits écrans : on garde uniquement les drapeaux (sans FR/EN) */
@media (max-width: 430px) {
  .lang-switch { margin-left: 8px; }
  .lang-btn { padding: 7px 9px; }
  .lang-btn span { display: none; }
  .brand-name-bottom { display: none; }
}

@media (max-width: 720px) {
  .floating-call { display: flex; }
  .d-none-mobile { display: none; }
}

/* Tablette (≥ 720px) */
@media (min-width: 720px) {
  .cards-3 { grid-template-columns: repeat(3, 1fr); }
  /* Carousel testimonials : les cartes s'élargissent un peu sur tablette */
  .testimonial { width: min(44vw, 330px); }
  .form-row { grid-template-columns: 1fr 1fr; }
  .zone-towns { grid-template-columns: repeat(3, 1fr); }
  .tax-card { grid-template-columns: auto 1fr; gap: 44px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
}

/* Ordinateur (≥ 920px) */
@media (min-width: 920px) {
  .about-grid { grid-template-columns: 0.9fr 1.1fr; }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .plan-featured { transform: translateY(-14px); }
  .plan-featured:hover { transform: translateY(-20px); }
  .zone-grid { grid-template-columns: 1fr 1.1fr; }
  .contact-grid { grid-template-columns: 0.85fr 1.15fr; }
  .zone-map iframe { height: 440px; }

  /* Carousel testimonials desktop : cartes à 330 px → 3 visibles + amorce de la 4ᵉ */
  .testimonial { width: 330px; }
}

/* Bascule du menu mobile (≤ 980px) */
@media (max-width: 980px) {
  .menu-toggle { display: flex; }
  /* Sur mobile, la nav passe en panneau déroulant : la langue se place
     à droite, juste avant le bouton hamburger. */
  .lang-switch { margin-left: auto; }
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy-deep);
    border-bottom: 1px solid rgba(201,164,92,.2);
    padding: 12px 22px 22px;
    box-shadow: 0 20px 40px rgba(0,0,0,.35);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform .3s var(--ease), opacity .3s var(--ease), visibility .3s;
  }
  .main-nav.open { transform: none; opacity: 1; visibility: visible; }
  .main-nav > a { padding: 14px 6px; border-bottom: 1px solid rgba(255,255,255,.06); }
  .main-nav > a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin: 14px 0 0; }
}

/* ----------------------------------------------------------------------
   18. ACCESSIBILITÉ — préférence « animations réduites »
   ---------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-cue span { animation: none; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
