/* ═══════════════════════════════════════════
   AORA CONCIERGERIE : Design System
   Blanc · Sable · Terracotta (couleurs du logo)
   Structure et typographies alignées sur Maison Escale
═══════════════════════════════════════════ */

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

/* ── TOKENS ── */
:root {
  --fond:         #F8F6F3;
  --fond-card:    #EFEBE4;
  --blanc:        #FFFFFF;
  --gris-clair:   #E9E4DD;
  --gris-moyen:   #B3AAA0;
  --tc:           #B0654A;   /* terracotta du logo */
  --tc-light:     #D39A85;
  --tc-pale:      #F7EDE8;
  --tc-dark:      #8E4E37;
  --charcoal:     #2B2724;
  --txt:          #3A3632;
  --txt-mid:      #625E59;
  --txt-light:    #928D88;
  --bord:         #DED8D1;
  --vert-check:   #6A9B7E;
}

/* ── BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  overflow-x: hidden;
  background: var(--fond);
  color: var(--txt);
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── TYPOGRAPHIE ── */
h1, h2, h3, .serif { font-family: 'Playfair Display', Georgia, serif; }
h1 { font-size: clamp(38px, 6vw, 68px); font-weight: 300; line-height: 1.1; letter-spacing: -0.5px; }
h2 { font-size: clamp(28px, 3.5vw, 48px); font-weight: 600; line-height: 1.15; }
h3 { font-size: clamp(19px, 2.2vw, 26px); font-weight: 600; line-height: 1.3; }
p  { font-size: 15px; line-height: 1.8; color: var(--txt-mid); }

/* ── UTILITAIRES ── */
.ao-eyebrow {
  display: block; font-family: 'Poppins', sans-serif;
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--tc); margin-bottom: 14px;
}
.ao-divider {
  width: 36px; height: 1.5px; background: var(--tc);
  transition: transform 0.7s cubic-bezier(.22,1,.36,1);
  transform-origin: left; transform: scaleX(0);
}
.ao-divider.center { margin: 0 auto; transform-origin: center; }
.ao-divider.in { transform: scaleX(1); }

.container        { max-width: 1060px; margin: 0 auto; padding: 0 48px; }
.container-narrow { max-width: 720px;  margin: 0 auto; padding: 0 48px; }

/* ── LOGO ── */
.ao-logo { display: flex; align-items: center; gap: 12px; }
.ao-logo img { height: 42px; width: 42px; border-radius: 50%; object-fit: cover; }
.ao-logo-text { display: flex; flex-direction: column; line-height: 1; }
.ao-logo-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px; font-weight: 600; letter-spacing: 3px;
  color: var(--charcoal); text-transform: uppercase;
}
.ao-logo-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 9.5px; font-weight: 500; letter-spacing: 4px;
  color: var(--txt-light); text-transform: uppercase;
  margin-top: 4px;
}

/* ── BOUTONS ── */
.btn {
  display: inline-block; font-family: 'Poppins', sans-serif;
  font-size: 12.5px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; border-radius: 3px;
  padding: 15px 32px; cursor: pointer; border: none;
  transition: background 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative; overflow: hidden;
}
.btn-dark { background: var(--charcoal); color: var(--blanc); }
.btn-dark:hover { background: var(--txt); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(43,39,36,0.2); }
.btn-tc { background: var(--tc); color: var(--blanc); }
.btn-tc:hover { background: var(--tc-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(176,101,74,0.35); }
.btn-outline { background: transparent; color: var(--charcoal); border: 1.5px solid var(--charcoal); }
.btn-outline:hover { background: var(--charcoal); color: var(--blanc); transform: translateY(-1px); }
.btn-outline-tc { background: transparent; color: var(--tc-dark); border: 1.5px solid var(--tc); }
.btn-outline-tc:hover { background: var(--tc); color: var(--blanc); }
.btn-blanc { background: var(--blanc); color: var(--charcoal); }
.btn-blanc:hover { background: var(--tc-pale); }
.btn-outline-blanc { background: transparent; color: rgba(255,255,255,0.75); border: 1.5px solid rgba(255,255,255,0.25); }
.btn-outline-blanc:hover { background: rgba(255,255,255,0.1); color: var(--blanc); }

@keyframes ao-ripple { to { transform: scale(4); opacity: 0; } }

.btn-tel {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 600;
  color: var(--tc-dark); letter-spacing: 0.4px; white-space: nowrap;
  transition: color 0.2s;
}
.btn-tel:hover { color: var(--tc); }
.btn-tel svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ── NAV ── */
.ao-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: 82px; display: flex; align-items: center;
  background: rgba(248,246,243,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
  animation: ao-navIn 0.5s cubic-bezier(.22,1,.36,1) both;
}
.ao-nav.scrolled { border-color: var(--bord); box-shadow: 0 2px 20px rgba(43,39,36,0.05); }
.ao-nav-inner {
  width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 44px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.ao-nav-links { display: flex; align-items: center; gap: 30px; list-style: none; flex-wrap: nowrap; }
.ao-nav-links a {
  font-family: 'Poppins', sans-serif; font-size: 13.5px; font-weight: 400;
  color: var(--txt-mid); letter-spacing: 0.2px; white-space: nowrap;
  position: relative; transition: color 0.2s; padding: 6px 0;
}
.ao-nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--tc);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.28s ease;
}
.ao-nav-links a:hover, .ao-nav-links a.active { color: var(--charcoal); }
.ao-nav-links a:hover::after, .ao-nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.ao-nav-cta-wrap { display: flex; align-items: center; gap: 26px; flex-shrink: 0; }
.ao-nav-cta-wrap .btn { padding: 13px 24px; font-size: 11.5px; letter-spacing: 1.2px; line-height: 1.15; white-space: nowrap; }
.ao-logo { flex-shrink: 0; }

.ao-burger {
  display: none; flex-direction: column; gap: 5px;
  width: 40px; height: 40px; justify-content: center; align-items: center;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.ao-burger span {
  display: block; width: 22px; height: 1.5px; background: var(--charcoal); border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.ao-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ao-burger.open span:nth-child(2) { opacity: 0; }
.ao-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.ao-mobile-nav {
  display: none; position: fixed; top: 82px; left: 0; right: 0; bottom: 0;
  background: var(--fond); z-index: 290; padding: 40px 48px;
  opacity: 0; transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  overflow-y: auto;
}
.ao-mobile-nav.open { display: block; opacity: 1; transform: none; }
.ao-mobile-nav ul { list-style: none; }
.ao-mobile-nav ul li { border-bottom: 1px solid var(--bord); }
.ao-mobile-nav ul a {
  display: block; padding: 18px 0;
  font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 300;
  color: var(--charcoal);
}
.ao-mobile-cta { display: block; margin-top: 32px; text-align: center; }
.ao-mobile-tel {
  display: block; text-align: center; margin-top: 16px;
  font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600;
  color: var(--tc-dark); letter-spacing: 1px;
}

/* ── ANIMATIONS ── */
.sa { opacity: 0; will-change: opacity, transform; transition: opacity 0.85s cubic-bezier(.22,1,.36,1), transform 0.85s cubic-bezier(.22,1,.36,1); }
.sa-up    { transform: translateY(38px); }
.sa-left  { transform: translateX(-40px); }
.sa-right { transform: translateX(40px); }
.sa.in    { opacity: 1 !important; transform: none !important; }

@keyframes ao-fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:none; } }
@keyframes ao-fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes ao-navIn  { from { opacity:0; transform:translateY(-100%); } to { opacity:1; transform:none; } }
@keyframes ao-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(176,101,74,0.4); }
  55%     { box-shadow: 0 0 0 14px rgba(176,101,74,0); }
}
.btn-tc { animation: ao-pulse 4s ease-in-out 3s infinite; }
.btn-tc:hover { animation: none; }

/* ── HERO ── */
.ao-hero {
  min-height: 92vh; padding-top: 82px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.ao-hero-inner { position: relative; z-index: 1; padding: 56px 48px; max-width: 1060px; margin: 0 auto; width: 100%; }
.ao-hero h1 { color: var(--charcoal); max-width: 760px; margin-bottom: 22px; }
.ao-hero h1 em { font-style: italic; color: var(--tc); }
.ao-hero-sub { font-size: 17px; max-width: 560px; margin-bottom: 36px; color: var(--txt-mid); }
.ao-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.ao-hero-deco {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 40%; background: var(--tc-pale);
  clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
  animation: ao-fadeIn 1.2s ease 0.2s both;
}
.ao-hero-deco-inner { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.ao-hero-deco-key { width: clamp(90px, 13vw, 165px); opacity: 0.18; }
.ao-hero-trust {
  display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 34px;
  font-family: 'Poppins', sans-serif; font-size: 11.5px; font-weight: 500;
  letter-spacing: 1.6px; text-transform: uppercase; color: var(--txt-light);
}
.ao-hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.ao-hero-trust span::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--tc); }

.ao-hero .ao-eyebrow { animation: ao-fadeUp 0.6s cubic-bezier(.22,1,.36,1) 0.1s both; }
.ao-hero h1          { animation: ao-fadeUp 0.95s cubic-bezier(.22,1,.36,1) 0.22s both; }
.ao-hero-sub         { animation: ao-fadeUp 0.75s cubic-bezier(.22,1,.36,1) 0.42s both; }
.ao-hero-btns        { animation: ao-fadeUp 0.7s cubic-bezier(.22,1,.36,1) 0.58s both; }
.ao-hero-trust       { animation: ao-fadeUp 0.7s cubic-bezier(.22,1,.36,1) 0.7s both; }

/* Hero avec photo de fond */
.ao-hero--photo { background: var(--charcoal); }
.ao-hero-photo {
  position: absolute; inset: 0; z-index: 0;
  background: url('quimper-cathedrale.jpg') center 42% / cover no-repeat;
  animation: ao-fadeIn 1.4s ease both;
}
.ao-hero-voile {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(100deg,
      rgba(248,246,243,0.93) 0%,
      rgba(248,246,243,0.82) 34%,
      rgba(248,246,243,0.46) 54%,
      rgba(248,246,243,0.12) 74%,
      rgba(43,39,36,0.10) 100%),
    linear-gradient(180deg, rgba(248,246,243,0.82) 0%, rgba(248,246,243,0) 20%);
}
.ao-hero--photo .ao-hero-inner { max-width: 1180px; }
.ao-hero--photo .ao-hero-sub { max-width: 520px; }
.ao-hero--photo .ao-hero-trust { max-width: 620px; }
.ao-hero--photo h1,
.ao-hero--photo .ao-hero-sub { text-shadow: 0 1px 22px rgba(248,246,243,0.85); }
.ao-hero--photo .ao-hero-trust span { color: var(--txt); font-weight: 500; }

/* ── PAGE HERO ── */
.page-hero {
  padding: 148px 48px 84px; text-align: center;
  background: var(--fond-card); position: relative; overflow: hidden;
}
.page-hero-key {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -46%);
  width: min(430px, 62vw); opacity: 0.05; pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .ao-eyebrow { color: var(--tc); }
.page-hero h1 { color: var(--charcoal); margin-bottom: 16px; }
.page-hero h1 em { font-style: italic; color: var(--tc); }
.page-hero .lead { color: var(--txt-mid); max-width: 560px; margin: 0 auto; font-size: 16.5px; }
.page-hero-dark { background: var(--charcoal); }
.page-hero-dark::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(176,101,74,0.05) 60px, rgba(176,101,74,0.05) 120px);
}
.page-hero-dark .ao-eyebrow { color: var(--tc-light); }
.page-hero-dark h1 { color: var(--blanc); }
.page-hero-dark h1 em { color: var(--tc-light); }
.page-hero-dark .lead { color: rgba(255,255,255,0.55); }

/* ── SECTIONS ── */
section { position: relative; }
.section-pad { padding: 96px 48px; }
.section-pad-sm { padding: 72px 48px; }
.section-center { text-align: center; }
.section-center .ao-divider { margin: 0 auto 44px; }
.section-title { color: var(--charcoal); }
.section-title em { font-style: italic; font-weight: 300; color: var(--tc-dark); }
.section-lead { color: var(--txt-mid); max-width: 560px; }
.section-center .section-lead { margin: 0 auto; }

/* ── CARDS ── */
.ao-card {
  background: var(--blanc); border: 1px solid var(--bord); border-radius: 4px; padding: 36px 32px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s; cursor: default;
}
.ao-card:hover { border-color: var(--tc); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(176,101,74,0.12); }
.ao-card-icon { font-size: 26px; margin-bottom: 16px; display: block; }
.ao-card h3 { font-size: 22px; color: var(--charcoal); margin-bottom: 8px; }
.ao-card p { font-size: 14px; color: var(--txt-light); }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card {
  background: var(--blanc); border: 1px solid var(--bord); border-radius: 4px; padding: 36px 30px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.why-card:hover { border-color: var(--tc); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(176,101,74,0.1); }
.why-card h3 { font-size: 21px; color: var(--charcoal); margin-bottom: 10px; transition: color 0.2s; }
.why-card:hover h3 { color: var(--tc-dark); }
.why-card p { font-size: 14px; color: var(--txt-light); }

/* ── FLOW STRIP ── */
.flow-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 48px 0; }
.flow-item {
  padding: 32px 28px; border-right: 1px solid var(--bord); text-align: center;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.flow-item:last-child { border-right: none; }
.flow-item.in { opacity: 1; transform: none; }
.flow-icon { font-size: 26px; display: block; margin-bottom: 12px; }
.flow-item h3 { font-size: 18px; color: var(--charcoal); margin-bottom: 6px; }
.flow-item p { font-size: 13px; color: var(--txt-light); }

/* ── KPIS ── */
.ao-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 0 auto 48px; max-width: 860px; }
.ao-kpi { background: var(--tc-pale); border-radius: 4px; padding: 28px 20px; text-align: center; }
.ao-kpi-num { font-family: 'Playfair Display', serif; font-size: 46px; font-weight: 700; color: var(--tc); display: block; line-height: 1; margin-bottom: 8px; }
.ao-kpi p { font-size: 13px; color: var(--txt-mid); }

/* ── POSITIONNEMENT ── */
.pos-block { max-width: 720px; margin: 0 auto; }
.pos-block blockquote {
  font-family: 'Playfair Display', serif; font-size: 21px; font-style: italic;
  font-weight: 400; color: var(--charcoal); line-height: 1.5; margin-bottom: 22px;
}
.pos-block p { font-size: 15px; }

/* ── ETAPES ── */
.estim-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; background: var(--fond-card); border-radius: 4px; overflow: hidden; margin: 40px 0; text-align: left; }
.estim-step { padding: 32px 28px; border-right: 1px solid var(--bord); }
.estim-step:last-child { border-right: none; }
.estim-step-num { font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 300; color: var(--tc); line-height: 1; display: block; margin-bottom: 10px; }
.estim-step h4 { font-family: 'Poppins', sans-serif; font-size: 14.5px; font-weight: 600; color: var(--charcoal); margin-bottom: 6px; }
.estim-step p { font-size: 13px; color: var(--txt-light); }

.step-item { display: grid; grid-template-columns: 56px 1fr; gap: 0 24px; position: relative; padding-bottom: 40px; }
.step-item:not(:last-child)::before { content: ''; position: absolute; left: 27px; top: 64px; bottom: 8px; width: 1px; background: var(--bord); }
.step-num {
  width: 56px; height: 56px; border-radius: 50%; background: var(--tc-pale); color: var(--tc-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 600;
}
.step-content h3 { color: var(--charcoal); margin-bottom: 8px; }
.step-content p { font-size: 14.5px; }

/* ── ETAPES EN FILETS (v1) ── */
.etapes { counter-reset: etape; max-width: 860px; margin: 0 auto; text-align: left; }
.etape {
  counter-increment: etape;
  display: grid; grid-template-columns: 96px 1fr; gap: 28px;
  padding: 32px 0; border-top: 1px solid var(--bord); align-items: start;
}
.etape:last-child { border-bottom: 1px solid var(--bord); }
.etape::before {
  content: "0" counter(etape);
  font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 300;
  color: var(--tc-light); line-height: 1;
}
.etape h3 { font-size: 20px; color: var(--charcoal); margin-bottom: 6px; }
.etape p { font-size: 14.5px; margin: 0; }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; }
details.faq-item { border-bottom: 1px solid var(--bord); }
details.faq-item:first-of-type { border-top: 1px solid var(--bord); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 22px 0; cursor: pointer; user-select: none; list-style: none;
  font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 500; color: var(--charcoal);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--tc-dark); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%; background: var(--fond-card); color: var(--tc-dark);
  display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
  transition: transform 0.3s ease, background 0.25s;
}
details[open] .faq-icon { transform: rotate(45deg); background: var(--tc); color: var(--blanc); }
@keyframes faq-open { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:none; } }
.faq-body { padding: 0 0 24px; }
.faq-body p { font-size: 14.5px; color: var(--txt-mid); line-height: 1.8; }
.faq-body a { color: var(--tc-dark); text-decoration: underline; text-underline-offset: 3px; }
details[open] .faq-body { animation: faq-open 0.3s ease both; }

/* ── CHECKMARKS ── */
.check-list { list-style: none; padding: 0; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--txt-mid); margin-bottom: 10px; line-height: 1.5; }
.check-list li::before { content: ''; width: 14px; height: 1px; background: var(--tc); flex-shrink: 0; margin-top: 12px; }

/* ── TARIFS ── */
.prix-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; align-items: stretch; }
.prix-solo { max-width: 820px; margin: 0 auto; }
.prix-solo .prix-block { padding: 52px 48px; text-align: center; align-items: center; }
.prix-solo .prix-block.featured::after { display: none; }  /* une seule formule : pas de badge */
.prix-solo .prix-block .ao-eyebrow { margin-bottom: 10px; }
.prix-solo .prix-intro { max-width: 480px; }
.prix-solo .prix-unit { max-width: 340px; display: block; margin: 0 auto; line-height: 1.5; }
.prix-colonnes { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 40px; text-align: left; margin: 32px 0 34px; width: 100%; }
.prix-colonnes .check-list { margin: 0; }
.prix-block {
  background: var(--blanc); border: 1px solid var(--bord); border-radius: 4px;
  padding: 44px 38px; display: flex; flex-direction: column;
}
.prix-block.featured { border-color: var(--tc); position: relative; box-shadow: 0 16px 44px rgba(176,101,74,0.1); }
.prix-block.featured::after {
  content: 'La plus choisie'; position: absolute; top: 18px; right: 18px;
  font-family: 'Poppins', sans-serif; font-size: 9.5px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--blanc); background: var(--tc);
  padding: 6px 12px; border-radius: 3px;
}
.prix-block h3 { font-size: 26px; color: var(--charcoal); margin-bottom: 6px; }
.prix-block .prix-intro { font-size: 14px; color: var(--txt-light); }
.prix-big { font-family: 'Playfair Display', serif; font-size: 72px; font-weight: 300; color: var(--tc); line-height: 1; margin: 22px 0 4px; }
.prix-unit { font-family: 'Poppins', sans-serif; font-size: 13px; color: var(--txt-light); letter-spacing: 1px; }
.prix-block .check-list { margin: 26px 0 32px; }
.prix-block .btn { margin-top: auto; text-align: center; }

.setup-card {
  background: var(--charcoal); border-radius: 4px; padding: 44px 40px; margin-top: 28px;
  display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: center;
}
.setup-prix { font-family: 'Playfair Display', serif; font-size: 58px; font-weight: 300; color: var(--tc-light); line-height: 1; white-space: nowrap; }
.setup-prix small { display: block; font-family: 'Poppins', sans-serif; font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 8px; }
.setup-card h3 { color: var(--blanc); margin-bottom: 10px; }
.setup-card p { color: rgba(255,255,255,0.55); font-size: 14.5px; }

/* ── TABLEAUX ── */
.ao-table { width: 100%; border-collapse: collapse; }
.ao-table th, .ao-table td { padding: 14px 20px; text-align: left; border-bottom: 1px solid var(--bord); font-size: 14.5px; }
.ao-table th { font-family: 'Poppins', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--txt-light); background: var(--fond-card); }
.ao-table tr.featured td { background: var(--charcoal); color: var(--blanc); font-weight: 600; }
.ao-table tr.featured td .amount { color: var(--tc-light); }
.table-wrap { overflow-x: auto; }

/* ── ZONES ── */
.zone-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.zone-tag {
  background: var(--tc-pale); color: var(--tc-dark);
  font-family: 'Poppins', sans-serif; font-size: 11.5px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 8px 16px; border-radius: 40px;
  border: 1px solid rgba(176,101,74,0.28);
}

/* ── TEMOIGNAGES ── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card { background: var(--blanc); border: 1px solid var(--bord); border-radius: 4px; padding: 32px 28px; }
.testi-stars { color: var(--tc); letter-spacing: 3px; font-size: 13px; margin-bottom: 14px; }
.testi-card p { font-family: 'Playfair Display', serif; font-size: 16.5px; font-style: italic; color: var(--charcoal); line-height: 1.6; margin-bottom: 16px; }
.testi-author { font-family: 'Poppins', sans-serif; font-size: 11.5px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--txt-light); }

/* ── A PROPOS ── */
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--tc-pale); border-radius: 4px; overflow: hidden; }
.stat-fig { padding: 36px 24px; text-align: center; border-right: 1px solid var(--tc-light); }
.stat-fig:last-child { border-right: none; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 50px; font-weight: 300; color: var(--tc-dark); line-height: 1; display: block; margin-bottom: 8px; }
.stat-fig p { font-size: 13px; color: var(--txt-mid); }

.recit { max-width: 720px; margin: 0 auto; }
.recit h3 { color: var(--tc-dark); margin: 44px 0 12px; }
.recit blockquote {
  margin: 40px 0; padding: 28px 34px; background: var(--fond-card); border-left: 2px solid var(--tc);
  font-family: 'Playfair Display', serif; font-size: 20px; font-style: italic; line-height: 1.55; color: var(--charcoal);
}
.recit p { margin-bottom: 14px; }

.portrait-split { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; align-items: center; }
.portrait-frame { position: relative; }
.portrait-frame img { border-radius: 4px; }
.portrait-frame::before { content: ''; position: absolute; inset: 16px -16px -16px 16px; border: 1px solid var(--tc); border-radius: 4px; z-index: -1; }

/* ── CONTACT ── */
.contact-split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; }
.coord-block { margin-bottom: 30px; }
.coord-label { font-family: 'Poppins', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--tc); display: block; margin-bottom: 8px; }
.coord-value { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--charcoal); }
.coord-block p { font-size: 13.5px; color: var(--txt-light); margin-top: 6px; }

.ao-form { display: grid; gap: 18px; background: var(--blanc); border: 1px solid var(--bord); border-radius: 4px; padding: 36px 32px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-family: 'Poppins', sans-serif; font-size: 10.5px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--txt-light); }
.field input, .field select, .field textarea {
  font-family: 'Poppins', sans-serif; font-size: 15px; color: var(--txt);
  background: var(--fond); border: 1px solid var(--bord); border-radius: 3px;
  padding: 13px 15px; transition: border-color 0.25s, background 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--tc); background: var(--blanc); }
.field textarea { min-height: 130px; resize: vertical; }
.field-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: 12px; color: var(--txt-light); }

/* ── CTA ── */
.cta-section { background: var(--charcoal); padding: 96px 48px; text-align: center; }
.cta-section h2 { color: var(--blanc); margin-bottom: 14px; }
.cta-section h2 em { font-style: italic; color: var(--tc-light); }
.cta-section p { color: rgba(255,255,255,0.5); max-width: 500px; margin: 0 auto 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── LEGAL ── */
.legal-body { max-width: 760px; margin: 0 auto; }
.legal-body h2 { font-size: 24px; margin: 44px 0 14px; color: var(--charcoal); }
.legal-body p, .legal-body li { font-size: 14.5px; color: var(--txt-mid); }
.legal-body ul { padding-left: 20px; }

/* ── FOOTER ── */
.ao-footer { background: var(--charcoal); padding: 72px 48px 40px; }
.ao-footer-inner {
  max-width: 1060px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.ao-footer-brand .f-name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 600; color: var(--blanc); letter-spacing: 3px; margin-bottom: 6px; }
.ao-footer-brand .f-tag { font-family: 'Poppins', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 3px; color: var(--tc); text-transform: uppercase; margin-bottom: 14px; }
.ao-footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 230px; }
.ao-footer-col h4 { font-family: 'Poppins', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--tc); margin-bottom: 18px; }
.ao-footer-col ul { list-style: none; }
.ao-footer-col li { margin-bottom: 10px; }
.ao-footer-col a, .ao-footer-col span { font-size: 13.5px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.ao-footer-col a:hover { color: var(--tc-light); }
.ao-footer-bottom { max-width: 1060px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.ao-footer-bottom p, .ao-footer-bottom a { font-size: 12px; color: rgba(255,255,255,0.25); }
.ao-footer-bottom a { transition: color 0.2s; }
.ao-footer-bottom a:hover { color: rgba(255,255,255,0.5); }
.ao-footer-links { display: flex; gap: 20px; }

/* Credit GADE Agency */
.gade-credit { font-family: 'Poppins', sans-serif; font-size: 11.5px; }
.gade-credit .gade-bold { font-weight: 700; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 0.5px; }
.gade-credit .gade-agency { font-weight: 400; color: #F2812C; }
.gade-credit a { text-decoration: none; display: inline-flex; align-items: center; gap: 2px; transition: opacity 0.2s; }
.gade-credit a:hover { opacity: 0.75; }

/* ── RESPONSIVE ── */
@media (max-width: 1180px) {
  .ao-nav-inner { padding: 0 32px; gap: 24px; }
  .ao-nav-links { gap: 22px; }
  .ao-nav-links a { font-size: 13px; }
  .ao-nav-cta-wrap { gap: 18px; }
}
@media (max-width: 1040px) {
  .ao-nav-cta-wrap .btn-tel { display: none; }
  .ao-nav-links { gap: 18px; }
  .ao-nav-links a { font-size: 12.5px; }
  .ao-nav-cta-wrap .btn { padding: 12px 20px; font-size: 11px; }
}
@media (max-width: 900px) {
  .ao-nav-links { display: none; }
  .ao-burger { display: flex; }
  /* on garde le telephone accessible en un geste */
  .ao-nav-cta-wrap { display: flex; gap: 14px; margin-left: auto; }
  .ao-nav-cta-wrap .btn { display: none; }
  .ao-nav-cta-wrap .btn-tel { display: inline-flex; font-size: 13px; }
}
@media (max-width: 860px) {
  .ao-hero-deco { width: 38%; }
  .services-grid, .why-grid, .flow-strip, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-item { border-right: none; border-bottom: 1px solid var(--bord); }
  .flow-item:last-child, .flow-item:nth-child(2n) { border-bottom: none; }
  .portrait-split, .contact-split { grid-template-columns: 1fr; gap: 36px; }
  .prix-grid { grid-template-columns: 1fr; }
  .setup-card { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .ao-footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .prix-big { font-size: 60px; }
}
@media (max-width: 780px) {
  .ao-kpis, .estim-steps, .stats-row { grid-template-columns: 1fr; }
  .estim-step { border-right: none; border-bottom: 1px solid var(--bord); }
  .estim-step:last-child { border-bottom: none; }
  .stat-fig { border-right: none; border-bottom: 1px solid var(--tc-light); }
  .stat-fig:last-child { border-bottom: none; }
}
@media (max-width: 700px) {
  .prix-colonnes { grid-template-columns: 1fr; gap: 0; }
  .prix-solo .prix-block { padding: 36px 24px; }
  .ao-hero-voile { background: linear-gradient(180deg, rgba(248,246,243,0.93) 0%, rgba(248,246,243,0.86) 55%, rgba(248,246,243,0.7) 100%); }
}
@media (max-width: 640px) {
  .ao-nav-inner { padding: 0 20px; }
  .ao-nav { height: 66px; }
  .ao-hero { padding-top: 66px; }
  .ao-mobile-nav { top: 66px; padding: 24px 20px; }
  .ao-mobile-nav ul a { font-size: 24px; padding: 14px 0; }
  .ao-logo-name { font-size: 17px; }
  .ao-logo img { height: 34px; width: 34px; }
  .container, .container-narrow { padding: 0 20px; }
  .section-pad { padding: 56px 20px; }
  .section-pad-sm { padding: 44px 20px; }
  .ao-hero-deco { display: none; }
  .ao-hero { min-height: auto; }
  .ao-hero-inner { padding: 52px 20px 48px; }
  .ao-hero h1 { font-size: clamp(30px, 9vw, 44px); }
  .ao-hero-btns { flex-direction: column; align-items: stretch; }
  .ao-hero-btns .btn { width: 100%; text-align: center; }
  .page-hero { padding: 104px 20px 56px; }
  .services-grid, .why-grid, .flow-strip, .testi-grid { grid-template-columns: 1fr; }
  .flow-item { border-right: none; }
  .flow-item:nth-child(2n) { border-bottom: 1px solid var(--bord); }
  .flow-item:last-child { border-bottom: none; }
  .field-duo { grid-template-columns: 1fr; }
  .ao-form { padding: 28px 20px; }
  .prix-block { padding: 32px 24px; }
  .prix-big { font-size: 56px; }
  .setup-card { padding: 32px 22px; }
  .setup-prix { font-size: 48px; }
  .recit blockquote { padding: 22px 24px; font-size: 17px; }
  .cta-section { padding: 64px 20px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 320px; text-align: center; }
  .ao-footer { padding: 48px 20px 28px; }
  .ao-footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .ao-footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
  .ao-footer-links { flex-wrap: wrap; justify-content: center; }
  .faq-q { font-size: 14px; padding: 18px 0; }
  .step-item { grid-template-columns: 44px 1fr; gap: 0 16px; }
  .step-num { width: 44px; height: 44px; font-size: 18px; }
  .step-item:not(:last-child)::before { left: 21px; top: 52px; }
  .etape { grid-template-columns: 1fr; gap: 8px; }
  .etape::before { font-size: 32px; }
}
@media (max-width: 430px) {
  /* place comptee : on ne garde que l'icone du telephone */
  .ao-nav-cta-wrap .btn-tel { font-size: 0; gap: 0; }
  .ao-nav-cta-wrap .btn-tel svg { width: 19px; height: 19px; }
  .container, .container-narrow, .ao-nav-inner { padding: 0 16px; }
  .section-pad { padding: 48px 16px; }
  .page-hero { padding: 96px 16px 48px; }
  .ao-hero-inner { padding: 48px 16px 40px; }
  .ao-hero h1 { font-size: 28px; }
  .prix-big { font-size: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .sa, .flow-item { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

:focus-visible { outline: 2px solid var(--tc); outline-offset: 3px; }
