/* ============================================================
   The Rock Invest — style.css (mobile-first, bez frameworků)
   ============================================================ */

:root {
  /* Brand */
  --ink:        #11221f;   /* tmavě zelená — základ */
  --ink-2:      #0b1916;   /* tmavší */
  --olive:      #c6d44e;   /* limetkově olivová — brand akcent */
  --olive-700:  #94a52f;   /* tmavší olivová pro text/odkazy na světlém */
  --olive-800:  #76842a;
  --wine:       #5a1620;   /* vínová — sekundární akcent */
  --cream:      #f6f7f1;   /* jemně zelenavá bílá */
  --paper:      #ffffff;
  --text:       #1c2724;
  --muted:      #5d6b66;
  --line:       #e3e6dd;
  --line-dark:  rgba(255,255,255,.14);

  --maxw: 1140px;
  --header-h: 72px;
  --gap:  clamp(1.2rem, 4vw, 2.2rem);
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 14px 40px -18px rgba(17,34,31,.28);
  --shadow-sm: 0 6px 20px -12px rgba(17,34,31,.30);

  --ff-head: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --ff-body: 'Open Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--olive-700); text-decoration: none; transition: color .18s; }
a:hover { color: var(--olive-800); }
h1, h2, h3 { font-family: var(--ff-head); font-weight: 600; line-height: 1.12; color: var(--ink); letter-spacing: .2px; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 5vw, 2rem); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 1000;
  background: var(--ink); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5ch;
  font-family: var(--ff-body); font-weight: 600; font-size: .98rem;
  padding: .85rem 1.5rem; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .15s, background .2s, color .2s, border-color .2s, box-shadow .2s;
  text-align: center; line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--olive); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: #d2df66; color: var(--ink); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-ghost:hover { background: rgba(255,255,255,.1); color: #fff; border-color: #fff; }
.btn-ghost strong { font-weight: 700; }
.btn-block { width: 100%; }
.btn-phone { background: var(--ink); color: #fff; padding: .6rem 1.1rem; font-size: .9rem; }
.btn-phone:hover { background: var(--ink-2); color: #fff; }

/* ============================================================
   Header / Nav
   ============================================================ */
/* Prémiová tmavá hlavička — průhledná nad hero, na scroll ztmavne. */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  /* jemný tmavý scrim shora pro čitelnost bílého textu i nad světlou oblohou */
  background: linear-gradient(180deg, rgba(8,18,15,.55) 0%, rgba(8,18,15,0) 100%);
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11,25,22,.95);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom-color: rgba(198,212,78,.16);
  box-shadow: 0 10px 30px -20px rgba(0,0,0,.8);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: 1.4rem; }
.brand { flex-shrink: 0; display: flex; align-items: center; }
.brand-logo { height: 30px; width: auto; }
.nav { display: flex; align-items: center; }

.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px; justify-content: center;
  width: 44px; height: 44px; background: none; border: 0; cursor: pointer; padding: 0;
}
.nav-toggle span { width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: transform .25s, opacity .2s; margin-inline: auto; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-menu {
  list-style: none; padding: 0; display: flex; align-items: center; gap: .35rem; flex-wrap: nowrap;
}
.nav-menu a {
  color: rgba(255,255,255,.82); font-size: .76rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em;
  padding: .5rem .7rem; border-radius: 6px; display: inline-block; white-space: nowrap; line-height: 1.2;
  transition: color .2s;
}
.nav-menu a:hover { color: var(--olive); background: transparent; }

/* Telefon — nenápadný, jen jemný odkaz s ikonou */
.nav-phone { margin-left: .4rem; padding-left: .9rem; border-left: 1px solid rgba(255,255,255,.18); flex-shrink: 0; }
.nav-phone a {
  display: inline-flex; align-items: center; gap: .45rem;
  color: rgba(255,255,255,.72); font-size: .82rem; font-weight: 600; letter-spacing: .01em;
  white-space: nowrap; transition: color .2s;
}
.nav-phone a:hover { color: var(--olive); }
.phone-ico { opacity: .85; }

/* Mobilní / tablet menu (hamburger) */
@media (max-width: 1024px) {
  .nav-menu {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(11,25,22,.98); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(198,212,78,.16);
    padding: .6rem 1.4rem 1.6rem;
    transform: translateY(-130%); transition: transform .3s ease;
    box-shadow: 0 24px 40px -24px rgba(0,0,0,.7); max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu li { width: 100%; }
  .nav-menu a { display: block; padding: 1rem .2rem; border-bottom: 1px solid rgba(255,255,255,.08); border-radius: 0; font-size: .85rem; }
  .nav-phone { margin: 1.1rem 0 0; padding-left: 0; border-left: 0; }
  .nav-phone a { font-size: 1rem; }
}
@media (min-width: 1025px) {
  .nav-toggle { display: none; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; color: #fff; overflow: hidden; scroll-margin-top: 0;
  min-height: 100vh;            /* vždy plná výška okna */
  min-height: 100dvh;          /* mobil: dynamická výška (adresní řádek) */
  display: flex; align-items: center;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform-origin: 60% 40%; animation: kenburns 24s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1.02); } to { transform: scale(1.12); } }
@media (prefers-reduced-motion: reduce) { .hero-bg img { animation: none; } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,25,22,.55) 0%, rgba(11,25,22,.78) 100%),
    radial-gradient(120% 120% at 15% 10%, rgba(11,25,22,.35), transparent 60%);
}
.hero-content { position: relative; z-index: 1; padding-block: clamp(3rem, 10vh, 6rem); max-width: 760px; }
.hero-eyebrow {
  text-transform: uppercase; letter-spacing: .22em; font-size: .8rem; font-weight: 700;
  color: var(--olive); margin-bottom: 1rem;
}
.hero-title { display: flex; flex-direction: column; gap: .2rem; margin-bottom: 1.3rem; }
.hero-brand { font-size: clamp(2.6rem, 7vw, 4.6rem); color: #fff; line-height: 1; }
.hero-tagline { font-size: clamp(1.5rem, 4vw, 2.4rem); color: var(--olive); font-style: italic; font-weight: 500; }
.hero-lead { font-size: clamp(1.05rem, 2.3vw, 1.25rem); max-width: 56ch; color: rgba(255,255,255,.92); margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }

.hero-scroll {
  position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); z-index: 1;
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.6); border-radius: 14px;
}
.hero-scroll span { position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; margin-left: -2px; background: #fff; border-radius: 2px; animation: scroll 1.6s infinite; }
@keyframes scroll { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 80%,100% { opacity: 0; transform: translateY(12px); } }
@media (prefers-reduced-motion: reduce) { .hero-scroll span { animation: none; } }

/* ============================================================
   Sekce — obecné
   ============================================================ */
.section { padding-block: clamp(3.5rem, 9vw, 6.5rem); scroll-margin-top: var(--header-h); }
.section-head { max-width: 720px; margin: 0 auto clamp(2rem, 5vw, 3.2rem); text-align: center; }
.section-eyebrow { text-transform: uppercase; letter-spacing: .2em; font-size: .78rem; font-weight: 700; color: var(--olive-700); margin-bottom: .7rem; }
.section-title { font-size: clamp(1.9rem, 4.6vw, 3rem); margin-bottom: 1rem; }
.section-intro { color: var(--muted); font-size: 1.08rem; }

/* ---------- Karty (3 sloupce) ---------- */
.cards-3 { display: grid; gap: var(--gap); grid-template-columns: 1fr; }
@media (min-width: 720px) { .cards-3 { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.8rem; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d6dcc4; }
.service-card h3 { font-size: 1.7rem; margin-bottom: .6rem; }
.service-card p { color: var(--muted); margin-bottom: 1.1rem; }
.card-link { font-weight: 700; font-size: .95rem; }
.service-icon {
  display: inline-flex; width: 56px; height: 56px; border-radius: 14px; margin-bottom: 1.1rem;
  background: var(--cream); border: 1px solid var(--line);
  background-repeat: no-repeat; background-position: center; background-size: 28px;
}
.icon-chart  { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a52f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='4' y1='20' x2='20' y2='20'/%3E%3Crect x='5' y='12' width='3' height='6'/%3E%3Crect x='10.5' y='8' width='3' height='10'/%3E%3Crect x='16' y='4' width='3' height='14'/%3E%3C/svg%3E"); }
.icon-gold   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a52f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 9l3-5h12l3 5-9 11z'/%3E%3Cpath d='M3 9h18M9 4l-3 5 6 11M15 4l3 5-6 11'/%3E%3C/svg%3E"); }
.icon-shield { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a52f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l8 3v6c0 5-3.5 8-8 9-4.5-1-8-4-8-9V6z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E"); }

.sluzby-note {
  max-width: 760px; margin: clamp(2rem,5vw,3rem) auto 0; text-align: center;
  color: var(--muted); font-size: 1.02rem;
}

/* ---------- Jak pracujeme ---------- */
.jak-pracujeme { background: var(--cream); }
.steps { display: grid; gap: var(--gap); grid-template-columns: 1fr; }
@media (min-width: 760px) { .steps { grid-template-columns: 1fr 1fr; } }
.step { background: var(--paper); border-radius: var(--radius); padding: 2.2rem; box-shadow: var(--shadow-sm); position: relative; }
.step-num { font-family: var(--ff-head); font-size: 2.6rem; color: var(--olive); font-weight: 700; line-height: 1; display: block; margin-bottom: .4rem; }
.step h3 { font-size: 1.8rem; margin-bottom: .8rem; }
.step p { color: var(--muted); margin-bottom: .8rem; }
.step p:last-child { margin-bottom: 0; }

.cta-band {
  margin-top: clamp(2rem, 5vw, 3rem); background: var(--ink); color: #fff;
  border-radius: var(--radius); padding: clamp(1.8rem, 4vw, 2.6rem);
  display: flex; flex-direction: column; gap: 1.3rem; align-items: flex-start;
}
.cta-band-text h3 { color: #fff; font-size: clamp(1.5rem, 3.2vw, 2.1rem); margin-bottom: .5rem; }
.cta-band-text p { color: rgba(255,255,255,.82); }
@media (min-width: 820px) {
  .cta-band { flex-direction: row; align-items: center; justify-content: space-between; gap: 2rem; }
  .cta-band .btn { flex-shrink: 0; }
}

/* ---------- Čísla + růstový graf (tmavý dynamický pruh) ---------- */
.cisla { position: relative; overflow: hidden; background: var(--ink); color: #fff; }
.cisla-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(80% 120% at 85% 0%, rgba(198,212,78,.10), transparent 55%),
    radial-gradient(60% 100% at 0% 100%, rgba(198,212,78,.06), transparent 60%);
}
.cisla-inner { position: relative; z-index: 1; }
.section-head--light .section-eyebrow { color: var(--olive); }
.section-head--light .section-title { color: #fff; }

.cisla-grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 880px) { .cisla-grid { grid-template-columns: 1.35fr 1fr; } }

/* graf */
.growth { margin: 0; width: 100%; }
.growth-svg { width: 100%; height: clamp(180px, 26vw, 260px); display: block; overflow: visible; }
.growth-line {
  stroke-dasharray: 1; stroke-dashoffset: 1;
  transition: stroke-dashoffset 2.1s cubic-bezier(.4,0,.2,1);
  filter: drop-shadow(0 4px 14px rgba(198,212,78,.35));
}
.growth-area { opacity: 0; transition: opacity 1.4s ease .5s; }
.growth-dot { opacity: 0; transform-box: fill-box; transform-origin: center; }
.cisla.in .growth-line { stroke-dashoffset: 0; }
.cisla.in .growth-area { opacity: 1; }
.cisla.in .growth-dot { opacity: 1; animation: dotPulse 2s ease-in-out 2.1s infinite; }
@keyframes dotPulse {
  0%,100% { r: 6; filter: drop-shadow(0 0 0 rgba(198,212,78,.0)); }
  50%     { r: 8; filter: drop-shadow(0 0 10px rgba(198,212,78,.8)); }
}

/* počítadla */
.stats { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.6rem; }
@media (min-width: 480px) and (max-width: 879px) { .stats { grid-template-columns: repeat(3,1fr); text-align: center; } }
.stat { border-left: 2px solid rgba(198,212,78,.5); padding-left: 1.1rem; }
@media (min-width: 480px) and (max-width: 879px) { .stat { border-left: 0; border-top: 2px solid rgba(198,212,78,.5); padding: 1rem 0 0; } }
.stat-num { font-family: var(--ff-head); font-size: clamp(2.8rem, 6vw, 4rem); font-weight: 600; line-height: 1; color: #fff; display: inline-flex; align-items: baseline; }
.stat-suffix { color: var(--olive); margin-left: .05em; }
.stat-label { display: block; margin-top: .5rem; color: rgba(255,255,255,.72); font-size: .98rem; max-width: 28ch; }

@media (prefers-reduced-motion: reduce) {
  .growth-line { stroke-dashoffset: 0; transition: none; }
  .growth-area, .growth-dot { opacity: 1; }
  .cisla.in .growth-dot { animation: none; }
}

/* ---------- O nás ---------- */
.onas-grid { display: grid; gap: clamp(1.8rem, 4vw, 3rem); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 900px) { .onas-grid { grid-template-columns: 1.5fr 1fr; } }
.onas-text p { margin-bottom: 1.1rem; color: var(--text); }
.filosofie { margin-top: 2rem; padding: 1.8rem; background: var(--cream); border-radius: var(--radius); border-left: 4px solid var(--olive); }
.filosofie h3 { font-size: 1.6rem; margin-bottom: .7rem; }
.filosofie-q { margin: .8rem 0 1rem 1.2rem; display: grid; gap: .5rem; }
.filosofie-q li { color: var(--text); }
.filosofie-no { color: var(--muted); margin-top: .6rem; }

.person-card { background: var(--ink); color: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: sticky; top: 90px; }
.person-photo { width: 100%; height: auto; object-fit: cover; aspect-ratio: 4/5; filter: grayscale(.15); }
.person-body { padding: 1.5rem 1.6rem 1.8rem; }
.person-card h3 { color: #fff; font-size: 1.6rem; margin-bottom: .2rem; }
.person-role { color: var(--olive); font-weight: 600; margin-bottom: .8rem; font-size: .95rem; }
.person-bio { color: rgba(255,255,255,.8); font-size: .96rem; }

/* ---------- Partneři — kultivovaná řada bez boxů ---------- */
.partner-logos {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(2.5rem, 6vw, 5.5rem);
}
.partner-logo { display: flex; align-items: center; justify-content: center; }
.partner-logo img {
  height: 46px; width: auto; opacity: .62;
  transition: opacity .25s ease;
}
.partner-logo:hover img { opacity: .95; }
@media (max-width: 560px) {
  .partner-logos { gap: 2.4rem; }
  .partner-logo img { height: 38px; }
}

/* ---------- Kontakt ---------- */
.kontakt { background: var(--cream); }
.kontakt-grid { display: grid; gap: clamp(1.8rem, 4vw, 3rem); grid-template-columns: 1fr; }
@media (min-width: 880px) { .kontakt-grid { grid-template-columns: 1.4fr 1fr; } }

.kontakt-form-wrap, .kontakt-info { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.6rem, 4vw, 2.4rem); box-shadow: var(--shadow-sm); }

.form-row { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 560px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field { margin-bottom: 1.1rem; display: flex; flex-direction: column; }
.field label { font-weight: 600; font-size: .92rem; margin-bottom: .4rem; color: var(--ink); }
.req { color: var(--wine); }
.field input, .field textarea {
  font-family: inherit; font-size: 1rem; color: var(--text);
  padding: .8rem .9rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fcfdfa; transition: border-color .18s, box-shadow .18s; width: 100%;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--olive-700); box-shadow: 0 0 0 3px rgba(148,165,47,.18); }
.field textarea { resize: vertical; min-height: 120px; }
.has-error { border-color: var(--wine) !important; }
.field-err { color: var(--wine); font-size: .85rem; margin-top: .35rem; }
.field-check { flex-direction: row; }
.check { display: flex; gap: .6rem; align-items: flex-start; font-weight: 400; font-size: .9rem; color: var(--muted); cursor: pointer; }
.check input { width: 18px; height: 18px; margin-top: .15rem; accent-color: var(--olive-700); flex-shrink: 0; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.alert { padding: 1rem 1.2rem; border-radius: var(--radius-sm); margin-bottom: 1.2rem; font-size: .96rem; }
.alert-ok { background: #eef6e0; border: 1px solid #c9dd8f; color: #4b5d18; }
.alert-err { background: #fbeceb; border: 1px solid #e8b6b2; color: var(--wine); }

.kontakt-info h3 { font-size: 1.5rem; margin-bottom: .3rem; }
.ki-company { font-weight: 700; color: var(--ink); margin-bottom: 1.2rem; }
.ki-list { list-style: none; padding: 0; display: grid; gap: 1rem; }
.ki-list li { display: grid; gap: .1rem; }
.ki-label { text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; font-weight: 700; color: var(--olive-700); }
.ki-note { margin-top: 1.4rem; padding-top: 1.2rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .92rem; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--ink); color: rgba(255,255,255,.82); }
.footer-inner { display: grid; gap: 2rem; grid-template-columns: 1fr; padding-block: clamp(2.8rem, 6vw, 4rem); }
@media (min-width: 700px) { .footer-inner { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.4rem; } }
.footer-brand img { height: 40px; width: auto; margin-bottom: .9rem; }
.footer-tagline { color: var(--olive); font-family: var(--ff-head); font-style: italic; font-size: 1.2rem; }
.footer-col h3 { color: #fff; font-size: 1.15rem; margin-bottom: .9rem; font-family: var(--ff-body); font-weight: 700; letter-spacing: .02em; }
.footer-list { list-style: none; padding: 0; display: grid; gap: .5rem; font-size: .95rem; }
.footer-list a { color: rgba(255,255,255,.82); }
.footer-list a:hover { color: var(--olive); }
.footer-addr { font-style: normal; font-size: .95rem; line-height: 1.7; }
.footer-bottom { border-top: 1px solid var(--line-dark); }
.footer-bottom-inner { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: space-between; align-items: center; padding-block: 1.2rem; font-size: .85rem; color: rgba(255,255,255,.6); }
.to-top { color: rgba(255,255,255,.7); }
.to-top:hover { color: var(--olive); }

/* ============================================================
   Reveal animace
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
