/* Kathron Construction — polished UI with theme toggle & motion */

:root {
  --bg: #f7f4ee;
  --bg-elevated: #ffffff;
  --bg-soft: #efeae2;
  --fg: #1c1917;
  --muted: #6b6560;
  --border: #e4ddd3;
  --primary: #c45c2a;
  --primary-hover: #a84c22;
  --primary-soft: rgba(196, 92, 42, 0.12);
  --success: #2d6a4f;
  --error: #9b2226;
  --shadow: 0 4px 24px rgba(28, 25, 23, 0.06);
  --shadow-lg: 0 12px 40px rgba(28, 25, 23, 0.1);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --max: 1100px;
  --header-h: 68px;
  --font: "Outfit", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 0.55s;
}

[data-theme="dark"] {
  --bg: #121110;
  --bg-elevated: #1c1a18;
  --bg-soft: #252220;
  --fg: #f5f0ea;
  --muted: #a39e97;
  --border: #2f2b28;
  --primary: #e07a45;
  --primary-hover: #f08a55;
  --primary-soft: rgba(224, 122, 69, 0.18);
  --success: #52b788;
  --error: #e07a7a;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.45);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  color-scheme: light dark;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.55;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}

img { display: none !important; }

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; color: inherit; }
ul { list-style: none; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
}

.site-header.scrolled {
  box-shadow: var(--shadow);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  transition: transform 0.25s var(--ease);
}

.logo:hover { transform: translateY(-1px); }

.logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--primary);
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.logo:hover .logo-mark {
  transform: rotate(-6deg) scale(1.05);
  box-shadow: 0 4px 12px var(--primary-soft);
}

.logo-mark svg { width: 16px; height: 16px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.nav-links a {
  position: relative;
  padding: 0.5rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover { color: var(--fg); background: var(--bg-soft); }

.nav-links a.active {
  color: var(--fg);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.25rem;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  animation: underlineIn 0.35s var(--ease);
}

@keyframes underlineIn {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

/* Theme toggle */
.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  background: var(--bg-elevated);
  color: var(--fg);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color 0.2s, background 0.2s, transform 0.25s var(--ease), box-shadow 0.25s;
  flex-shrink: 0;
}

.theme-toggle:hover {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
  transform: scale(1.05);
}

.theme-toggle:active { transform: scale(0.95); }

.theme-toggle svg {
  width: 18px;
  height: 18px;
  transition: transform 0.45s var(--ease), opacity 0.25s;
}

.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }

[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

[data-theme="dark"] .theme-toggle:hover .icon-sun {
  transform: rotate(25deg);
}

.theme-toggle:hover .icon-moon {
  transform: rotate(-15deg);
}

.menu {
  display: none;
  background: var(--bg-elevated);
  border: 1.5px solid var(--border);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--fg);
  transition: border-color 0.2s;
}

.menu:hover { border-color: var(--primary); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.3rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s var(--ease), box-shadow 0.25s;
}

.btn:active { transform: scale(0.97); }

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease);
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 2px 12px var(--primary-soft);
}

.btn-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  box-shadow: 0 6px 20px var(--primary-soft);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
}

.btn-ghost:hover { color: var(--fg); }

.btn-outline {
  background: transparent;
  color: var(--fg);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--fg);
  background: var(--bg-soft);
}

/* ========== TYPE ========== */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--fg);
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.85rem);
  margin-bottom: 1rem;
  font-variation-settings: "SOFT" 40, "WONK" 0.5;
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
}

h3 {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 650;
  letter-spacing: -0.015em;
  margin-bottom: 0.35rem;
}

.lede {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 34rem;
  line-height: 1.65;
}

p { color: var(--muted); font-size: 0.925rem; }

.text-center { text-align: center; }
.text-center .lede { margin-inline: auto; }

/* ========== ICONS ========== */
.icon {
  width: 32px;
  height: 32px;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
}

.icon-sm {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-soft);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  transition: transform 0.4s var(--ease), background 0.3s;
}

.icon-box .icon { width: 22px; height: 22px; }

/* ========== HERO ========== */
.hero {
  padding: 6.25rem 0 3.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 60%;
  background: radial-gradient(ellipse, var(--primary-soft), transparent 70%);
  pointer-events: none;
  animation: glowPulse 8s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.85; transform: translateX(-50%) scale(1.08); }
}

.hero h1,
.hero .lede,
.hero-actions,
.hero-card,
.hero-caption {
  position: relative;
}

.hero .lede {
  margin-inline: auto;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2.5rem;
}

.hero-card {
  max-width: 26rem;
  margin-inline: auto;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  text-align: left;
  box-shadow: var(--shadow);
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.3s;
}

.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: color-mix(in srgb, var(--primary) 30%, var(--border));
}

.hero-card-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.65rem;
  display: flex;
  justify-content: space-between;
}

.hero-card-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  transition: background 0.2s, padding-left 0.25s var(--ease);
  border-radius: 6px;
}

.hero-card-row:first-of-type { border-top: 0; }

.hero-card-row:hover {
  padding-left: 0.35rem;
}

.hero-card-row strong { color: var(--fg); font-weight: 600; }

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  animation: dotPulse 2.5s ease-in-out infinite;
}

.dot-green {
  background: var(--success);
  animation-delay: 0.4s;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--primary) 40%, transparent); }
  50% { box-shadow: 0 0 0 5px transparent; }
}

.hero-caption {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
}

/* ========== FEATURES ========== */
.feature-strip {
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
  padding: 3.25rem 0;
  margin-top: clamp(17rem, 33vh, 24rem);
  border-radius: 28px;
  overflow: hidden;
  transition: background 0.35s;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.feature {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding: 1.5rem 1rem;
  border-radius: 22px;
  background: color-mix(in srgb, var(--bg-elevated) 85%, transparent);
  border: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
  transition: background 0.3s, transform 0.35s var(--ease), box-shadow 0.3s;
}

.feature:hover {
  background: var(--bg-elevated);
  transform: translateY(-4px);
}

.feature:hover .icon {
  transform: scale(1.12) translateY(-2px);
}

.feature h3 { margin: 0; }
.feature p { font-size: 0.82rem; max-width: 15rem; }

/* ========== SECTIONS ========== */
.section {
  padding: 4.25rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title .lede {
  margin-top: 0.5rem;
  margin-inline: auto;
}

/* ========== STEPS ========== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.step-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.3s;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: color-mix(in srgb, var(--primary) 25%, var(--border));
}

.step-card:hover .icon-box {
  transform: scale(1.08) rotate(-4deg);
  background: color-mix(in srgb, var(--primary) 22%, transparent);
}

.step-card .icon-box { margin-inline: auto; }

/* ========== CHIPS ========== */
.chip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 0.75rem;
}

.chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 0.9rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 550;
  color: var(--fg);
  transition: border-color 0.25s, background 0.25s, transform 0.35s var(--ease), box-shadow 0.35s;
}

.chip:hover {
  border-color: var(--primary);
  background: var(--primary-soft);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.chip:hover .icon {
  transform: scale(1.15);
}

.chip .icon { width: 24px; height: 24px; }

/* ========== PROJECTS ========== */
.project-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 42rem;
  margin-inline: auto;
}

.project-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.25s;
}

.project-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow);
  border-color: color-mix(in srgb, var(--primary) 30%, var(--border));
}

.project-item:hover .icon-box {
  transform: scale(1.08);
}

.project-item .icon-box {
  width: 42px;
  height: 42px;
  margin: 0;
  border-radius: 11px;
}

.project-item .icon-box .icon { width: 20px; height: 20px; }

.project-item h3 { margin: 0 0 0.2rem; }
.project-item p { font-size: 0.85rem; margin: 0; }

/* ========== CONTACT ========== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.5rem;
  align-items: start;
  max-width: 52rem;
  margin-inline: auto;
}

.contact-info,
.form-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: box-shadow 0.35s, border-color 0.3s;
}

.contact-info:hover,
.form-card:hover {
  box-shadow: var(--shadow);
}

.contact-info h2 {
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
}

.info-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.8rem 0;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  transition: padding-left 0.25s var(--ease);
  border-radius: 6px;
}

.info-row:first-of-type { border-top: 0; margin-top: 0.4rem; }

.info-row:hover { padding-left: 0.25rem; }

.info-row a:hover { color: var(--primary); }

.fields { display: flex; flex-direction: column; gap: 1rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.field input,
.field textarea {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.25s, background 0.3s;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-status {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.4rem;
}

.form-status.ok { color: var(--success); }
.form-status.err { color: var(--error); }

/* ========== PAGE HERO ========== */
.page-hero {
  padding: 3.25rem 0 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, var(--primary-soft), transparent 55%);
  pointer-events: none;
}

.page-hero .lede {
  margin-inline: auto;
  position: relative;
}

.page-hero h1 { position: relative; }

/* ========== CTA ========== */
.cta-band {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem;
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
  box-shadow: var(--shadow);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}

.cta-band:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.cta-band h2 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.cta-band p { margin-bottom: 1.25rem; }

/* ========== FOOTER ========== */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 1.5rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer h3 {
  font-family: var(--font);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color 0.2s, transform 0.25s var(--ease);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--muted);
}

/* ========== ADMIN ========== */
.admin-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem;
}

.admin-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.hidden { display: none !important; }

.msg {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.1rem;
  margin-bottom: 0.75rem;
  transition: border-color 0.25s, transform 0.3s var(--ease);
}

.msg:hover {
  border-color: color-mix(in srgb, var(--primary) 25%, var(--border));
  transform: translateX(3px);
}

.msg-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.msg-head h3 { font-size: 0.95rem; margin: 0; font-family: var(--font); }

.meta { font-size: 0.8rem; color: var(--muted); margin-top: 0.15rem; }

.badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  height: fit-content;
}

.message {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
  white-space: pre-wrap;
}

.row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.error { color: var(--error); }

.admin-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity var(--duration) var(--ease),
    transform var(--duration) var(--ease);
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition:
    opacity var(--duration) var(--ease),
    transform var(--duration) var(--ease);
}

.reveal-left.visible {
  opacity: 1;
  transform: none;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition:
    opacity var(--duration) var(--ease),
    transform var(--duration) var(--ease);
}

.reveal-scale.visible {
  opacity: 1;
  transform: none;
}

.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }

/* Stagger children when parent is visible */
.stagger > *.reveal {
  transition-delay: 0s;
}

.stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.12s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.19s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.26s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.33s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 800px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem;
    gap: 0.15rem;
    animation: slideDown 0.3s var(--ease);
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: none; }
  }

  .nav-links a { padding: 0.75rem 0.9rem; width: 100%; }
  .nav-links a.active::after { display: none; }
  .menu { display: flex; }
  .nav-actions .btn-ghost { display: none; }

  .feature-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .contact-wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 3rem 0 2.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .reveal-left,
  .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero::before { animation: none; }
  .dot { animation: none; }
}
