/* ============== TOKENS ============== */
:root {
  --red: #D6271E;
  --red-dark: #B81C14;
  --red-soft: #FBE9E7;
  --ink: #14161A;
  --ink-2: #2A2D33;
  --slate: #6B6E76;
  --line: #E7E8EB;
  --bg: #FFFFFF;
  --bg-2: #F6F6F4;
  --bg-3: #EFEFEC;

  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --maxw: 1280px;
  --pad: clamp(20px, 4vw, 56px);
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;

  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ============== RESET ============== */
*,*::before,*::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.01em; margin: 0; color: var(--ink); text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }

/* ============== LAYOUT ============== */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: clamp(72px, 9vw, 140px); }
.section-tight { padding-block: clamp(48px, 6vw, 88px); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}
.eyebrow::before {
  content: ""; display: inline-block; width: 28px; height: 2px; background: var(--red);
}
.eyebrow.ink { color: var(--ink-2); }
.eyebrow.ink::before { background: var(--ink-2); }

.h-display { font-size: clamp(40px, 5.6vw, 84px); line-height: 0.96; letter-spacing: -0.02em; }
.h-section { font-size: clamp(32px, 4vw, 56px); line-height: 1; letter-spacing: -0.02em; }
.h-card { font-size: 22px; line-height: 1.15; }

.lead { font-size: clamp(17px, 1.4vw, 19px); color: var(--ink-2); max-width: 56ch; }

/* ============== NAV ============== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; gap: 32px;
  padding-block: 18px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; line-height: 1; }
.nav-logo .brand-img { height: 52px; width: auto; display: block; }
.footer-logo .brand-img { height: 88px; width: auto; display: block; }
.footer-logo p { margin-top: 20px; max-width: 36ch; }
.nav-links {
  display: flex; gap: 28px; margin-left: auto;
  font-family: var(--font-display);
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.nav-links a {
  color: var(--ink); position: relative; padding-block: 4px;
  transition: color .2s var(--ease);
}
.nav-links a:hover { color: var(--red); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff;
  padding: 12px 20px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  transition: background .2s var(--ease), transform .2s var(--ease);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--red-dark); }
.nav-cta svg { width: 14px; height: 14px; }
.nav-burger {
  display: none; width: 44px; height: 44px;
  border-radius: var(--r-md); align-items: center; justify-content: center;
  margin-left: auto;
}
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--ink); position: relative; }
.nav-burger span::before, .nav-burger span::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--ink);
}
.nav-burger span::before { top: -7px; }
.nav-burger span::after { top: 7px; }

@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: inline-flex; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; gap: 8px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; padding: 20px var(--pad); border-bottom: 1px solid var(--line);
  }
  .nav.open .nav-cta { display: inline-flex; margin: 12px var(--pad) 24px; }
}

/* ============== HOUSE SHAPE ============== */
/* Pentagon house: peak at top-center, vertical sides, base */
.house {
  --peak: 38%;
  clip-path: polygon(50% 0%, 100% var(--peak), 100% 100%, 0% 100%, 0% var(--peak));
}
.house-img { aspect-ratio: 4/5; background: var(--bg-3) center/cover no-repeat; }

/* ============== HERO ============== */
.hero {
  position: relative; overflow: hidden;
  padding-top: clamp(48px, 6vw, 96px);
  padding-bottom: clamp(64px, 7vw, 120px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.hero-copy h1 .row { display: block; }
.hero-copy h1 em {
  font-style: normal; color: var(--red);
  position: relative;
}
.hero-copy h1 em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 4px; background: var(--red);
}
.hero-sub { margin-top: 28px; max-width: 56ch; color: var(--ink-2); font-size: clamp(17px, 1.4vw, 20px); }
.hero-meta { display: flex; align-items: center; gap: 20px; margin-top: 36px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 24px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 4px; transition: all .2s var(--ease);
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-ghost { color: var(--ink); padding-inline: 4px; }
.btn-ghost::after {
  content: "→"; transition: transform .2s var(--ease);
}
.btn-ghost:hover { color: var(--red); }
.btn-ghost:hover::after { transform: translateX(4px); }

.hero-trust {
  display: flex; gap: 28px; margin-top: 40px;
  font-size: 13px; color: var(--slate);
  align-items: center;
}
.hero-trust strong { color: var(--ink); font-weight: 700; }
.hero-trust .divider { width: 1px; height: 18px; background: var(--line); }

.hero-visual {
  position: relative;
  aspect-ratio: 4/4.4;
  display: grid;
  align-items: end;
}
/* Big red house silhouette behind */
.hero-bg {
  position: absolute; inset: 0;
  background: var(--red);
  clip-path: polygon(50% 0%, 100% 36%, 100% 100%, 0% 100%, 0% 36%);
  z-index: 0;
}
/* Inner photo masked as smaller house */
.hero-photo {
  position: relative; z-index: 1;
  width: 76%; aspect-ratio: 4/4.6; margin: 0 auto;
  background: #ddd center/cover no-repeat;
  clip-path: polygon(50% 0%, 100% 32%, 100% 100%, 0% 100%, 0% 32%);
  align-self: end;
  margin-bottom: 0;
}
/* tag */
.hero-tag {
  position: absolute; right: 0; top: 8%;
  background: #fff; padding: 16px 18px; border-radius: 8px;
  box-shadow: 0 20px 40px rgba(20,22,26,0.12);
  display: flex; gap: 12px; align-items: center;
  z-index: 2;
  max-width: 240px;
}
.hero-tag .star { color: var(--red); font-size: 18px; }
.hero-tag .num { font-family: var(--font-display); font-weight: 800; font-size: 22px; line-height: 1; }
.hero-tag .sub { font-size: 12px; color: var(--slate); }

.hero-badge {
  position: absolute; left: 4%; bottom: 8%;
  background: var(--ink); color: #fff;
  padding: 14px 18px; border-radius: 8px;
  z-index: 2; display: flex; gap: 10px; align-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #51E08E; box-shadow: 0 0 0 3px rgba(81,224,142,.25); }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 4/4.4; max-width: 540px; margin-inline: auto; width: 100%; }
}

/* ============== STATS STRIP ============== */
.stats {
  background: var(--ink);
  color: #fff;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  padding-block: 56px;
}
.stat { padding: 0 32px; border-left: 1px solid rgba(255,255,255,.1); }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat .num {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(40px, 4.5vw, 64px); line-height: 1;
  color: #fff;
}
.stat .num .red { color: var(--red); }
.stat .label {
  margin-top: 12px;
  font-size: 13px; color: rgba(255,255,255,.65);
  letter-spacing: 0.06em; text-transform: uppercase;
  font-family: var(--font-display); font-weight: 600;
}
@media (max-width: 720px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 0; padding-block: 48px; }
  .stat { padding: 0 20px; }
  .stat:nth-child(3) { border-left: 0; padding-left: 20px; }
}

/* ============== ABOUT ============== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.about-visual {
  position: relative; aspect-ratio: 4/5;
}
.about-visual .frame {
  position: absolute; inset: 0;
  background: var(--red);
  clip-path: polygon(50% 0%, 100% 38%, 100% 100%, 0% 100%, 0% 38%);
}
.about-visual .photo {
  position: absolute; inset: 6% 6% 0 6%;
  background: #ddd center/cover no-repeat;
  clip-path: polygon(50% 0%, 100% 34%, 100% 100%, 0% 100%, 0% 34%);
}
.about-copy h2 { margin-top: 16px; }
.about-copy p { margin-top: 24px; color: var(--ink-2); }
.about-list {
  margin-top: 32px; padding: 0; list-style: none;
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px 32px;
}
.about-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px; color: var(--ink-2);
}
.about-list li::before {
  content: ""; display: block; flex: 0 0 18px; height: 18px; margin-top: 2px;
  background: var(--red);
  clip-path: polygon(50% 0%, 100% 38%, 100% 100%, 0% 100%, 0% 38%);
}
.about-cta { margin-top: 36px; display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.about-sign {
  display: flex; gap: 14px; align-items: center; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line);
}
.about-sign .av {
  width: 48px; height: 48px; border-radius: 50%;
  background-color: #fff;
  background-position: center center;
  background-size: 82%;
  background-repeat: no-repeat;
}
.about-sign .name { font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.about-sign .role { font-size: 13px; color: var(--slate); }

@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 480px; margin-inline: auto; width: 100%; }
  .about-list { grid-template-columns: 1fr; }
}

/* ============== SERVICES ============== */
.services {
  background: var(--bg-2);
}
.services-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; align-items: end; margin-bottom: 56px;
}
.services-head .lead { justify-self: end; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service {
  background: #fff;
  padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative; overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  border: 1px solid var(--line);
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(20,22,26,.08);
}
.service .icon {
  width: 56px; height: 56px;
  background: var(--red); color: #fff;
  display: grid; place-items: center;
  clip-path: polygon(50% 0%, 100% 38%, 100% 100%, 0% 100%, 0% 38%);
}
.service .icon svg { width: 26px; height: 26px; }
.service h3 { font-size: 22px; }
.service p { color: var(--slate); font-size: 15px; }
.service .more {
  margin-top: auto; padding-top: 20px;
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); display: inline-flex; align-items: center; gap: 8px;
}
.service .more::after { content: "→"; transition: transform .2s var(--ease); }
.service:hover .more { color: var(--red); }
.service:hover .more::after { transform: translateX(4px); }

@media (max-width: 960px) { .services-grid { grid-template-columns: repeat(2, 1fr); } .services-head { grid-template-columns: 1fr; } .services-head .lead { justify-self: start; } }
@media (max-width: 620px) { .services-grid { grid-template-columns: 1fr; } }

/* ============== PROCESS ============== */
.process-head { margin-bottom: 56px; max-width: 760px; }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  position: relative;
}
.process-grid::before {
  content: ""; position: absolute; top: 36px; left: 8%; right: 8%; height: 2px;
  background: var(--line);
  z-index: 0;
}
.step {
  padding: 0 20px;
  position: relative; z-index: 1;
}
.step .n {
  width: 72px; height: 72px;
  background: #fff; border: 2px solid var(--red); color: var(--red);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 26px;
  border-radius: 50%;
  margin-bottom: 24px;
}
.step:nth-child(1) .n { background: var(--red); color: #fff; }
.step h4 { font-size: 20px; }
.step p { margin-top: 10px; color: var(--slate); font-size: 15px; }
@media (max-width: 880px) {
  .process-grid { grid-template-columns: 1fr 1fr; gap: 40px 0; }
  .process-grid::before { display: none; }
}
@media (max-width: 520px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ============== PORTFOLIO ============== */
.portfolio { background: var(--ink); color: #fff; }
.portfolio h2 { color: #fff; }
.portfolio .lead { color: rgba(255,255,255,.7); }
.portfolio-head { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: end; margin-bottom: 56px; }
.portfolio-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.tab {
  padding: 10px 18px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px;
  font-family: var(--font-display); font-weight: 600; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,.7);
  transition: all .2s var(--ease);
}
.tab:hover { color: #fff; border-color: rgba(255,255,255,.3); }
.tab.active { background: var(--red); border-color: var(--red); color: #fff; }
.portfolio-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px;
}
.proj {
  position: relative; overflow: hidden;
  background: #2A2D33 center/cover no-repeat;
  border-radius: 4px;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform .3s var(--ease);
}
.proj::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0) 50%);
  transition: opacity .3s var(--ease);
}
.proj-cap {
  position: absolute; left: 24px; bottom: 24px; right: 24px;
  z-index: 1; color: #fff;
}
.proj-cap .where {
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--red); display: flex; align-items: center; gap: 8px;
}
.proj-cap .where::before {
  content: ""; width: 12px; height: 12px; background: var(--red);
  clip-path: polygon(50% 0%, 100% 38%, 100% 100%, 0% 100%, 0% 38%);
}
.proj-cap h4 { color: #fff; font-size: 22px; margin-top: 8px; }
.proj:hover { transform: scale(1.01); }
.proj-1 { grid-column: span 6; aspect-ratio: 16/10; }
.proj-2 { grid-column: span 6; aspect-ratio: 16/10; }
.proj-3 { grid-column: span 4; aspect-ratio: 4/4; }
.proj-4 { grid-column: span 4; aspect-ratio: 4/4; }
.proj-5 { grid-column: span 4; aspect-ratio: 4/4; }
@media (max-width: 720px) {
  .portfolio-head { grid-template-columns: 1fr; }
  .proj-1,.proj-2 { grid-column: span 12; }
  .proj-3,.proj-4,.proj-5 { grid-column: span 12; }
}

/* ============== TESTIMONIALS ============== */
.quotes { background: var(--bg); }
.quotes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px;
}
.quote {
  border: 1px solid var(--line);
  padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
  background: #fff;
}
.quote .stars { color: var(--red); letter-spacing: 4px; font-size: 14px; }
.quote p { font-size: 17px; color: var(--ink-2); line-height: 1.6; }
.quote .who { display: flex; gap: 14px; align-items: center; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); }
.quote .av { width: 44px; height: 44px; border-radius: 50%; background: var(--bg-3) center/cover no-repeat; }
.quote .nm { font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.quote .loc { font-size: 13px; color: var(--slate); }
@media (max-width: 880px) { .quotes-grid { grid-template-columns: 1fr; } }

/* ============== SERVICE AREAS ============== */
.areas { background: var(--bg-2); }
.areas-head { max-width: 760px; }
.areas-list {
  list-style: none; padding: 0; margin: 56px 0 0;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px 24px;
}
.areas-list li {
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  padding: 12px 0; border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.areas-list li .st {
  font-size: 11px; color: var(--red); font-weight: 700; letter-spacing: 0.1em;
}
@media (max-width: 880px) { .areas-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .areas-list { grid-template-columns: 1fr; } }

/* ============== CONTACT ============== */
.contact { background: var(--red); color: #fff; }
.contact h2 { color: #fff; }
.contact .eyebrow { color: rgba(255,255,255,.85); }
.contact .eyebrow::before { background: rgba(255,255,255,.85); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px);
}
.contact-info p { color: rgba(255,255,255,.85); margin-top: 24px; max-width: 50ch; }
.contact-bits { margin-top: 40px; display: grid; gap: 24px; }
.bit { display: flex; gap: 14px; align-items: flex-start; }
.bit .ic {
  width: 40px; height: 40px; flex: 0 0 40px;
  background: rgba(255,255,255,.12);
  display: grid; place-items: center; border-radius: 6px;
}
.bit .ic svg { width: 18px; height: 18px; color: #fff; }
.bit .lb { font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,.7); }
.bit .vl { font-size: 16px; color: #fff; margin-top: 4px; line-height: 1.4; }

.form {
  background: #fff; color: var(--ink);
  padding: clamp(28px, 4vw, 44px);
  border-radius: 8px;
  display: grid; gap: 16px;
  box-shadow: 0 30px 60px rgba(0,0,0,.18);
}
.form h3 { font-size: 22px; }
.field { display: grid; gap: 6px; }
.field label {
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-2);
}
.field input, .field select, .field textarea {
  border: 1px solid var(--line); padding: 12px 14px; border-radius: 4px;
  font: inherit; color: var(--ink); background: #fff;
  transition: border-color .15s var(--ease);
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--red);
}
.field textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form button {
  background: var(--red); color: #fff;
  padding: 16px 24px; border-radius: 4px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  transition: background .2s var(--ease);
  margin-top: 8px;
}
.form button:hover { background: var(--red-dark); }
.form .small { font-size: 12px; color: var(--slate); }
.form-success {
  display: none; padding: 18px;
  background: #EAF7EE; color: #146C2E; border-radius: 6px;
  font-size: 14px;
}
.form.sent .form-fields { display: none; }
.form.sent .form-success { display: block; }

@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

/* ============== FOOTER ============== */
.footer {
  background: var(--ink); color: rgba(255,255,255,.7);
  padding-block: 64px 32px;
  font-size: 14px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo .brand-mark { height: 56px; color: #fff; }
.footer-logo .brand-stone { color: #fff; font-size: 16px; letter-spacing: 8px; margin-top: 8px; }
.footer-logo .brand-tag { color: rgba(255,255,255,.8); font-size: 11px; margin-top: 2px; }
.footer-logo p { margin-top: 20px; max-width: 36ch; }
.footer h5 {
  color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; gap: 16px; flex-wrap: wrap;
}
.footer-bottom .left { display: flex; gap: 20px; flex-wrap: wrap; }
.lic { display: inline-flex; gap: 10px; align-items: center; }
.lic .pill { background: rgba(255,255,255,.08); padding: 4px 8px; border-radius: 4px; font-size: 11px; letter-spacing: 0.08em; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-logo { grid-column: 1 / -1; } }

/* ============== REVEAL ANIMATIONS ============== */
/* Content is visible by default; .in adds a one-shot rise effect when scrolled into view */
.reveal.in { animation: rise .7s var(--ease) both; }
.reveal.in.d1 { animation-delay: .08s; }
.reveal.in.d2 { animation-delay: .16s; }
.reveal.in.d3 { animation-delay: .24s; }
@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .reveal.in { animation: none; }
}
