/* =============================================================================
   Bordeaux Travaux Services — feuille de style
   Mobile-first. Palette « pierre de Bordeaux + bleu des métiers techniques ».
   ========================================================================== */

:root {
    /* Couleurs */
    --ink:        #0f2230;
    --ink-2:      #3a5160;
    --brand:      #0c7fc4;
    --brand-2:    #0a6098;
    --brand-bright:#1aa0e4;
    --stone:      #f5f2ec;
    --stone-2:    #ece7dd;
    --line:       #ddd7cc;
    --line-soft:  #e7e2d8;
    --white:      #ffffff;
    --shadow:     0 18px 40px -24px rgba(15, 34, 48, .45);
    --shadow-sm:  0 8px 20px -16px rgba(15, 34, 48, .5);

    /* Typo */
    --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
    --font-body:    'Mulish', system-ui, sans-serif;
    --font-mono:    'Space Mono', ui-monospace, monospace;

    /* Échelle / rythme */
    --radius:   18px;
    --radius-sm:12px;
    --maxw:     1200px;
    --gut:      clamp(20px, 5vw, 40px);
    --header-h: 70px;
}

/* --- Reset léger ----------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--stone);
    line-height: 1.6;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -0.01em; }

/* --- Utilitaires ----------------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(56px, 9vw, 104px); }
.visually-hidden, .skip-link:not(:focus) {
    position: absolute !important; width: 1px; height: 1px; padding: 0; overflow: hidden;
    clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
    position: absolute; left: 16px; top: 12px; z-index: 200;
    background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px;
}
.eyebrow {
    font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .14em;
    font-size: 12px; color: var(--brand-2); font-weight: 700;
    display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--brand); display: inline-block; }
:focus-visible { outline: 3px solid var(--brand-bright); outline-offset: 3px; border-radius: 4px; }

/* --- Boutons --------------------------------------------------------------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 24px; border-radius: 999px; font-weight: 700; font-family: var(--font-body);
    border: 1.5px solid transparent; transition: transform .15s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
    line-height: 1;
}
.btn--primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--brand-2); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--phone {
    background: rgba(12,127,196,.10); color: var(--brand-2); padding: 11px 18px; font-weight: 700;
    border-radius: 999px; border: 1.5px solid rgba(12,127,196,.25);
}
.btn--phone:hover { background: var(--brand); color: #fff; border-color: var(--brand); }

/* =============================================================================
   EN-TÊTE
   ========================================================================== */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: color-mix(in srgb, var(--stone) 86%, transparent);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line-soft);
}
.site-header__inner { display: flex; align-items: center; gap: 16px; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 12px; margin-right: auto; }
.brand__logo { flex: none; width: 44px; height: 44px; object-fit: contain; display: block; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--font-display); font-weight: 800; font-size: 17px; color: var(--ink); letter-spacing: -.02em; }
.brand__sub { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--brand-2); }

.nav { display: flex; align-items: center; }
.nav__toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: #fff;
}
.nav__toggle-bar, .nav__toggle-bar::before, .nav__toggle-bar::after {
    content: ""; display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
}
.nav__toggle-bar { position: relative; }
.nav__toggle-bar::before { position: absolute; top: -6px; }
.nav__toggle-bar::after  { position: absolute; top: 6px; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar { background: transparent; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar::before { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar::after  { transform: translateY(-6px) rotate(-45deg); }

.nav__panel {
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: var(--stone); border-bottom: 1px solid var(--line);
    padding: 8px var(--gut) 24px; box-shadow: var(--shadow);
    display: none; max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
}
.nav__panel.is-open { display: block; }
.nav__list { display: flex; flex-direction: column; }
.nav__list > li > a { display: block; padding: 14px 4px; font-weight: 700; border-bottom: 1px solid var(--line-soft); }
.nav__sub { padding: 4px 0 12px 14px; border-bottom: 1px solid var(--line-soft); }
.nav__sub a { display: block; padding: 9px 4px; color: var(--ink-2); font-weight: 600; }
.nav__sub a:hover, .nav__list a:hover { color: var(--brand-2); }
.nav__social { display: flex; gap: 10px; padding-top: 16px; }
.nav__social a {
    width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid var(--line); border-radius: 10px; color: var(--ink-2); background: #fff;
}
.nav__social a:hover { color: #fff; background: var(--brand); border-color: var(--brand); }

.btn--phone { display: none; } /* affiché en desktop */

/* =============================================================================
   HÉRO (accueil)
   ========================================================================== */
.hero { position: relative; overflow: hidden; }
.hero__inner { display: grid; gap: clamp(28px, 5vw, 48px); padding-block: clamp(40px, 7vw, 80px); }
.hero__title {
    font-size: clamp(34px, 8.5vw, 64px); font-weight: 800; color: var(--ink);
    margin-top: 18px; max-width: 16ch;
}
.hero__title em { font-style: normal; color: var(--brand); }
.hero__lead { font-size: clamp(17px, 2.4vw, 20px); color: var(--ink-2); margin-top: 18px; max-width: 52ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 28px; }
.hero__trust li { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; color: var(--ink-2); font-weight: 600; }
.hero__trust svg { color: var(--brand); flex: none; }

.hero__media { position: relative; }
.hero__img {
    width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius);
    box-shadow: var(--shadow); border: 1px solid var(--line);
}
.hero__badge {
    position: absolute; left: 16px; bottom: 16px; background: var(--ink); color: #fff;
    padding: 14px 18px; border-radius: 14px; box-shadow: var(--shadow); max-width: 70%;
}
.hero__badge strong { font-family: var(--font-display); display: block; font-size: 15px; }
.hero__badge span { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; color: #9fd4f3; text-transform: uppercase; }
.hero__grid-deco {
    position: absolute; inset: 0; pointer-events: none; z-index: -1;
    background-image: linear-gradient(var(--line-soft) 1px, transparent 1px), linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
    background-size: 38px 38px; opacity: .5; mask-image: radial-gradient(120% 90% at 80% 0%, #000 0%, transparent 70%);
}

/* =============================================================================
   SECTIONS — titres
   ========================================================================== */
.section-head { max-width: 60ch; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(26px, 4.6vw, 40px); margin-top: 14px; color: var(--ink); }
.section-head p { color: var(--ink-2); margin-top: 14px; font-size: 18px; }

.section--dark { background: var(--ink); color: #e8eef2; }
.section--dark h2 { color: #fff; }
.section--dark .eyebrow { color: #79c4ef; }
.section--dark .eyebrow::before { background: var(--brand-bright); }
.section--stone2 { background: var(--stone-2); }

/* =============================================================================
   SERVICES — grille de cartes
   ========================================================================== */
.services-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
.service-card {
    position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brand); }
.service-card__media { aspect-ratio: 16 / 11; overflow: hidden; background: var(--stone-2); }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-card:hover .service-card__media img { transform: scale(1.05); }
.service-card__body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.service-card__num { font-family: var(--font-mono); font-size: 12px; color: var(--brand-2); letter-spacing: .1em; }
.service-card__title { font-size: 20px; color: var(--ink); }
.service-card__text { color: var(--ink-2); font-size: 15px; }
.service-card__more {
    margin-top: auto; padding-top: 12px; font-weight: 700; color: var(--brand-2);
    display: inline-flex; align-items: center; gap: 8px;
}
.service-card__more svg { transition: transform .2s ease; }
.service-card:hover .service-card__more svg { transform: translateX(4px); }
.service-card__link { position: absolute; inset: 0; } /* clic sur toute la carte */

/* =============================================================================
   À PROPOS
   ========================================================================== */
.about { display: grid; gap: clamp(28px, 5vw, 56px); align-items: start; }
.about__lead { font-size: clamp(19px, 2.6vw, 23px); color: var(--ink); font-family: var(--font-display); font-weight: 600; line-height: 1.4; }
.about__text p { color: var(--ink-2); margin-top: 16px; }
.about__tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.about__tags a {
    font-family: var(--font-mono); font-size: 12.5px; padding: 8px 14px; border: 1px solid var(--line);
    border-radius: 999px; background: #fff; color: var(--ink-2); transition: .2s;
}
.about__tags a:hover { border-color: var(--brand); color: var(--brand-2); }
.about__panel {
    background: var(--ink); color: #dde7ee; border-radius: var(--radius); padding: clamp(24px, 4vw, 38px);
    box-shadow: var(--shadow);
}
.about__panel h3 { color: #fff; font-size: 22px; }
.about__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 22px; }
.about__stat strong { font-family: var(--font-display); font-size: clamp(30px, 6vw, 42px); color: var(--brand-bright); display: block; line-height: 1; }
.about__stat span { font-size: 14px; color: #9fb3c2; }

/* =============================================================================
   PROCESSUS — signature (plan de chantier numéroté 01–04)
   ========================================================================== */
.process { display: grid; gap: 0; }
.process__step {
    display: grid; grid-template-columns: auto 1fr; gap: 18px 22px; padding: 26px 0;
    border-top: 1px solid rgba(255,255,255,.12); position: relative;
}
.process__step:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.process__num {
    font-family: var(--font-mono); font-weight: 700; font-size: 14px; color: #79c4ef;
    border: 1px solid rgba(121,196,239,.4); border-radius: 999px; width: 46px; height: 46px;
    display: inline-flex; align-items: center; justify-content: center; flex: none;
}
.process__step h3 { font-size: clamp(20px, 3vw, 26px); color: #fff; }
.process__step p { color: #aebfcb; margin-top: 8px; max-width: 60ch; }

/* =============================================================================
   POURQUOI NOUS CHOISIR
   ========================================================================== */
.why-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
.why-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-sm); }
.why-card__icon {
    width: 46px; height: 46px; border-radius: 12px; background: rgba(12,127,196,.1); color: var(--brand-2);
    display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.why-card h3 { font-size: 19px; color: var(--ink); }
.why-card p { color: var(--ink-2); margin-top: 8px; font-size: 15.5px; }

/* =============================================================================
   BANDEAU CTA
   ========================================================================== */
.cta-band { background: linear-gradient(120deg, var(--brand-2), var(--brand)); color: #fff; border-radius: 0; }
.cta-band__inner { display: grid; gap: 22px; align-items: center; text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(26px, 4.6vw, 40px); }
.cta-band p { color: rgba(255,255,255,.9); max-width: 56ch; margin-inline: auto; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* =============================================================================
   PAGE SERVICE
   ========================================================================== */
.page-hero { background: var(--ink); color: #dfe8ef; padding-block: clamp(40px, 7vw, 72px); }
.page-hero__crumb { font-family: var(--font-mono); font-size: 12px; color: #79c4ef; letter-spacing: .08em; text-transform: uppercase; }
.page-hero__crumb a:hover { color: #fff; }
.page-hero h1 { font-size: clamp(34px, 7vw, 58px); color: #fff; margin-top: 14px; }
.page-hero p { color: #aebfcb; margin-top: 16px; max-width: 60ch; font-size: 18px; }

.service-intro { display: grid; gap: clamp(28px, 5vw, 48px); align-items: center; }
.service-intro__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); }
.service-intro__text p { font-size: 18px; color: var(--ink-2); }

/* Galerie — mosaïque : les photos gardent leur format naturel (aucun rognage) */
.gallery { columns: 2; column-gap: 14px; }
.gallery__item {
    width: 100%; margin: 0 0 14px; padding: 0; border: 0; background: none;
    cursor: zoom-in; display: block; break-inside: avoid; -webkit-column-break-inside: avoid;
}
.gallery__item img {
    display: block; width: 100%; height: auto;
    border-radius: var(--radius-sm); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease;
}
.gallery__item:hover img { transform: translateY(-3px); box-shadow: var(--shadow); }
.gallery__item:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; border-radius: var(--radius-sm); }

/* Lightbox (agrandissement au clic) */
.lightbox {
    position: fixed; inset: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: center; padding: 24px;
    background: rgba(8, 16, 22, .88);
    opacity: 0; visibility: hidden; transition: opacity .2s ease, visibility .2s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img {
    max-width: 95vw; max-height: 90vh; width: auto; height: auto;
    border-radius: var(--radius-sm); box-shadow: 0 24px 70px rgba(0, 0, 0, .55);
}
.lightbox__close {
    position: absolute; top: 16px; right: 18px; width: 46px; height: 46px;
    display: flex; align-items: center; justify-content: center;
    border: 0; border-radius: 50%; cursor: pointer;
    background: rgba(255, 255, 255, .14); color: #fff; font-size: 28px; line-height: 1;
    transition: background .2s ease;
}
.lightbox__close:hover { background: rgba(255, 255, 255, .28); }
@media (prefers-reduced-motion: reduce) {
    .lightbox { transition: none; }
    .gallery__item img { transition: none; }
}

.feature-list { display: grid; gap: 14px; grid-template-columns: 1fr; }
.feature-list li {
    display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px 20px; box-shadow: var(--shadow-sm);
}
.feature-list .tick {
    width: 28px; height: 28px; border-radius: 8px; background: rgba(12,127,196,.1); color: var(--brand-2);
    display: inline-flex; align-items: center; justify-content: center; flex: none; margin-top: 2px;
}
.feature-list strong { display: block; color: var(--ink); font-family: var(--font-display); font-size: 17px; }
.feature-list span { color: var(--ink-2); font-size: 15.5px; }

/* =============================================================================
   CONTACT
   ========================================================================== */
.contact-layout { display: grid; gap: clamp(28px, 5vw, 48px); align-items: start; }
.contact-info p { color: var(--ink-2); margin-top: 14px; }
.contact-info__list { margin-top: 26px; display: grid; gap: 16px; }
.contact-info__list li { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: center; }
.contact-info__icon {
    width: 46px; height: 46px; border-radius: 12px; background: #fff; border: 1px solid var(--line);
    display: inline-flex; align-items: center; justify-content: center; color: var(--brand-2); flex: none;
}
.contact-info__list strong { font-family: var(--font-display); display: block; color: var(--ink); }
.contact-info__list a, .contact-info__list span { color: var(--ink-2); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 4vw, 36px); box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: 14.5px; margin-bottom: 7px; color: var(--ink); }
.field input, .field textarea, .field select {
    width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px; font: inherit;
    background: var(--stone); color: var(--ink); transition: border-color .2s ease, background .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--brand); background: #fff; }
.field textarea { min-height: 140px; resize: vertical; }
.field--hp { position: absolute; left: -9999px; }
.form-row { display: grid; gap: 0 18px; grid-template-columns: 1fr; }
.form-note { font-size: 13px; color: var(--ink-2); margin-top: 4px; }

.alert { border-radius: 12px; padding: 14px 18px; margin-bottom: 22px; font-weight: 600; }
.alert--ok  { background: #e7f6ec; color: #1d6b3a; border: 1px solid #b9e3c6; }
.alert--err { background: #fdecea; color: #99281a; border: 1px solid #f3c4bd; }

/* =============================================================================
   PIED DE PAGE
   ========================================================================== */
.site-footer { background: var(--ink); color: #b9c8d3; }
/* Logo en blanc sur le fond sombre du pied de page */
.site-footer__brand .brand__logo { filter: brightness(0) invert(1); }
.site-footer__inner { display: grid; gap: 32px; grid-template-columns: 1fr; padding-block: clamp(40px, 6vw, 64px); }
.site-footer__brand { display: flex; gap: 14px; align-items: center; }
.site-footer__name { font-family: var(--font-display); font-weight: 800; color: #fff; font-size: 18px; }
.site-footer__base { font-size: 13px; color: #8aa0ae; }
.site-footer__title { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .14em; font-size: 12px; color: #79c4ef; margin-bottom: 14px; }
.site-footer__col ul { display: grid; gap: 9px; }
.site-footer__col a:hover { color: #fff; }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.1); }
.site-footer__bottom-inner { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; padding-block: 18px; font-size: 14px; }
.site-footer__call { color: #79c4ef; font-weight: 700; }
.site-footer__call:hover { color: #fff; }

/* =============================================================================
   RESPONSIVE
   ========================================================================== */
@media (min-width: 700px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-list { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr 1fr; }
    .cta-band__inner { grid-template-columns: 1fr auto; text-align: left; }
    .cta-band p { margin-inline: 0; }
    .cta-band__actions { justify-content: flex-end; }
}

@media (min-width: 1000px) {
    :root { --header-h: 78px; }
    .nav__toggle { display: none; }
    .btn--phone { display: inline-flex; }
    .nav__panel {
        position: static; display: block; background: none; border: 0; box-shadow: none; padding: 0; overflow: visible;
        margin-right: 16px; max-height: none;
    }
    .nav__list { flex-direction: row; align-items: center; gap: 6px; }
    .nav__list > li > a { padding: 8px 12px; border: 0; border-radius: 10px; }
    .nav__list > li > a:hover { background: rgba(12,127,196,.08); color: var(--brand-2); }
    .nav__has-sub { position: relative; }
    .nav__sub {
        position: absolute; top: 100%; left: 0; min-width: 220px; background: #fff; border: 1px solid var(--line);
        border-radius: 14px; box-shadow: var(--shadow); padding: 8px; display: none; z-index: 10;
    }
    .nav__has-sub:hover .nav__sub, .nav__has-sub:focus-within .nav__sub { display: block; }
    .nav__sub a { border-radius: 8px; padding: 9px 12px; }
    .nav__sub a:hover { background: var(--stone); }
    .nav__social { display: none; }

    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid { grid-template-columns: repeat(4, 1fr); }
    .feature-list { grid-template-columns: repeat(2, 1fr); }
    .gallery { columns: 3; }

    .hero__inner { grid-template-columns: 1.05fr .95fr; align-items: center; }
    .about { grid-template-columns: 1.1fr .9fr; }
    .service-intro { grid-template-columns: 1fr 1fr; }
    .contact-layout { grid-template-columns: .9fr 1.1fr; }
    .site-footer__inner { grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }
}

/* --- Animations d'apparition ---------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].is-in { opacity: 1; transform: none; }

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