/* =========================================================================
   Climoloc Marseille — Design system (éditorial crème / vert forêt / serif)
   ========================================================================= */
:root {
  --paper:      #fefcf8;   /* fond crème */
  --paper-2:    #f7f4ec;   /* crème plus soutenu */
  --ink:        #0a1a25;   /* texte / sections sombres */
  --ink-soft:   #26343d;
  --brand:      #074029;   /* vert forêt (CTA) */
  --brand-700:  #05331f;
  --brand-600:  #0a5638;
  --brand-050:  #eef3ef;
  --warm:       #e1791b;   /* orange chaud (accent) */
  --warm-050:   #fdf1e4;
  --muted:      #62748e;   /* texte secondaire */
  --muted-2:    #8a97a6;
  --line:       #e7e2d6;   /* bordures chaudes */
  --line-2:     #ded8ca;
  --success:    #278733;
  --card:       #ffffff;

  --radius:     16px;
  --radius-sm:  12px;
  --radius-lg:  26px;
  --shadow:     0 1px 2px rgba(10,26,37,.04), 0 8px 24px rgba(10,26,37,.06);
  --shadow-lg:  0 30px 70px rgba(10,26,37,.14);
  --maxw:       1200px;
  --serif: "Instrument Serif", ui-serif, Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--sans); color: var(--ink); background: var(--paper);
  line-height: 1.6; font-size: 17px; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* --- Typographie serif ------------------------------------------------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 400; color: var(--ink); margin: 0 0 .4em; letter-spacing: -.01em; line-height: 1.02; }
h1 { font-size: clamp(2.7rem, 6vw, 4.5rem); letter-spacing: -.025em; }
h2 { font-size: clamp(2rem, 4.2vw, 3rem); }
h3 { font-size: 1.5rem; }
.italic { font-style: italic; }
.serif { font-family: var(--serif); }
p { margin: 0 0 1rem; }
.muted { color: var(--muted); }
strong { font-weight: 700; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-sm { padding: 44px 0; }
.center { text-align: center; }
.lead { font-size: 1.2rem; color: var(--muted); line-height: 1.6; }
.center .lead { margin-left: auto; margin-right: auto; max-width: 620px; }

.kicker { font-family: var(--sans); font-size: .78rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.kicker-brand { color: var(--brand); }

.pill-badge {
  display: inline-flex; align-items: center; gap: 9px; background: var(--card); border: 1px solid var(--line);
  padding: 8px 16px; border-radius: 999px; font-size: .8rem; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; color: var(--ink-soft); box-shadow: var(--shadow);
}
.pill-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--warm); box-shadow: 0 0 0 4px rgba(225,121,27,.18); }

/* --- Boutons ----------------------------------------------------------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-family: var(--sans);
  font-weight: 600; font-size: 1rem; padding: 14px 26px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .12s, background .2s, box-shadow .2s, border-color .2s; white-space: nowrap; }
.btn:active { transform: translateY(1px); }
.btn-brand { background: var(--brand); color: var(--paper); }
.btn-brand:hover { background: var(--brand-600); box-shadow: 0 10px 26px rgba(7,64,41,.28); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn-paper { background: var(--card); color: var(--ink); border-color: var(--line); }
.btn-paper:hover { border-color: var(--brand); }
.btn-wa { background: #1fa855; color: #fff; }
.btn-wa:hover { background: #178c46; }
.btn-lg { padding: 17px 32px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .45; cursor: not-allowed; }

/* --- Header ------------------------------------------------------------ */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(254,252,248,.82);
  backdrop-filter: saturate(150%) blur(12px); border-bottom: 1px solid var(--line);
  transition: transform .35s ease; will-change: transform; }
.site-header.is-hidden { transform: translateY(-100%); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand .logo { width: 34px; height: 34px; }
.brand .word { font-family: var(--serif); font-size: 1.5rem; font-style: italic; color: var(--ink); line-height: 1; }
.brand .word small { font-family: var(--sans); font-style: normal; display: block; font-size: .56rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--warm); margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-weight: 500; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
.nav-links a:hover { color: var(--brand); }
.nav-book-mobile { display: none; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-switch { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.lang-switch button { background: transparent; border: 0; padding: 6px 11px; font-family: inherit; font-size: .74rem; font-weight: 700; letter-spacing: .06em; color: var(--muted); cursor: pointer; transition: .2s; }
.lang-switch button:hover { color: var(--ink); }
.lang-switch button.on { background: var(--brand); color: #fff; }
.nav-tel { font-weight: 600; color: var(--ink); font-size: .92rem; display: inline-flex; align-items: center; gap: 7px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; margin: 5px 0; transition: .25s; }

/* --- Hero -------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: 0; background:
  radial-gradient(900px 500px at 88% -8%, rgba(225,121,27,.10), transparent 60%),
  radial-gradient(700px 500px at -5% 110%, rgba(7,64,41,.06), transparent 55%); pointer-events: none; }
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; padding: 72px 0 92px; }
.hero h1 { margin-top: 20px; margin-bottom: 22px; }
.hero p.sub { font-size: 1.22rem; color: var(--ink-soft); max-width: 520px; margin-bottom: 30px; }

.addr-box { position: relative; display: flex; gap: 10px; background: var(--card); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 10px; box-shadow: var(--shadow); max-width: 560px; }
.addr-box .field-wrap { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 4px 8px 4px 14px; position: relative; }
.addr-box label { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.addr-box input, .addr-box select { border: 0; font-family: inherit; font-size: 1rem; color: var(--ink); background: transparent; padding: 2px 0; width: 100%; }
.addr-box input:focus, .addr-box select:focus { outline: none; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 22px; color: var(--ink-soft); font-size: .95rem; align-items: center; }
.hero-stats b { color: var(--ink); }
.hero-stats .sep { color: var(--line-2); }
.hero-stats a { color: var(--brand); font-weight: 600; }

.proof-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.proof-media { position: relative; aspect-ratio: 4/3; background: linear-gradient(135deg, #12333a, #0a1a25); display: grid; place-items: center; }
.proof-media .tag { position: absolute; top: 14px; left: 14px; background: rgba(254,252,248,.9); color: var(--ink); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; }
.proof-media .play { width: 74px; height: 74px; border-radius: 50%; background: rgba(254,252,248,.94); display: grid; place-items: center; box-shadow: 0 10px 30px rgba(0,0,0,.3); }
.proof-media .play svg { color: var(--brand); margin-left: 4px; }
.proof-cap { padding: 16px 20px; font-size: .92rem; color: var(--muted); text-align: center; }
.proof-cap b { color: var(--ink); }
.hero-visual { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 26px; display: grid; place-items: center; }
.hero-visual img { max-width: 100%; max-height: 460px; height: auto; display: block; }

/* --- Bande réassurance ------------------------------------------------- */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--card); }
.strip-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 40px; padding: 22px 0; }
.strip-item { display: inline-flex; align-items: center; gap: 9px; color: var(--ink-soft); font-weight: 500; font-size: .95rem; }
.strip-item svg { color: var(--brand); flex: 0 0 auto; }

/* --- Sections génériques ---------------------------------------------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.sec-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.sec-head .kicker { display: block; margin-bottom: 14px; }

.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: transform .18s, box-shadow .2s, border-color .2s; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card h3 { font-size: 1.4rem; }
.ic { width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; background: var(--brand-050); color: var(--brand); margin-bottom: 18px; }
.ic.warm { background: var(--warm-050); color: var(--warm); }

.step-card .num { font-family: var(--serif); font-size: 2.6rem; color: var(--brand); line-height: 1; margin-bottom: 14px; }
.step-card h3 { margin-bottom: 8px; }

.usage-card { display: flex; flex-direction: column; min-height: 230px; }
.usage-card .go { margin-top: auto; padding-top: 16px; font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--brand); display: inline-flex; align-items: center; gap: 8px; }

.quote-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.quote-card .mark { font-family: var(--serif); font-size: 3rem; line-height: .4; color: var(--brand); }
.quote-card p { color: var(--ink-soft); font-size: 1.05rem; }
.who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--brand-050); color: var(--brand); display: grid; place-items: center; font-weight: 700; font-family: var(--sans); }
.who b { display: block; }
.who span { font-size: .85rem; color: var(--muted); }
.stars { color: var(--warm); letter-spacing: 2px; }

/* --- FAQ --------------------------------------------------------------- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 24px 4px; font-size: 1.25rem; font-family: var(--serif); color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.faq-q .plus { flex: 0 0 auto; width: 26px; height: 26px; position: relative; }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--brand); border-radius: 2px; transition: transform .25s, opacity .25s; }
.faq-q .plus::before { top: 12px; left: 4px; right: 4px; height: 2px; }
.faq-q .plus::after { left: 12px; top: 4px; bottom: 4px; width: 2px; }
.faq-item.open .faq-q .plus::after { transform: rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; color: var(--muted); font-size: 1.02rem; }
.faq-item.open .faq-a { padding-bottom: 24px; }

/* --- Blocs éditoriaux -------------------------------------------------- */
.editorial { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.editorial.rev .ed-media { order: 2; }
.ed-media { aspect-ratio: 5/4; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--paper-2), #ece6d8); border: 1px solid var(--line); display: grid; place-items: center; color: var(--muted-2); overflow: hidden; }
.ed-media .glyph { font-size: 5rem; opacity: .5; }
.ed-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.editorial h2 { margin-bottom: 18px; }
.editorial p { color: var(--ink-soft); font-size: 1.1rem; }

.perks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.perk .ic { width: 46px; height: 46px; }
.perk h3 { font-size: 1.25rem; }
.perk p { color: var(--muted); font-size: .98rem; margin: 0; }

/* --- CTA band ---------------------------------------------------------- */
.cta-band { background: var(--ink); color: var(--paper); border-radius: var(--radius-lg); padding: 68px 40px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 80% 0%, rgba(225,121,27,.18), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: var(--paper); }
.cta-band .lead { color: rgba(254,252,248,.8); }

.res-card { display: block; }
.res-card .kicker { color: var(--warm); display: block; margin-bottom: 10px; }
.res-card h3 { font-size: 1.35rem; margin-bottom: 6px; }
.res-card .go { color: var(--brand); font-weight: 600; }

/* --- Footer ------------------------------------------------------------ */
.site-footer { background: var(--ink); color: rgba(254,252,248,.62); padding: 72px 0 34px; }
.site-footer .brand .word, .site-footer .brand .word small { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 40px; }
.site-footer h4 { font-family: var(--sans); color: #fff; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; margin: 0 0 16px; font-weight: 600; }
.site-footer a { color: rgba(254,252,248,.62); display: block; padding: 5px 0; font-size: .95rem; }
.site-footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(254,252,248,.14); margin-top: 44px; padding-top: 24px; font-size: .82rem; color: rgba(254,252,248,.45); line-height: 1.7; }

/* =========================================================================
   TUNNEL DE RÉSERVATION
   ========================================================================= */
.res-top { background: rgba(254,252,248,.82); backdrop-filter: saturate(150%) blur(12px); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 40; }
.res-top .nav { height: 72px; }
.res-back { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; color: var(--ink-soft); }

/* Étape 1 profil */
.profile-wrap { max-width: 940px; margin: 0 auto; padding: 70px 24px 90px; text-align: center; }
.profile-wrap .kicker { display: block; margin-bottom: 16px; }
.profile-wrap h1 { font-size: clamp(2.6rem, 5vw, 3.8rem); margin-bottom: 14px; }
.profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 44px; text-align: left; }
.profile-card { position: relative; background: var(--card); border: 1.5px solid var(--line); border-radius: var(--radius-lg); padding: 30px; cursor: pointer; transition: border-color .18s, box-shadow .2s, transform .15s; }
.profile-card:hover { border-color: var(--brand); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.profile-card .ic { width: 58px; height: 58px; border-radius: 50%; background: var(--paper-2); color: var(--ink); }
.profile-card.pro .ic { background: var(--brand); color: var(--paper); }
.profile-card h2 { font-size: 2rem; margin: 6px 0 6px; }
.profile-card .tag-pro { position: absolute; top: 30px; right: 30px; font-size: .68rem; font-weight: 700; letter-spacing: .1em; color: var(--muted); display: inline-flex; align-items: center; gap: 6px; }
.profile-card .go { margin-top: 18px; display: flex; justify-content: space-between; align-items: center; color: var(--ink-soft); font-weight: 500; }
.profile-note { margin-top: 30px; font-size: .88rem; color: var(--muted-2); }

/* Layout 2 colonnes */
.res-wrap { background: var(--paper); }
.res-grid { display: grid; grid-template-columns: 288px 1fr; gap: 48px; padding: 44px 0 90px; align-items: start; }
/* évite qu'un enfant (ex: le calendrier scrollable) élargisse la page */
.res-grid, .res-side, .res-main { min-width: 0; }
.day-strip { max-width: 100%; }

.res-side .kicker { display: block; margin-bottom: 22px; }
.stepper { list-style: none; margin: 0 0 26px; padding: 0; }
.stepper li { display: flex; align-items: center; gap: 14px; padding: 9px 0; color: var(--muted); font-weight: 500; }
.stepper .dot { width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--line-2); display: grid; place-items: center; font-size: .82rem; font-weight: 600; color: var(--muted); flex: 0 0 auto; background: var(--card); }
.stepper li.active { color: var(--ink); }
.stepper li.active .dot { background: var(--brand); border-color: var(--brand); color: var(--paper); }
.stepper li.done .dot { background: var(--brand-050); border-color: var(--brand); color: var(--brand); }
.stepper li.done { color: var(--ink-soft); }

.summary-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.summary-card .srow { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 9px 0; font-size: .92rem; border-bottom: 1px solid var(--line); }
.summary-card .srow:last-of-type { border-bottom: 0; }
.summary-card .srow .lbl { color: var(--muted); }
.summary-card .srow .val { font-weight: 600; color: var(--ink); text-align: right; }
.summary-card .val .inc { color: var(--success); font-weight: 600; }
.summary-card .estimate { margin-top: 12px; padding-top: 14px; border-top: 1.5px solid var(--line-2); display: flex; justify-content: space-between; align-items: baseline; }
.summary-card .estimate .big { font-family: var(--serif); font-size: 1.9rem; color: var(--ink); }
.summary-card .estimate small { color: var(--muted); font-size: .8rem; }
.summary-card .fees { margin-top: 4px; }
.summary-card .fees .srow { font-size: .85rem; border: 0; padding: 4px 0; color: var(--muted); }
.mini-qty { display: inline-flex; align-items: center; gap: 8px; }
.mini-qty button { width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--line-2); background: var(--card); color: var(--brand); cursor: pointer; font-size: 1rem; line-height: 1; display: grid; place-items: center; }
.later-btn { margin-top: 16px; width: 100%; justify-content: center; }

.res-main { min-height: 60vh; }
.res-main .step-head { margin-bottom: 30px; }
.res-main .step-head .up { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line-2); display: inline-grid; place-items: center; color: var(--muted); vertical-align: middle; margin-right: 12px; }
.res-main .step-head .kicker { display: inline; vertical-align: middle; }
.res-main h1.step-title { font-size: clamp(2.1rem, 3.6vw, 2.9rem); margin: 18px 0 10px; }
.res-main .step-sub { color: var(--muted); font-size: 1.08rem; max-width: 560px; }

.opt-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.opt-card { position: relative; background: var(--card); border: 1.5px solid var(--line); border-radius: var(--radius); padding: 24px; cursor: pointer; transition: border-color .16s, background .16s, box-shadow .16s; }
.opt-card:hover { border-color: var(--brand); }
.opt-card.selected { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(7,64,41,.10); }
.opt-card .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--paper-2); color: var(--ink); }
.opt-card.selected .ic { background: var(--brand); color: var(--paper); }
.opt-card h3 { font-family: var(--sans); font-weight: 700; font-size: 1.15rem; margin: 4px 0 6px; }
.opt-card p { font-size: .92rem; color: var(--muted); margin: 0; }
.opt-card .price-tag { position: absolute; top: 24px; right: 24px; font-size: .85rem; font-weight: 600; color: var(--muted); }
.opt-card .price-tag.inc { color: var(--success); }

.field { margin-bottom: 18px; }
.field > label { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: .92rem; color: var(--ink); margin-bottom: 8px; }
.field > label .req { color: var(--warm); }
.field input, .field select, .field textarea { width: 100%; padding: 15px 16px; border: 1.5px solid var(--line-2); border-radius: var(--radius-sm); font-family: inherit; font-size: 1rem; color: var(--ink); background: var(--card); transition: border-color .15s, box-shadow .15s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(7,64,41,.10); }
.field .hint { font-size: .84rem; color: var(--muted); margin-top: 7px; }
.field.err input, .field.err select { border-color: #c0392b; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.input-icon { position: relative; }
.input-icon > svg { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
.input-icon input { padding-left: 44px; }

.autocomplete { position: relative; }
.ac-list { position: absolute; z-index: 5; left: 0; right: 0; top: calc(100% + 6px); background: var(--card); border: 1px solid var(--line-2); border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); overflow: hidden; display: none; }
.ac-list.open { display: block; }
.ac-item { padding: 12px 16px; cursor: pointer; display: flex; gap: 10px; align-items: center; }
.ac-item:hover, .ac-item.active { background: var(--paper-2); }
.ac-item .ci { color: var(--muted); }
.ac-item b { font-weight: 600; }
.ac-item span { color: var(--muted); font-size: .85rem; margin-left: 4px; }

.product { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--card); }
.product .p-media { background: #fff; position: relative; overflow: hidden; min-height: 300px; }
.product .p-media .p-photo { width: 100%; height: 100%; object-fit: contain; display: block; padding: 22px; box-sizing: border-box; }
.product .p-media svg { color: var(--ink-soft); opacity: .85; }
.product .p-body { padding: 28px; }
.product .p-body .kicker { display: block; margin-bottom: 8px; }
.product .p-body h3 { font-family: var(--serif); font-weight: 400; font-size: 1.7rem; margin-bottom: 16px; }
.spec { display: flex; align-items: center; gap: 10px; padding: 7px 0; color: var(--ink-soft); font-size: .96rem; }
.spec svg { color: var(--brand); flex: 0 0 auto; }
.p-price { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); display: flex; align-items: flex-end; justify-content: space-between; }
.p-price .kicker { display: block; margin-bottom: 2px; }
.p-price .amount { font-family: var(--serif); font-size: 2rem; color: var(--ink); }
.p-price .amount small { font-family: var(--sans); font-size: .95rem; color: var(--muted); }

.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--line-2); border-radius: 999px; overflow: hidden; }
.qty button { width: 44px; height: 44px; border: 0; background: var(--card); font-size: 1.3rem; color: var(--brand); cursor: pointer; }
.qty button:hover { background: var(--paper-2); }
.qty input { width: 50px; text-align: center; border: 0; font-size: 1.1rem; font-weight: 700; color: var(--ink); background: transparent; font-family: var(--sans); }

.selection-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: 18px; padding: 18px 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); }
.selection-row .sel-m2 { font-family: var(--serif); font-size: 1.3rem; color: var(--ink); }
.selection-row a { color: var(--brand); font-weight: 600; font-size: .9rem; }

.notice { display: flex; gap: 14px; align-items: flex-start; margin-top: 18px; padding: 18px 20px; border-radius: var(--radius); background: var(--brand-050); border: 1px solid #d9e6df; }
.notice .ok { width: 34px; height: 34px; border-radius: 50%; background: var(--success); color: #fff; display: grid; place-items: center; flex: 0 0 auto; }
.notice h4 { margin: 0 0 3px; font-family: var(--sans); font-size: 1rem; font-weight: 700; }
.notice h4 em { font-style: normal; color: var(--success); }
.notice p { margin: 0; font-size: .92rem; color: var(--ink-soft); }

.help-box { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); margin-bottom: 22px; }
.help-box .hb-l { display: flex; align-items: center; gap: 12px; }
.help-box .ic { margin: 0; width: 40px; height: 40px; }
.help-box b { display: block; }
.help-box span { font-size: .88rem; color: var(--muted); }

.toggle-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 18px; padding: 18px 20px; border: 1.5px solid var(--line); border-radius: var(--radius); cursor: pointer; }
.toggle-row.on { border-color: var(--brand); background: var(--brand-050); }
.toggle-row .tl { display: flex; align-items: center; gap: 14px; }
.toggle-row .box { width: 24px; height: 24px; border-radius: 7px; border: 1.5px solid var(--line-2); display: grid; place-items: center; color: transparent; flex: 0 0 auto; }
.toggle-row.on .box { background: var(--brand); border-color: var(--brand); color: #fff; }
.toggle-row .price-tag { color: var(--muted); font-size: .9rem; font-weight: 600; }

.chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.chip { padding: 13px 22px; border: 1.5px solid var(--line-2); border-radius: 999px; cursor: pointer; font-weight: 500; transition: border-color .15s, background .15s; }
.chip:hover { border-color: var(--brand); }
.chip.selected { border-color: var(--brand); background: var(--brand); color: var(--paper); }

.reduc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.reduc-card { position: relative; border: 1.5px solid var(--line); border-radius: var(--radius); padding: 18px; cursor: pointer; transition: border-color .15s, box-shadow .15s; }
.reduc-card:hover { border-color: var(--brand); }
.reduc-card.selected { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(7,64,41,.10); }
.reduc-card .ic { width: 38px; height: 38px; border-radius: 10px; margin-bottom: 10px; }
.reduc-card b { display: block; font-size: 1rem; }
.reduc-card span { font-size: .8rem; color: var(--muted); }
.reduc-card .off { position: absolute; top: 14px; right: 14px; font-size: .72rem; font-weight: 700; color: var(--warm); background: var(--warm-050); padding: 3px 8px; border-radius: 999px; }

.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.cal-head .mo { font-family: var(--serif); font-size: 1.3rem; }
.cal-nav { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-2); background: var(--card); cursor: pointer; color: var(--ink); display: grid; place-items: center; }
.cal-nav[disabled] { opacity: .35; cursor: not-allowed; }
.day-strip { display: flex; gap: 10px; overflow-x: auto; padding: 4px 2px 12px; scroll-snap-type: x proximity; }
.day { flex: 0 0 92px; scroll-snap-align: start; text-align: center; border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 12px 6px; cursor: pointer; background: var(--card); transition: border-color .15s, background .15s; }
.day:hover { border-color: var(--brand); }
.day.selected { background: var(--brand); border-color: var(--brand); color: var(--paper); }
.day .dow { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.day.selected .dow { color: rgba(254,252,248,.85); }
.day .dnum { font-family: var(--serif); font-size: 1.7rem; line-height: 1.1; }
.day .price { font-size: .78rem; color: var(--warm); font-weight: 600; margin-top: 4px; }
.day.selected .price { color: #fff; }

.deliv-opt { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 14px; padding: 16px 20px; border: 1.5px solid var(--line); border-radius: var(--radius); cursor: pointer; }
.deliv-opt.selected { border-color: var(--brand); background: var(--brand-050); }
.deliv-opt .dl { display: flex; align-items: center; gap: 14px; }
.deliv-opt .ic { margin: 0; width: 42px; height: 42px; }
.deliv-opt b { display: block; }
.deliv-opt span { font-size: .86rem; color: var(--muted); }
.deliv-opt .radio { width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid var(--line-2); flex: 0 0 auto; display: grid; place-items: center; }
.deliv-opt.selected .radio { border-color: var(--brand); }
.deliv-opt.selected .radio::after { content: ""; width: 12px; height: 12px; border-radius: 50%; background: var(--brand); }

/* Dates de location — bande de jours (calendrier horizontal) */
.cal-label { display: block; font-weight: 600; margin-bottom: 12px; }
.link-toggle { display: inline-block; margin-top: 14px; background: none; border: 0; padding: 4px 0; color: var(--brand); font-family: inherit; font-weight: 600; font-size: .9rem; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.link-toggle:hover { opacity: .75; }
.daycal { border: 1.5px solid var(--line); border-radius: var(--radius); background: var(--card); padding: 12px 12px 8px; }
.daycal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; padding: 0 2px; }
.daycal-month { font-weight: 600; color: var(--ink); font-size: .98rem; }
.daycal-nav { width: 34px; height: 34px; flex: 0 0 auto; border-radius: 50%; border: 1px solid var(--line-2); background: var(--paper); color: var(--ink); font-size: 1.2rem; line-height: 1; cursor: pointer; display: grid; place-items: center; transition: border-color .12s, color .12s; }
.daycal-nav:hover { border-color: var(--brand); color: var(--brand); }
.daycal-strip { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 6px; scroll-snap-type: x proximity; }
.daycal-strip::-webkit-scrollbar { height: 6px; }
.daycal-strip::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 3px; }
.daycard { flex: 0 0 auto; width: 62px; padding: 11px 6px; border: 1.5px solid var(--line-2); border-radius: 14px; background: var(--paper); cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 2px; font-family: inherit; scroll-snap-align: start; transition: border-color .12s, background .12s; }
.daycard:hover { border-color: var(--brand); }
.daycard.sel { background: var(--brand); border-color: var(--brand); }
.daycard.sel .dc-dow, .daycard.sel .dc-num, .daycard.sel .dc-mon, .daycard.sel .dc-fee { color: #fff; }
.daycard[disabled] { opacity: .3; cursor: default; }
.dc-dow { font-size: .62rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }
.dc-num { font-size: 1.4rem; font-weight: 600; color: var(--ink); line-height: 1.15; }
.dc-mon { font-size: .68rem; color: var(--muted); }
.dc-fee { margin-top: 4px; font-size: .78rem; font-weight: 700; color: var(--muted); }
.dc-fee.warm { color: var(--warm); }
.deliv-note { display: flex; align-items: center; gap: 14px; margin-top: 18px; padding: 15px 18px; border: 1.5px solid var(--line); border-radius: var(--radius); background: var(--brand-050); }
.deliv-note .ic { width: 42px; height: 42px; flex: 0 0 auto; display: grid; place-items: center; color: var(--brand); }
.deliv-note b { display: block; }
.deliv-note .muted { font-size: .86rem; }

/* Estimateur du nombre de climatiseurs (modale) */
body.modal-open { overflow: hidden; }
.hb-cta { border: 1.5px solid var(--brand); background: transparent; color: var(--brand); font-family: inherit; font-weight: 700; font-size: .9rem; padding: 9px 18px; border-radius: 999px; cursor: pointer; white-space: nowrap; transition: background .15s, color .15s; }
.hb-cta:hover { background: var(--brand); color: #fff; }
.estim-overlay { display: none; position: fixed; inset: 0; z-index: 200; background: rgba(10,26,37,.55); padding: 20px; overflow-y: auto; }
.estim-overlay.open { display: flex; align-items: center; justify-content: center; }
.estim-card { position: relative; width: 100%; max-width: 480px; background: var(--paper); border-radius: 22px; padding: 30px 28px; box-shadow: 0 30px 80px rgba(10,26,37,.35); margin: auto; }
.estim-close { position: absolute; top: 14px; right: 16px; width: 34px; height: 34px; border: 0; background: transparent; font-size: 1.7rem; line-height: 1; color: var(--muted); cursor: pointer; border-radius: 50%; }
.estim-close:hover { background: rgba(0,0,0,.05); color: var(--ink); }
.estim-card h3 { font-family: var(--serif); font-size: 1.7rem; margin: 0 0 6px; color: var(--ink); }
.estim-sub { color: var(--muted); margin: 0 0 20px; font-size: .95rem; }
.estim-places { display: flex; flex-direction: column; gap: 10px; }
.estim-place { display: flex; align-items: center; justify-content: space-between; padding: 15px 18px; border: 1.5px solid var(--line-2); border-radius: var(--radius-sm); background: var(--card); font-family: inherit; font-size: 1rem; font-weight: 600; color: var(--ink); cursor: pointer; transition: border-color .15s, background .15s; }
.estim-place:hover { border-color: var(--brand); }
.estim-place.on { border-color: var(--brand); background: var(--brand-050); }
.estim-place em { font-style: normal; font-weight: 500; color: var(--muted); }
.estim-slider-row { margin: 22px 0 24px; padding-top: 22px; border-top: 1px solid var(--line); }
.estim-slider-head { display: flex; align-items: baseline; justify-content: space-between; font-weight: 600; color: var(--ink); }
.estim-m2 { color: var(--muted); font-weight: 500; }
.estim-m2 b { font-family: var(--serif); font-size: 1.6rem; font-style: italic; color: var(--ink); }
.estim-slider-row input[type=range] { width: 100%; margin: 14px 0 6px; accent-color: var(--brand); }
.estim-scale { display: flex; justify-content: space-between; font-size: .8rem; color: var(--muted); }
.estim-go { width: 100%; justify-content: center; }
.estim-modes { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 4px 0 18px; }
.estim-mode { border: 1.5px solid var(--line); border-radius: var(--radius); padding: 20px 18px; display: flex; flex-direction: column; }
.estim-mode.recommended { border-color: var(--brand); background: var(--brand-050); }
.estim-mode .ic { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: rgba(0,0,0,.04); color: var(--brand); margin-bottom: 12px; }
.estim-mode.recommended .ic { background: rgba(7,64,41,.10); }
.estim-mode h4 { margin: 0 0 4px; font-size: 1.1rem; color: var(--ink); }
.estim-mode p { margin: 0 0 14px; font-size: .86rem; color: var(--muted); line-height: 1.4; flex: 1; }
.estim-count { font-family: var(--serif); font-size: 1.3rem; font-style: italic; color: var(--ink); margin-bottom: 14px; }
.estim-mode .btn { width: 100%; justify-content: center; padding: 11px; }
.estim-back { display: block; margin: 0 auto; background: none; border: 0; color: var(--muted); font-family: inherit; font-size: .92rem; cursor: pointer; padding: 6px; }
.estim-back:hover { color: var(--brand); }
@media (max-width: 480px) { .estim-modes { grid-template-columns: 1fr; } .estim-card { padding: 26px 20px; } }

.slots { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }

.recap-list { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-top: 20px; }
.recap-list .rrow { display: flex; justify-content: space-between; gap: 12px; padding: 14px 20px; border-bottom: 1px solid var(--line); }
.recap-list .rrow:last-child { border-bottom: 0; }
.recap-list .rrow .lbl { color: var(--muted); }
.recap-list .rrow .val { font-weight: 600; text-align: right; }
.recap-total { display: flex; justify-content: space-between; align-items: baseline; padding: 18px 20px; background: var(--brand-050); }
.recap-total .big { font-family: var(--serif); font-size: 1.8rem; color: var(--brand); }

.wizard-nav { display: flex; justify-content: space-between; gap: 14px; margin-top: 34px; }
.wizard-err { display: none; background: #fbecea; color: #b23b2e; border-radius: var(--radius-sm); padding: 12px 16px; margin-bottom: 20px; font-size: .92rem; }

.confirm { text-align: center; max-width: 560px; margin: 0 auto; padding: 30px 0; }
.confirm .check { width: 88px; height: 88px; border-radius: 50%; background: var(--brand-050); color: var(--success); display: grid; place-items: center; margin: 0 auto 24px; }
.confirm h1 { font-size: 2.4rem; }

/* --- Responsive -------------------------------------------------------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding: 48px 0 64px; }
  .proof-card { max-width: 460px; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .editorial, .editorial.rev { grid-template-columns: 1fr; gap: 30px; }
  .editorial.rev .ed-media { order: 0; }
  .res-grid { grid-template-columns: 1fr; gap: 26px; }
  .res-side { order: 2; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .reduc-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-links, .nav-tel { display: none; }
  .nav-toggle { display: block; }
  .brand { margin-right: auto; }
  .nav-actions { gap: 8px; }
  .nav-actions .btn { display: none; }
  .lang-switch button { padding: 5px 9px; font-size: .72rem; }
  .nav.open .nav-links { display: flex; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--paper); padding: 8px 22px 24px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); border-radius: 0 0 20px 20px; }
  .nav.open .nav-links > li { border-bottom: 1px solid var(--line); }
  .nav.open .nav-links a:not(.btn) { display: block; padding: 17px 2px; font-size: .98rem; letter-spacing: .02em; text-transform: none; color: var(--ink); }
  .nav.open .nav-links a:not(.btn):hover { color: var(--brand); }
  .nav.open .nav-book-mobile { display: block; border-bottom: 0; margin-top: 18px; }
  .nav.open .nav-book-mobile .btn { display: flex; justify-content: center; width: 100%; padding: 15px; font-size: .98rem; color: #fff; text-transform: none; letter-spacing: .01em; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .perks { grid-template-columns: 1fr; }
  .profile-grid, .opt-cards, .field-row { grid-template-columns: 1fr; }
  .reduc-grid { grid-template-columns: 1fr 1fr; }
  .product { grid-template-columns: 1fr; }
  .product .p-media { min-height: 200px; }
  .addr-box { flex-direction: column; }
  .section { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .cta-band { padding: 44px 24px; }
}
