/* ============================================================
   izzy - Photographe professionnel
   Identité éditoriale : crème chaud + encre + accent doré
   ============================================================ */

:root {
  --ink: #17140f;
  --ink-soft: #2c2620;
  --paper: #faf7f1;
  --paper-2: #f1ebe1;
  --paper-3: #e9e1d4;
  --muted: #877d6e;
  --muted-2: #b3a999;
  --line: #e3dccf;
  --accent: #b08a52;
  --accent-deep: #8f6d3c;
  --white: #ffffff;
  --danger: #c0492f;
  --success: #4a7c59;

  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --r-sm: 6px;
  --r: 12px;
  --r-lg: 20px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(23, 20, 15, .05), 0 2px 8px rgba(23, 20, 15, .04);
  --shadow: 0 4px 16px rgba(23, 20, 15, .08), 0 12px 40px rgba(23, 20, 15, .06);
  --shadow-lg: 0 16px 50px rgba(23, 20, 15, .16);

  --container: 1240px;
  --header-h: 76px;
  --ease: cubic-bezier(.22, .61, .36, 1);

  --accent-grad: linear-gradient(135deg, #c19a64, #8f6d3c);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; padding: 0; }
input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 2000;
  background: var(--ink); color: var(--white); padding: 10px 18px; border-radius: var(--r-sm);
  transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* Piège anti-bot (honeypot) : invisible et inatteignable pour un humain,
   mais présent dans le DOM/tabulation pour les bots qui remplissent tout. */
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.5rem); }
.section { padding-block: clamp(4rem, 9vw, 7.5rem); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.1; letter-spacing: -.01em; }
.section-title { font-size: clamp(2rem, 4.4vw, 3.3rem); color: var(--ink); }
.section-head { max-width: 660px; margin-bottom: clamp(2.2rem, 5vw, 3.5rem); }
.section-head.center, .section-head { }
.section-lead { color: var(--muted); font-size: 1.12rem; margin-top: 1rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--sans); font-size: .75rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent-deep); margin-bottom: 1rem;
}
.eyebrow svg { width: 17px; height: 17px; }
.eyebrow-light { color: var(--accent); }

.link-arrow { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; color: var(--ink); position: relative; }
.link-arrow svg { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--ink); --fg: var(--white);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  background: var(--bg); color: var(--fg);
  padding: .85rem 1.6rem; border-radius: var(--r-pill); font-weight: 600; font-size: .95rem;
  letter-spacing: .01em; line-height: 1; min-height: 48px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap; border: 1.5px solid transparent;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--ink); color: var(--white); }
.btn-primary:hover { background: var(--ink-soft); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-light { background: var(--white); color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); background: var(--paper-2); box-shadow: none; transform: none; }
.btn-ghost-light { background: rgba(255, 255, 255, .1); color: var(--white); border-color: rgba(255, 255, 255, .55); backdrop-filter: blur(6px); }
.btn-ghost-light:hover { background: rgba(255, 255, 255, .92); color: var(--ink); }
.btn-sm { padding: .6rem 1.1rem; min-height: 40px; font-size: .85rem; }
.btn-lg { padding: 1rem 1.9rem; min-height: 54px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  transition: background .35s, box-shadow .35s, height .35s;
}
.site-header.scrolled { background: rgba(250, 247, 241, .88); backdrop-filter: saturate(1.4) blur(14px); box-shadow: 0 1px 0 var(--line); height: 66px; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; width: 100%; }
.logo { display: inline-flex; align-items: center; color: inherit; }
.logo-word { font-family: var(--serif); font-weight: 500; letter-spacing: -.01em; line-height: 1; }
.logo-dot { color: var(--accent); }
/* Pages à hero foncé : texte d'en-tête en blanc tant qu'on n'a pas scrollé
   (accueil, réservation, espace client). */
.home .site-header:not(.scrolled) .logo, .home .site-header:not(.scrolled) .header-nav a, .home .site-header:not(.scrolled) .nav-toggle,
.page-booking .site-header:not(.scrolled) .logo, .page-booking .site-header:not(.scrolled) .header-nav a, .page-booking .site-header:not(.scrolled) .nav-toggle,
.page-client .site-header:not(.scrolled) .logo, .page-client .site-header:not(.scrolled) .header-nav a, .page-client .site-header:not(.scrolled) .nav-toggle { color: var(--white); }
.home .site-header:not(.scrolled) .header-nav a::after,
.page-booking .site-header:not(.scrolled) .header-nav a::after,
.page-client .site-header:not(.scrolled) .header-nav a::after { background: var(--white); }
.header-nav { display: flex; gap: 1.6rem; }
.header-nav a { font-size: .92rem; font-weight: 500; position: relative; padding: .3rem 0; transition: opacity .2s; }
.header-nav a::after { content: ''; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0; background: var(--accent); transition: width .3s var(--ease); }
.header-nav a:hover::after, .header-nav a.is-active::after { width: 100%; }
.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; color: var(--ink); }
.nav-toggle svg { width: 26px; height: 26px; }
.mobile-nav { position: fixed; inset: var(--header-h) 0 auto 0; background: var(--paper); border-bottom: 1px solid var(--line); transform: translateY(-120%); transition: transform .4s var(--ease); z-index: 99; }
.mobile-nav.open { transform: translateY(0); box-shadow: var(--shadow); }
.mobile-nav nav { display: flex; flex-direction: column; padding: 1.2rem clamp(1.1rem, 4vw, 2.5rem) 1.8rem; gap: .2rem; }
.mobile-nav a { padding: .9rem 0; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
.mobile-nav a.btn { border: none; margin-top: 1rem; }

/* ---------- Selecteur de langue (toggle segmente) ---------- */
.header-cta { display: flex; align-items: center; }
.lang-switch { display: inline-flex; align-items: center; gap: 2px; margin-right: 1.15rem; padding: 3px; border: 1px solid var(--line); border-radius: 999px; background: rgba(23, 20, 15, .035); }
.lang-switch a { display: inline-flex; align-items: center; justify-content: center; min-width: 34px; padding: .26rem .52rem; font-size: .73rem; font-weight: 600; letter-spacing: .06em; border-radius: 999px; color: var(--ink); opacity: .55; transition: background .2s, color .2s, opacity .2s; }
.lang-switch a:hover { opacity: 1; }
/* Langue active : pilotee par l'attribut <html lang> pose au rendu. */
html[lang="fr"] .lang-switch a[data-lang="fr"],
html[lang="nl"] .lang-switch a[data-lang="nl"],
html[lang="en"] .lang-switch a[data-lang="en"] { background: var(--accent); color: var(--white); opacity: 1; box-shadow: 0 1px 5px rgba(176, 138, 82, .45); }
/* En-tete sur hero sombre (non scrolle) : contour et teintes claires. */
.home .site-header:not(.scrolled) .header-cta .lang-switch,
.page-booking .site-header:not(.scrolled) .header-cta .lang-switch,
.page-client .site-header:not(.scrolled) .header-cta .lang-switch { border-color: rgba(255, 255, 255, .45); background: rgba(255, 255, 255, .1); }
.home .site-header:not(.scrolled) .header-cta .lang-switch a,
.page-booking .site-header:not(.scrolled) .header-cta .lang-switch a,
.page-client .site-header:not(.scrolled) .header-cta .lang-switch a { color: var(--white); }
/* La pastille active garde le fond dore (lisible sur les deux fonds). */
html[lang="fr"] .home .site-header:not(.scrolled) .header-cta .lang-switch a[data-lang="fr"],
html[lang="nl"] .home .site-header:not(.scrolled) .header-cta .lang-switch a[data-lang="nl"],
html[lang="en"] .home .site-header:not(.scrolled) .header-cta .lang-switch a[data-lang="en"],
html[lang="fr"] .page-booking .site-header:not(.scrolled) .header-cta .lang-switch a[data-lang="fr"],
html[lang="nl"] .page-booking .site-header:not(.scrolled) .header-cta .lang-switch a[data-lang="nl"],
html[lang="en"] .page-booking .site-header:not(.scrolled) .header-cta .lang-switch a[data-lang="en"],
html[lang="fr"] .page-client .site-header:not(.scrolled) .header-cta .lang-switch a[data-lang="fr"],
html[lang="nl"] .page-client .site-header:not(.scrolled) .header-cta .lang-switch a[data-lang="nl"],
html[lang="en"] .page-client .site-header:not(.scrolled) .header-cta .lang-switch a[data-lang="en"] { background: var(--accent); color: var(--white); opacity: 1; }
/* Dans le menu mobile (fond clair) : controle segmente bien contraste. */
.mobile-nav .lang-switch { align-self: flex-start; margin: 1.1rem 0 .3rem; padding: 4px; gap: 4px; border: 1px solid var(--line); background: var(--paper-2); }
.mobile-nav .lang-switch a { border-bottom: none; padding: .42rem 1.1rem; font-size: .9rem; color: var(--ink); opacity: .6; }
html[lang="fr"] .mobile-nav .lang-switch a[data-lang="fr"],
html[lang="nl"] .mobile-nav .lang-switch a[data-lang="nl"],
html[lang="en"] .mobile-nav .lang-switch a[data-lang="en"] { background: var(--accent); color: var(--white); opacity: 1; box-shadow: none; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: var(--white); overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: -1; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 14s var(--ease) forwards; }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(23, 20, 15, .35) 0%, rgba(23, 20, 15, .15) 45%, rgba(23, 20, 15, .82) 100%); }
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero-content { padding-bottom: clamp(4rem, 10vh, 8rem); padding-top: calc(var(--header-h) + 2rem); max-width: 880px; }
.hero-kicker { display: inline-flex; align-items: center; gap: .6rem; font-size: .8rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: rgba(255, 255, 255, .9); margin-bottom: 1.4rem; }
.hero-kicker svg { width: 18px; height: 18px; }
.hero-title { font-size: clamp(2.6rem, 7vw, 5.4rem); font-weight: 300; line-height: 1.02; letter-spacing: -.02em; text-shadow: 0 2px 40px rgba(0, 0, 0, .25); }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.35rem); max-width: 620px; margin-top: 1.6rem; color: rgba(255, 255, 255, .92); font-weight: 400; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }
.hero-scroll { position: absolute; left: 50%; bottom: 1.8rem; transform: translateX(-50%); color: var(--white); opacity: .85; animation: bob 2.2s ease-in-out infinite; }
.hero-scroll svg { width: 30px; height: 30px; }
@keyframes bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ---------- Stats ---------- */
.stats { background: var(--ink); color: var(--paper); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding-block: clamp(2.4rem, 5vw, 3.6rem); }
.stat { text-align: center; padding: .5rem; }
.stat-num { display: block; font-family: var(--serif); font-size: clamp(2.2rem, 4.5vw, 3.4rem); color: var(--white); line-height: 1; }
.stat-num::after { content: '+'; color: var(--accent); }
.stat-label { display: block; margin-top: .5rem; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); }

/* ---------- Portfolio masonry ---------- */
.filters { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.2rem; }
.filter { padding: .5rem 1.2rem; border-radius: var(--r-pill); border: 1.5px solid var(--line); font-size: .88rem; font-weight: 500; color: var(--muted); transition: all .25s; }
.filter:hover { border-color: var(--ink); color: var(--ink); }
.filter.is-active { background: var(--ink); color: var(--white); border-color: var(--ink); }
.masonry { columns: 3; column-gap: 1rem; }
.masonry-item { break-inside: avoid; margin-bottom: 1rem; opacity: 1; transition: opacity .4s, transform .4s; }
.masonry-item.hide { display: none; }
.masonry-link { position: relative; display: block; overflow: hidden; border-radius: var(--r); background: var(--paper-2); }
.masonry-link img { width: 100%; transition: transform .7s var(--ease); }
.masonry-link:hover img { transform: scale(1.06); }
.masonry-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(23, 20, 15, .3); opacity: 0; transition: opacity .35s; color: var(--white); }
.masonry-overlay svg { width: 40px; height: 40px; padding: 9px; border: 1.5px solid var(--white); border-radius: 50%; }
.masonry-link:hover .masonry-overlay { opacity: 1; }
.masonry.collapsed .masonry-item:nth-child(n+7) { display: none; }
.portfolio-more { display: flex; justify-content: center; margin-top: 1.8rem; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.service-card { background: var(--white); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: transform .4s var(--ease), box-shadow .4s; display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-img { aspect-ratio: 3 / 2.2; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.service-card:hover .service-img img { transform: scale(1.07); }
.service-body { padding: 1.7rem; display: flex; flex-direction: column; flex: 1; }
.service-icon { display: inline-flex; width: 48px; height: 48px; align-items: center; justify-content: center; background: var(--paper-2); border-radius: var(--r); color: var(--accent-deep); margin-bottom: 1rem; margin-top: -3.4rem; position: relative; box-shadow: var(--shadow-sm); background: var(--white); }
.service-icon svg { width: 26px; height: 26px; }
.service-body h3 { font-size: 1.5rem; }
.service-tagline { color: var(--accent-deep); font-weight: 600; font-size: .9rem; margin: .3rem 0 .8rem; }
.service-desc { color: var(--muted); font-size: .96rem; flex: 1; margin-bottom: 1.2rem; }

/* ---------- Pricing ---------- */
.pricing { background: var(--paper-2); }
.price-tabs { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 2.6rem; background: var(--white); padding: .5rem; border-radius: var(--r-pill); box-shadow: var(--shadow-sm); width: fit-content; margin-inline: auto; max-width: 100%; }
.price-tab { padding: .6rem 1.25rem; border-radius: var(--r-pill); font-size: .9rem; font-weight: 600; color: var(--muted); transition: all .25s; }
.price-tab.is-active { background: var(--ink); color: var(--white); }
.price-panel { display: none; }
.price-panel.is-active { display: block; animation: fadeUp .5s var(--ease); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; align-items: stretch; }
.price-card { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 2rem 1.8rem; display: flex; flex-direction: column; transition: transform .35s var(--ease), box-shadow .35s; }
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.price-card.is-popular { border-color: var(--accent); box-shadow: var(--shadow); }
.price-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent-grad); color: var(--white); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .4rem .9rem; border-radius: var(--r-pill); white-space: nowrap; }
.price-card h3 { font-size: 1.6rem; }
.price-amount { display: flex; align-items: baseline; gap: .35rem; margin: .8rem 0 .2rem; flex-wrap: wrap; }
.price-from { font-size: .85rem; color: var(--muted); }
.price-value { font-family: var(--serif); font-size: 2.6rem; color: var(--ink); line-height: 1; font-variant-numeric: tabular-nums; }
.price-unit { color: var(--muted); font-size: .9rem; }
.price-duration { display: inline-flex; align-items: center; gap: .4rem; color: var(--accent-deep); font-weight: 600; font-size: .88rem; margin-bottom: 1.3rem; }
.price-duration svg { width: 16px; height: 16px; }
.price-feats { display: flex; flex-direction: column; gap: .7rem; margin-bottom: 1.6rem; flex: 1; }
.price-feats li { display: flex; gap: .6rem; font-size: .92rem; color: var(--ink-soft); align-items: flex-start; }
.price-feats svg { width: 18px; height: 18px; color: var(--accent-deep); flex: none; margin-top: 2px; }
.pricing-note { display: flex; align-items: center; gap: .7rem; justify-content: center; margin-top: 2.4rem; color: var(--muted); font-size: .9rem; text-align: center; }
.pricing-note svg { width: 20px; height: 20px; color: var(--accent-deep); flex: none; }

/* ---------- Process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; counter-reset: step; }
.process-step { position: relative; padding: 2rem 1.5rem; background: var(--white); border-radius: var(--r-lg); border: 1px solid var(--line); }
.process-num { position: absolute; top: 1.4rem; right: 1.6rem; font-family: var(--serif); font-size: 3rem; color: var(--paper-3); line-height: 1; }
.process-icon { display: inline-flex; width: 54px; height: 54px; align-items: center; justify-content: center; background: var(--ink); color: var(--white); border-radius: var(--r); margin-bottom: 1.1rem; }
.process-icon svg { width: 28px; height: 28px; }
.process-step h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.process-step p { color: var(--muted); font-size: .94rem; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about-media { position: relative; }
.about-media img { width: 100%; border-radius: var(--r-lg); aspect-ratio: 4 / 5; object-fit: cover; }
.about-badge { position: absolute; bottom: -22px; left: -22px; background: var(--white); padding: 1rem 1.3rem; border-radius: var(--r); box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: .8rem; }
.about-badge svg { width: 30px; height: 30px; color: var(--accent-deep); }
.about-badge strong { display: block; font-family: var(--serif); font-size: 1.2rem; }
.about-badge span { font-size: .8rem; color: var(--muted); }
.about-text { color: var(--ink-soft); font-size: 1.08rem; margin: 1.4rem 0; }
.about-signature { font-family: var(--serif); font-style: italic; font-size: 2.4rem; color: var(--accent-deep); margin-bottom: 1.5rem; }
.about-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--ink); color: var(--paper); }
.testimonials .section-title { color: var(--white); }
.testimonials .eyebrow { color: var(--accent); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.testi-card { position: relative; background: var(--ink-soft); border: 1px solid rgba(255, 255, 255, .08); border-radius: var(--r-lg); padding: 2rem 1.8rem; }
.testi-quote { position: absolute; top: 1.2rem; right: 1.4rem; }
.testi-quote svg { width: 50px; height: 50px; color: var(--accent); }
.stars { display: inline-flex; gap: 2px; margin-bottom: 1rem; }
.stars svg { width: 18px; height: 18px; color: var(--accent); }
.testi-card blockquote { font-size: 1.05rem; line-height: 1.6; color: var(--paper); margin-bottom: 1.4rem; }
.testi-card figcaption { display: flex; align-items: center; gap: .85rem; }
.testi-card figcaption img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testi-card figcaption strong { display: block; color: var(--white); font-family: var(--serif); font-size: 1.1rem; }
.testi-card figcaption span span { color: var(--muted-2); font-size: .85rem; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; }
.faq-list { display: flex; flex-direction: column; gap: .8rem; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r); background: var(--white); overflow: hidden; transition: box-shadow .3s; }
.faq-item.open { box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 1.5rem; text-align: left; font-weight: 600; font-size: 1.05rem; font-family: var(--serif); }
.faq-q svg { width: 22px; height: 22px; color: var(--accent-deep); flex: none; transition: transform .35s var(--ease); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 1.5rem 1.4rem; color: var(--muted); }

/* ---------- CTA band (cadre viseur) ---------- */
.cta-band { background: var(--paper); padding-block: clamp(3rem, 7vw, 5.5rem); }
.cta-frame {
  position: relative; isolation: isolate; overflow: hidden;
  border-radius: var(--r-lg);
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4.5rem);
  background:
    radial-gradient(120% 140% at 85% 0%, rgba(193, 154, 100, .28), transparent 55%),
    radial-gradient(90% 120% at 0% 100%, rgba(143, 109, 60, .22), transparent 60%),
    var(--ink);
  color: var(--white); text-align: center;
  box-shadow: var(--shadow-lg);
}
/* grain doux */
.cta-frame::after {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 4px 4px; opacity: .5;
}
/* coins de cadrage photo */
.cta-corner { position: absolute; width: 26px; height: 26px; border: 1.5px solid rgba(193, 154, 100, .65); z-index: 2; }
.cta-corner.tl { top: 18px; left: 18px; border-right: 0; border-bottom: 0; border-top-left-radius: 5px; }
.cta-corner.tr { top: 18px; right: 18px; border-left: 0; border-bottom: 0; border-top-right-radius: 5px; }
.cta-corner.bl { bottom: 18px; left: 18px; border-right: 0; border-top: 0; border-bottom-left-radius: 5px; }
.cta-corner.br { bottom: 18px; right: 18px; border-left: 0; border-top: 0; border-bottom-right-radius: 5px; }
/* filigrane appareil photo */
.cta-watermark { position: absolute; right: -2.5rem; bottom: -3rem; z-index: 0; opacity: .06; pointer-events: none; }
.cta-watermark svg { width: clamp(180px, 26vw, 300px); height: auto; color: var(--white); }
.cta-frame .cta-inner { position: relative; z-index: 1; max-width: 680px; margin-inline: auto; padding: 0; }
.cta-frame .eyebrow { display: inline-flex; align-items: center; gap: .5rem; justify-content: center; }
.cta-frame h2 { font-size: clamp(1.9rem, 4.5vw, 3.2rem); color: var(--white); }
.cta-lead { font-size: 1.15rem; margin: 1rem auto 2rem; max-width: 520px; color: rgba(255, 255, 255, .82); }
.cta-actions { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; }
.cta-trust { display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; justify-content: center; margin-top: 2.2rem; padding-top: 1.6rem; border-top: 1px solid rgba(255, 255, 255, .12); list-style: none; }
.cta-trust li { display: inline-flex; align-items: center; gap: .45rem; font-size: .85rem; color: rgba(255, 255, 255, .8); }
.cta-trust svg { width: 16px; height: 16px; color: var(--accent); flex: none; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.contact-list { display: flex; flex-direction: column; gap: 1.3rem; margin: 2rem 0; }
.contact-list li { display: flex; gap: 1rem; align-items: center; }
.contact-list .ci { display: inline-flex; width: 48px; height: 48px; flex: none; align-items: center; justify-content: center; background: var(--paper-2); border-radius: var(--r); color: var(--accent-deep); }
.contact-list .ci svg { width: 22px; height: 22px; }
.contact-list strong { display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 600; }
.contact-list a, .contact-list span { color: var(--ink); }
.contact-social { display: flex; gap: .7rem; }
.contact-social a { width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center; border: 1.5px solid var(--line); border-radius: 50%; color: var(--ink); transition: all .25s; }
.contact-social a:hover { background: var(--ink); color: var(--white); border-color: var(--ink); transform: translateY(-3px); }
.contact-social svg { width: 20px; height: 20px; }
.contact-form { background: var(--white); padding: clamp(1.6rem, 3vw, 2.6rem); border-radius: var(--r-lg); box-shadow: var(--shadow); border: 1px solid var(--line); }

/* ---------- Forms ---------- */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; display: flex; flex-direction: column; gap: .4rem; }
.field label { font-size: .85rem; font-weight: 600; color: var(--ink-soft); }
.field label span { color: var(--danger); }
.field input, .field textarea, .field select {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--paper); transition: border-color .2s, box-shadow .2s; min-height: 48px;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(176, 138, 82, .14); }
/* Champ type mot de passe avec bascule afficher/masquer */
.pw-field { position: relative; }
.pw-field input { padding-right: 3.1rem; }
.pw-toggle {
  position: absolute; top: 50%; right: .5rem; transform: translateY(-50%);
  width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center;
  color: var(--muted); border-radius: var(--r-sm); cursor: pointer; background: transparent;
  transition: color .2s, background .2s;
}
.pw-toggle:hover { color: var(--accent-deep); background: var(--paper-2); }
.pw-toggle svg { width: 20px; height: 20px; }
.pw-toggle .pw-eye-off { display: none; }
.pw-toggle.is-shown .pw-eye { display: none; }
.pw-toggle.is-shown .pw-eye-off { display: inline-flex; }
.field input.invalid, .field textarea.invalid { border-color: var(--danger); }
.checkbox { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; color: var(--muted); margin-bottom: 1.2rem; cursor: pointer; }
.checkbox input { width: 20px; height: 20px; margin-top: 2px; flex: none; accent-color: var(--accent-deep); }
.form-status { margin-top: 1rem; font-size: .92rem; min-height: 1.2em; text-align: center; }
.form-status.is-success { color: var(--success); font-weight: 600; }
.form-status.is-error { color: var(--danger); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--muted-2); padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.3fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-logo { color: var(--white); }
.footer-brand p { margin: 1rem 0 1.4rem; max-width: 280px; }
.footer-social { display: flex; gap: .6rem; }
.footer-social a { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(255, 255, 255, .15); border-radius: 50%; color: var(--paper); transition: all .25s; }
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }
.footer-social svg { width: 19px; height: 19px; }
.footer-col h4 { color: var(--white); font-family: var(--sans); font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 1.2rem; font-weight: 600; }
.footer-col a, .footer-meta { display: flex; align-items: center; gap: .55rem; color: var(--muted-2); padding: .35rem 0; transition: color .2s; }
/* exclut le bouton .btn (fond blanc) sinon son texte deviendrait blanc au survol */
.footer-col a:not(.btn):hover { color: var(--white); }
/* le bouton « Demander un devis » garde un texte encre lisible (repos + survol) */
.footer-col a.btn-light, .footer-col a.btn-light:hover { color: var(--ink); }
.footer-col svg { width: 17px; height: 17px; flex: none; }
.footer-meta-text { color: var(--muted-2); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; padding: 1.6rem 0; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .85rem; }
.footer-bottom-links { display: flex; gap: 1.4rem; }
.footer-bottom-links a:hover { color: var(--white); }

/* ---------- To top ---------- */
.to-top { position: fixed; right: 1.4rem; bottom: 1.4rem; width: 48px; height: 48px; background: var(--ink); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(12px); transition: all .3s; z-index: 90; }
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top svg { width: 22px; height: 22px; }

/* ---------- Widget flottant contact ---------- */
.float-contact {
  position: fixed; right: 1.4rem; bottom: calc(1.4rem + 48px + .8rem); z-index: 95;
  display: flex; flex-direction: column; align-items: flex-end; gap: .6rem;
}
.float-contact-menu { display: flex; flex-direction: column; gap: .6rem; }
.float-contact-menu a {
  width: 48px; height: 48px; border-radius: 50%; background: var(--white); color: var(--ink);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow);
  transform-origin: center top; animation: float-sway 2.8s ease-in-out infinite;
  transition: background .2s, color .2s, box-shadow .2s;
}
.float-contact-menu a:nth-child(2) { animation-delay: .12s; }
.float-contact-menu a:nth-child(3) { animation-delay: .24s; }
.float-contact-menu a:nth-child(4) { animation-delay: .36s; }
.float-contact-menu a:nth-child(5) { animation-delay: .48s; }
.float-contact-menu a svg { width: 21px; height: 21px; }
.float-contact-menu a:hover { background: var(--accent); color: var(--white); box-shadow: 0 8px 22px rgba(143, 109, 60, .4); }

@keyframes float-sway {
  0%, 100% { transform: rotate(-7deg); }
  50% { transform: rotate(7deg); }
}
@media (prefers-reduced-motion: reduce) {
  .float-contact-menu a { animation: none; }
}
@media (max-width: 640px) {
  .float-contact { right: 1rem; bottom: calc(1rem + 48px + .7rem); }
  .float-contact-menu a { width: 44px; height: 44px; }
}

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 1000; background: rgba(15, 13, 10, .94); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity .3s; padding: 2rem; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: var(--r-sm); box-shadow: var(--shadow-lg); animation: fadeUp .4s var(--ease); }
.lb-btn { position: absolute; background: rgba(255, 255, 255, .1); color: var(--white); width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(6px); transition: background .2s; }
.lb-btn:hover { background: rgba(255, 255, 255, .25); }
.lb-btn svg { width: 26px; height: 26px; }
.lb-close { top: 1.4rem; right: 1.4rem; }
.lb-prev { left: 1.4rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.4rem; top: 50%; transform: translateY(-50%); }
.lb-caption { position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); color: rgba(255, 255, 255, .8); font-size: .9rem; background: rgba(0, 0, 0, .3); padding: .4rem 1rem; border-radius: var(--r-pill); }

/* ---------- Legal / error ---------- */
.legal-wrap { max-width: 760px; }
.legal h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1.5rem; }
.legal h2 { font-size: 1.4rem; margin: 2rem 0 .6rem; }
.legal p { color: var(--muted); }
.error-page { text-align: center; padding-block: 4rem; }
.error-page h1 { font-size: 6rem; color: var(--accent); }
.error-page p { color: var(--muted); margin: 1rem 0 2rem; }

/* ============================================================
   Page Réservation
   ============================================================ */
.book-hero { background: var(--ink); color: var(--white); padding: calc(var(--header-h) + 3rem) 0 3rem; text-align: center; }
.book-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.book-hero p { color: var(--muted-2); margin-top: .8rem; }
.book-hero .eyebrow { justify-content: center; }
.book-section { background: var(--paper-2); }
.book-container { display: grid; grid-template-columns: 1fr 320px; gap: 2.5rem; align-items: start; }
.stepper { grid-column: 1 / -1; display: flex; gap: .5rem; margin-bottom: 2rem; counter-reset: s; flex-wrap: wrap; }
.step { display: flex; align-items: center; gap: .6rem; flex: 1; min-width: 130px; opacity: .5; transition: opacity .3s; }
.step.is-active, .step.done { opacity: 1; }
.step-dot { width: 36px; height: 36px; border-radius: 50%; background: var(--white); border: 1.5px solid var(--line); display: flex; align-items: center; justify-content: center; font-weight: 700; flex: none; transition: all .3s; }
.step-dot svg { width: 20px; height: 20px; }
.step.is-active .step-dot { background: var(--ink); color: var(--white); border-color: var(--ink); }
.step.done .step-dot { background: var(--success); color: var(--white); border-color: var(--success); }
.step-label { font-size: .9rem; font-weight: 600; }
.book-form { background: var(--white); border-radius: var(--r-lg); padding: clamp(1.5rem, 3vw, 2.6rem); box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.book-panel { display: none; border: none; padding: 0; min-inline-size: 0; }
.book-panel.is-active { display: block; animation: fadeUp .4s var(--ease); }
.book-legend { font-family: var(--serif); font-size: 1.6rem; margin-bottom: 1.5rem; padding: 0; }
.book-subtitle { font-family: var(--serif); font-size: 1.25rem; margin: 1.8rem 0 1rem; }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .9rem; }
.choice-grid--pkg { grid-template-columns: repeat(3, 1fr); }
.choice { position: relative; border: 1.5px solid var(--line); border-radius: var(--r); padding: 1.1rem; cursor: pointer; transition: all .25s; overflow: hidden; }
.choice:hover { border-color: var(--accent); transform: translateY(-2px); }
.choice.selected { border-color: var(--ink); background: var(--paper); box-shadow: inset 0 0 0 1px var(--ink); }
.choice.selected::after { content: ''; position: absolute; top: .8rem; right: .8rem; width: 20px; height: 20px; border-radius: 50%; background: var(--ink) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m20 6-11 11-5-5'/%3E%3C/svg%3E") center/14px no-repeat; }
.choice h4 { font-family: var(--serif); font-size: 1.2rem; }
.choice .choice-tag { font-size: .82rem; color: var(--muted); margin-top: .2rem; }
.choice .choice-price { font-weight: 700; color: var(--accent-deep); margin-top: .6rem; font-size: 1.05rem; }
.choice .choice-dur { font-size: .82rem; color: var(--muted); }
.choice-popular { position: absolute; top: 0; left: 0; background: var(--accent); color: var(--white); font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: .25rem .6rem; border-bottom-right-radius: var(--r-sm); }
.book-actions { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: 2rem; }
.book-actions--center { justify-content: center; }

/* Calendar */
.calendar-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; }
.calendar { }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.cal-month { font-family: var(--serif); font-size: 1.25rem; text-transform: capitalize; }
.cal-nav { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--line); display: flex; align-items: center; justify-content: center; transition: all .2s; }
.cal-nav:hover:not(:disabled) { background: var(--ink); color: var(--white); border-color: var(--ink); }
.cal-nav:disabled { opacity: .35; cursor: not-allowed; }
.cal-nav svg { width: 20px; height: 20px; }
.cal-weekdays, .cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-weekdays span { text-align: center; font-size: .72rem; font-weight: 600; color: var(--muted); text-transform: uppercase; padding-bottom: .5rem; }
.cal-day { aspect-ratio: 1; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: .9rem; font-weight: 500; border: 1.5px solid transparent; transition: all .2s; }
.cal-day.empty { visibility: hidden; }
.cal-day.free { background: var(--paper-2); cursor: pointer; }
.cal-day.free:hover { border-color: var(--accent); background: var(--white); }
.cal-day.busy { color: var(--muted-2); text-decoration: line-through; cursor: not-allowed; opacity: .55; }
.cal-day.selected { background: var(--ink); color: var(--white); }
.cal-day.today { box-shadow: inset 0 0 0 1.5px var(--accent); }
.cal-legend { display: flex; gap: 1.2rem; margin-top: 1rem; font-size: .8rem; color: var(--muted); align-items: center; }
.cal-legend .dot { width: 12px; height: 12px; border-radius: 3px; display: inline-block; margin-right: .35rem; vertical-align: -1px; }
.dot-free { background: var(--paper-3); }
.dot-busy { background: var(--muted-2); }
.slots .book-subtitle { margin-top: 0; }
.slot-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem; }
.slot { padding: .85rem; border: 1.5px solid var(--line); border-radius: var(--r-sm); font-weight: 600; transition: all .2s; }
.slot:hover:not(:disabled) { border-color: var(--accent); }
.slot.selected { background: var(--ink); color: var(--white); border-color: var(--ink); }
.slot:disabled { opacity: .4; cursor: not-allowed; text-decoration: line-through; }

/* Summary aside */
.book-summary { background: var(--white); border-radius: var(--r-lg); padding: 1.8rem; box-shadow: var(--shadow-sm); border: 1px solid var(--line); position: sticky; top: calc(var(--header-h) + 1rem); }
.book-summary h3 { font-family: var(--serif); font-size: 1.35rem; margin-bottom: 1.2rem; }
.summary-list { display: flex; flex-direction: column; gap: .9rem; }
.summary-list > div { display: flex; justify-content: space-between; gap: 1rem; padding-bottom: .9rem; border-bottom: 1px solid var(--line); }
.summary-list dt { color: var(--muted); font-size: .88rem; }
.summary-list dd { font-weight: 600; text-align: right; }
.summary-total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 1.2rem; }
.summary-total span { color: var(--muted); font-size: .9rem; }
.summary-total strong { font-family: var(--serif); font-size: 1.8rem; color: var(--accent-deep); }
.summary-help { display: flex; gap: .5rem; margin-top: 1.2rem; font-size: .82rem; color: var(--muted); }
.summary-help svg { width: 18px; height: 18px; flex: none; color: var(--accent-deep); }

/* Confirmation */
.book-confirm { text-align: center; padding: 1.5rem 0; }
.confirm-icon { width: 80px; height: 80px; margin: 0 auto 1.5rem; background: var(--success); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; animation: pop .5s var(--ease); }
.confirm-icon svg { width: 44px; height: 44px; }
@keyframes pop { 0% { transform: scale(0); } 60% { transform: scale(1.15); } 100% { transform: scale(1); } }
.book-confirm h2 { font-size: 2.2rem; }
.confirm-ref { font-weight: 700; color: var(--accent-deep); font-size: 1.1rem; margin: .6rem 0; }
.confirm-recap { background: var(--paper-2); border-radius: var(--r); padding: 1.3rem; max-width: 420px; margin: 1.5rem auto; text-align: left; font-size: .95rem; }
.confirm-recap div { display: flex; justify-content: space-between; padding: .35rem 0; }
.confirm-recap dt { color: var(--muted); }
.confirm-note { color: var(--muted); max-width: 480px; margin: 0 auto 1.8rem; }

/* ============================================================
   Espace client
   ============================================================ */
.client-hero { background: var(--ink); color: var(--white); text-align: center; padding: calc(var(--header-h) + 3.5rem) 0 3.5rem; }
.client-hero-inner { max-width: 560px; margin-inline: auto; }
.client-lock { display: inline-flex; width: 64px; height: 64px; align-items: center; justify-content: center; background: rgba(255, 255, 255, .08); border-radius: 50%; margin-bottom: 1.4rem; color: var(--accent); }
.client-lock svg { width: 30px; height: 30px; }
.client-hero h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); }
.client-hero p { color: var(--muted-2); margin-top: .8rem; }
.client-access { max-width: 440px; margin-inline: auto; }
.access-form { background: var(--white); padding: 2.2rem; border-radius: var(--r-lg); box-shadow: var(--shadow); border: 1px solid var(--line); }
.access-hint { display: flex; align-items: center; gap: .5rem; justify-content: center; margin-top: 1.2rem; font-size: .85rem; color: var(--muted); }
.access-hint svg { width: 18px; height: 18px; color: var(--accent-deep); }
.client-gallery-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1.2rem; margin-bottom: 2rem; }
.gal-message { color: var(--muted); max-width: 560px; margin-top: .6rem; font-style: italic; }
.gal-actions { display: flex; gap: .6rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services-grid, .price-grid, .testi-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .masonry { columns: 2; }
  .book-container { grid-template-columns: 1fr; }
  .book-summary { position: static; order: -1; }
}
@media (max-width: 860px) {
  .header-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .about-grid, .contact-grid, .calendar-layout { grid-template-columns: 1fr; }
  .about-badge { left: 1rem; bottom: -18px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .services-grid, .price-grid, .testi-grid, .process-grid { grid-template-columns: 1fr; }
  .masonry { columns: 1; }
  .choice-grid, .choice-grid--pkg { grid-template-columns: 1fr; }
  .price-tabs { width: 100%; overflow-x: auto; flex-wrap: nowrap; justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: .8rem; }
  .footer-bottom-links { justify-content: center; }
  .step-label { display: none; }
  .step { min-width: 0; flex: none; }
  .stepper { justify-content: space-between; }
  .lb-prev { left: .5rem; } .lb-next { right: .5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
