/* ================================
   MD'O PISCINE — Stylesheet
   Editorial · Mediterranean · Modern
   ================================ */

:root {
  /* Color system — clear cream + deep navy */
  --cream: #F3EDDF;
  --cream-deep: #EBE2CF;
  --sand: #DBC8A8;
  --sand-deep: #B89968;
  --water: #5B7E9A;
  --water-deep: #2D5F7E;
  --water-darkest: #173446;
  --water-light: #BFD0DC;
  --water-tint: #E5ECF1;
  --foliage: #6B7F6B;
  --ink: #1B3A4B;
  --ink-soft: #4F6573;
  --ink-mute: #8A9499;
  --white: #FFFFFF;
  --black: #050D11;
  --line: rgba(27, 58, 75, 0.1);
  --line-soft: rgba(27, 58, 75, 0.06);

  /* Type */
  --font-display: 'Montserrat', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-serif: 'Montserrat', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* Sizing */
  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 18px;
  --radius-sm: 10px;
  --radius-lg: 28px;
  --radius-full: 999px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.7, 0, 0.84, 0);
}

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

::selection { background: var(--water-deep); color: var(--cream); }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 80px;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  width: 100%;
}

/* ===== Typography helpers ===== */
.section-title,
.hero-title,
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.section-title em,
.hero-title em,
.zone-title em,
h1 em, h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--water-deep);
  letter-spacing: -0.005em;
}
em { font-style: italic; font-weight: 400; }

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: all 0.4s var(--ease);
  background: rgba(243, 237, 223, 0.8);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  padding: 0.6rem 0;
  background: rgba(243, 237, 223, 0.92);
  border-bottom-color: var(--line-soft);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
  transition: color 0.4s var(--ease), opacity 0.2s var(--ease);
}
.logo:hover { opacity: 0.75; }
.logo-mark { transition: transform 0.4s var(--ease); flex-shrink: 0; }
.logo:hover .logo-mark { transform: translateY(-2px); }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
}
.logo-text em { font-style: italic; font-weight: 400; opacity: 0.85; }

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.2rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.4s var(--ease);
}
.nav-links a:hover { color: var(--water-deep); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav.is-scrolled .nav-links a:hover { color: var(--water-deep); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  background: var(--water-deep);
  color: var(--cream);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--ink); color: var(--cream); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--ink);
  transition: color 0.4s var(--ease);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

/* When mobile menu is open: nav goes transparent, logo + toggle turn cream */
.nav.nav-menu-open {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}
.nav.nav-menu-open .logo,
.nav.nav-menu-open .nav-toggle { color: var(--cream); }

/* ===== Mobile menu ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--water-darkest);
  color: var(--cream);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 6rem var(--gutter) 3rem;
}
.mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.mobile-links a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  display: block;
  padding: 0.4rem 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.3s var(--ease);
}
.mobile-menu.is-open .mobile-links a {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.is-open .mobile-links li:nth-child(1) a { transition-delay: 0.1s; }
.mobile-menu.is-open .mobile-links li:nth-child(2) a { transition-delay: 0.15s; }
.mobile-menu.is-open .mobile-links li:nth-child(3) a { transition-delay: 0.2s; }
.mobile-menu.is-open .mobile-links li:nth-child(4) a { transition-delay: 0.25s; }
.mobile-menu.is-open .mobile-links li:nth-child(5) a { transition-delay: 0.3s; }
.mobile-links a:hover { color: var(--water-light); }
.mobile-menu-footer {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 239, 230, 0.15);
}
.mobile-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--cream);
}
.mobile-email {
  color: var(--water-light);
  font-size: 0.95rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn svg { transition: transform 0.3s var(--ease); }

.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--water-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px rgba(15, 39, 48, 0.3);
}
.btn-primary:hover svg { transform: translateX(3px); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 239, 230, 0.4);
}
.btn-ghost:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 239, 230, 0.4);
}
.btn-ghost-light:hover {
  background: var(--cream);
  color: var(--water-darkest);
  border-color: var(--cream);
}

.btn-large {
  padding: 1.15rem 2rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.2rem;
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.btn-text:hover { gap: 0.7rem; color: var(--water-deep); border-color: var(--water-deep); }

/* ===== Section heads ===== */
.section-head {
  max-width: 760px;
  margin-bottom: 4rem;
}
.section-head-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--water-deep);
  margin-bottom: 1.4rem;
}
.section-eyebrow.center { justify-content: center; }
.section-eyebrow .bar {
  width: 32px; height: 1px;
  background: var(--water-deep);
}

.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1.08;
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.section-lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 540px;
}
.section-head-center .section-lead { margin-left: auto; margin-right: auto; }

/* ===== Reveal animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-line {
  display: block;
  overflow: hidden;
}
.reveal-line > span {
  display: block;
  transform: translateY(100%);
  transition: transform 1s var(--ease);
  transition-delay: 0.2s;
}
.reveal-line.is-visible > span {
  transform: translateY(0);
}
.reveal-line:nth-child(2) > span { transition-delay: 0.4s; }

/* ===== Hero — split editorial (text on cream + photo) ===== */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  min-height: 600px;
  background: var(--cream);
  overflow: hidden;
}
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6.5rem var(--gutter);
}
.hero-text-inner {
  max-width: 620px;
  margin-left: auto;
  width: 100%;
  padding-right: clamp(1.5rem, 4vw, 4rem);
}
.hero-index {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.hero-index-num {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--water-deep);
  letter-spacing: 0;
}
.hero-rule {
  width: clamp(28px, 4vw, 56px);
  height: 1px;
  background: var(--water);
  opacity: 0.6;
}
.hero-title {
  font-size: clamp(2.5rem, 4.4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1.6rem;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--water-deep);
}
.hero-sub {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 2.2rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-bottom: 2.6rem;
}
.hero-link-ghost {
  display: inline-flex;
  align-items: center;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--ink);
  padding-bottom: 0.2rem;
  border-bottom: 1px solid var(--ink);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.hero-link-ghost:hover { color: var(--water-deep); border-color: var(--water-deep); }
.hero-tags {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}

.hero-photo {
  position: relative;
  overflow: hidden;
  margin: 6.5rem 0;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 20s var(--ease) forwards;
}
@keyframes heroZoom {
  0% { transform: scale(1.08); }
  100% { transform: scale(1.0); }
}

/* Hero entrance — content ALWAYS visible (no opacity:0 base); animation only adds a
   gentle 16px lift. If playback is paused/disabled, content stays visible & in place. */
.hero-line { display: block; }
.hero-index { animation: heroLift 0.8s var(--ease) 0.05s both; }
.hero-title { animation: heroLift 0.85s var(--ease) 0.16s both; }
.hero-sub { animation: heroLift 0.8s var(--ease) 0.34s both; }
.hero-actions { animation: heroLift 0.8s var(--ease) 0.46s both; }
.hero-tags { animation: heroLift 0.8s var(--ease) 0.56s both; }

@keyframes heroLift {
  from { transform: translateY(16px); }
  to { transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-index, .hero-title, .hero-sub, .hero-actions, .hero-tags { animation: none; }
}

/* ===== Manifesto ===== */
.manifesto {
  padding: 7rem 0 6rem;
  background: var(--cream);
  position: relative;
}
.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 980px;
}
.manifesto-text em {
  color: var(--water-deep);
}
.manifesto-text .accent {
  font-weight: 500;
  color: var(--water-deep);
}

/* ===== Services — editorial index ===== */
.services {
  padding: 6rem 0 8rem;
  background: var(--cream);
}
.svc-index {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: start;
}
.svc-list {
  list-style: none;
  border-top: 1px solid var(--line);
}
.svc-item {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  padding: 2rem 0.5rem 2rem 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  position: relative;
  transition: padding-left 0.45s var(--ease);
}
.svc-item::before {
  content: '';
  position: absolute;
  left: -100%;
  top: 0; bottom: 0;
  width: 100%;
  background: linear-gradient(to right, transparent, rgba(45, 95, 126, 0.04));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.svc-num {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--water);
  letter-spacing: 0.04em;
  padding-top: 0.55rem;
  flex-shrink: 0;
  transition: color 0.4s var(--ease);
}
.svc-body { flex: 1; }
.svc-name {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--ink);
  transition: color 0.4s var(--ease), transform 0.45s var(--ease);
}
.svc-desc {
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 52ch;
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), opacity 0.4s var(--ease), margin-top 0.4s var(--ease);
}
.svc-arrow {
  color: var(--water-deep);
  flex-shrink: 0;
  margin-top: 0.5rem;
  opacity: 0;
  transform: translate(-8px, 8px);
  transition: opacity 0.4s var(--ease), transform 0.45s var(--ease);
}
.svc-item.is-active {
  padding-left: 1.2rem;
}
.svc-item.is-active::before { opacity: 1; }
.svc-item.is-active .svc-num { color: var(--water-deep); }
.svc-item.is-active .svc-desc {
  max-height: 140px;
  opacity: 1;
  margin-top: 0.8rem;
}
.svc-item.is-active .svc-arrow { opacity: 1; transform: translate(0, 0); }
@media (hover: hover) {
  .svc-item:hover .svc-name { color: var(--water-deep); }
}

/* Sticky visual panel */
.svc-visual {
  position: sticky;
  top: 100px;
  align-self: start;
}
.svc-visual-inner {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--water-tint);
}
.svc-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s var(--ease), transform 6s var(--ease);
}
.svc-img.is-swapping { opacity: 0; }
.svc-visual-label {
  display: block;
  margin-top: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}

/* ===== Le technicien ===== */
.technicien {
  padding: 8rem 0;
  background: var(--cream-deep);
  position: relative;
  overflow: hidden;
}
.technicien::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--water-tint), transparent 70%);
  opacity: 0.5;
  z-index: 0;
}
.technicien .container { position: relative; z-index: 1; }

.technicien-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.technicien-visual {
  position: relative;
}
.technicien-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--water-tint);
}
.technicien-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 70%, rgba(15, 39, 48, 0.12));
}
.technicien-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 15%;
  transition: transform 1.2s var(--ease);
}
.technicien-photo:hover img { transform: scale(1.04); }

.technicien-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--cream);
  border-radius: var(--radius-full);
  padding: 1rem 1.5rem 1rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 16px 40px -12px rgba(15, 39, 48, 0.15);
  border: 1px solid var(--line-soft);
}
.technicien-badge > svg { color: var(--water-deep); }
.badge-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.badge-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
}

.technicien-content {
  padding-left: 1rem;
}
.section-number {
  display: inline-block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  font-weight: 400;
  color: var(--water-deep);
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.technicien-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 2.2rem;
  max-width: 640px;
  position: relative;
}
.technicien-quote .quote-mark {
  color: var(--water-deep);
  margin-right: 0.15em;
  font-style: italic;
  font-size: 1em;
}
.technicien-text {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.6rem;
  font-size: 0.96rem;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 540px;
}
.technicien-text strong {
  color: var(--ink);
  font-weight: 600;
}

.technicien-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  max-width: 540px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--water-deep);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
}
.stat-num em {
  font-size: 0.75em;
  font-style: normal;
  font-weight: 500;
  color: var(--water-deep);
  margin-left: 0.05em;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-soft);
  font-weight: 500;
}

.technicien-caption {
  display: flex;
  justify-content: space-between;
  margin-top: 1.6rem;
  padding: 0 0.2rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
  font-weight: 500;
}

/* ===== Approche ===== */
.approche {
  padding: 8rem 0;
  background: var(--water-darkest);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.approche::before {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(91, 163, 181, 0.15), transparent 70%);
  z-index: 0;
}
.approche .container { position: relative; z-index: 1; }
.approche .section-eyebrow { color: var(--water-light); }
.approche .section-eyebrow .bar { background: var(--water-light); }
.approche .section-title { color: var(--cream); }
.approche .section-title em { color: var(--water-light); }

.approche-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 4rem;
}
.approche-item {
  padding: 2.5rem 2rem;
  background: rgba(245, 239, 230, 0.04);
  border: 1px solid rgba(245, 239, 230, 0.1);
  border-radius: var(--radius);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.5s var(--ease);
}
.approche-item:hover {
  background: rgba(245, 239, 230, 0.07);
  border-color: rgba(184, 220, 227, 0.3);
  transform: translateY(-4px);
}
.approche-num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--water-light);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}
.approche-item h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}
.approche-item p {
  color: rgba(245, 239, 230, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== Gallery ===== */
.gallery {
  padding: 5rem 0;
  background: var(--cream);
  overflow: hidden;
}
.gallery-track {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  padding: 0 var(--gutter);
  max-width: 1320px;
  margin: 0 auto;
}
.gallery-item {
  aspect-ratio: 16 / 11;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  margin: 0;
  transition: transform 0.6s var(--ease);
}
.gallery-item-tall { aspect-ratio: 3 / 5; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.gallery-item:hover { transform: translateY(-6px); }
.gallery-item:hover img { transform: scale(1.06); }

/* ===== Zone d'intervention ===== */
.zone {
  padding: 7rem 0 8rem;
  background: var(--cream);
}
.zone-map-wrap {
  margin: 0 auto 4rem;
  max-width: 900px;
  position: relative;
}
.zone-map {
  width: 100%;
  height: auto;
  display: block;
}
.zone-cities-svg circle {
  transition: r 0.3s var(--ease);
}

.zone-content {
  max-width: 880px;
}
.zone-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 500;
  margin: 0.8rem 0 1.4rem;
}
.zone-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 2.6rem;
  max-width: 580px;
}

/* Pills */
.zone-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  background: transparent;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.pill:hover {
  border-color: var(--water-deep);
  color: var(--water-deep);
}
.pill-active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.pill-active:hover {
  background: var(--water-deep);
  color: var(--cream);
  border-color: var(--water-deep);
}
.pill-ghost {
  border-style: dashed;
  opacity: 0.7;
}
.pill-ghost:hover { opacity: 1; }

/* Floating phone CTA */
.floating-phone {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.5rem;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  box-shadow: 0 18px 40px -12px rgba(15, 39, 48, 0.4);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), opacity 0.4s var(--ease);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.floating-phone.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.floating-phone:hover {
  background: var(--water-deep);
  transform: translateY(-2px);
}
.floating-phone svg { flex-shrink: 0; }
@media (max-width: 720px) {
  .floating-phone {
    bottom: 1rem;
    right: 1rem;
    padding: 0.85rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* ===== CTA band ===== */
.cta-band {
  padding: 6rem 0;
  background: var(--water-darkest);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(91, 163, 181, 0.2), transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(184, 220, 227, 0.08), transparent 50%);
  z-index: 0;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
}
.cta-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--water-light);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  line-height: 1.1;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 1rem;
}
.cta-text h2 em { color: var(--water-light); }
.cta-text p {
  color: rgba(245, 239, 230, 0.75);
  font-size: 1.05rem;
  max-width: 480px;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.cta-actions .btn-primary {
  background: var(--cream);
  color: var(--ink);
}
.cta-actions .btn-primary:hover { background: var(--water-light); color: var(--ink); }

/* ===== Contact ===== */
.contact {
  padding: 8rem 0;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
}
.contact-lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: 3rem;
  max-width: 380px;
  line-height: 1.6;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
a.contact-detail:hover {
  border-color: var(--water);
  transform: translateY(-2px);
}
.contact-detail-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--water-tint);
  color: var(--water-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  margin-bottom: 0.1rem;
}
.contact-detail-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
}

.contact-form-wrap {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-field label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--ink);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--water-deep);
  background: var(--white);
}
.form-field textarea { resize: vertical; min-height: 120px; font-family: var(--font-body); }
.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%230F2730' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-note {
  font-size: 0.82rem;
  color: var(--ink-mute);
  text-align: center;
  margin-top: 0.4rem;
}

/* Form success state */
.form-success {
  text-align: center;
  padding: 3rem 1rem;
}
.form-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: var(--water-tint);
  color: var(--water-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}
.form-success p { color: var(--ink-soft); font-size: 0.96rem; }

/* ===== Footer ===== */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand .logo { color: var(--cream); margin-bottom: 1.4rem; }
.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.4;
  color: rgba(245, 239, 230, 0.7);
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--water-light);
  font-weight: 500;
  margin-bottom: 1.2rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col li, .footer-col a {
  font-size: 0.94rem;
  color: rgba(245, 239, 230, 0.7);
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 239, 230, 0.1);
  font-size: 0.85rem;
  color: rgba(245, 239, 230, 0.5);
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-credit a {
  color: var(--water-light);
  font-weight: 500;
  transition: color 0.2s var(--ease);
}
.footer-credit a:hover { color: var(--cream); }

/* ============================================
   RESPONSIVE — Mobile-first refinements
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  :root { --gutter: clamp(1.25rem, 4vw, 2rem); }

  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }

  .approche-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-index {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .svc-visual {
    position: relative;
    top: 0;
    order: -1;
    max-width: 420px;
  }

  .technicien-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .technicien-content { padding-left: 0; }
  .technicien-visual { max-width: 520px; margin: 0 auto; width: 100%; }

  .zone-map-wrap { max-width: 720px; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .cta-text p { margin-left: auto; margin-right: auto; }
  .cta-actions { align-items: center; }
  .cta-actions .btn { min-width: 280px; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .footer-brand { grid-column: 1 / -1; }
}

/* Mobile */
@media (max-width: 720px) {
  :root {
    --gutter: 1.25rem;
    --radius: 14px;
    --radius-lg: 20px;
  }
  body { font-size: 15px; }

  /* Nav */
  .nav { padding: 0.75rem 0; background: linear-gradient(to bottom, rgba(15, 39, 48, 0.55), transparent); }
  .nav.is-scrolled { padding: 0.55rem 0; }
  .logo-text { font-size: 1.1rem; }
  .logo-mark { width: 26px; height: 18px; }
  .nav-toggle { width: 40px; height: 40px; }

  /* Mobile menu — refined */
  .mobile-menu-inner { padding: 5rem var(--gutter) 2rem; gap: 2rem; }
  .mobile-links a { font-size: clamp(1.8rem, 7vw, 2.4rem); padding: 0.3rem 0; }
  .mobile-menu-footer { padding-top: 1.5rem; }
  .mobile-cta { font-size: 1.1rem; }

  /* Hero — mobile (fullscreen photo + text overlay at bottom) */
  .hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
  }
  .hero-photo {
    position: absolute;
    inset: 0;
    margin: 0;
    border-radius: 0;
    height: 100%;
    z-index: 0;
  }
  .hero-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
      rgba(13,30,38,0.22) 0%,
      rgba(13,30,38,0.04) 28%,
      rgba(13,30,38,0.38) 56%,
      rgba(13,30,38,0.78) 80%,
      rgba(13,30,38,0.94) 100%);
  }
  .hero-text {
    position: relative;
    z-index: 2;
    justify-content: flex-end;
    padding: 5rem var(--gutter) 3rem;
    width: 100%;
  }
  .hero-text-inner { padding-right: 0; max-width: 100%; }
  /* Photo reste nette ; le texte se détache via une ombre portée soignée */
  .hero-title { text-shadow: 0 2px 18px rgba(8,20,26,0.75), 0 1px 3px rgba(8,20,26,0.5); }
  .hero-sub { text-shadow: 0 1px 10px rgba(8,20,26,0.65); }
  .hero-index { text-shadow: 0 1px 8px rgba(8,20,26,0.6); }
  .hero-tags { text-shadow: 0 1px 8px rgba(8,20,26,0.6); }
  /* Text in cream over the darkened photo */
  .hero-index { color: rgba(245,239,230,0.85); font-size: 0.68rem; letter-spacing: 0.1em; gap: 0.7rem; margin-bottom: 1.1rem; }
  .hero-index-num { color: var(--water-light); font-size: 0.85rem; }
  .hero-rule { width: 26px; background: rgba(245,239,230,0.55); }
  .hero-title { color: var(--cream); font-size: clamp(2.2rem, 9vw, 3.1rem); line-height: 1.04; margin-bottom: 1rem; }
  .hero-title em { color: var(--water-light); }
  .hero-sub { color: rgba(245,239,230,0.9); font-size: 0.95rem; line-height: 1.5; margin-bottom: 1.5rem; max-width: 100%; }
  .hero-actions { gap: 0.9rem 1.2rem; margin-bottom: 1.5rem; }
  .hero-actions .btn { padding: 0.95rem 1.5rem; }
  .hero-link-ghost { color: var(--cream); border-color: rgba(245,239,230,0.55); }
  .hero-link-ghost:hover { color: var(--water-light); border-color: var(--water-light); }
  .hero-tags { color: rgba(245,239,230,0.72); border-top-color: rgba(245,239,230,0.2); font-size: 0.64rem; padding-top: 1.2rem; }

  /* Manifesto */
  .manifesto { padding: 2.75rem 0 2.5rem; }
  .manifesto-text {
    font-size: clamp(1.25rem, 5.2vw, 1.75rem);
    line-height: 1.28;
    letter-spacing: -0.01em;
  }

  /* Section head common */
  .section-head { margin-bottom: 1.6rem; }
  .section-number {
    font-size: 0.88rem;
    margin-bottom: 0.7rem;
  }
  .section-title {
    font-size: clamp(1.8rem, 7.5vw, 2.4rem);
    line-height: 1.08;
  }
  .section-lead { font-size: 0.94rem; }

  /* Services — editorial index */
  .services { padding: 2.75rem 0 3rem; }
  .svc-index { gap: 0; }
  .svc-visual { display: none; } /* image décorative masquée sur mobile (pas de survol) */
  .svc-item { gap: 0.9rem; padding: 1.1rem 0.3rem 1.1rem 0; }
  .svc-item.is-active { padding-left: 0.5rem; }
  .svc-num { font-size: 0.78rem; padding-top: 0.35rem; }
  .svc-name { font-size: 1.25rem; }
  .svc-desc { font-size: 0.88rem; line-height: 1.5; }
  /* On mobile, always show description (no hover) */
  .svc-item .svc-desc { max-height: 200px; opacity: 1; margin-top: 0.5rem; }
  .svc-arrow { display: none; }

  /* Technicien */
  .technicien { padding: 2.75rem 0; }
  .technicien::before { width: 250px; height: 250px; top: -50px; left: -80px; }
  .technicien-grid { gap: 1.8rem; }
  .technicien-content { padding-left: 0; }
  .technicien-photo { aspect-ratio: 4 / 5; }
  .technicien-photo img { object-position: 50% 10%; }
  .technicien-visual { max-width: 100%; }
  .technicien-quote {
    font-size: clamp(1.3rem, 5.2vw, 1.7rem);
    line-height: 1.26;
    margin-bottom: 1.4rem;
  }
  .technicien-text {
    font-size: 0.92rem;
    line-height: 1.6;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
  }
  .technicien-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    padding-top: 1.2rem;
  }
  .stat { gap: 0.3rem; }
  .stat-num { font-size: clamp(1.6rem, 5.5vw, 2.1rem); }
  .stat-label { font-size: 0.6rem; letter-spacing: 0.1em; }
  .technicien-caption { font-size: 0.6rem; margin-top: 0.9rem; }

  /* Approche */
  .approche { padding: 2.75rem 0; }
  .approche-grid { grid-template-columns: 1fr; gap: 0.7rem; margin-top: 1.8rem; }
  .approche-item { padding: 1.5rem 1.3rem; }
  .approche-num { margin-bottom: 0.9rem; }
  .approche-item h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
  .approche-item p { font-size: 0.9rem; line-height: 1.55; }

  /* Gallery */
  .gallery { padding: 1.75rem 0; }
  .gallery-track {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }
  .gallery-item { aspect-ratio: 16 / 10; }

  /* Zone */
  .zone { padding: 2.75rem 0 3rem; }
  .zone-map-wrap { margin-bottom: 1.5rem; max-width: 100%; }
  .zone-map { font-size: 1rem; }
  .zone-title { font-size: clamp(1.8rem, 7vw, 2.3rem); margin: 0.4rem 0 1rem; }
  .zone-lead { font-size: 0.94rem; margin-bottom: 1.3rem; }
  .zone-pills { gap: 0.45rem; }
  .pill {
    padding: 0.55rem 1rem;
    font-size: 0.85rem;
  }

  /* CTA band */
  .cta-band { padding: 2.75rem 0; }
  .cta-eyebrow { font-size: 0.68rem; margin-bottom: 0.8rem; }
  .cta-text h2 { font-size: clamp(1.65rem, 6.5vw, 2.2rem); }
  .cta-text p { font-size: 0.94rem; }
  .cta-actions { margin-top: 0.4rem; }
  .cta-actions .btn { min-width: auto; width: 100%; padding: 0.95rem 1.3rem; }

  /* Contact */
  .contact { padding: 2.75rem 0 3rem; }
  .contact-lead { font-size: 0.94rem; margin-bottom: 1.5rem; }
  .contact-details { gap: 0.7rem; }
  .contact-detail { padding: 0.9rem 1.1rem; gap: 1rem; }
  .contact-detail-icon { width: 38px; height: 38px; }
  .contact-detail-value { font-size: 1rem; }
  .contact-form-wrap { padding: 1.5rem 1.2rem; border-radius: var(--radius); margin-top: 1.5rem; }
  .form-row { grid-template-columns: 1fr; gap: 1rem; }
  .contact-form { gap: 1rem; }
  .form-field input,
  .form-field select,
  .form-field textarea {
    padding: 0.85rem 0.95rem;
    font-size: 16px; /* Prevent iOS zoom */
  }
  .form-field label { font-size: 0.72rem; }

  /* Footer */
  .footer { padding: 3rem 0 1.5rem; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
    margin-bottom: 2rem;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col h4 { font-size: 0.7rem; margin-bottom: 0.9rem; }
  .footer-col li, .footer-col a { font-size: 0.9rem; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0.6rem;
    font-size: 0.78rem;
    padding-top: 1.5rem;
  }

  /* Touch tap targets */
  a, button, .btn, .pill, .nav-toggle, .nav-cta, .floating-phone {
    min-height: 44px;
  }

  /* Body padding bottom on mobile to leave room for floating phone */
  body { padding-bottom: 4rem; }
}

/* Small phones */
@media (max-width: 380px) {
  :root { --gutter: 1rem; }

  .logo-text { font-size: 1rem; }
  .hero-title { font-size: 2.3rem; }
  .section-title { font-size: 1.7rem; }
  .svc-name { font-size: 1.25rem; }
  .zone-title { font-size: 1.7rem; }
  .pill { padding: 0.5rem 0.85rem; font-size: 0.8rem; }
  .stat-num { font-size: 1.55rem; }
  .stat-label { font-size: 0.58rem; }
  .floating-phone { padding: 0.75rem 1rem; font-size: 0.85rem; }
}

/* Landscape phone */
@media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
  .hero { grid-template-columns: 1fr 1fr; }
  .hero-photo { order: 0; height: auto; }
  .hero-text { padding: 4.5rem var(--gutter) 2rem; }
  .hero-title { font-size: clamp(1.6rem, 4.5vw, 2.4rem); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-line > span { opacity: 1; transform: none; }
}
