/* =========================================================
   ŠLEP SLUŽBA MIKA — Design tokens
   Display: Oswald (condensed, industrial, plate-like)
   Body:    Work Sans
   Palette: charcoal / yellow (from the truck) / warm white
   Signature: hazard-stripe ramp motif as section dividers
   ========================================================= */

:root{
  --black:        #0e0f12;
  --charcoal-950:  #121418;
  --charcoal-900:  #191c21;
  --charcoal-800:  #22262c;
  --charcoal-700:  #2d3138;
  --line-on-dark:  #363b43;

  --yellow-500:   #f4c400;
  --yellow-600:   #dcae00;
  --yellow-700:   #b98f00;

  --paper:        #f6f4ef;
  --paper-dim:    #ece9e1;

  --ink:          #16181c;
  --ink-soft:     #4b4f56;
  --white:        #ffffff;
  --on-dark-muted:#9aa0aa;
  --on-dark-body: #c7cbd1;

  --red-600:      #d1361f;

  --radius-s: 3px;
  --radius-m: 4px;

  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --container-w: 1220px;
  --shadow-card: 0 14px 34px -18px rgba(0,0,0,.55);
  --ease: cubic-bezier(.22,.9,.32,1);
}

/* =========================================================
   RESET / BASE
   ========================================================= */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
h1,h2,h3,h4{ font-family: var(--font-display); margin: 0; line-height: 1.08; letter-spacing: .01em; }
p{ margin: 0; }
button{ font-family: inherit; cursor: pointer; }
input, select, textarea{ font-family: inherit; font-size: 1rem; }

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

:focus-visible{ outline: 3px solid var(--yellow-500); outline-offset: 2px; }

.container{
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link{
  position: absolute; left: -999px; top: 0;
  background: var(--yellow-500); color: var(--ink); padding: 12px 18px;
  z-index: 999; font-weight: 700;
}
.skip-link:focus{ left: 12px; top: 12px; }

.icon{ width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: var(--radius-s);
  border: 2px solid transparent;
  transition: transform .18s var(--ease), background-color .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease);
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: var(--yellow-500);
  color: var(--ink);
  box-shadow: 0 10px 24px -10px rgba(244,196,0,.55);
}
.btn-primary:hover{ background: var(--yellow-600); box-shadow: 0 14px 28px -10px rgba(244,196,0,.7); transform: translateY(-2px); }

.btn-outline{
  background: transparent;
  border-color: rgba(255,255,255,.5);
  color: var(--white);
}
.btn-outline:hover{ border-color: var(--yellow-500); color: var(--yellow-500); }

.btn-dark{
  background: var(--ink);
  color: var(--yellow-500);
}
.btn-dark:hover{ background: var(--charcoal-900); transform: translateY(-2px); }

.btn-lg{ padding: 17px 32px; font-size: 1.05rem; }
.btn-block{ width: 100%; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header{
  position: sticky; top: 0; z-index: 500;
  background: rgba(18,20,24,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner{
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
  gap: 20px;
}
.brand{ display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-mark{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: .04em;
  background: var(--yellow-500);
  color: var(--ink);
  padding: 7px 10px;
  border-radius: var(--radius-s);
  line-height: 1;
}
.brand-text{ display: flex; flex-direction: column; }
.brand-name{ font-family: var(--font-display); color: var(--white); font-size: 1.05rem; font-weight: 600; letter-spacing: .02em; }
.brand-sub{ color: var(--on-dark-muted); font-size: .72rem; letter-spacing: .03em; }

.main-nav ul{ display: flex; align-items: center; gap: 28px; }
.nav-link{
  font-size: .92rem; font-weight: 500; color: var(--on-dark-body);
  position: relative; padding: 6px 0;
  transition: color .18s var(--ease);
}
.nav-link::after{
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--yellow-500); transition: right .22s var(--ease);
}
.nav-link:hover{ color: var(--white); }
.nav-link:hover::after{ right: 0; }

.header-actions{ display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header-call span{ display: flex; flex-direction: column; align-items: flex-start; line-height: 1.15; }
.header-call small{ font-family: var(--font-body); font-weight: 500; text-transform: none; letter-spacing: 0; font-size: .74rem; }

.nav-toggle{
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; background: transparent; border: none; padding: 0;
}
.nav-toggle span{ width: 100%; height: 2px; background: var(--white); transition: transform .25s var(--ease), opacity .25s var(--ease); }
.nav-close, .nav-mobile-call{ display: none; }
.nav-overlay{ display: none; }

/* =========================================================
   MOBILE NAV
   ========================================================= */
@media (max-width: 980px){
  .main-nav{
    position: fixed; top: 0; right: 0; height: 100vh; width: min(340px, 86vw);
    background: var(--charcoal-950);
    transform: translateX(100%);
    transition: transform .32s var(--ease);
    z-index: 300;
    padding: 26px 26px 34px;
    display: flex; flex-direction: column;
    overflow-y: auto;
    border-left: 1px solid rgba(255,255,255,.08);
  }
  .main-nav.open{ transform: translateX(0); }
  .main-nav ul{ flex-direction: column; align-items: flex-start; gap: 4px; margin-top: 36px; width: 100%; }
  .nav-link{ display: block; width: 100%; padding: 13px 4px; font-size: 1.05rem; border-bottom: 1px solid rgba(255,255,255,.06); }
  .nav-link::after{ display: none; }
  .nav-close{
    display: block; margin-left: auto; background: none; border: none; color: var(--white);
    font-size: 2rem; line-height: 1; width: 40px; height: 40px;
  }
  .nav-mobile-call{ display: flex; margin-top: 24px; width: 100%; justify-content: center; }
  .header-call{ display: none; }
  .nav-toggle{ display: flex; }
  .nav-overlay{
    display: block; position: fixed; inset: 0; background: rgba(0,0,0,.55);
    opacity: 0; pointer-events: none; transition: opacity .28s var(--ease); z-index: 250;
  }
  .nav-overlay.show{ opacity: 1; pointer-events: auto; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position: relative;
  background: linear-gradient(180deg, var(--charcoal-950), var(--black));
  overflow: hidden;
  padding-bottom: 56px;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 40px;
  padding-top: 72px;
}
.eyebrow{
  display: flex; align-items: center; gap: 10px;
  color: var(--yellow-500);
  font-family: var(--font-display);
  font-size: .84rem; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 22px;
}
.eyebrow-dot{
  width: 9px; height: 9px; border-radius: 50%; background: var(--yellow-500);
  box-shadow: 0 0 0 4px rgba(244,196,0,.18);
  animation: pulse 2s infinite;
}
@keyframes pulse{
  0%,100%{ box-shadow: 0 0 0 4px rgba(244,196,0,.18); }
  50%{ box-shadow: 0 0 0 8px rgba(244,196,0,.08); }
}
.hero h1{
  color: var(--white);
  font-size: clamp(2.5rem, 5.2vw, 4rem);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 22px;
}
.hero h1 .hl{ color: var(--yellow-500); }
.hero-sub{
  color: var(--on-dark-body);
  font-size: 1.14rem; line-height: 1.6;
  max-width: 46ch;
  margin-bottom: 32px;
}
.hero-actions{ display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 26px; }
.trust-line{
  color: var(--on-dark-muted);
  font-size: .88rem; font-weight: 500; letter-spacing: .02em;
}

.hero-media{ position: relative; height: 100%; }
.hero-img{
  width: 100%; height: 100%; object-fit: cover;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
  min-height: 420px;
  aspect-ratio: 3/4;
}
.hero-badge{
  position: absolute; left: -6px; bottom: 34px;
  background: var(--yellow-500); color: var(--ink);
  padding: 14px 20px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  border-radius: var(--radius-s);
  box-shadow: var(--shadow-card);
}
.hero-badge strong{ font-family: var(--font-display); font-size: 1.5rem; line-height: 1; }
.hero-badge span{ font-size: .68rem; letter-spacing: .05em; text-transform: uppercase; font-weight: 600; margin-top: 3px; }

.hero-stripe{
  position: absolute; left: 0; right: 0; bottom: 0; height: 10px;
  background: repeating-linear-gradient(-45deg, var(--yellow-500) 0 22px, var(--ink) 22px 44px);
}

@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; padding-top: 44px; gap: 30px; }
  .hero-media{ order: -1; }
  .hero-img{ clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%); min-height: 320px; }
  .hero-badge{ left: 16px; bottom: 20px; }
  .hero-actions .btn{ flex: 1 1 auto; }
}

/* =========================================================
   HIGHLIGHTS STRIP
   ========================================================= */
.highlights{
  background: var(--yellow-500);
  padding: 40px 0;
}
.highlights-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}
.highlight-item{ color: var(--ink); }
.hicon{ width: 40px; height: 40px; margin-bottom: 14px; color: var(--ink); }
.highlight-item h3{
  font-size: 1rem; text-transform: uppercase; letter-spacing: .01em;
  margin-bottom: 6px;
}
.highlight-item p{ font-size: .86rem; color: rgba(22,24,28,.75); line-height: 1.45; }

@media (max-width: 980px){
  .highlights-grid{ grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
  .highlight-item:last-child{ grid-column: span 2; }
}

/* =========================================================
   SECTION SHELL
   ========================================================= */
.section{ padding: 92px 0; }
.section-dark{ background: var(--charcoal-950); color: var(--white); }
.section-eyebrow{
  color: var(--yellow-700);
  font-family: var(--font-display);
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 12px;
}
.section-dark .section-eyebrow{ color: var(--yellow-500); }
.section-title{
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section-lead{
  font-size: 1.06rem; line-height: 1.65;
  color: var(--ink-soft);
  max-width: 62ch;
  margin-bottom: 20px;
}
.section-dark .section-lead{ color: var(--on-dark-body); }

@media (max-width: 700px){
  .section{ padding: 64px 0; }
}

/* =========================================================
   SERVICES
   ========================================================= */
.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}
.service-card{
  background: var(--charcoal-900);
  border: 1px solid var(--line-on-dark);
  border-top: 3px solid var(--yellow-500);
  padding: 32px 26px;
  border-radius: var(--radius-m);
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.service-card:hover{ transform: translateY(-6px); background: var(--charcoal-800); }
.service-num{
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--charcoal-700);
  margin-bottom: 6px;
}
.service-card:hover .service-num{ color: var(--yellow-500); transition: color .25s var(--ease); }
.service-card h3{
  font-size: 1.28rem; text-transform: uppercase; margin-bottom: 12px; color: var(--white);
}
.service-card p{ color: var(--on-dark-body); line-height: 1.6; margin-bottom: 18px; font-size: .96rem; }
.service-link{
  font-family: var(--font-display); font-size: .86rem; letter-spacing: .04em; text-transform: uppercase;
  color: var(--yellow-500); font-weight: 600;
}

@media (max-width: 980px){
  .services-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px){
  .services-grid{ grid-template-columns: 1fr; }
}

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why-grid{
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: start;
}
.why-copy .btn{ margin-top: 8px; }
.why-list{ display: grid; grid-template-columns: 1fr 1fr; gap: 30px 34px; }
.why-list li{ display: flex; gap: 16px; }
.why-icon{
  font-family: var(--font-display); font-size: 1.5rem; color: var(--yellow-700);
  flex-shrink: 0; width: 44px;
}
.why-list h3{ font-size: 1.05rem; text-transform: uppercase; margin-bottom: 4px; }
.why-list p{ font-size: .92rem; color: var(--ink-soft); line-height: 1.5; }

@media (max-width: 980px){
  .why-grid{ grid-template-columns: 1fr; gap: 34px; }
  .why-list{ grid-template-columns: 1fr; }
}

/* =========================================================
   EQUIPMENT / TRANSPORT / MACHINERY  (media + copy pairs)
   ========================================================= */
.equipment-grid, .transport-grid, .machinery-grid{
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: center;
}
.machinery-grid{ grid-template-columns: 1.1fr .9fr; }
.equipment-media img, .transport-media img, .machinery-media img{
  width: 100%; height: 100%; object-fit: cover;
  aspect-ratio: 4/5;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
}
.equip-list{ margin: 22px 0 30px; display: grid; gap: 12px; }
.equip-list li{
  position: relative; padding-left: 28px; color: var(--on-dark-body); font-size: .98rem;
}
.equip-list li::before{
  content: ''; position: absolute; left: 0; top: 7px; width: 14px; height: 14px;
  background: var(--yellow-500); clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.transport{ background: var(--paper); }
.transport-copy .btn, .machinery-copy .btn{ margin-top: 8px; }

.tag-list{ display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 30px; }
.tag-list li{
  border: 1px solid var(--line-on-dark);
  color: var(--on-dark-body);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: .88rem;
}

@media (max-width: 980px){
  .equipment-grid, .transport-grid, .machinery-grid{ grid-template-columns: 1fr; gap: 30px; }
  .machinery-media{ order: -1; }
  .equipment-media img, .transport-media img, .machinery-media img{ aspect-ratio: 16/10; }
}

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.how-steps{
  display: flex; align-items: flex-start; gap: 0; margin-top: 46px;
}
.how-step{ flex: 1; text-align: center; padding: 0 12px; }
.how-num{
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--ink); color: var(--yellow-500);
  font-family: var(--font-display); font-size: 1.5rem;
  margin-bottom: 18px;
}
.how-step h3{ font-size: 1.12rem; text-transform: uppercase; margin-bottom: 8px; }
.how-step p{ color: var(--ink-soft); font-size: .93rem; line-height: 1.5; max-width: 26ch; margin: 0 auto; }
.how-connector{
  flex: 0 0 auto; width: 100px; height: 2px; margin-top: 27px;
  background: repeating-linear-gradient(90deg, var(--yellow-500) 0 10px, transparent 10px 18px);
}

@media (max-width: 780px){
  .how-steps{ flex-direction: column; align-items: center; gap: 30px; }
  .how-connector{ width: 2px; height: 30px; margin: 0; background: repeating-linear-gradient(180deg, var(--yellow-500) 0 8px, transparent 8px 14px); }
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 44px;
}
.gallery-item{
  background: none; border: none; padding: 0; overflow: hidden; border-radius: var(--radius-m);
  aspect-ratio: 3/4; position: relative;
}
.gallery-item img{ width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-item:hover img{ transform: scale(1.08); }
.gallery-item::after{
  content: '+'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 2.4rem; color: var(--yellow-500);
  background: rgba(14,15,18,0); opacity: 0; transition: opacity .25s var(--ease), background .25s var(--ease);
}
.gallery-item:hover::after{ opacity: 1; background: rgba(14,15,18,.35); }

@media (max-width: 900px){
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   EMERGENCY CTA BAND
   ========================================================= */
.cta-band{
  background: var(--yellow-500);
  padding: 78px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before{
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, rgba(0,0,0,.06) 0 26px, transparent 26px 52px);
  pointer-events: none;
}
.cta-band-inner{ position: relative; text-align: center; max-width: 720px; }
.cta-band h2{
  font-size: clamp(1.9rem, 4vw, 2.9rem); text-transform: uppercase; color: var(--ink); margin-bottom: 16px;
}
.cta-band p{ color: rgba(22,24,28,.8); font-size: 1.08rem; line-height: 1.6; margin-bottom: 30px; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid{
  display: grid; grid-template-columns: .95fr 1.05fr; gap: 54px; align-items: start;
}
.contact-list{ margin: 26px 0 34px; display: grid; gap: 20px; }
.contact-list li{ display: flex; align-items: flex-start; gap: 14px; }
.contact-icon-wrap{
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 50%;
  background: var(--yellow-500); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.contact-label{ display: block; font-size: .78rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 2px; }
.contact-list a, .contact-list span:not(.contact-label){ font-weight: 600; font-size: 1.02rem; }
.contact-list a:hover{ color: var(--yellow-700); }

.contact-form{
  background: var(--white);
  border: 1px solid var(--paper-dim);
  border-radius: var(--radius-m);
  padding: 36px;
  box-shadow: var(--shadow-card);
}
.contact-form h3{ font-size: 1.3rem; text-transform: uppercase; margin-bottom: 22px; }
.form-row{ margin-bottom: 18px; }
.form-row-split{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row label{ display: block; font-size: .82rem; font-weight: 600; margin-bottom: 7px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .03em; }
.form-row input, .form-row select, .form-row textarea{
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--paper-dim); border-radius: var(--radius-s);
  background: var(--paper); color: var(--ink);
  transition: border-color .18s var(--ease), background .18s var(--ease);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus{
  border-color: var(--yellow-500); background: var(--white); outline: none;
}
.form-row textarea{ resize: vertical; }
.form-note{ margin-top: 14px; font-size: .86rem; color: var(--ink-soft); text-align: center; }

@media (max-width: 980px){
  .contact-grid{ grid-template-columns: 1fr; gap: 40px; }
  .form-row-split{ grid-template-columns: 1fr; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{ background: var(--black); color: var(--on-dark-body); padding: 68px 0 0; }
.footer-grid{
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p{ margin-top: 16px; font-size: .9rem; line-height: 1.6; color: var(--on-dark-muted); max-width: 32ch; }
.footer-col h4{ color: var(--white); font-size: .92rem; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 18px; }
.footer-col li{ margin-bottom: 11px; }
.footer-col a{ font-size: .92rem; color: var(--on-dark-muted); transition: color .18s var(--ease); }
.footer-col a:hover{ color: var(--yellow-500); }
.footer-bottom{ padding: 22px 0 100px; text-align: center; font-size: .82rem; color: var(--on-dark-muted); }

@media (max-width: 900px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .footer-grid{ grid-template-columns: 1fr; }
}

/* =========================================================
   STICKY MOBILE CALL BAR
   ========================================================= */
.sticky-call{
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 400;
  background: var(--yellow-500); color: var(--ink);
  align-items: center; justify-content: center; gap: 10px;
  padding: 16px; font-family: var(--font-display); font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; font-size: 1rem;
  box-shadow: 0 -8px 24px rgba(0,0,0,.25);
}
@media (max-width: 780px){
  .sticky-call{ display: flex; }
  body{ padding-bottom: 64px; }
}

@media (max-width: 480px){
  .btn{ white-space: normal; text-align: center; }
  .cta-band-inner .btn{ font-size: .88rem; padding: 15px 18px; }
}

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox{
  position: fixed; inset: 0; background: rgba(10,11,13,.94); z-index: 999;
  display: flex; align-items: center; justify-content: center; padding: 30px;
}
.lightbox[hidden]{ display: none; }
.lightbox img{ max-width: 100%; max-height: 90vh; border-radius: var(--radius-m); }
.lightbox-close{
  position: absolute; top: 20px; right: 24px; background: none; border: none;
  color: var(--white); font-size: 2.4rem; line-height: 1;
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
[data-reveal]{ opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-visible{ opacity: 1; transform: translateY(0); }
