/* =========================================================
   FARBWERK — Maler & Gipser (Demo) · loew.me
   Shared stylesheet
   ========================================================= */

:root {
  --cream: #f5f2ec;
  --ink: #141414;
  --ink-soft: #3a3a38;
  --muted: #6d6a63;
  --line: #e2ddd2;
  --white: #ffffff;

  /* accent system */
  --cobalt: #2340ff;
  --terra: #e0562f;
  --sage: #5c7a5c;

  /* active accent (JS can swap) */
  --accent: var(--cobalt);
  --accent-ink: #ffffff;

  --maxw: 1240px;
  --radius: 22px;
  --radius-lg: 34px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --shadow: 0 24px 60px -24px rgba(20, 20, 20, .35);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, .display {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 .4em;
}

p { margin: 0 0 1.1em; }

a { color: inherit; text-decoration: none; }

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

::selection { background: var(--accent); color: var(--accent-ink); }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 3px;
  background: var(--accent);
  border-radius: 3px;
}

.section { padding: clamp(64px, 9vw, 130px) 0; }
.section--tight { padding: clamp(48px, 6vw, 84px) 0; }

.lead { font-size: clamp(1.1rem, 2vw, 1.35rem); color: var(--ink-soft); max-width: 40ch; }

/* ---------- Buttons ---------- */
.btn {
  --b: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 26px;
  border-radius: 100px;
  border: 2px solid var(--b);
  background: var(--b);
  color: var(--cream);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: .98rem;
  cursor: pointer;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
}
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 30px -14px rgba(20,20,20,.5); }
.btn:hover .arrow { transform: translateX(5px); }

.btn--accent { --b: var(--accent); color: var(--accent-ink); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); }

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
  padding: 22px 0;
}
.site-header.scrolled {
  background: rgba(245, 242, 236, .82);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding: 12px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.brand .dot {
  width: 16px; height: 16px;
  border-radius: 5px;
  background: var(--accent);
  transition: background .4s var(--ease), transform .4s var(--ease);
}
.brand:hover .dot { transform: rotate(45deg) scale(1.1); }

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav a {
  padding: 9px 15px;
  border-radius: 100px;
  font-weight: 500;
  font-size: .96rem;
  color: var(--ink-soft);
  transition: color .25s var(--ease), background .25s var(--ease);
}
.nav a:hover { color: var(--ink); background: rgba(20,20,20,.05); }
.nav a.active { color: var(--ink); }
.nav a.active::after {
  content: "";
  display: block;
  width: 22px; height: 3px;
  margin: 3px auto 0;
  border-radius: 3px;
  background: var(--accent);
}
.nav .btn { margin-left: 8px; padding: 11px 20px; }

.hamburger {
  display: none;
  width: 46px; height: 46px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.hamburger span,
.hamburger span::before,
.hamburger span::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 20px; height: 2px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.hamburger span::before { transform: translate(-50%, -8px); }
.hamburger span::after { transform: translate(-50%, 6px); }
.hamburger.open span { background: transparent; }
.hamburger.open span::before { transform: translate(-50%, -50%) rotate(45deg); }
.hamburger.open span::after { transform: translate(-50%, -50%) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(140px, 20vw, 220px) 0 clamp(60px, 8vw, 110px);
  overflow: hidden;
}
.hero .blob {
  position: absolute;
  z-index: 0;
  width: 60vw; max-width: 720px; aspect-ratio: 1;
  border-radius: 45% 55% 62% 38% / 50% 45% 55% 50%;
  background: var(--accent);
  filter: blur(6px);
  opacity: .16;
  top: 4%; right: -8%;
  animation: blob 16s ease-in-out infinite;
}
@keyframes blob {
  0%,100% { border-radius: 45% 55% 62% 38% / 50% 45% 55% 50%; transform: translate(0,0) rotate(0); }
  33% { border-radius: 60% 40% 40% 60% / 45% 60% 40% 55%; transform: translate(-3%, 4%) rotate(8deg); }
  66% { border-radius: 40% 60% 55% 45% / 60% 40% 60% 40%; transform: translate(3%, -3%) rotate(-6deg); }
}
.hero-inner { position: relative; z-index: 1; }
.hero h1 {
  font-size: clamp(3.3rem, 13vw, 10.5rem);
  line-height: .92;
  margin: 0;
}
.hero h1 .stroke {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
}
.hero h1 .accent-word { color: var(--accent); }
.hero-tagline {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.15rem, 2.5vw, 1.7rem);
  font-weight: 500;
  max-width: 30ch;
  margin: 28px 0 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-figure {
  margin-top: clamp(46px, 6vw, 80px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 8;
}
.hero-figure img { width: 100%; height: 100%; object-fit: cover; }

/* swatch row */
.swatches { display: flex; gap: 10px; margin-top: 30px; align-items: center; flex-wrap: wrap; }
.swatch {
  width: 40px; height: 40px; border-radius: 12px;
  border: none; cursor: pointer;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.35);
  transition: transform .25s var(--ease);
}
.swatch:hover { transform: translateY(-4px) scale(1.06); }
.swatch--cobalt { background: var(--cobalt); }
.swatch--terra  { background: var(--terra); }
.swatch--sage   { background: var(--sage); }
.swatch--ink    { background: var(--ink); }
.swatch-label { font-size: .82rem; color: var(--muted); }

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  background: var(--ink);
  color: var(--cream);
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.marquee__track {
  display: inline-flex;
  gap: 40px;
  animation: marquee 32s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.1rem, 2.4vw, 1.8rem);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 40px;
}
.marquee__item::after {
  content: "";
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   SECTION HEADERS + GRID
   ========================================================= */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 54px;
  flex-wrap: wrap;
}
.section-head h2 { font-size: clamp(2.1rem, 5vw, 3.8rem); max-width: 16ch; }
.section-head p { max-width: 34ch; margin: 0; color: var(--ink-soft); }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.card__num {
  font-family: "Space Grotesk", sans-serif;
  font-size: .85rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .1em;
}
.card h3 { font-size: 1.5rem; margin-top: 14px; }
.card p { color: var(--ink-soft); margin-bottom: 0; }
.card__bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .4s var(--ease);
}
.card:hover .card__bar { transform: scaleY(1); }

.card--accent {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: transparent;
}
.card--accent .card__num,
.card--accent h3 { color: var(--accent-ink); }
.card--accent p { color: rgba(255,255,255,.85); }

/* =========================================================
   COUNTERS
   ========================================================= */
.stats {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px);
}
.stats .grid-4 { gap: 18px; }
.stat__num {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.stat__num .suffix { color: var(--cream); }
.stat__label { color: rgba(255,255,255,.7); font-size: .98rem; margin-top: 8px; }

/* =========================================================
   SPLIT / FEATURE
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split--rev .split__media { order: 2; }

.checklist { list-style: none; padding: 0; margin: 22px 0 0; }
.checklist li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.checklist li::before {
  content: "";
  flex: 0 0 auto;
  width: 22px; height: 22px; margin-top: 3px;
  border-radius: 7px;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/16px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/16px no-repeat;
}

/* =========================================================
   PROJECT GALLERY
   ========================================================= */
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 240px;
  grid-column: span 4;
}
.tile.tall { grid-row: span 2; }
.tile.wide { grid-column: span 8; }
.tile.half { grid-column: span 6; }
.tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
  transition: transform .8s var(--ease);
}
.tile:hover img { transform: scale(1.07); }
.tile__cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 24px;
  background: linear-gradient(to top, rgba(20,20,20,.85), transparent);
  color: var(--cream);
  transform: translateY(14px);
  opacity: 0;
  transition: transform .45s var(--ease), opacity .45s var(--ease);
}
.tile:hover .tile__cap { transform: translateY(0); opacity: 1; }
.tile__cap .tag {
  font-family: "Space Grotesk", sans-serif;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
}
.tile__cap h3 { font-size: 1.3rem; margin: 4px 0 0; }

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta {
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: var(--radius-lg);
  padding: clamp(44px, 7vw, 90px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta h2 { font-size: clamp(2.2rem, 6vw, 4.4rem); }
.cta p { color: rgba(255,255,255,.9); max-width: 46ch; margin: 0 auto 30px; }
.cta .btn { --b: var(--ink); color: var(--cream); }
.cta .btn--ghost { background: transparent; border-color: var(--accent-ink); color: var(--accent-ink); }
.cta .btn--ghost:hover { background: var(--accent-ink); color: var(--accent); }

/* =========================================================
   TEAM
   ========================================================= */
.person {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.person:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.person__avatar {
  width: 74px; height: 74px;
  border-radius: 18px;
  display: grid; place-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  color: #fff;
  margin-bottom: 20px;
}
.person h3 { font-size: 1.35rem; margin: 0; }
.person .role { color: var(--accent); font-weight: 600; font-size: .95rem; }
.person p { color: var(--ink-soft); margin: 12px 0 0; font-size: .96rem; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; }
.form { display: grid; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { font-weight: 600; font-size: .92rem; font-family: "Space Grotesk", sans-serif; }
.field input,
.field textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 14px 16px;
  border: 2px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  transition: border-color .25s var(--ease);
}
.field input:focus,
.field textarea:focus { border-color: var(--accent); outline: none; }
.field textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: .85rem; color: var(--muted); }

.info-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  margin-bottom: 20px;
}
.info-block h3 { font-size: 1.2rem; }
.info-row { display: flex; gap: 12px; padding: 8px 0; color: var(--ink-soft); }
.info-row strong { color: var(--ink); min-width: 68px; display: inline-block; }

.map {
  border-radius: var(--radius);
  overflow: hidden;
  height: 260px;
  position: relative;
  background:
    linear-gradient(135deg, rgba(35,64,255,.10), rgba(224,86,47,.10)),
    repeating-linear-gradient(0deg, var(--line) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 44px),
    var(--cream);
  border: 1px solid var(--line);
  display: grid; place-items: center;
}
.map__pin {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: var(--cream);
  padding: 12px 20px; border-radius: 100px;
  font-family: "Space Grotesk", sans-serif; font-weight: 600;
  box-shadow: var(--shadow);
}
.map__pin::before { content: ""; width: 12px; height: 12px; border-radius: 50%; background: var(--accent); }

/* =========================================================
   PAGE HERO (subpages)
   ========================================================= */
.page-hero {
  padding: clamp(140px, 18vw, 200px) 0 clamp(30px, 5vw, 60px);
  position: relative;
  overflow: hidden;
}
.page-hero .blob {
  position: absolute; z-index: 0;
  width: 48vw; max-width: 560px; aspect-ratio: 1;
  border-radius: 45% 55% 62% 38% / 50% 45% 55% 50%;
  background: var(--accent); opacity: .14; filter: blur(4px);
  top: -6%; right: -6%;
  animation: blob 18s ease-in-out infinite;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.6rem, 8vw, 6rem); }
.page-hero .lead { max-width: 52ch; }
.breadcrumb { font-size: .88rem; color: var(--muted); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--accent); }

/* =========================================================
   SERVICE DETAIL
   ========================================================= */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(40px, 6vw, 80px) 0;
  border-top: 1px solid var(--line);
}
.service-detail:first-of-type { border-top: none; }
.service-detail--rev .service-detail__text { order: 2; }
.service-detail__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  box-shadow: var(--shadow);
}
.service-detail__media img { width: 100%; height: 100%; object-fit: cover; }
.service-detail__media.block {
  display: grid; place-items: center;
  color: #fff;
  aspect-ratio: 5/4;
}
.service-detail__media.block .big {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  opacity: .9;
}
.service-detail h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
.tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.tag-pill {
  font-size: .85rem;
  padding: 7px 15px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink-soft);
  background: var(--white);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(56px, 8vw, 96px) 0 30px;
  margin-top: clamp(40px, 6vw, 80px);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .brand { color: var(--cream); font-size: 1.7rem; }
.footer-brand p { color: rgba(255,255,255,.6); max-width: 30ch; margin-top: 16px; }
.footer-col h4 {
  font-size: .85rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.55); margin-bottom: 16px;
}
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,.82); padding: 5px 0; margin: 0; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-top: 24px;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* =========================================================
   MOBILE
   ========================================================= */
@media (max-width: 940px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .hamburger { display: block; }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw, 340px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    background: var(--cream);
    padding: 100px 24px 40px;
    transform: translateX(105%);
    transition: transform .4s var(--ease);
    box-shadow: -20px 0 60px -20px rgba(20,20,20,.4);
    z-index: 90;
  }
  .nav.open { transform: translateX(0); }
  .nav a { padding: 14px 16px; font-size: 1.1rem; border-radius: 14px; }
  .nav a.active { background: rgba(20,20,20,.05); }
  .nav a.active::after { display: none; }
  .nav .btn { margin: 12px 0 0; justify-content: center; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .split, .service-detail { grid-template-columns: 1fr; }
  .split--rev .split__media,
  .service-detail--rev .service-detail__text { order: 0; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .tile, .tile.wide, .tile.half { grid-column: span 2; }
  .tile.tall { grid-row: span 1; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .tile, .tile.wide, .tile.half { grid-column: span 1; }
  .hero-figure { aspect-ratio: 4 / 3; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
