/* ==========================================================================
   Albert Neumann GmbH — albert-neumann.de
   Statische Website · HTML/CSS/JS · ohne Framework
   Farbwelt: Asphalt / Stahlgrau / Signal-Amber
   ========================================================================== */

:root {
  --ink: #15181b;
  --ink-soft: #23272b;
  --graphite: #4a5158;
  --bg: #f2f4f3;
  --paper: #ffffff;
  --line: #dde1e0;
  --line-dark: #33383d;
  --amber: #e9a115;
  --amber-deep: #b57a08;
  --radius: 4px;
  --shadow: 0 10px 30px rgba(21, 24, 27, 0.08);
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;
  --header-h: 72px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

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

.container {
  width: min(1160px, 100% - 2.5rem);
  margin-inline: auto;
}

@media (max-width: 520px) {
  .container { width: calc(100% - 2rem); }
}

/* Sichtbarer Sprunglink für Tastatur- und Screenreader-Nutzer */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.skip-link:focus { top: 1rem; }

/* --------------------------------------------------------------------------
   Typografie
   -------------------------------------------------------------------------- */

h1, h2, h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

h1 { font-weight: 700; font-size: clamp(2.75rem, 7vw, 4.75rem); }
h2 { font-weight: 700; font-size: clamp(2rem, 4.5vw, 3rem); }
h3 { font-weight: 600; font-size: clamp(1.25rem, 2.5vw, 1.5rem); letter-spacing: 0.03em; }

.lead {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: var(--graphite);
  max-width: 62ch;
}

/* Typenschild-Eyebrow: Mono-Label mit Chevron aus der Logo-Geometrie */
.plate {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--graphite);
  margin-bottom: 1rem;
}

.plate::before {
  content: "";
  width: 0.7em;
  height: 0.8em;
  background: var(--amber);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.section { padding-block: clamp(4rem, 9vw, 6.5rem); }

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head p { margin-top: 0.75rem; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 0.8rem 1.6rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn-solid { background: var(--ink); color: #fff; }
.btn-solid:hover { background: var(--amber); border-color: var(--amber); color: var(--ink); }

.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { border-color: var(--amber); color: var(--amber-deep); }

.btn-light { background: #fff; border-color: #fff; color: var(--ink); }
.btn-light:hover { background: var(--amber); border-color: var(--amber); }

.btn .arrow { font-family: var(--font-body); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand { display: inline-flex; align-items: center; }
.brand img { height: 40px; width: auto; }

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.site-nav a {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  transition: color 0.15s ease;
}

.site-nav a:hover { color: var(--amber-deep); }

.site-nav a[aria-current="page"] {
  color: var(--amber-deep);
  box-shadow: inset 0 -3px 0 var(--amber);
  border-radius: 0;
}

.site-nav .nav-cta a {
  background: var(--ink);
  color: #fff;
  margin-left: 0.5rem;
}
.site-nav .nav-cta a:hover { background: var(--amber); color: var(--ink); }
.site-nav .nav-cta a[aria-current="page"] { box-shadow: none; border-radius: var(--radius); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.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); }

@media (max-width: 820px) {
  .nav-toggle { display: flex; }

  .brand img { height: 32px; }

  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    display: none;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
  }

  .site-nav.open { display: block; }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.25rem 1.25rem;
    gap: 0.25rem;
  }

  .site-nav a { padding: 0.85rem 0.5rem; font-size: 1.2rem; }
  .site-nav .nav-cta a { margin-left: 0; text-align: center; }
}

/* --------------------------------------------------------------------------
   Mobile Aktionsleiste — Anrufen/Route/E-Mail immer griffbereit
   -------------------------------------------------------------------------- */

.mobile-bar { display: none; }

@media (max-width: 820px) {
  body { padding-bottom: calc(58px + env(safe-area-inset-bottom)); }

  .mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--ink);
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 2px solid var(--amber);
  }

  .mobile-bar a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    min-height: 58px;
    padding: 0.4rem 0.2rem;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .mobile-bar a + a { border-left: 1px solid var(--line-dark); }

  .mobile-bar a:first-child { color: var(--amber); }

  .mobile-bar svg { width: 18px; height: 18px; flex-shrink: 0; }
}

/* --------------------------------------------------------------------------
   Hero (Startseite)
   -------------------------------------------------------------------------- */

.hero { background: var(--paper); border-bottom: 1px solid var(--line); overflow: hidden; }

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

.hero h1 .mark {
  position: relative;
  white-space: nowrap;
}

/* Signatur: schräg angeschnittene Amber-Markierung unter dem Schlüsselwort */
.hero h1 .mark::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -6px;
  bottom: 0.04em;
  height: 0.16em;
  background: var(--amber);
  clip-path: polygon(0 0, 100% 22%, 98% 100%, 1% 78%);
  z-index: -1;
}

.hero .lead { margin-top: 1.25rem; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--graphite);
}

.hero-media { position: relative; }

/* Diagonale Schnittkante — Echo der Logo-Geometrie */
.hero-media img {
  clip-path: polygon(0 0, 100% 0, 100% 88%, 78% 100%, 0 100%);
  border-radius: var(--radius);
}

.hero-media::after {
  content: "";
  position: absolute;
  right: -14px;
  bottom: -14px;
  width: 38%;
  height: 38%;
  background:
    repeating-linear-gradient(-45deg, var(--amber) 0 12px, var(--ink) 12px 24px);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  z-index: -1;
  border-radius: var(--radius);
}

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; padding-block: 2.75rem 3.25rem; }
  .hero-media { max-width: 560px; }
  .hero-facts { gap: 0.9rem 1.5rem; margin-top: 2rem; }
}

@media (max-width: 520px) {
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-strip .btn { width: 100%; justify-content: center; }
}

/* Schmaler Seiten-Hero für Unterseiten */
.page-hero {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(2.5rem, 6vw, 4rem);
}

.page-hero p { margin-top: 0.75rem; }

/* --------------------------------------------------------------------------
   Karten & Raster
   -------------------------------------------------------------------------- */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-top-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  border-top-color: var(--amber);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card h3 { margin-bottom: 0.6rem; }
.card p { color: var(--graphite); }

.card .plate { margin-bottom: 0.9rem; }

/* Karte mit Foto oben */
.card-media { padding: 0; overflow: hidden; }
.card-media .card-body { padding: 1.75rem; }
.card-media figure { margin: 0; }

.card-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

/* Foto-Banner für Unterseiten — Overlay hält den Text lesbar */
.banner {
  position: relative;
  height: clamp(220px, 32vw, 320px);
  overflow: hidden;
  background: var(--ink);
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21,24,27,0.15) 0%, rgba(21,24,27,0.65) 100%);
}

/* Breites Foto mit Textspalte */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.split img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
  clip-path: polygon(0 0, 100% 0, 100% 88%, 82% 100%, 0 100%);
}

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

/* --------------------------------------------------------------------------
   Google-Bewertung — Social Proof direkt unter dem Hero
   -------------------------------------------------------------------------- */

.rating-band { background: var(--bg); padding-block: clamp(2.5rem, 6vw, 4rem); }

.rating-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.75rem, 5vw, 3.5rem);
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow);
}

@media (max-width: 780px) {
  .rating-card { grid-template-columns: 1fr; text-align: center; }
  .rating-text .plate { justify-content: center; }
  .rating-text p { margin-inline: auto; }
}

.rating-score { text-align: center; flex-shrink: 0; }

.rating-score .score {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.5rem, 9vw, 5rem);
  line-height: 0.9;
}

.rating-score .of {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--graphite);
  margin-top: 0.75rem;
}

/* Teilweise gefüllte Sternreihe — Breite in Prozent = Bewertung / 5 */
.stars-big {
  position: relative;
  display: inline-block;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  line-height: 1;
  margin-top: 0.6rem;
}

.stars-big .bg { color: var(--line); }

.stars-big .fg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  white-space: nowrap;
  color: var(--amber);
}

.rating-text h2 { margin-bottom: 0.75rem; }
.rating-text p { color: var(--graphite); max-width: 56ch; }
.rating-text .btn { margin-top: 1.5rem; }

.rating-text .source {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 1rem;
}

/* Google-Bewertungen */
.google-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.google-note p { color: var(--graphite); margin: 0; }

/* --------------------------------------------------------------------------
   Dunkles Zahlen-Band (25 Jahre)
   -------------------------------------------------------------------------- */

.band {
  background: var(--ink);
  color: #fff;
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}

.band .plate { color: #9aa3ab; }

.band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

@media (max-width: 820px) {
  .band-grid { grid-template-columns: 1fr; }
}

.band-stat { border-top: 1px solid var(--line-dark); padding-top: 1.25rem; }

.band-stat .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 6vw, 4.25rem);
  line-height: 1;
  color: var(--amber);
}

.band-stat .num sup { font-size: 0.45em; top: -0.9em; }

.band-stat .label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.4rem;
}

.band-stat p { color: #b9c0c6; margin-top: 0.5rem; font-size: 1rem; }

/* --------------------------------------------------------------------------
   Team
   -------------------------------------------------------------------------- */

.avatar {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--ink);
  clip-path: polygon(0 0, 100% 0, 100% 78%, 78% 100%, 0 100%);
  margin-bottom: 1.1rem;
}

.card .role {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--amber-deep);
  margin-bottom: 0.75rem;
}

/* --------------------------------------------------------------------------
   Bewertungen
   -------------------------------------------------------------------------- */

.review { display: flex; flex-direction: column; }

.review .stars {
  color: var(--amber);
  font-size: 1.05rem;
  letter-spacing: 0.2em;
  margin-bottom: 0.9rem;
}

.review .stars .off { color: var(--line); }

.review blockquote {
  font-size: 1.0625rem;
  color: var(--ink-soft);
  flex-grow: 1;
}

.review .who {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq { max-width: 780px; }

.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 1.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--amber-deep);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq details[open] summary::after { transform: rotate(45deg); }

.faq details p { padding: 0 1.4rem 1.25rem; color: var(--graphite); }

/* --------------------------------------------------------------------------
   Kontakt
   -------------------------------------------------------------------------- */

.contact-list { list-style: none; }

.contact-list li {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-list .k {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--graphite);
  flex-basis: 110px;
  flex-shrink: 0;
  padding-top: 0.35em;
}

.contact-list .v { font-size: 1.0625rem; }
.contact-list .v a { text-decoration-color: var(--amber); text-underline-offset: 3px; }
.contact-list .v a:hover { color: var(--amber-deep); }

/* --------------------------------------------------------------------------
   Externe Inhalte (Karte / AutoScout24) — Zwei-Klick-Lösung
   -------------------------------------------------------------------------- */

.embed {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.embed iframe { display: block; width: 100%; border: 0; }

.embed-placeholder {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 3rem 1.5rem;
  min-height: 320px;
  background:
    repeating-linear-gradient(-45deg, transparent 0 22px, rgba(21,24,27,0.03) 22px 44px);
}

.embed-placeholder .inner { max-width: 46ch; }
.embed-placeholder p { color: var(--graphite); margin-bottom: 1.25rem; }
.embed-placeholder .hint { font-size: 0.85rem; margin-top: 1rem; margin-bottom: 0; }

/* --------------------------------------------------------------------------
   CTA-Streifen
   -------------------------------------------------------------------------- */

.cta-strip {
  background: var(--ink);
  color: #fff;
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

.cta-strip .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-strip h2 { max-width: 22ch; }
.cta-strip p { color: #b9c0c6; margin-top: 0.5rem; max-width: 52ch; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--ink);
  color: #b9c0c6;
  border-top: 3px solid var(--amber);
  padding-block: 3rem 2rem;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line-dark);
}

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

.site-footer .wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 0.75rem;
}

.site-footer h4 {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #8b939b;
  margin-bottom: 0.9rem;
}

.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 0.5rem; }

.site-footer a { color: #d7dbde; text-decoration: none; }
.site-footer a:hover { color: var(--amber); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8b939b;
}

/* Zweiter heller Button auf dunklem Grund (CTA-Streifen) */
.btn-outline-light {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.btn-outline-light:hover { background: var(--amber); border-color: var(--amber); color: var(--ink); }

.cta-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* --------------------------------------------------------------------------
   Impressum / Textseiten
   -------------------------------------------------------------------------- */

.prose { max-width: 760px; }
.prose h2 { font-size: 1.6rem; margin: 2.5rem 0 0.75rem; }
.prose p { margin-bottom: 1rem; color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   Scroll-Reveal (dezent, respektiert Reduced Motion)
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }

  .reveal.in { opacity: 1; transform: none; }

  html:not(.js) .reveal { opacity: 1; transform: none; }
}
