/* ---------------------------------------------------------------
   ValPaints — custom pet portraits
   Palette (from Val's brand kit)
     paper     #FFFFFF   main background
     cobalt    #2946BF   brand blue (logo, headings, actions)
     cobalt-2  #1E338F   hover / deep
     indigo    #4A529E   body text
     lavender  #C9B8EC   watercolor accent
     lav-deep  #6C59BE   kickers, small accents
     wash      #F4F1FB   lavender wash
     wash-pink #FAF0F8   pink wash
     line      #E3DDF3   hairlines & borders
   Type: Glacial Indifference (self-hosted, OFL) · Quicksand (prices)
   Logo: Val's script wordmark as an image (images/logo.webp)
   --------------------------------------------------------------- */

@font-face {
  font-family: "Glacial Indifference";
  src: url("fonts/GlacialIndifference-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Glacial Indifference";
  src: url("fonts/GlacialIndifference-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #FFFFFF;
  --cobalt: #2946BF;
  --cobalt-2: #1E338F;
  --indigo: #4A529E;
  --lavender: #C9B8EC;
  --lav-deep: #6C59BE;
  --wash: #F4F1FB;
  --wash-pink: #FAF0F8;
  --line: #E3DDF3;
  --font-main: "Glacial Indifference", "Century Gothic", "Avenir", sans-serif;
  --font-round: "Quicksand", var(--font-main);
}

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

html {
  scroll-behavior: smooth;
  /* decorative strokes bleed past the viewport on phones */
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  font-family: var(--font-main);
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--indigo);
  background: var(--paper);
  /* iOS ignores root overflow clipping for touch panning: block the
     horizontal pan gesture itself (vertical scroll + pinch zoom stay) */
  overflow-x: clip;
  touch-action: pan-y pinch-zoom;
}

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

::selection { background: var(--lavender); color: var(--cobalt-2); }

a { color: var(--cobalt); }

h1, h2, h3 {
  font-weight: 700;
  line-height: 1.15;
  color: var(--cobalt);
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 50;
  background: var(--cobalt);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

/* ---- decorative images ------------------------------------------ */

.deco { position: absolute; pointer-events: none; }

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

.site-head {
  max-width: 1140px;
  margin: 0 auto;
  padding: 26px 24px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.brand img { width: 168px; height: auto; }

.site-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  /* the wordmark's ink mass sits ~6px below its image-box center (tall thin
     caps up top, heavy x-height band low), so box-centering leaves the nav
     reading high — drop it to the optical center */
  translate: 0 6px;
}

.site-nav a {
  color: var(--cobalt);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 4px; /* 44px-ish touch target */
}
.site-nav a:hover {
  text-decoration: underline;
  text-decoration-color: var(--lavender);
  text-decoration-thickness: 3px;
  text-underline-offset: 7px;
}

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

.hero {
  max-width: 1128px; /* 1080px text rail + 2×24px padding: copy aligns with .wrap sections */
  margin: 0 auto;
  padding: 80px 24px 32px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: start;
  gap: 64px;
}

.hero-copy {
  padding-top: 36px;
}

.kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--lav-deep);
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4.8vw, 3.7rem);
  margin-bottom: 20px;
}

.wc {
  /* no z-index/isolation here: the wash must paint behind ALL the headline
     text (the y-descender from the line above crosses it), not just .wc's */
  position: relative;
  display: inline-block;
  padding: 0 0.14em;
}

.wc::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  /* stroke-soft = stroke-1 with its alpha feathered near all four borders,
     so the box crop lands on transparent pixels — no CSS mask needed */
  /* ~10px below the original position, clear of the y-descender;
     bottom crop still lands in the (deepened) feather */
  background: url("images/stroke-soft.webp") center calc(9% + 3px) / 100% 108% no-repeat;
  pointer-events: none;
}

.lede {
  font-size: 1.2rem;
  max-width: 46ch;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

/* ---- buttons & links --------------------------------------------- */

.btn {
  display: inline-block;
  /* also worn by real <button>s now: strip the native border/appearance */
  appearance: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  background: var(--cobalt);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 17px 32px;
  border-radius: 999px;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover {
  background: var(--cobalt-2);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -12px rgba(41, 70, 191, 0.55);
}
.btn:active { transform: translateY(0); }

.btn-big {
  font-size: 0.98rem;
  padding: 19px 38px;
  text-transform: lowercase;
  letter-spacing: 0.08em;
}

/* ---- before / after slider --------------------------------------- */

.ba-fig { position: relative; }

.ba {
  position: relative;
  aspect-ratio: 3 / 4;
  background: #fff;
  border: 10px solid #fff;
  border-radius: 6px;
  box-shadow: 0 26px 50px -26px rgba(41, 70, 191, 0.45), 0 4px 14px rgba(41, 70, 191, 0.08);
  overflow: hidden;
  touch-action: pan-y;
  cursor: ew-resize;
  /* the whole frame is a drag control: no text selection, no image ghost-drag */
  -webkit-user-select: none;
  user-select: none;
}

.ba img { width: 100%; -webkit-user-drag: none; }
/* absolute like the before-photo img: iOS Safari resolves a flow child's
   height:100% against the wrong box when the parent height comes from
   aspect-ratio, clipping the bottom of the painting under the frame */
.ba > img { position: absolute; inset: 0; height: 100%; object-fit: cover; }

.ba-before-wrap {
  position: absolute;
  inset: 0;
  /* painting on the left, photo revealing on the right:
     --pos is the painting's width on every slider */
  clip-path: inset(0 0 0 var(--pos));
}
.ba-before-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 3px;
  margin-left: -1.5px;
  background: #fff;
  box-shadow: 0 0 10px rgba(30, 51, 143, 0.45);
}

.ba-thumb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: var(--cobalt);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(30, 51, 143, 0.35);
}

.ba-tag {
  position: absolute;
  top: 12px;
  font-weight: 700;
  font-size: 0.78rem; /* ≥12.5px: the tags are interactive now, so they clear the small-text floor */
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cobalt);
  /* 0.75 keeps the label ≥4.5:1 over the darkest corners of the photos */
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  padding: 5px 12px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: inherit;
  line-height: inherit;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.ba-tag:hover { background: rgba(255, 255, 255, 0.85); }
.ba-tag[aria-pressed="true"] {
  background: var(--cobalt);
  color: #fff;
}
.ba-tag-l { left: 12px; }
.ba-tag-r { right: 12px; }

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  appearance: none;
  -webkit-appearance: none;
  touch-action: pan-y;
}

.ba:has(.ba-range:focus-visible):not([data-pointer-focus]) {
  outline: 3px solid var(--cobalt);
  outline-offset: 3px;
}

.ba-fig figcaption {
  margin-top: 16px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--lav-deep);
}

.kind-words {
  margin-top: 56px;
  background: var(--wash);
  border-radius: 28px;
  padding: 40px 48px 44px;
}

.kind-words-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 44px;
}

.kind-words blockquote {
  font-size: 1rem;
  line-height: 1.65;
  font-style: italic;
}

/* the marks render in Quicksand: Glacial's quote glyphs are straight
   ticks that read as slashes at ornament size */
.kind-words blockquote::before {
  content: "\201C";
  display: block;
  font-family: var(--font-round);
  font-style: normal;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 0.55;
  color: var(--lavender);
  margin-bottom: 12px;
}

/* closing mark staggered to the far corner: the pair frames the quote */
.kind-words blockquote::after {
  content: "\201D";
  display: block;
  font-family: var(--font-round);
  font-style: normal;
  text-align: right;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 0.55;
  color: var(--lavender);
  margin-top: 16px;
}

/* hero variant */
.hero-art { max-width: 440px; width: 100%; justify-self: center; }

.deco-stroke {
  width: 120%;
  top: -10%;
  right: -18%;
  transform: rotate(9deg);
  opacity: 0.9;
  z-index: -1;
}

/* ---- sections ----------------------------------------------------- */

.section { padding: 84px 24px; }

.wrap { max-width: 1080px; margin: 0 auto; }

.section h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
  margin-bottom: 10px;
}

.section-sub {
  max-width: 56ch;
  margin-bottom: 46px;
}

/* ---- before/after grid -------------------------------------------- */

#portraits .wrap { max-width: 1240px; }

/* the kind-words band closes this section: match the 40px band-to-band
   rhythm instead of the full 84px section padding */
#portraits { padding-bottom: 40px; }

/* flex, not grid: a partial last row (1 or 2 tiles) centers itself */
.ba-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
}

.ba-grid .ba-fig { width: calc((100% - 72px) / 3); }

/* ---- included ------------------------------------------------------ */

.section--included {
  background: var(--wash);
  border-radius: 40px;
  max-width: 1240px;
  margin: 0 auto;
  /* light content: tighter than the default band padding or it looks hollow */
  padding-block: 52px;
}

.included-cols { max-width: 980px; margin-inline: auto; }

.included-cols h3 { font-size: 1.5rem; margin-bottom: 26px; text-align: center; }

.included-cols .paw-list { columns: 2; column-gap: 56px; }
.included-cols .paw-list li { break-inside: avoid; }

.paw-list { list-style: none; }
.paw-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 12px;
}
.paw-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28em;
  width: 19px;
  height: 19px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='%23A991E0'%3E%3Cellipse cx='32' cy='28' rx='11' ry='15' transform='rotate(-18 32 28)'/%3E%3Cellipse cx='68' cy='28' rx='11' ry='15' transform='rotate(18 68 28)'/%3E%3Cellipse cx='14' cy='52' rx='9' ry='12' transform='rotate(-38 14 52)'/%3E%3Cellipse cx='86' cy='52' rx='9' ry='12' transform='rotate(38 86 52)'/%3E%3Cpath d='M50 44 C66 44 79 60 79 75 C79 89 66 93 50 93 C34 93 21 89 21 75 C21 60 34 44 50 44 Z'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

/* ---- pricing ------------------------------------------------------- */

.section--paper {
  background: var(--wash);
  border-radius: 40px;
  max-width: 1240px;
  margin: 40px auto;
}

.section--paper h2 { text-align: center; }

.price-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 48px 52px;
  max-width: 920px;
  margin-inline: auto;
  box-shadow: 0 24px 48px -30px rgba(41, 70, 191, 0.35);
}

.deco-corner {
  width: 320px;
  top: -70px;
  right: -80px;
  transform: rotate(160deg);
  opacity: 0.45;
}

.price-card > :not(.deco) { position: relative; }

.price-intro {
  max-width: 52ch;
  margin: 0 auto 34px;
  text-align: center;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 32px;
}

.tier {
  /* subgrid keeps name / price / blurb rows aligned across the three
     cards even when a longer name wraps at narrow widths */
  position: relative;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  row-gap: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 22px;
  text-align: center;
}

.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  translate: -50% 0;
  background: var(--lav-deep);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.tier--featured {
  background: var(--wash);
  border-color: var(--lavender);
}

.tier-name {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lav-deep);
  margin-bottom: 12px;
}

.price {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 2.6rem;
  color: var(--cobalt);
  line-height: 1;
}

.tier .price { display: block; margin-bottom: 12px; }

.tier p:last-child { font-size: 0.95rem; }

.price-note { text-align: center; margin: 0 0 26px; }

.price-extras { margin-bottom: 30px; }
.price-extras li { margin-bottom: 14px; }
.price-card b { font-family: var(--font-round); color: var(--cobalt); }
.price-card .btn { display: block; width: fit-content; margin-inline: auto; }

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

.steps {
  list-style: none;
  counter-reset: step;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 44px;
  margin-top: 40px;
  max-width: 920px;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 62px;
}
.steps li strong { color: var(--cobalt); display: block; margin-bottom: 2px; }
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 2px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--cobalt);
  color: #fff;
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.steps li:nth-child(even)::before { background: var(--lav-deep); }

/* ---- about --------------------------------------------------------- */

/* white-on-white seam after #process: trim to match the hero seams (116px) */
.section--about { padding-top: 32px; }

.about-wrap {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-art { width: 230px; flex-shrink: 0; }

.about-wrap p { max-width: 54ch; margin-bottom: 14px; }
.about-wrap p:last-child { margin-bottom: 0; }

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

.section--faq { padding-top: 48px; }

.faq-list { max-width: 760px; }

.faq-wrap h2 { margin-bottom: 28px; }

.faq-list { border-top: 1px solid var(--line); }

.faq-list details { border-bottom: 1px solid var(--line); }

.faq-list summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  color: var(--cobalt);
  font-weight: 700;
  padding: 20px 44px 20px 0;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 6px;
  translate: 0 -50%;
  color: var(--lav-deep);
  font-family: var(--font-round);
  font-size: 1.5rem;
  line-height: 1;
}

.faq-list details[open] summary::after { content: "\2212"; }

.faq-list details p {
  max-width: 64ch;
  padding: 0 44px 22px 0;
}

/* ---- contact ------------------------------------------------------- */

.section--contact { padding-top: 40px; }

.contact-card {
  position: relative;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  background: var(--wash-pink);
  border: 1px solid #F0DFEC;
  border-radius: 32px;
  text-align: center;
  padding: 68px 32px 64px;
  max-width: 760px;
  margin: 0 auto;
}

.contact-card .kicker { margin-bottom: 10px; }

/* display: grid beats the UA's [hidden] rule, so restate it */
.contact-form[hidden] { display: none; }

.contact-form {
  margin: 30px auto 0;
  max-width: 440px;
  text-align: left;
  display: grid;
  gap: 6px;
}
.contact-form label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--lav-deep);
  letter-spacing: 0.04em;
  margin-top: 12px;
}
.contact-form input,
.contact-form textarea {
  font: inherit;
  color: var(--indigo);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  min-width: 0;
}
.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: 3px solid var(--cobalt);
  outline-offset: 1px;
}
.contact-form textarea { resize: vertical; }
.contact-form .cf-turnstile { margin-top: 14px; justify-self: center; }
.contact-form .btn-big { margin-top: 14px; }
.cf-hp { display: none; }
.contact-status { font-size: 0.95rem; min-height: 1.5em; margin-top: 12px; }
.contact-status:empty { display: none; }

.contact-sent { margin-top: 34px; color: var(--cobalt); }
.contact-sent-check { display: block; margin: 0 auto 14px; }
.contact-sent-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.contact-sent p:last-child { color: var(--indigo); font-size: 1.2rem; }
@media (prefers-reduced-motion: no-preference) {
  .contact-sent:not([hidden]) { animation: sent-in 0.55s ease-out; }
  @keyframes sent-in {
    from { opacity: 0; translate: 0 14px; }
    to { opacity: 1; translate: 0 0; }
  }
}
/* .contact-card p outranks a lone class: qualify so the top margin wins */
.contact-card .contact-alt { font-size: 1.05rem; margin-top: 40px; }
.contact-alt a { color: var(--indigo); }
.contact-card h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 14px; }
.contact-card p {
  max-width: 46ch;
  margin: 0 auto 30px;
}

.deco-paws {
  width: 130px;
  bottom: -26px;
  right: 10px;
  opacity: 0.5;
  transform: rotate(-12deg);
}

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

.site-foot {
  text-align: center;
  padding: 34px 24px 46px;
}
.site-foot img { margin: 0 auto 10px; width: 110px; opacity: 0.95; }
.site-foot p { font-size: 0.9rem; }
.site-foot .foot-rights { margin-top: 6px; font-size: 0.8rem; color: var(--lav-deep); }
.site-foot a { color: var(--indigo); }
.site-foot .foot-icons {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 6px;
}
.site-foot .foot-icons a {
  display: inline-flex;
  padding: 8px;
  transition: color 0.2s ease;
}
.site-foot .foot-icons a:hover { color: var(--cobalt); }

/* ---- reveal on scroll ---------------------------------------------- */

body.reveal-ready [data-rise] {
  opacity: 0;
  translate: 0 20px;
}
body.reveal-ready [data-rise].in {
  opacity: 1;
  translate: 0 0;
  transition: opacity 0.6s ease, translate 0.6s ease;
}

/* ---- responsive ----------------------------------------------------- */

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 56px;
    padding-top: 40px;
    padding-bottom: 32px;
  }
  .hero-copy { text-align: center; }
  .lede { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-art { max-width: 400px; }
  /* the three-across cards run narrow down here; tuck the pills in so
     "painting" and "photo" can't meet in the middle at iPad widths */
  .ba-grid .ba-tag { padding: 5px 8px; letter-spacing: 0.1em; }
  .ba-grid .ba-tag-l { left: 8px; }
  .ba-grid .ba-tag-r { right: 8px; }
  .included-cols { max-width: 640px; }
  .included-cols .paw-list { columns: 1; }
}

@media (max-width: 760px) {
  .site-head { justify-content: center; }
  .site-nav { justify-content: center; }
  .ba-grid { gap: 48px; max-width: 420px; margin-inline: auto; }
  .ba-grid .ba-fig { width: 100%; }
  .kind-words { padding: 32px 22px 36px; border-radius: 24px; }
  .kind-words-grid { grid-template-columns: 1fr; gap: 36px; }
  .steps { grid-template-columns: 1fr; }
  .about-wrap { flex-direction: column; align-items: flex-start; gap: 32px; }
  .about-art { align-self: center; }
  /* extra bottom padding reserves a strip below the button so the full
     4-paw trail fits without touching it at any phone width */
  .contact-card { padding: 56px 22px 96px; border-radius: 28px; }
  .contact-card .btn-big { max-width: 100%; padding-inline: 24px; }
  .deco-paws { width: 78px; bottom: -18px; right: 2px; opacity: 0.4; }
  .price-card { padding: 36px 26px; }
  .tier-grid { grid-template-columns: 1fr; max-width: 340px; margin-inline: auto; }
  .section { padding: 64px 20px; }
  .section--about { padding-top: 32px; }
  .section--included, .section--paper { border-radius: 28px; margin-inline: 8px; }
  .deco-corner { width: 220px; top: -50px; right: -60px; }
}

@media (max-width: 480px) {
  .site-nav { gap: 10px; }
  .site-nav a { font-size: 0.76rem; letter-spacing: 0.12em; }
}

/* ---- reduced motion -------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  body.reveal-ready [data-rise] { opacity: 1; translate: 0 0; }
}
