/* ============================================================
   Mondre Energy — Site Stylesheet
   Editorial / refined minimal — Source Serif 4 + Inter
   ============================================================ */

:root {
  --ink: #1a1f1a;
  --body: #33382f;
  --muted: #636a5c;
  --faint: #8e9685;
  --line: #e5e3dd;
  --line-soft: #ededea;

  --bg: #fcfbf6;
  --bg-warm: #f1efe7;
  --bg-soft: #edf2e4;
  --bg-dark: #1a2414;

  --accent: #5a9c2a;
  --accent-dk: #3f7519;
  --accent-lt: #e3efd2;

  --serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --s-section-y: 120px;
  --s-section-y-sm: 72px;
  --s-gutter: 48px;
  --s-max: 1200px;
}

@media (max-width: 768px) {
  :root {
    --s-section-y: 72px;
    --s-section-y-sm: 48px;
    --s-gutter: 24px;
  }
}

/* ─── Base ─────────────────────────────────────────────────── */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--body);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--accent-dk); }

/* ─── Layout ───────────────────────────────────────────────── */
.container {
  max-width: var(--s-max);
  margin: 0 auto;
  padding: 0 var(--s-gutter);
}
.section { padding: var(--s-section-y) 0; }
.section--tight { padding: var(--s-section-y-sm) 0; }
.section--warm { background: var(--bg-warm); }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--bg-dark); color: #dce4ee; }

/* ─── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  line-height: 1.15;
  text-wrap: balance;
}
h1 { font-size: clamp(40px, 5.2vw, 64px); letter-spacing: -0.02em; line-height: 1.05; }
h2 { font-size: clamp(30px, 3.4vw, 44px); }
h3 { font-size: clamp(20px, 2vw, 26px); }
h4 { font-size: 18px; }
h5 { font-size: 16px; }

p { margin: 0 0 18px; text-wrap: pretty; }
.lede {
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.55;
  color: var(--body);
  max-width: 64ch;
}
.muted { color: var(--muted); }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--accent-dk);
  margin: 0 0 20px;
}

/* ─── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  padding: 14px 24px;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--accent-dk); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--bg-warm); color: var(--ink); border-color: var(--ink); }
.btn-on-dark { background: #fff; color: var(--bg-dark); }
.btn-on-dark:hover { background: var(--accent-lt); color: var(--accent-dk); }

.arrow-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--sans);
  font-size: 14px; font-weight: 500;
  color: var(--accent-dk);
}
.arrow-link:hover { gap: 10px; }
.arrow-link svg { width: 14px; height: 14px; }

/* ─── Navigation ───────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 251, 246, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--s-max);
  margin: 0 auto;
  padding: 18px var(--s-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav .logo img { height: 52px; width: auto; display: block; }
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover { border-bottom-color: var(--accent); color: var(--ink); }
.nav-links a.active { border-bottom-color: var(--accent); }
.nav-links .btn { padding: 10px 18px; font-size: 13px; }
.nav-links a.btn-primary { color: #fff; border-bottom: 1px solid transparent; }
.nav-links a.btn-primary:hover { color: #fff; background: var(--accent-dk); border-bottom-color: transparent; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 8px 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  margin: 3px 0;
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 24px;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line-soft);
    width: 100%;
  }
  .nav-links a:last-child { border-bottom: none; }
}

/* ─── Hero ─────────────────────────────────────────────────── */
.hero {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 60px 0 40px; }
  .hero-image { aspect-ratio: 4/5; height: auto; max-height: 540px; }
}
.hero h1 { margin-bottom: 24px; }
.hero .lede { margin-bottom: 32px; }
.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
}
.hero-image {
  height: 100%;
  min-height: 0;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-warm);
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ─── Proof strip ──────────────────────────────────────────── */
.proof-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
  background: var(--bg);
}
.proof-strip .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.proof-strip-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}
.proof-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 36px;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  text-align: center;
  letter-spacing: 0.01em;
}
.proof-list .sep {
  color: var(--faint);
  font-weight: 300;
}

/* ─── Who We Are ───────────────────────────────────────────── */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .who-grid { grid-template-columns: 1fr; gap: 40px; }
  .who-image { order: 2; }
}
.who-image {
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-warm);
}
@media (max-width: 900px) {
  .who-image { aspect-ratio: 3/4; max-height: 600px; }
}
.who-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ─── Service Directory (Home) ─────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 24px;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
}
/* Each card is a horizontal split: image column (left) + text column (right) */
.svc-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 210px 1fr;
  min-height: 210px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.svc-card:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 28px -16px rgba(26, 31, 26, 0.22);
}
@media (max-width: 560px) {
  .svc-card { grid-template-columns: 1fr; min-height: 0; }
  .svc-figure { border-right: none; border-bottom: 1px solid var(--line); aspect-ratio: 16 / 10; }
}

/* Photo / figure area — left column, fills card height */
.svc-figure {
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
  border-right: 1px solid var(--line);
}
.svc-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.svc-card:hover .svc-figure img { transform: scale(1.04); }

/* Branded placeholder shown until real photography is supplied */
.svc-ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
}
.svc-ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  opacity: 0.05;
}
.svc-ph-icon {
  width: 48px;
  height: 48px;
  stroke: var(--accent);
  stroke-width: 1.3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.85;
}
.svc-ph-cap {
  position: absolute;
  left: 14px;
  bottom: 12px;
  right: 14px;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--muted);
}
.svc-ph-cap::before {
  content: "Photo — ";
  color: var(--accent-dk);
  font-weight: 600;
}

/* Body — right column */
.svc-body {
  padding: 24px 26px 22px;
  display: flex;
  flex-direction: column;
}
.svc-card .num {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--accent-dk);
  margin-bottom: 11px;
}
.svc-card h3 {
  font-size: 19px;
  margin-bottom: 8px;
  color: var(--ink);
  line-height: 1.22;
  text-wrap: balance;
}
.svc-card p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--body);
  margin-bottom: 16px;
  flex: 1;
}
.svc-card .arrow-link {
  margin-top: auto;
  color: var(--accent-dk);
  font-size: 13px;
}

/* ─── Sectors ──────────────────────────────────────────────── */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 64px;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .sectors-grid { grid-template-columns: 1fr; gap: 40px; }
}
.sector h4 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-dk);
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.sector ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--serif);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
}
.sector ul li { padding: 3px 0; }

/* ─── Credentialing ────────────────────────────────────────── */
.cred-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-top: 40px;
}
.cred-grid.cred-grid--two { grid-template-columns: 0.6fr 1.4fr; gap: 56px; }
@media (max-width: 900px) {
  .cred-grid { grid-template-columns: 1fr; gap: 36px; }
  .cred-grid.cred-grid--two { grid-template-columns: 1fr; gap: 36px; }
}
.cred-block h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
}
.cred-block .states {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  text-wrap: pretty;
}
.cred-block .states .sep { color: var(--faint); margin: 0 4px; }

/* Certifications: lists + map layout */
.cert-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 48px;
}
@media (max-width: 900px) {
  .cert-layout { grid-template-columns: 1fr; gap: 40px; }
}
.cert-lists { display: flex; flex-direction: column; gap: 36px; }
.cert-map img { width: 100%; height: auto; display: block; }
@media (max-width: 900px) {
  .cert-map { order: -1; max-width: 520px; }
}
.cred-block h4 .marker {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  margin-right: 9px;
  vertical-align: baseline;
  position: relative;
  top: 1px;
}
.marker--solid { background: var(--accent); }
.marker--hatch {
  background: #fff;
  border: 1.5px solid var(--accent);
  background-image: repeating-linear-gradient(
    45deg,
    var(--accent) 0, var(--accent) 1.5px,
    transparent 1.5px, transparent 3.5px
  );
}


/* ─── Contact ──────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
.section--dark .lede { color: #b9c6b1; max-width: 56ch; }
.section--dark h2 { color: #fff; }
.section--dark .eyebrow { color: #9bc06c; }

.contact-details .line {
  padding: 14px 0;
  border-bottom: 1px solid rgba(220, 228, 238, 0.15);
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  align-items: baseline;
}
.contact-details .line:first-child { padding-top: 0; }
.contact-details .line:last-child { border-bottom: none; }
.contact-details .lbl {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #9bc06c;
  font-weight: 600;
}
.contact-details .val {
  font-family: var(--serif);
  font-size: 16.5px;
  color: #fff;
  line-height: 1.5;
}
.contact-details .val a { color: #fff; border-bottom: 1px solid rgba(255,255,255,0.3); }
.contact-details .val a:hover { border-bottom-color: #fff; color: #fff; }

.contact-form h3 { color: #fff; margin-bottom: 22px; }
.contact-form label {
  display: block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #9bc06c;
  margin-bottom: 6px;
  font-weight: 600;
}
.form-row { margin-bottom: 18px; }
.form-row.split { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 500px) { .form-row.split { grid-template-columns: 1fr; } }
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  border-radius: 3px;
  transition: border-color 0.15s, background 0.15s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.35); }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #9bc06c;
  background: rgba(255,255,255,0.08);
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form .btn { margin-top: 8px; }

/* ─── Footer ──────────────────────────────────────────────── */
footer {
  padding: 56px 0 32px;
  background: var(--bg-warm);
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
footer .logo img { height: 52px; width: auto; display: block; margin-bottom: 14px; }
footer .tagline {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--muted);
  max-width: 320px;
  line-height: 1.5;
  margin: 0;
}
footer h5 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--faint);
  margin: 0 0 14px;
}
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { margin-bottom: 6px; font-size: 14px; color: var(--body); line-height: 1.5; }
footer ul li a { color: var(--body); }
footer ul li a:hover { color: var(--accent-dk); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--faint);
  flex-wrap: wrap; gap: 16px;
}

/* ─── SERVICES PAGE ────────────────────────────────────────── */
.page-header {
  padding: 88px 0 48px;
  border-bottom: 1px solid var(--line);
}
.page-header .eyebrow { color: var(--accent-dk); }
.page-header h1 { margin-bottom: 24px; }
.back-link {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--accent-dk);
}
.back-link:hover { color: var(--ink); }

.service-detail {
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}
.service-detail:last-of-type { border-bottom: none; }
.service-detail-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .service-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .service-detail { padding: 56px 0; }
}
.service-detail .num-large {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 14px;
}
.service-detail h2 {
  font-size: clamp(26px, 2.6vw, 34px);
  margin-bottom: 0;
}
.service-detail-body p {
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 24px;
  color: var(--body);
}
.service-detail-body ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
}
@media (max-width: 600px) {
  .service-detail-body ul { grid-template-columns: 1fr; }
}
.service-detail-body ul li {
  font-family: var(--sans);
  font-size: 14.5px;
  color: var(--body);
  padding: 7px 0;
  border-top: 1px solid var(--line-soft);
  position: relative;
  padding-left: 20px;
}
.service-detail-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 1px;
  background: var(--accent);
}

/* ─── TEAM (photo grid) ────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px 44px;
  margin-top: 48px;
  max-width: 760px;
}
@media (max-width: 980px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); gap: 36px 24px; }
}
@media (max-width: 768px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
}
@media (max-width: 460px) {
  .team-grid { grid-template-columns: 1fr; gap: 32px; max-width: 320px; margin-left: auto; margin-right: auto; }
}
.team-card { text-align: left; }
.team-card .team-photo {
  aspect-ratio: 4/5;
  background: var(--bg-warm);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 18px;
}
.team-card .team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
  filter: saturate(0.96);
  transition: transform 0.4s ease;
}
.team-card:hover .team-photo img { transform: scale(1.03); }
.team-card h4 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 4px;
  line-height: 1.2;
}
.team-card .role {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
}

/* ─── Firm block on Team page ──────────────────────────────── */
.firm-section {
  background: var(--bg-warm);
  padding: var(--s-section-y) 0;
}
.firm-block {
  max-width: 800px;
  margin: 0 auto;
}
.firm-block + .firm-block { margin-top: 56px; }
.firm-block h3 {
  font-size: 22px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.firm-block p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
}
.firm-block .awards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 8px;
}
@media (max-width: 600px) { .firm-block .awards-grid { grid-template-columns: 1fr; gap: 24px; } }
.firm-block .awards-grid h5 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-dk);
  margin-bottom: 12px;
}
.firm-block .awards-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.firm-block .awards-grid ul li {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 1px solid var(--line-soft);
}
.firm-block .awards-grid ul li:last-child { border-bottom: none; }

.naics-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.naics-list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14.5px;
}
.naics-list li:last-child { border-bottom: none; }
.naics-list li .code {
  font-family: var(--sans);
  font-weight: 600;
  color: var(--accent-dk);
}
.naics-list li .desc {
  color: var(--body);
  font-family: var(--serif);
  font-size: 15.5px;
}

/* ─── Scroll reveal ────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
