/* ==========================================================================
   Protingas maistas — site.css  (run 2026-09-10T1800, direction A)
   The entire visual identity. base.css is mechanism only and is never edited.
   Every colour is declared exactly once, in the :root block below.
   ONE accent (coral). Everything else is neutral. No teal anywhere.
   ========================================================================== */

:root {
  /* --- base palette (human-approved, 2026-09-10) ------------------------ */
  --color-ink:        #14202A;   /* text, dark bands, solid header, footer */
  --color-surface:    #F4F5F6;   /* page ground (near-white) */
  --color-card:       #FFFFFF;   /* cards, event card */
  --color-muted:      #5F6974;   /* secondary text; ~#6B7580 darkened to clear 4.5:1 on surface */
  --color-hairline:   #DDE1E5;   /* rules, pill borders */
  --color-accent:     #E76145;   /* the only accent — sampled from the logo */
  --color-on-dark:    #FFFFFF;   /* text on ink and on the hero photo */
  --color-clear:      transparent;

  /* --- derived, composed from the base ---------------------------------- */
  --color-on-accent:      var(--color-ink);   /* ink on coral = 4.88:1; white on coral is 3.39:1 and fails */
  --color-accent-hover:   color-mix(in srgb, var(--color-accent) 86%, var(--color-ink));
  --color-link:           color-mix(in srgb, var(--color-accent) 70%, var(--color-ink)); /* coral text on light, AA */
  --color-plate:          color-mix(in srgb, var(--color-ink) 5%, var(--color-surface));
  --color-tint:           color-mix(in srgb, var(--color-ink) 2.5%, var(--color-surface));
  --color-on-dark-muted:  color-mix(in srgb, var(--color-on-dark) 74%, var(--color-ink));
  --color-dark-line:      color-mix(in srgb, var(--color-on-dark) 16%, var(--color-ink));
  --color-light-line:     color-mix(in srgb, var(--color-on-dark) 70%, var(--color-clear));
  --color-light-wash:     color-mix(in srgb, var(--color-on-dark) 12%, var(--color-clear));
  --color-scrim-strong:   color-mix(in srgb, var(--color-ink) 82%, var(--color-clear));
  --color-scrim-mid:      color-mix(in srgb, var(--color-ink) 48%, var(--color-clear));
  --color-scrim-top:      color-mix(in srgb, var(--color-ink) 50%, var(--color-clear));
  --color-backdrop:       color-mix(in srgb, var(--color-ink) 55%, var(--color-clear));
  --color-shadow:         color-mix(in srgb, var(--color-ink) 16%, var(--color-clear));
  --color-focus:          var(--color-accent);

  /* --- type ------------------------------------------------------------- */
  --f-sans: 'Jost', system-ui, sans-serif;
  --f-mono: 'IBM Plex Mono', ui-monospace, monospace;

  /* --- space ------------------------------------------------------------ */
  --shell: 1440px;
  --gutter: clamp(20px, 3.4vw, 56px);  /* 3.4% of viewport = comp's content edge */
  --sec-y: clamp(64px, 7vw, 112px);
  --radius: 4px;
}

/* ---------------------------------------------------------------- base -- */

body {
  background: var(--color-surface);
  color: var(--color-ink);
  font-family: var(--f-sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; line-height: 1.02; letter-spacing: -0.02em; }
p { margin: 0; }
img { max-width: 100%; }

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

.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter); }

.eyebrow {
  font-family: var(--f-mono); font-weight: 500; font-size: 0.75rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-muted);
  margin-bottom: 18px;
}

.section { padding-block: var(--sec-y); }
.section--tint { background: var(--color-tint); }
.section--flush-top { padding-top: 0; }

.h-sec { font-size: clamp(2rem, 3.6vw, 3.25rem); }
.h-sec em, .page-head h1 em { font-style: normal; color: var(--color-accent); }
.h-big { font-size: clamp(2.75rem, 6.4vw, 6rem); line-height: 0.98; }
.h-card { font-size: clamp(1.85rem, 2.8vw, 2.6rem); }

/* ------------------------------------------------------------- buttons -- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  font-family: var(--f-mono); font-weight: 500; font-size: 0.875rem; letter-spacing: 0.02em;
  text-decoration: none; white-space: nowrap;
  padding: 12px 20px; border-radius: var(--radius); border: 1px solid var(--color-clear);
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.btn--lg { padding: 16px 26px; font-size: 0.9375rem; }
.btn--primary { background: var(--color-accent); color: var(--color-on-accent); }
.btn--primary:hover { background: var(--color-accent-hover); }
.btn--outline-light { border-color: var(--color-light-line); color: var(--color-on-dark); }
.btn--outline-light:hover { background: var(--color-light-wash); border-color: var(--color-on-dark); }
.btn--ghost { border-color: var(--color-ink); color: var(--color-ink); }

.textlink {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono); font-weight: 500; font-size: 0.9375rem; text-decoration: none;
  color: var(--color-ink);
}
.textlink svg { width: 15px; height: 15px; transition: transform .18s ease; }
.textlink:hover svg { transform: translateX(4px); }
.textlink--under { text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; font-size: 0.875rem; }

/* -------------------------------------------------------------- header -- */

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 60;
  background: var(--color-ink); color: var(--color-on-dark);
  transition: background .28s ease, box-shadow .28s ease;
}
.page-home .site-header { background: var(--color-clear); }
.page-home .site-header.is-scrolled,
.site-header.is-scrolled { background: var(--color-ink); box-shadow: 0 12px 30px -24px var(--color-shadow); }

.header-row {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: 24px; padding-block: 18px;
}
.brand { display: inline-flex; }
.brand img { display: block; width: 188px; height: auto; }

.site-header > .header-row > .main-nav { justify-self: center; display: flex; align-items: center; }
.main-nav a {
  font-family: var(--f-mono); font-size: 0.875rem; font-weight: 400; text-decoration: none;
  color: var(--color-on-dark); padding: 6px 0; border-bottom: 1px solid var(--color-clear);
}
.main-nav a + a::before {
  content: ""; display: inline-block; width: 3px; height: 3px; border-radius: 50%;
  background: var(--color-on-dark); vertical-align: middle; margin-inline: 22px; opacity: .7;
}
.main-nav a:hover > span, .main-nav a.is-current > span { border-bottom: 1px solid var(--color-accent); }

.header-end { display: flex; align-items: center; gap: 22px; }
.lang { display: inline-flex; align-items: center; gap: 4px; font-family: var(--f-mono); font-size: 0.8125rem; }
.lang button {
  font: inherit; font-weight: 500; background: var(--color-clear); border: 0; cursor: pointer;
  color: inherit; opacity: .72; padding: 4px 4px; border-bottom: 1px solid var(--color-clear);
}
.lang button.is-active { opacity: 1; border-bottom-color: var(--color-accent); }
.lang span { opacity: .5; }

.burger {
  display: none; width: 44px; height: 44px; align-items: center; justify-content: center;
  border: 1px solid var(--color-light-line); border-radius: var(--radius);
  background: var(--color-clear); color: var(--color-on-dark); cursor: pointer;
}
.burger svg { width: 18px; height: 18px; }

@media (max-width: 1000px) {
  .site-header > .header-row > .main-nav { display: none; }
  .header-end .header-cta { display: none; }
  .burger { display: inline-flex; }
  .brand img { width: 150px; }
  .header-row { padding-block: 12px; }
}

/* -------------------------------------------------------------- drawer -- */

.scrim {
  position: fixed; inset: 0; z-index: 70; background: var(--color-backdrop);
  opacity: 0; transition: opacity .3s ease, visibility .3s ease;
}
.scrim[data-lv-open="true"] { opacity: 1; }
.drawer {
  position: fixed; top: 0; right: 0; z-index: 80; width: min(88vw, 400px); height: 100dvh;
  background: var(--color-ink); color: var(--color-on-dark);
  transform: translateX(100%); transition: transform .32s cubic-bezier(.4,0,.2,1), visibility .32s;
  display: flex; flex-direction: column; gap: 28px; padding: 24px; overflow-y: auto;
}
.drawer[data-lv-open="true"] { transform: none; }
.drawer__top { display: flex; justify-content: flex-end; }
.drawer__x {
  font-family: var(--f-mono); font-size: 0.8125rem; background: var(--color-clear); color: var(--color-on-dark);
  border: 1px solid var(--color-dark-line); border-radius: var(--radius); padding: 9px 14px; cursor: pointer;
}
.drawer nav { display: flex; flex-direction: column; }
.drawer nav a {
  font-size: 1.75rem; font-weight: 500; text-decoration: none; color: var(--color-on-dark);
  padding-block: 12px; border-bottom: 1px solid var(--color-dark-line);
}
.drawer nav a.is-current { color: var(--color-accent); }
.drawer__cta { align-self: flex-start; }
.drawer__foot { margin-top: auto; font-family: var(--f-mono); font-size: 0.875rem; line-height: 2.1; }
.drawer__foot a { display: block; color: var(--color-on-dark-muted); text-decoration: none; }

/* ---------------------------------------------------------------- hero -- */

.hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: clamp(560px, 100svh, 940px);
  display: flex; align-items: flex-end;
  color: var(--color-on-dark);
}
.hero__media, .hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__media { z-index: -2; }
.hero__media img { object-fit: cover; object-position: 50% 50%; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to bottom, var(--color-scrim-top) 0, var(--color-clear) 180px),
    linear-gradient(to top, var(--color-scrim-strong) 0%, var(--color-scrim-mid) 34%, var(--color-clear) 64%),
    linear-gradient(to right, var(--color-scrim-mid) 0%, var(--color-clear) 58%);
}
.hero__inner { padding-bottom: clamp(48px, 6vw, 88px); padding-top: calc(var(--lv-header-h, 80px) + 40px); }
.hero__title { font-size: clamp(2.75rem, 8.3vw, 8rem); line-height: 0.94; letter-spacing: -0.025em; }
.hero__sub { margin-top: 22px; font-size: clamp(1.0625rem, 1.3vw, 1.25rem); max-width: 46ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px 28px; margin-top: 30px; }

@media (max-width: 760px) {
  .hero { min-height: 100svh; }
  .hero__scrim {
    background:
      linear-gradient(to bottom, var(--color-scrim-top) 0, var(--color-clear) 120px),
      linear-gradient(to top, var(--color-scrim-strong) 0%, var(--color-scrim-mid) 42%, var(--color-clear) 70%);
  }
  .hero__cta .btn { width: 100%; }
}

/* ------------------------------------------------------------- factbar -- */

.factbar { background: var(--color-ink); color: var(--color-on-dark); }
.factbar__row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 14px 24px; padding-block: 30px;
  font-family: var(--f-mono); font-size: 0.9375rem;
}
.factbar__row > span { display: inline-flex; align-items: center; gap: 24px; }
.factbar__row > span + span::before {
  content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--color-on-dark-muted);
}
@media (max-width: 1100px) { .factbar__row { justify-content: flex-start; } }
@media (max-width: 760px) {
  .factbar__row { flex-direction: column; align-items: flex-start; gap: 10px; padding-block: 24px; font-size: 0.875rem; }
  .factbar__row > span + span::before { display: none; }
  .factbar__row > span::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--color-accent); }
}

/* --------------------------------------------------------------- pills -- */

.pills, .filters {
  display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none;
  margin-block: 30px 36px; padding-bottom: 4px;
}
.pills::-webkit-scrollbar, .filters::-webkit-scrollbar { display: none; }
.pill, .filters button {
  flex-shrink: 0; cursor: pointer; text-decoration: none;
  font-family: var(--f-mono); font-size: 0.8125rem; font-weight: 400;
  background: var(--color-card); color: var(--color-ink);
  border: 1px solid var(--color-hairline); border-radius: 999px; padding: 10px 18px;
  transition: background .16s ease, color .16s ease, border-color .16s ease;
}
.pill:hover, .filters button:hover { border-color: var(--color-ink); }
.pill.is-on, .filters button[aria-pressed="true"] { background: var(--color-ink); border-color: var(--color-ink); color: var(--color-on-dark); }
.pill sup, .filters sup { font-size: 0.625rem; margin-left: 5px; }

/* --------------------------------------------------------------- cards -- */

.grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
@media (max-width: 1100px) { .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 820px)  { .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; } }
@media (max-width: 480px)  { .grid { grid-template-columns: 1fr; } }
@media (max-width: 1100px) and (min-width: 481px) { .grid--home { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.card { display: flex; flex-direction: column; background: var(--color-card); border-radius: 2px; overflow: hidden; }
.card[hidden] { display: none; }
.card__plate { display: block; background: var(--color-plate); }
/* The product photos are cut-outs on white; multiply sinks that white into
   the plate so every box sits on the same soft grey, as in the comp. */
.card__img {
  display: block; width: 100%; height: auto; aspect-ratio: 20 / 19;
  object-fit: contain; mix-blend-mode: multiply;
  transition: transform .4s cubic-bezier(.22,.61,.36,1);
}
/* 19 of the 52 source photos are shot on black (or a black band); multiply
   cannot sink those, so they fill their plate edge to edge instead. */
/* Catalogue cards have no plate wrapper: the img paints its own plate, and
   multiplied against the white card that plate stays an even grey. */
.card > .card__img { background: var(--color-plate); }
.card--dark .card__img { object-fit: cover; mix-blend-mode: normal; }
.card--dark .card__plate { background: var(--color-ink); }
.card:hover .card__img { transform: scale(1.035); }
.card__body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card__row { flex-direction: row; align-items: baseline; justify-content: space-between; gap: 16px; }
.card__name { font-family: var(--f-mono); font-weight: 400; font-size: 0.8125rem; line-height: 1.5; letter-spacing: 0; }
.card__name a { text-decoration: none; }
.card__name a:hover { text-decoration: underline; text-underline-offset: 3px; }
.card__price { font-family: var(--f-mono); font-weight: 500; font-size: 0.875rem; white-space: nowrap; }
.card__desc { font-size: 0.875rem; color: var(--color-muted); line-height: 1.55; }
.card__pills { display: flex; flex-wrap: wrap; gap: 6px; }
.card__pills span {
  font-family: var(--f-mono); font-size: 0.6875rem; color: var(--color-muted);
  border: 1px solid var(--color-hairline); border-radius: 999px; padding: 3px 9px;
}
.card__foot {
  margin-top: auto; padding-top: 12px; border-top: 1px solid var(--color-hairline);
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
}
.card__order { font-family: var(--f-mono); font-size: 0.75rem; color: var(--color-link); text-decoration: none; }
.card__order:hover { text-decoration: underline; }

.more-row { display: flex; justify-content: flex-end; margin-top: 36px; }

/* --------------------------------------------------------------- steps -- */

.steps {
  list-style: none; margin: clamp(40px, 5vw, 64px) 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
}
.step { padding: 4px clamp(20px, 3vw, 44px) 8px; }
.step:first-child { padding-left: 0; }
.step + .step { border-left: 1px solid var(--color-hairline); }
.step__n {
  display: block; font-family: var(--f-mono); font-weight: 400;
  font-size: clamp(3rem, 5vw, 4.5rem); line-height: 1; letter-spacing: -0.02em;
  font-variant-numeric: slashed-zero;
}
.step p { margin-top: 20px; font-family: var(--f-mono); font-size: 0.9375rem; line-height: 1.7; max-width: 30ch; }
@media (max-width: 820px) {
  .steps { grid-template-columns: 1fr; }
  .step, .step:first-child { padding: 24px 0; }
  .step + .step { border-left: 0; border-top: 1px solid var(--color-hairline); }
}

/* --------------------------------------------------------- scale band -- */

.scale { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.5fr); background: var(--color-ink); color: var(--color-on-dark); }
.scale__photo { background: var(--color-plate); overflow: hidden; min-height: 380px; }
.scale__photo img {
  display: block; width: 100%; height: 100%; object-fit: cover; object-position: 62% 50%;
  mix-blend-mode: multiply; transform: scale(1.35); transform-origin: 75% 50%;
}
.scale__stats {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: clamp(48px, 6vw, 96px) var(--gutter) clamp(48px, 6vw, 96px) clamp(32px, 4vw, 72px);
  align-items: start;
}
.stat { padding-inline: clamp(16px, 2.2vw, 36px); }
.stat:first-child { padding-left: 0; }
.stat + .stat { border-left: 1px solid var(--color-dark-line); }
.stat__n { font-size: clamp(2.4rem, 3.7vw, 4rem); font-weight: 500; line-height: 1; letter-spacing: -0.02em; white-space: nowrap; }
.stat__n--word { font-size: clamp(1.9rem, 2.9vw, 2.9rem); line-height: 1.02; white-space: normal; }
.stat__t { margin-top: 18px; font-family: var(--f-mono); font-size: 0.875rem; line-height: 1.65; color: var(--color-on-dark-muted); }
.stat__t::after { content: ""; display: block; width: 52px; height: 2px; background: var(--color-accent); margin-top: 28px; }
@media (max-width: 980px) {
  .scale { grid-template-columns: 1fr; }
  .scale__photo { min-height: 0; aspect-ratio: 16 / 9; }
  .scale__stats { padding-inline: var(--gutter); }
}
@media (max-width: 640px) {
  .scale__stats { grid-template-columns: 1fr; gap: 0; }
  .stat, .stat:first-child { padding: 26px 0; }
  .stat + .stat { border-left: 0; border-top: 1px solid var(--color-dark-line); }
}

/* --------------------------------------------------------------- event -- */

.event { position: relative; isolation: isolate; min-height: clamp(520px, 44vw, 720px); display: flex; align-items: center; }
.event__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 60% 50%; z-index: -1; }
.event__inner { padding-block: 64px; }
.event__card {
  position: relative; z-index: 1; /* on mobile the static photo would otherwise paint over the card's overlapping top */
  background: var(--color-card); max-width: 460px; padding: clamp(28px, 3vw, 44px);
  border-radius: 2px; box-shadow: 0 30px 60px -40px var(--color-shadow);
}
.event__t { margin-top: 16px; font-family: var(--f-mono); font-size: 0.9375rem; line-height: 1.7; color: var(--color-ink); }
.event__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; margin-top: 28px; }
@media (max-width: 760px) {
  .event { display: block; min-height: 0; }
  .event__img { position: static; height: auto; aspect-ratio: 4 / 3; object-position: 70% 50%; }
  .event__inner { padding-block: 0 var(--sec-y); margin-top: -72px; }
  .event__card { max-width: none; }
}

/* ------------------------------------------------------------ inner pages -- */

.page-head { padding-top: calc(var(--lv-header-h, 80px) + clamp(48px, 6vw, 88px)); padding-bottom: clamp(36px, 4vw, 56px); }
.page-head h1 { font-size: clamp(2.5rem, 5.4vw, 4.75rem); max-width: 16ch; }
.page-head p { margin-top: 22px; max-width: 58ch; color: var(--color-muted); }

.prose { max-width: 68ch; display: flex; flex-direction: column; gap: 22px; }
.prose h2 { font-size: 1.6rem; margin-top: 18px; }
.prose h3 { font-size: 1.15rem; }
.prose ul { margin: 0; padding-left: 1.15rem; display: flex; flex-direction: column; gap: 8px; }
.prose strong { font-weight: 600; }
.prose a { color: var(--color-link); text-underline-offset: 3px; }

.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.split img { display: block; width: 100%; height: auto; background: var(--color-plate); mix-blend-mode: multiply; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

.facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin: 0; }
.fact { background: var(--color-card); padding: 26px; border-radius: 2px; }
.fact dt { font-family: var(--f-mono); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-muted); }
.fact dd { margin: 10px 0 0; font-size: 1.0625rem; line-height: 1.55; }
.fact dd a { color: var(--color-link); text-underline-offset: 3px; }
@media (max-width: 700px) { .facts { grid-template-columns: 1fr; } }

.hours { width: 100%; border-collapse: collapse; font-family: var(--f-mono); font-size: 0.875rem; }
.hours td { padding: 12px 0; border-bottom: 1px solid var(--color-hairline); }
.hours td:last-child { text-align: right; }

/* --------------------------------------------------------------- footer -- */

.site-footer { background: var(--color-ink); color: var(--color-on-dark); padding-block: clamp(48px, 5vw, 72px) 28px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(4, minmax(0, 1fr)); }
.footer-grid > * { padding-inline: clamp(16px, 2vw, 32px); }
.footer-grid > :first-child { padding-left: 0; }
.footer-grid > * + * { border-left: 1px solid var(--color-dark-line); }
.site-footer .mark { display: block; width: 190px; height: auto; }
.footer-col { display: flex; flex-direction: column; gap: 10px; font-family: var(--f-mono); font-size: 0.8125rem; line-height: 1.6; }
.footer-col a { color: var(--color-on-dark); text-decoration: none; }
.footer-col a:hover { text-decoration: underline; text-underline-offset: 3px; }
.footer-col p { color: var(--color-on-dark-muted); }
.site-footer address { font-style: normal; color: var(--color-on-dark); }
.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a {
  width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--color-dark-line); border-radius: var(--radius); color: var(--color-on-dark);
}
.socials svg { width: 15px; height: 15px; }
.footer-base {
  margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--color-dark-line);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
  font-family: var(--f-mono); font-size: 0.75rem; color: var(--color-on-dark-muted);
}
.lang--foot button { color: var(--color-on-dark); }
@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 0; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .footer-grid > * + * { border-left: 0; }
  .footer-grid > * { padding-inline: 0 16px; }
}

/* --------------------------------------------------------------- reveal -- */

[data-lv-reveal] {
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.22,.61,.36,1);
  transition-delay: calc(var(--lv-reveal-i, 0) * 70ms);
}
[data-lv-reveal][data-lv-reveal-in] { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
