/* ============================================================
   THE ALLEGHENY CHRONICLE — Design System
   Matte black / gold / white editorial identity, drawn from the AC mark.
   ============================================================ */

@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  --ink: #1e1f22;
  --black: #232427;
  --black-soft: #2c2d31;
  --gold: #b8863a;
  --gold-light: #d9b877;
  --gold-pale: #f0e4cd;
  --gold-deep: #8a6428;
  --paper: #faf8f4;
  --paper-dim: #f2efe8;
  --white: #ffffff;
  --line: rgba(35, 36, 39, 0.1);
  --shadow: 0 20px 60px -20px rgba(20, 16, 8, 0.25);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

  --header-h: 84px;
  --max-w: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

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

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

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px); }

/* ---------- Signature motif: the river-line divider ---------- */
.river-line {
  width: 84px; height: 14px; margin: 0 auto;
  display: block;
}
.river-line--left { margin: 0; }
.river-line svg { width: 100%; height: 100%; }
.river-line path { stroke: var(--gold); stroke-width: 2; fill: none; }

/* ============================== HEADER ============================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(250, 248, 244, 0.88);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease;
}
.site-header.is-scrolled { box-shadow: 0 8px 24px -16px rgba(20,16,8,0.3); }
.site-header__inner {
  max-width: var(--max-w); margin: 0 auto; height: 100%;
  padding: 0 clamp(20px, 5vw, 48px);
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px;
}
.site-header__logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.site-header__logo img { height: 42px; width: 42px; object-fit: contain; }
.site-header__wordmark {
  font-family: var(--font-display); font-weight: 600; font-size: 1.15rem;
  letter-spacing: 0.01em; color: var(--black); white-space: nowrap;
}
.site-header__search { position: relative; max-width: 560px; width: 100%; justify-self: center; }
.site-header__search input {
  width: 100%; height: 46px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--white);
  padding: 0 48px 0 20px; font-family: var(--font-body); font-size: 0.95rem;
  color: var(--ink); transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header__search input::placeholder { color: #8a8a8f; }
.site-header__search input:focus {
  border-color: var(--gold); box-shadow: 0 0 0 4px var(--gold-pale); outline: none;
}
.site-header__search button {
  position: absolute; right: 4px; top: 4px; width: 38px; height: 38px;
  border-radius: 999px; border: none; background: transparent;
  display: flex; align-items: center; justify-content: center; color: var(--black);
  transition: background .2s ease;
}
.site-header__search button:hover { background: var(--gold-pale); }
.site-header__search svg { width: 18px; height: 18px; }

.site-header__menu {
  width: 44px; height: 44px; border-radius: 10px; border: none; background: transparent;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  transition: background .2s ease; flex-shrink: 0;
}
.site-header__menu:hover { background: var(--gold-pale); }
.site-header__menu span { width: 22px; height: 2px; background: var(--black); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.site-header__menu[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header__menu[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.site-header__menu[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 720px) {
  .site-header__wordmark { display: none; }
  .site-header__inner { gap: 12px; }
}

/* ============================== SIDEBAR ============================== */
.sidebar-overlay {
  position: fixed; inset: 0; background: rgba(20, 18, 14, 0.45);
  opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s ease; z-index: 200;
}
.sidebar-overlay.is-open { opacity: 1; visibility: visible; }

.sidebar {
  position: fixed; top: 0; right: 0; height: 100%; width: min(420px, 92vw);
  background: var(--black); color: var(--paper);
  z-index: 210; transform: translateX(100%);
  transition: transform .4s cubic-bezier(.22,.61,.36,1);
  overflow-y: auto; box-shadow: var(--shadow);
}
.sidebar.is-open { transform: translateX(0); }

.sidebar__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px clamp(24px, 6vw, 40px) 8px;
}
.sidebar__title { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light); }
.sidebar__close {
  width: 36px; height: 36px; border: none; background: transparent; color: var(--paper);
  font-size: 1.6rem; line-height: 1; border-radius: 50%; transition: background .2s ease;
}
.sidebar__close:hover { background: rgba(255,255,255,0.08); }

.sidebar__nav { padding: 12px clamp(24px, 6vw, 40px) 0; }
.sidebar__nav a {
  display: block; font-family: var(--font-display); font-size: 1.6rem; font-weight: 500;
  padding: 10px 0; color: var(--white); transition: color .2s ease;
}
.sidebar__nav a:hover { color: var(--gold-light); }

.sidebar__divider { height: 1px; background: rgba(255,255,255,0.12); margin: 22px clamp(24px, 6vw, 40px); }

.sidebar__eyebrow {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-light); margin: 0 clamp(24px, 6vw, 40px) 14px;
}
.sidebar__services { list-style: none; margin: 0; padding: 0 clamp(24px, 6vw, 40px); display: flex; flex-direction: column; gap: 2px; }
.sidebar__services li {
  font-size: 0.98rem; padding: 10px 0; color: rgba(250,248,244,0.82);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.sidebar__quote { padding: 4px clamp(24px, 6vw, 40px) 48px; }
.sidebar__quote h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin: 0 0 16px; color: var(--white); }
.sidebar__quote form { display: flex; flex-direction: column; gap: 14px; }
.sidebar__quote label { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(250,248,244,0.6); display: flex; flex-direction: column; gap: 6px; }
.sidebar__quote input, .sidebar__quote textarea {
  font-family: var(--font-body); font-size: 0.95rem; color: var(--white);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px; padding: 11px 13px; resize: vertical;
  transition: border-color .2s ease, background .2s ease;
}
.sidebar__quote input:focus, .sidebar__quote textarea:focus {
  border-color: var(--gold); background: rgba(255,255,255,0.09); outline: none;
}
.sidebar__quote .hidden { position: absolute; left: -9999px; }
.sidebar__quote button[type="submit"] {
  margin-top: 6px; background: var(--gold); color: var(--black); border: none;
  border-radius: 999px; padding: 14px 22px; font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.01em; transition: background .2s ease, transform .15s ease;
}
.sidebar__quote button[type="submit"]:hover { background: var(--gold-light); transform: translateY(-1px); }
.sidebar__note { font-size: 0.78rem; color: rgba(250,248,244,0.45); margin-top: 10px; }

body.sidebar-open { overflow: hidden; }

/* ============================== FOOTER ============================== */
.site-footer {
  padding: 40px 0 48px; text-align: center;
  font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.06em;
  color: #9a9a9f; border-top: 1px solid var(--line); margin-top: 80px;
}

/* ============================== BUTTONS / SHARED ============================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.92rem;
  padding: 13px 26px; border-radius: 999px; border: 1px solid var(--black);
  color: var(--black); background: transparent; transition: all .22s ease;
}
.btn:hover { background: var(--black); color: var(--white); }
.btn--gold { background: var(--gold); border-color: var(--gold); color: var(--black); }
.btn--gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--white); }

.eyebrow {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-deep); display: inline-flex; align-items: center; gap: 10px;
}

/* ============================== HOMEPAGE: EMPTY STATE ============================== */
.empty-state {
  min-height: calc(100vh - var(--header-h) - 140px);
  display: flex; align-items: center; justify-content: center; text-align: center; padding: 60px 20px;
}
.empty-state__inner { max-width: 640px; }
.empty-state__glow {
  width: 220px; height: 220px; margin: 0 auto 8px; border-radius: 50%;
  background: radial-gradient(circle, var(--gold-pale) 0%, rgba(240,228,205,0) 70%);
}
.empty-state h1 {
  font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15; margin: 12px 0 20px; color: var(--black);
}
.empty-state p { font-size: 1.05rem; color: #5b5b60; margin: 0 auto 28px; max-width: 480px; }

/* ============================== HOMEPAGE: FEATURED HERO ============================== */
.hero-feature { padding: 56px 0 20px; }
.hero-feature__card {
  position: relative; border-radius: 20px; overflow: hidden; min-height: 560px;
  display: flex; align-items: flex-end; background: var(--black);
}
.hero-feature__img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-feature__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30,31,34,0) 30%, rgba(20,18,14,0.92) 100%);
}
.hero-feature__content { position: relative; padding: clamp(28px, 5vw, 56px); max-width: 760px; color: var(--white); }
.hero-feature__meta { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; }
.hero-feature__meta .tag { color: var(--gold-light); }
.hero-feature__meta .dot { opacity: 0.5; }
.hero-feature h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.8rem, 4vw, 3.1rem); line-height: 1.12; margin: 0 0 16px; }
.hero-feature p.dek { font-size: 1.08rem; color: rgba(250,248,244,0.85); max-width: 620px; margin: 0 0 26px; }

@media (max-width: 720px) {
  .hero-feature__card { min-height: 460px; }
}

/* ============================== SECTIONS / GRIDS ============================== */
.section { padding: 56px 0; }
.section__head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 30px; }
.section__head h2 {
  font-family: var(--font-display); font-weight: 600; font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin: 0; display: flex; align-items: center; gap: 14px;
}
.section__head .river-line { margin: 0; }

.card-grid { display: grid; gap: 28px; }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
  .card-grid--3, .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .card-grid--2, .card-grid--3, .card-grid--4 { grid-template-columns: 1fr; }
}

.article-card {
  display: flex; flex-direction: column; background: var(--white); border-radius: 16px;
  overflow: hidden; border: 1px solid var(--line); transition: transform .25s ease, box-shadow .25s ease;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.article-card__img { aspect-ratio: 16/10; background-size: cover; background-position: center; background-color: var(--paper-dim); }
.article-card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.article-card__cat { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-deep); }
.article-card__title { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; line-height: 1.3; margin: 0; }
.article-card__excerpt { font-size: 0.92rem; color: #61616a; margin: 0; flex: 1; }
.article-card__meta { font-family: var(--font-mono); font-size: 0.72rem; color: #96969c; margin-top: 4px; }
.article-card--large .article-card__img { aspect-ratio: 16/9; }
.article-card--large .article-card__title { font-size: 1.55rem; }

.read-more { font-family: var(--font-body); font-weight: 600; font-size: 0.88rem; color: var(--black); display: inline-flex; align-items: center; gap: 6px; margin-top: 4px; }
.read-more svg { width: 14px; height: 14px; transition: transform .2s ease; }
.article-card:hover .read-more svg { transform: translateX(3px); }

/* ============================== SEARCH PAGE ============================== */
.search-hero { padding: 56px 0 20px; text-align: center; }
.search-hero h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.7rem, 3.6vw, 2.4rem); margin: 8px 0 6px; }
.search-hero__query { color: var(--gold-deep); }
.search-meta { font-family: var(--font-mono); font-size: 0.82rem; color: #8b8b91; margin-bottom: 8px; }
.search-empty { display: none; } /* superseded by .search-zero */
.search-results { padding: 20px 0 80px; }
.search-result {
  display: grid; grid-template-columns: 220px 1fr; gap: 26px; padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.search-result__img { aspect-ratio: 4/3; border-radius: 12px; background-size: cover; background-position: center; background-color: var(--paper-dim); }
.search-result__cat { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-deep); }
.search-result h3 { font-family: var(--font-display); font-size: 1.3rem; margin: 8px 0; }
.search-result p { color: #61616a; margin: 0 0 10px; font-size: 0.95rem; }
@media (max-width: 620px) {
  .search-result { grid-template-columns: 1fr; }
}

/* ============================== ARTICLE PAGE ============================== */
.article-hero { padding: 40px 0 0; }
.article-hero__img { border-radius: 20px; aspect-ratio: 21/9; background-size: cover; background-position: center; margin-bottom: 34px; background-color: var(--paper-dim); }
.article-head { max-width: 780px; margin: 0 auto 34px; text-align: center; }
.article-head .eyebrow { margin-bottom: 16px; }
.article-head h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 4.4vw, 3rem); line-height: 1.15; margin: 0 0 20px; }
.article-head__meta { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 16px; font-family: var(--font-mono); font-size: 0.8rem; color: #7c7c82; }
.article-head__meta .dot { opacity: 0.4; }

.article-layout { display: grid; grid-template-columns: 220px minmax(0,700px) 220px; gap: 40px; max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(20px,5vw,48px) 60px; justify-content: center; }
.article-layout__main { grid-column: 2; }
.article-layout__toc { grid-column: 1; }
.article-layout__share { grid-column: 3; }
@media (max-width: 1100px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-layout__main, .article-layout__toc, .article-layout__share { grid-column: 1; }
  .article-layout__toc { order: -1; }
}

.toc { position: sticky; top: calc(var(--header-h) + 24px); background: var(--paper-dim); border-radius: 14px; padding: 20px; }
.toc__label { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-deep); margin: 0 0 12px; }
.toc ol { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.toc a { font-size: 0.88rem; color: #52525a; line-height: 1.4; }
.toc a:hover { color: var(--gold-deep); }
.toc__item--3 { padding-left: 14px; }

.share { position: sticky; top: calc(var(--header-h) + 24px); display: flex; flex-direction: row; gap: 10px; lg-flex-direction: column; }
.share a, .share button {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: var(--white);
  display: flex; align-items: center; justify-content: center; transition: all .2s ease;
}
.share a:hover, .share button:hover { background: var(--black); border-color: var(--black); color: var(--white); }
@media (min-width: 1101px) { .share { flex-direction: column; } }

.article-body { font-size: 1.12rem; line-height: 1.85; color: #2b2b2f; }
.article-body h2 { font-family: var(--font-display); font-weight: 600; font-size: 1.7rem; margin: 44px 0 18px; }
.article-body h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; margin: 34px 0 14px; }
.article-body p { margin: 0 0 22px; }
.article-body img { border-radius: 14px; margin: 30px 0; }
.article-body blockquote {
  margin: 32px 0; padding: 4px 0 4px 26px; border-left: 3px solid var(--gold);
  font-family: var(--font-display); font-style: italic; font-size: 1.25rem; color: var(--black);
}
.article-body ul, .article-body ol { margin: 0 0 22px; padding-left: 24px; }
.article-body a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }

.back-home { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 30px; font-weight: 600; font-size: 0.92rem; }
.back-home svg { width: 16px; height: 16px; }

.related-section { border-top: 1px solid var(--line); padding-top: 50px; }
.related-card { display: block; }
.related-card__img { aspect-ratio: 16/10; border-radius: 14px; background-size: cover; background-position: center; margin-bottom: 14px; background-color: var(--paper-dim); }
.related-card__cat { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-deep); }
.related-card__title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; margin: 6px 0 0; }

.related-section--empty .card-grid { display: block; }
.related-empty {
  text-align: center; max-width: 560px; margin: 0 auto; padding: 56px 32px;
  background: linear-gradient(180deg, var(--paper-dim), var(--paper));
  border: 1px solid var(--line); border-radius: 20px;
}
.related-empty .river-line { margin: 0 auto 18px; }
.related-empty__eyebrow { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); margin: 0 0 12px; }
.related-empty__title { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; margin: 0 0 14px; }
.related-empty__body { color: #61616a; font-size: 0.98rem; margin: 0 0 26px; }

/* ============================== SEARCH / SERVICES GLUE (layout-only) ==============================
   No new colors, fonts, shadows, radii, or components below — everything
   visual comes from existing classes (.empty-state, .related-empty, .btn,
   .section, .section__head, .article-body, .eyebrow). These rules are only
   the minimum layout wiring needed to reuse those components in new places. */
.related-empty--left { text-align: left; }
.related-empty--left .related-empty__eyebrow,
.related-empty--left .river-line { margin-left: 0; }

.services-nav { padding: 0 0 60px; max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.services-nav .btn {
  display: flex; align-items: center; gap: 14px; width: 100%;
  justify-content: flex-start; text-align: left; padding: 16px 22px;
}
.services-nav .btn__icon { flex-shrink: 0; width: 20px; height: 20px; color: var(--gold-deep); transition: color .22s ease; }
.services-nav .btn__icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 2; }
.services-nav .btn__chevron { margin-left: auto; flex-shrink: 0; width: 16px; height: 16px; color: var(--gold-deep); transition: color .22s ease, transform .22s ease; }
.services-nav .btn__chevron svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 2; }
.services-nav .btn:hover .btn__icon,
.services-nav .btn:hover .btn__chevron { color: var(--white); }
.services-nav .btn:hover .btn__chevron { transform: translateX(3px); }

.service-section .article-body { max-width: 700px; margin: 0 auto; }
.service-section .related-empty { max-width: 700px; margin: 30px auto 0; }
.service-section .related-empty ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.service-section .related-empty li { position: relative; padding-left: 20px; }
.service-section .related-empty li::before { content: "•"; position: absolute; left: 0; color: var(--gold-deep); }

.service-block__closing {
  max-width: 700px; margin: 40px auto 0; padding: 40px clamp(24px, 5vw, 48px);
  border: 1px solid var(--line); border-radius: 20px;
  background: linear-gradient(180deg, var(--paper-dim), var(--paper));
  text-align: center;
}
.service-block__closing-rule { height: 1px; background: var(--gold); opacity: 0.6; margin: 0 0 20px; }
.service-block__closing p {
  font-family: var(--font-display); font-style: italic; font-size: 1.3rem; line-height: 1.6;
  color: var(--black); margin: 0 0 20px;
}
.service-block__closing .river-line { margin: 0 auto; opacity: 0.8; }

.quote-panel {
  background: var(--black); color: var(--paper); border-radius: 22px;
  border: 1px solid var(--gold-deep);
  max-width: 640px; margin: 0 auto; padding: 48px clamp(24px, 6vw, 48px);
  box-shadow: var(--shadow);
}
.quote-panel .sidebar__quote { padding: 0; }
.quote-panel .sidebar__quote h3 { margin-top: 0; }

/* Thank You page reuses .empty-state — no bespoke component needed. */

/* ============================== UTILITY / SKELETONS ============================== */
.skeleton { background: linear-gradient(90deg, var(--paper-dim) 25%, #eae6db 37%, var(--paper-dim) 63%); background-size: 400% 100%; animation: shimmer 1.4s ease infinite; border-radius: 10px; }
@keyframes shimmer { 0% { background-position: 100% 0; } 100% { background-position: 0 0; } }

.fade-up { animation: fadeUp .6s cubic-bezier(.22,.61,.36,1) both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
