/* ============================================================
   Velocity Construction Services, Inc. — design system
   Speed / motion theme · Fremont, CA
   blue #2563eb · ink #10141c · slate #3a4452 · mist #f4f6fa
   ============================================================ */

:root {
  --blue: #2563eb;
  --blue-deep: #1d4ed8;
  --blue-soft: #dbe7fe;
  --ink: #10141c;
  --ink-2: #1b2230;
  --slate: #3a4452;
  --muted: #5c6675;
  --paper: #ffffff;
  --mist: #f4f6fa;
  --mist-2: #eceff5;
  --line: #e2e7f0;
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --wrap: 75rem;
  --radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--slate);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.02;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .01em;
}

h1 em, h2 em { font-style: italic; color: var(--blue); }

p { max-width: 64ch; }
a { color: var(--blue); }

.wrap { width: min(var(--wrap), 100% - 3rem); margin-inline: auto; }

/* diagonal motion stripes — the brand motif */
.stripes {
  display: inline-flex;
  gap: 5px;
  height: 1.4rem;
  vertical-align: middle;
}
.stripes i { width: 7px; height: 100%; background: var(--blue); transform: skewX(-18deg); display: block; }
.stripes i:nth-child(2) { opacity: .7; }
.stripes i:nth-child(3) { opacity: .4; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
}
.eyebrow::before { content: ""; width: 1.8rem; height: 3px; background: var(--blue); transform: skewX(-18deg); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: var(--blue);
  padding: .8rem 1.8rem;
  border: 2px solid var(--blue);
  border-radius: 6px;
  transition: background .16s ease, border-color .16s ease, transform .16s ease;
}
.btn:hover { background: var(--blue-deep); border-color: var(--blue-deep); transform: translateY(-2px); }
.btn.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn.btn-ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn.btn-small { padding: .5rem 1.1rem; font-size: .95rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: .6rem 0; }
.brand img { height: 46px; width: auto; }
.site-nav { display: flex; align-items: center; gap: .3rem; }
.site-nav > a:not(.btn) {
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  letter-spacing: .04em; text-transform: uppercase; text-decoration: none;
  color: var(--ink); padding: .4rem .85rem; border-radius: 6px; transition: background .15s ease;
}
.site-nav > a:not(.btn):hover { background: var(--mist-2); }
.site-nav > a[aria-current="page"],
.nav-drop > a[aria-current="page"] { color: var(--blue); }
.site-nav .btn { margin-left: .5rem; }

/* dropdown */
.nav-drop { position: relative; }
.nav-drop > a {
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; letter-spacing: .04em;
  text-transform: uppercase; text-decoration: none; color: var(--ink);
  padding: .4rem .85rem; border-radius: 6px; cursor: default; display: inline-block; transition: background .15s ease;
}
.nav-drop > a:hover { background: var(--mist-2); }
.nav-drop > a::after { content: " ▾"; font-size: .7em; }
.drop-menu {
  position: absolute; top: calc(100% + .3rem); left: 0; min-width: 13rem;
  background: var(--paper); border: 1px solid var(--line); border-radius: 8px;
  box-shadow: 0 20px 40px -20px rgba(16,20,28,.35); padding: .4rem; display: grid; gap: .1rem;
  opacity: 0; visibility: hidden; translate: 0 .4rem; transition: opacity .16s ease, translate .16s ease, visibility .16s;
}
.nav-drop:hover .drop-menu, .nav-drop:focus-within .drop-menu { opacity: 1; visibility: visible; translate: 0 0; }
.drop-menu a {
  font-family: var(--font-display); font-weight: 600; font-size: 1rem; letter-spacing: .03em; text-transform: uppercase;
  text-decoration: none; color: var(--ink); padding: .5rem .8rem; border-radius: 5px;
}
.drop-menu a:hover { background: var(--blue); color: #fff; }

@media (max-width: 880px) {
  .nav-drop > a { display: block; padding: .4rem .85rem; }
  .drop-menu { position: static; opacity: 1; visibility: visible; translate: 0; box-shadow: none; border: none; padding: 0 0 0 1rem; }
}

.nav-toggle { display: none; }
.nav-burger { display: none; width: 44px; height: 44px; border: 2px solid var(--line); border-radius: 8px; cursor: pointer; position: relative; flex-shrink: 0; background: transparent; }
.nav-burger span, .nav-burger span::before, .nav-burger span::after {
  content: ""; position: absolute; left: 50%; width: 19px; height: 2.5px; background: var(--ink); translate: -50% 0; transition: rotate .2s, top .2s, background .2s;
}
.nav-burger span { top: 20px; } .nav-burger span::before { top: -6px; } .nav-burger span::after { top: 6px; }

@media (max-width: 880px) {
  .nav-burger { display: block; }
  .site-nav { position: absolute; top: 100%; left: 0; right: 0; background: var(--paper); border-bottom: 4px solid var(--blue); flex-direction: column; align-items: stretch; padding: .8rem 1.5rem 1.4rem; display: none; }
  .nav-toggle:checked ~ .site-nav { display: flex; }
  .nav-toggle:checked ~ .nav-burger span { background: transparent; }
  .nav-toggle:checked ~ .nav-burger span::before { top: 0; rotate: 45deg; }
  .nav-toggle:checked ~ .nav-burger span::after { top: 0; rotate: -45deg; }
  .site-nav .btn { margin: .6rem 0 0; justify-content: center; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: 4.5rem 0 5rem; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3.5rem; align-items: center; }
.hero h1 { font-size: clamp(3rem, 7vw, 5.4rem); margin: 1.2rem 0 1.2rem; }
.hero .lede { font-size: 1.2rem; color: var(--muted); margin-bottom: 2rem; max-width: 50ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-meta { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 2.4rem; }
.hero-meta .m-num { font-family: var(--font-display); font-weight: 700; font-size: 2.4rem; color: var(--ink); line-height: 1; }
.hero-meta .m-num span { color: var(--blue); }
.hero-meta .m-lab { font-size: .82rem; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); margin-top: .3rem; }

/* hero image with diagonal clip + accent */
.hero-figure { position: relative; }
.hero-figure img { width: 100%; aspect-ratio: 4/3.4; object-fit: cover; border-radius: var(--radius); }
.hero-figure::before {
  content: ""; position: absolute; left: -1.2rem; bottom: -1.2rem; width: 60%; height: 60%;
  background: repeating-linear-gradient(-18deg, var(--blue) 0 7px, transparent 7px 16px);
  opacity: .9; z-index: -1; border-radius: 8px;
}
.hero-figure .stamp {
  position: absolute; right: 1rem; bottom: 1rem; background: var(--ink); color: #fff;
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .04em;
  font-size: .95rem; padding: .5rem 1rem; border-radius: 6px; border-left: 4px solid var(--blue);
}
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; gap: 2.6rem; } }

/* ============================================================
   STAT STRIP
   ============================================================ */
.strip { background: var(--ink); color: #fff; }
.strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; padding: 2.2rem 0; }
.strip .s-item { display: flex; flex-direction: column; gap: .25rem; padding-left: 1rem; border-left: 3px solid var(--blue); }
.strip .s-top { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; color: #fff; line-height: 1.05; }
.strip .s-sub { font-size: .82rem; letter-spacing: .05em; text-transform: uppercase; color: #9fb4d4; }
@media (max-width: 760px) { .strip-inner { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; } }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 5.5rem 0; }
.section.mist { background: var(--mist); }
.section.ink { background: var(--ink); color: #cdd6e4; }
.section.ink h2 { color: #fff; }

.sec-head { max-width: 52rem; margin-bottom: 3rem; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 { font-size: clamp(2.2rem, 4.4vw, 3.4rem); margin-top: 1rem; }
.sec-head .sub { margin-top: 1rem; font-size: 1.12rem; color: var(--muted); }
.sec-head.center .sub { margin-inline: auto; }
.section.ink .sec-head .sub { color: #9fb4d4; }

/* split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.split.rev > .split-media { order: 2; }
.split h2 { font-size: clamp(2rem, 3.8vw, 2.9rem); margin: 1rem 0 1.1rem; }
.split p + p { margin-top: 1rem; }
.split .btn { margin-top: 1.6rem; }
.split-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); }
.split-media { position: relative; }
.split-media::before { content: ""; position: absolute; right: -1rem; top: -1rem; width: 50%; height: 50%; background: repeating-linear-gradient(-18deg, var(--blue-soft) 0 7px, transparent 7px 16px); z-index: -1; border-radius: 8px; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 2.4rem; } .split.rev > .split-media { order: 0; } }

.checklist { list-style: none; margin-top: 1.4rem; display: grid; gap: .8rem; }
.checklist li { display: flex; gap: .7rem; align-items: baseline; }
.checklist li::before { content: ""; width: 10px; height: 10px; background: var(--blue); transform: skewX(-18deg); flex-shrink: 0; position: relative; top: 2px; }
.checklist strong { color: var(--ink); font-weight: 600; }

/* ---------- service cards ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.svc {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.svc:hover { transform: translateY(-5px); box-shadow: 0 22px 44px -26px rgba(16,20,28,.4); }
.svc figure { position: relative; overflow: hidden; border-bottom: 3px solid var(--blue); }
.svc img { width: 100%; aspect-ratio: 3/2; object-fit: cover; transition: scale .5s ease; }
.svc:hover img { scale: 1.05; }
.svc .num { position: absolute; top: .8rem; left: .8rem; font-family: var(--font-display); font-weight: 700; font-size: .95rem; background: var(--ink); color: #fff; padding: .15rem .7rem; border-radius: 5px; }
.svc .body { padding: 1.4rem 1.5rem 1.7rem; }
.svc h3 { font-size: 1.45rem; margin-bottom: .5rem; }
.svc p { font-size: .98rem; color: var(--muted); }
@media (max-width: 880px) { .svc-grid { grid-template-columns: 1fr; max-width: 30rem; margin-inline: auto; } }

/* ---------- license cards ---------- */
.lic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.lic {
  background: var(--ink-2); border: 1px solid #283041; border-radius: var(--radius); padding: 1.7rem 1.6rem;
}
.lic .tag { display: inline-flex; align-items: center; gap: .5rem; }
.lic .code {
  font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: #fff;
  background: var(--blue); padding: .1rem .7rem; border-radius: 6px; letter-spacing: .02em;
}
.lic .ico { width: 30px; height: 30px; color: #5b8efb; }
.lic h3 { color: #fff; font-size: 1.3rem; margin: 1rem 0 .5rem; }
.lic p { font-size: .96rem; color: #9fb4d4; max-width: none; }
@media (max-width: 880px) { .lic-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .lic-grid { grid-template-columns: 1fr; } }

.lic-note { margin-top: 2rem; font-size: .95rem; color: #8595ab; }
.lic-note a { color: #9fb4d4; }

/* ---------- projects gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.gallery figure { position: relative; border-radius: var(--radius); overflow: hidden; }
.gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: scale .5s ease; }
.gallery figure:hover img { scale: 1.06; }
.gallery figure.tall { grid-row: span 2; }
.gallery figure.tall img { aspect-ratio: 4/6.2; height: 100%; }
.gallery figcaption {
  position: absolute; inset: auto 0 0 0; padding: 2rem 1.2rem 1rem; color: #fff;
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .03em; font-size: 1.05rem;
  background: linear-gradient(to top, rgba(16,20,28,.88), transparent);
}
@media (max-width: 760px) { .gallery { grid-template-columns: 1fr 1fr; } .gallery figure.tall { grid-row: span 1; } .gallery figure.tall img { aspect-ratio: 4/3; } }

/* ---------- process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.step { position: relative; padding-top: 1.4rem; border-top: 3px solid var(--blue); }
.step .n { font-family: var(--font-display); font-weight: 700; font-size: 2.6rem; color: var(--blue); line-height: 1; }
.step h3 { font-size: 1.3rem; margin: .5rem 0 .5rem; color: #fff; }
.step p { font-size: .95rem; color: #9fb4d4; }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 460px) { .steps { grid-template-columns: 1fr; } }

/* ---------- contact ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.25fr; gap: 2.2rem; align-items: start; }
.contact-info { display: grid; gap: 1.2rem; }
.contact-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem 1.6rem; border-left: 4px solid var(--blue); }
.contact-card .role { font-family: var(--font-display); font-weight: 600; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); }
.contact-card h3 { font-size: 1.25rem; margin: .25rem 0 .5rem; text-transform: none; }
.contact-card address { font-style: normal; color: var(--muted); line-height: 1.7; }
.contact-card address a { color: var(--slate); text-decoration: none; }
.contact-card address a:hover { color: var(--blue); }

.contact-form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; box-shadow: 0 24px 50px -32px rgba(16,20,28,.4); }
.contact-form h3 { font-size: 1.5rem; }
.req { color: var(--blue); font-weight: 700; }
.req-legend { font-family: var(--font-display); font-weight: 500; font-size: .85rem; color: var(--muted); margin: .3rem 0 1.4rem; letter-spacing: .03em; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: .9rem; letter-spacing: .05em; text-transform: uppercase; color: var(--ink); margin-bottom: .35rem; }
.field input, .field select, .field textarea { width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: var(--mist); border: 1.5px solid var(--line); border-radius: 8px; padding: .7rem .9rem; transition: border-color .15s, box-shadow .15s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-soft); background: #fff; }
.field textarea { min-height: 8rem; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 1rem; }
@media (max-width: 880px) { .contact-layout { grid-template-columns: 1fr; max-width: 34rem; margin-inline: auto; } .field-row { grid-template-columns: 1fr; } }

/* ---------- CTA ---------- */
.cta-band { position: relative; background: var(--blue); color: #fff; text-align: center; padding: 4.5rem 0; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(-18deg, rgba(255,255,255,.06) 0 10px, transparent 10px 24px); pointer-events: none; }
.cta-band h2 { position: relative; color: #fff; font-size: clamp(2.2rem, 4.4vw, 3.4rem); margin-bottom: .7rem; }
.cta-band p { position: relative; color: #dbe7fe; font-size: 1.15rem; margin: 0 auto 2rem; }
.cta-band .btn { position: relative; background: #fff; color: var(--blue-deep); border-color: #fff; }
.cta-band .btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #0a0d13; color: #9fb4d4; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.3fr; gap: 2.5rem; padding: 3.6rem 0 2.6rem; }
.footer-grid .f-brand img { height: 52px; width: auto; }
.footer-grid p { font-size: .94rem; margin-top: 1.1rem; max-width: 38ch; color: #8595ab; }
.footer-grid h4 { color: #fff; font-size: 1.1rem; letter-spacing: .05em; margin-bottom: 1rem; }
.footer-grid ul { list-style: none; display: grid; gap: .5rem; }
.footer-grid ul a { color: #9fb4d4; text-decoration: none; font-size: .95rem; }
.footer-grid ul a:hover { color: #fff; }
.footer-grid address { font-style: normal; font-size: .94rem; line-height: 1.8; }
.footer-grid address a { color: #9fb4d4; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.3rem 0; font-size: .83rem; display: flex; flex-wrap: wrap; gap: .5rem 2rem; justify-content: space-between; color: #8595ab; }
.footer-bottom a { color: #9fb4d4; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   INTERIOR PAGE HERO + PROSE
   ============================================================ */
.page-hero {
  position: relative; background: var(--ink); color: #fff; overflow: hidden;
  padding: 3.4rem 0 3.6rem;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(-18deg, rgba(91,142,251,.10) 0 10px, transparent 10px 26px); pointer-events: none;
}
.page-hero.img { padding: 0; }
.page-hero.img .ph-media { position: relative; }
.page-hero.img .ph-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.page-hero.img .ph-inner { position: relative; padding: 5.5rem 0; background: linear-gradient(90deg, rgba(16,20,28,.92) 0%, rgba(16,20,28,.7) 55%, rgba(16,20,28,.35) 100%); }
.page-hero .eyebrow { color: #5b8efb; }
.page-hero .eyebrow::before { background: #5b8efb; }
.page-hero h1 { color: #fff; font-size: clamp(2.6rem, 5.5vw, 4.2rem); margin: .8rem 0 .6rem; }
.page-hero p { color: #c2cee0; font-size: 1.15rem; max-width: 56ch; }

.crumbs { font-family: var(--font-display); font-weight: 500; font-size: .92rem; letter-spacing: .05em; text-transform: uppercase; color: #8595ab; margin-bottom: .4rem; }
.crumbs a { color: #9fb4d4; text-decoration: none; }
.crumbs a:hover { color: #fff; }
.crumbs span { color: #5b8efb; }

.prose { max-width: 44rem; }
.prose h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin: 2.4rem 0 1rem; }
.prose h3 { font-size: 1.3rem; margin: 1.8rem 0 .6rem; }
.prose p { margin-bottom: 1rem; }
.prose ul { list-style: none; margin: 1rem 0 1.4rem; display: grid; gap: .7rem; }
.prose ul li { display: flex; gap: .7rem; align-items: baseline; }
.prose ul li::before { content: ""; width: 10px; height: 10px; background: var(--blue); transform: skewX(-18deg); flex-shrink: 0; position: relative; top: 2px; }

/* feature tiles (icon + text) */
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.tile { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.6rem; }
.section.mist .tile { background: #fff; }
.tile .ico { width: 38px; height: 38px; color: var(--blue); margin-bottom: .9rem; }
.tile h3 { font-size: 1.25rem; margin-bottom: .4rem; }
.tile p { font-size: .96rem; color: var(--muted); }
@media (max-width: 880px) { .tiles { grid-template-columns: 1fr; max-width: 30rem; margin-inline: auto; } }

/* FAQ via <details> */
.faq { max-width: 48rem; margin-inline: auto; display: grid; gap: .8rem; }
.faq details { background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: .2rem 1.3rem; }
.section.mist .faq details { background: #fff; }
.faq summary { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: var(--ink); cursor: pointer; padding: 1rem 0; list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--blue); font-weight: 700; }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 0 1.1rem; color: var(--muted); }

/* simple two-column list band */
.cols-2 { columns: 2; column-gap: 2.5rem; }
.cols-2 ul { list-style: none; }
.cols-2 li { break-inside: avoid; display: flex; gap: .6rem; align-items: baseline; margin-bottom: .6rem; }
.cols-2 li::before { content: ""; width: 9px; height: 9px; background: var(--blue); transform: skewX(-18deg); flex-shrink: 0; position: relative; top: 2px; }
@media (max-width: 640px) { .cols-2 { columns: 1; } }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; translate: 0 1.4rem; transition: opacity .7s ease, translate .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; translate: 0 0; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; } .reveal { opacity: 1; translate: 0 0; } }
