/* ============================================================
   Radek Macháň — zednické práce
   Klasický profesionální web. Žádné experimenty.
   ============================================================ */

:root{
  /* značka */
  --green:        #0F3D3E;
  --green-soft:   #245352;
  --orange:       #E07A3B;
  --orange-deep:  #c8662a;

  /* neutrály */
  --white:        #ffffff;
  --bg:           #ffffff;
  --bg-alt:       #FAFAF7;
  --line:         #ECEAE4;
  --line-dark:    #D7D2C7;

  /* text */
  --ink:          #0F3D3E;
  --ink-strong:   #082828;
  --ink-soft:     #4a6160;
  --ink-mute:     #7a8a89;

  --shadow-sm:    0 1px 2px rgba(8, 40, 40, .04);
  --shadow-md:    0 6px 20px -8px rgba(8, 40, 40, .12);

  --radius:       4px;
  --radius-lg:    8px;

  --font:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --header-h:     76px;
  --callbar-h:    60px;
}

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

html{
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 8px);
}

body{
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
}

a{ color: inherit; text-decoration: none; }
button{ font: inherit; cursor: pointer; border: 0; background: none; color: inherit; padding: 0; }
img, svg{ display: block; max-width: 100%; }
ul, ol{ list-style: none; }

/* ============================== layout helpers ============================== */
.container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 500px){
  .container{ padding: 0 24px; }
}
@media (min-width: 1024px){
  .container{ padding: 0 40px; }
}

.eyebrow{
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title{
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink-strong);
}

.section-lead{
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 60ch;
}

.section-head{
  text-align: center;
  margin: 0 auto 40px;
  max-width: 720px;
}
@media (min-width: 768px){
  .section-head{ margin-bottom: 56px; }
}
.section-head .section-lead{ margin-left: auto; margin-right: auto; }

/* ============================== buttons ============================== */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: var(--radius-lg);
  transition: background .2s ease, transform .15s ease, box-shadow .2s ease, border-color .2s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}
@media (min-width: 500px){
  .btn{
    height: 50px;
    padding: 0 22px;
    font-size: 15px;
  }
}
/* hero CTA — na mobilu roztáhni do plné šířky (lépe se míří palec) */
.hero__cta .btn{
  flex: 1 1 auto;
  min-width: 0;
}
@media (min-width: 500px){
  .hero__cta .btn{ flex: 0 1 auto; }
}
.btn--primary{
  background: var(--green);
  color: var(--white);
}
.btn--primary:hover{ background: var(--green-soft); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--ghost{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.45);
  color: var(--white);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover{ background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.7); transform: translateY(-1px); }
.btn--full{ width: 100%; }

/* ============================== HEADER ============================== */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__wrap{
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 500px){
  .header__wrap{ padding: 14px 24px; gap: 24px; }
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-strong);
  min-width: 0;
}
.brand__mark{ width: 26px; height: 33px; flex: 0 0 auto; }
.brand__text{ display: flex; flex-direction: column; line-height: 1.05; min-width: 0; }
.brand__name{ font-size: 16px; font-weight: 800; letter-spacing: -0.01em; white-space: nowrap; }
.brand__sub{ font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; margin-top: 2px; white-space: nowrap; }
@media (max-width: 380px){
  .brand__sub{ display: none; }
}

.nav{
  display: none;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
}
.nav a{ transition: color .2s ease; }
.nav a:hover{ color: var(--ink-strong); }

.header__phone{
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-strong);
  padding: 8px 14px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  transition: border-color .2s ease, color .2s ease;
}
.header__phone:hover{ border-color: var(--green); color: var(--green); }
.header__phone svg{ color: var(--orange); }

.header__menu{
  margin-left: auto;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--ink-strong);
}
.header__menu:hover{ background: var(--bg-alt); }

@media (min-width: 900px){
  .nav, .header__phone{ display: inline-flex; }
  .header__menu{ display: none; }
  .nav{ margin-left: auto; }
  .header__phone{ margin-left: 0; }
}

/* mobile menu (toggled) */
.header.is-open .nav{
  display: flex;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 12px 24px 18px;
}
.header.is-open .nav a{
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  color: var(--ink-strong);
}
.header.is-open .nav a:last-child{ border-bottom: 0; }

/* ============================== INTRO ============================== */
.intro{
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: var(--bg);
  opacity: 1;
  visibility: visible;
  transition: opacity 1.2s cubic-bezier(.65,0,.35,1);
}
.intro.is-leaving{
  opacity: 0;
  pointer-events: none;
}
.intro__stage{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  transform-origin: center center;
  animation: introRise 1.1s cubic-bezier(.2,.7,.3,1) both;
}
.intro.is-leaving .intro__stage{
  animation: introFallOut 1.2s cubic-bezier(.65,0,.35,1) both;
}
@keyframes introRise{
  from { opacity: 0; transform: translateY(20px) scale(.96); }
  to   { opacity: 1; transform: translateY(0)   scale(1);    }
}
@keyframes introFallOut{
  from { opacity: 1; transform: translateY(0)    scale(1);    filter: blur(0); }
  to   { opacity: 0; transform: translateY(-14px) scale(1.06); filter: blur(2px); }
}
.intro__mark{
  width: clamp(120px, 14vw, 172px);
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(8, 40, 40, .12));
}
.intro__word{
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink-strong);
  line-height: 1;
}
.intro__sub{
  font-size: clamp(10px, 2.4vw, 12px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-mute);
  text-align: center;
  padding: 0 16px;
  max-width: min(90vw, 380px);
  line-height: 1.5;
}
@media (min-width: 500px){
  .intro__sub{
    letter-spacing: 0.32em;
  }
}
body.intro-active{
  overflow: hidden;
}

/* ============================== HERO ============================== */
.hero{
  position: relative;
  min-height: calc(100dvh - var(--header-h) - var(--callbar-h));
  background: var(--green);
  color: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media (min-width: 900px){
  .hero{ min-height: calc(100dvh - var(--header-h)); }
}
.hero__media{
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: contrast(1.05) saturate(.95);
}
.hero__overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,40,40,.35) 0%, rgba(8,40,40,.20) 30%, rgba(8,40,40,.85) 100%),
    radial-gradient(1200px 600px at 80% 20%, rgba(224,122,59,.15), transparent 60%);
}

.hero__content{
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  display: flex;
  align-items: flex-end;
  padding: 28px 20px 24px;
}
@media (min-width: 500px){
  .hero__content{ padding: 40px 24px 32px; }
}
@media (min-width: 768px){
  .hero__content{ padding: 60px 40px 40px; }
}
.hero__inner{
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero__eyebrow{
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
  margin-bottom: 16px;
}
.hero__title{
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  max-width: 20ch;
  margin-bottom: 16px;
}
.hero__lead{
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.55;
  color: rgba(255,255,255,.88);
  max-width: 56ch;
  margin-bottom: 24px;
}
.hero__cta{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* chips = jednoduchá horizontální lišta pod hero, ne overflowing card */
.hero__chips{
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  padding: 18px 24px;
  margin: 0;
  background: rgba(8, 40, 40, .55);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
}
.hero__chips li{
  display: inline-flex;
  align-items: center;
}
.hero__chips li::before{
  content: "";
  width: 6px; height: 6px;
  background: var(--orange);
  margin-right: 10px;
  border-radius: 50%;
  flex: 0 0 auto;
}
@media (min-width: 768px){
  .hero__chips{
    gap: 12px 48px;
    padding: 22px 40px;
    font-size: 14px;
  }
}

/* ============================== O MNĚ ============================== */
.about{
  padding: 64px 0 56px;
  background: var(--bg);
}
@media (min-width: 600px){
  .about{ padding: 96px 0 80px; }
}
@media (min-width: 768px){
  .about{ padding: 120px 0 96px; }
}
.about__wrap{
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
@media (min-width: 600px){
  .about__wrap{
    grid-template-columns: minmax(220px, 320px) 1fr;
    gap: 40px;
  }
}
@media (min-width: 900px){
  .about__wrap{
    grid-template-columns: minmax(260px, 380px) 1fr;
    gap: 64px;
  }
}
.about__photo{
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg-alt);
  box-shadow: var(--shadow-md);
}
.about__photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
  filter: contrast(1.05) saturate(.85);
}
.about__lead{
  margin-top: 24px;
}
.about__lead p{
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.65;
}
.about__lead p + p{ margin-top: 14px; }

.about__stats{
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
  max-width: 540px;
}
@media (min-width: 500px){
  .about__stats{ gap: 24px; }
}
.about__stats dt{
  font-size: clamp(20px, 5vw, 32px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink-strong);
  line-height: 1;
  white-space: nowrap;
}
.about__stats dd{
  margin-top: 8px;
  font-size: clamp(10px, 2.6vw, 12px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-mute);
  line-height: 1.3;
}

/* ============================== SLUŽBY ============================== */
.services{
  padding: 56px 0 64px;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 600px){
  .services{ padding: 80px 0 96px; }
}
@media (min-width: 768px){
  .services{ padding: 112px 0 120px; }
}

.srv-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px){
  .srv-grid{ grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px){
  .srv-grid{ grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
}

.srv-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.srv-card:hover{
  transform: translateY(-2px);
  border-color: var(--line-dark);
  box-shadow: var(--shadow-md);
}
.srv-card__icon{
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: rgba(224, 122, 59, 0.08);
  color: var(--green);
  margin-bottom: 20px;
}
.srv-card__icon svg{ width: 30px; height: 30px; }
.srv-card__title{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink-strong);
  margin-bottom: 8px;
}
.srv-card__text{
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ============================== REFERENCE ============================== */
.refs{
  padding: 56px 0 64px;
}
@media (min-width: 600px){
  .refs{ padding: 80px 0 96px; }
}
@media (min-width: 768px){
  .refs{ padding: 112px 0 120px; }
}
.refs__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 600px){
  .refs__grid{ grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px){
  .refs__grid{ grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
}
@media (min-width: 1200px){
  .refs__grid{ grid-template-columns: 1fr 1fr 1fr 1fr; }
}

.ref{
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg-alt);
  border: 1px solid var(--line);
}
.ref img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.2,.7,.3,1);
}
.ref:hover img{ transform: scale(1.04); }
.ref__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,40,40,0) 50%, rgba(8,40,40,.78) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 18px;
  color: var(--white);
}
.ref__tag{
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--white);
  color: var(--green);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 999px;
}
.ref__title{
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}
.ref__loc{
  font-size: 12px;
  color: rgba(255,255,255,.78);
  margin-top: 2px;
}

/* ============================== KONTAKT ============================== */
.contact{
  padding: 56px 0 calc(56px + var(--callbar-h));
  background: var(--green);
  color: var(--white);
}
@media (min-width: 600px){
  .contact{ padding: 80px 0 calc(80px + var(--callbar-h)); }
}
@media (min-width: 768px){
  .contact{ padding: 112px 0 120px; }
}
.contact__wrap{
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 960px){
  .contact__wrap{
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }
}
.contact .eyebrow{ color: #F8C29B; }
.contact .section-title{ color: var(--white); }
.contact .section-lead{ color: rgba(255,255,255,.78); }

.contact__info{
  margin-top: 36px;
  display: grid;
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.contact__info li{
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
@media (min-width: 500px){
  .contact__info li{
    grid-template-columns: 110px 1fr;
    gap: 16px;
    padding: 16px 0;
    align-items: baseline;
  }
}
.contact__label{
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  font-weight: 600;
}
.contact__value{
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  word-break: break-word;
}
a.contact__value{ transition: color .2s ease; }
a.contact__value:hover{ color: var(--orange); }

.contact__form{
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  color: var(--ink);
  box-shadow: var(--shadow-md);
}
@media (min-width: 500px){
  .contact__form{ padding: 32px; }
}
@media (min-width: 600px){
  .contact__form{ padding: 36px; }
}
.form__h{
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
  color: var(--ink-strong);
}
.field{
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}
.field label{
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.field label em{ font-style: normal; color: var(--ink-mute); font-weight: 500; margin-left: 4px; }
.field input,
.field select,
.field textarea{
  font: inherit;
  font-size: 15px;
  color: var(--ink-strong);
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 12px 14px;
  width: 100%;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus{
  outline: 0;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(15, 61, 62, .12);
}
.field textarea{ resize: vertical; min-height: 100px; line-height: 1.5; }

.form__note{
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--ink-mute);
  text-align: center;
}

/* ============================== FOOTER ============================== */
.footer{
  background: var(--ink-strong);
  color: rgba(245,245,243,.78);
}
.footer__wrap{
  padding: 56px 24px 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px){
  .footer__wrap{ grid-template-columns: 1fr 2fr; gap: 48px; padding: 64px 40px 36px; }
}
.footer__brand{
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.footer__mark{ width: 32px; height: 40px; flex: 0 0 auto; }
.footer__name{ font-size: 18px; font-weight: 800; color: #F5F5F3; }
.footer__sub{ font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(245,245,243,.5); margin-top: 4px; font-weight: 600; }

.footer__cols{
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 600px){
  .footer__cols{ grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
}
.footer__cols > div{ display: flex; flex-direction: column; gap: 4px; font-size: 14px; }
.footer__h{
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(245,245,243,.5);
  margin-bottom: 10px;
}
.footer__cols a{ transition: color .2s ease; }
.footer__cols a:hover{ color: var(--orange); }

.footer__base{
  background: rgba(0,0,0,.18);
  font-size: 12px;
  color: rgba(245,245,243,.5);
}
.footer__base-wrap{
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
@media (min-width: 768px){
  .footer__base-wrap{ padding: 18px 40px; }
}

/* ============================== STICKY CALL BAR (mobile only) ============================== */
.callbar{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  height: var(--callbar-h);
  background: var(--green);
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: stretch;
  gap: 8px;
  padding: 8px;
}
.callbar__phone,
.callbar__cta{
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius);
  height: 100%;
  padding: 0 8px;
  min-width: 0;
  white-space: nowrap;
}
.callbar__phone{ background: var(--white); color: var(--green); }
.callbar__phone svg{ color: var(--orange); flex: 0 0 auto; }
.callbar__cta{ background: var(--orange); color: var(--ink-strong); }
.callbar__cta:hover{ background: var(--orange-deep); color: var(--white); }
/* na hodně úzkých displejích ukaž jen "Zavolat" místo plného čísla */
.callbar__phone-full{ display: none; }
.callbar__phone-short{ display: inline; }
@media (min-width: 420px){
  .callbar__phone-full{ display: inline; }
  .callbar__phone-short{ display: none; }
}

@media (min-width: 900px){
  .callbar{ display: none; }
  body{ padding-bottom: 0; }
  .contact{ padding-bottom: 120px; }
}

/* spodní padding pro mobile aby callbar nepřekrýval poslední řádek */
@media (max-width: 899px){
  body{ padding-bottom: var(--callbar-h); }
}

/* ============================== reveals (jemné) ============================== */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
}
.reveal.is-visible{
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{
    animation-duration: .01ms !important;
    animation-delay: 0s !important;
    transition-duration: .01ms !important;
  }
  .reveal{ opacity: 1; transform: none; }
}
