/* ============================================================
   A2 EFFICIENCY — Global Stylesheet
   Fonts: DM Sans (headings) + Open Sans (body)
   Version: 1.0 · 2026
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400;1,9..40,600&family=Open+Sans:wght@300;400;600;700&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* --- Brand Colors --- */
  --orange:         #FF6600;
  --orange-deep:    #E55A00;
  --orange-light:   #FF8533;
  --orange-wash:    #FFF0E5;

  --green-deep:     #2D5016;
  --olive:          #6B8F3C;
  --teal:           #00A3B4;
  --sage:           #B8D4A0;

  --ink:            #1A1F16;
  --body-text:      #3D4238;
  --caption:        #7A8075;
  --warm-white:     #F4F5F0;
  --border:         #D8D9D3;
  --border-light:   #EAEBE6;

  /* --- Typography --- */
  --font-head: 'DM Sans', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  /* --- Type Scale --- */
  --text-xs:   11px;
  --text-sm:   13px;
  --text-base: 15px;
  --text-md:   17px;
  --text-lg:   22px;
  --text-xl:   28px;
  --text-2xl:  36px;
  --text-3xl:  48px;
  --text-hero: 60px;

  /* --- Spacing --- */
  --space-1:   4px;
  --space-2:   8px;
  --space-3:   12px;
  --space-4:   16px;
  --space-5:   24px;
  --space-6:   32px;
  --space-7:   48px;
  --space-8:   64px;
  --space-9:   96px;
  --space-10:  128px;

  /* --- Layout --- */
  --max-width:       1160px;
  --max-width-text:  680px;
  --gutter:          clamp(1.25rem, 4vw, 2.5rem);
  --section-gap:     clamp(4rem, 8vw, 7rem);

  /* --- Radii --- */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  20px;

  /* --- Transitions --- */
  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
  --transition:  0.2s var(--ease);

  /* --- Shadows --- */
  --shadow-sm:  0 1px 3px rgba(26,31,22,0.08);
  --shadow-md:  0 4px 16px rgba(26,31,22,0.10);
  --shadow-lg:  0 12px 40px rgba(26,31,22,0.12);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--body-text);
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol { list-style: none; }

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */

/* Container — centered, max-width, guttered */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Narrower container for long-form text */
.container-text {
  width: 100%;
  max-width: var(--max-width-text);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Section vertical rhythm */
.section {
  padding-block: var(--section-gap);
}

.section-sm {
  padding-block: clamp(2rem, 5vw, 4rem);
}

/* Grid helpers */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .grid-2,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; }
}

/* Flex helpers */
.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col     { display: flex; flex-direction: column; }
.gap-2        { gap: var(--space-2); }
.gap-3        { gap: var(--space-3); }
.gap-4        { gap: var(--space-4); }
.gap-5        { gap: var(--space-5); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

/* Eyebrow / label — always Open Sans, tracked, orange */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
}

.eyebrow-muted {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--caption);
  display: block;
}

/* Headings — DM Sans */
h1, h2, h3, h4, .h1, .h2, .h3, .h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
}

h1, .h1 { font-size: clamp(var(--text-2xl), 5vw, var(--text-hero)); }
h2, .h2 { font-size: clamp(var(--text-xl),  4vw, var(--text-3xl)); }
h3, .h3 { font-size: clamp(var(--text-lg),  3vw, var(--text-2xl)); }
h4, .h4 { font-size: var(--text-lg); font-weight: 600; }

/* Hero — largest display size */
.display {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* Body text variants */
.text-lg   { font-size: var(--text-md);  line-height: 1.65; }
.text-base { font-size: var(--text-base); line-height: 1.7;  }
.text-sm   { font-size: var(--text-sm);  line-height: 1.65; }
.text-xs   { font-size: var(--text-xs);  line-height: 1.6;  }

.text-muted   { color: var(--caption); }
.text-body    { color: var(--body-text); }
.text-ink     { color: var(--ink); }
.text-orange  { color: var(--orange); }
.text-green   { color: var(--green-deep); }
.text-white   { color: #fff; }

.text-center { text-align: center; }
.text-right  { text-align: right; }

/* Lead paragraph */
.lead {
  font-size: var(--text-md);
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.75;
  max-width: 620px;
}

/* Caption */
.caption {
  font-size: var(--text-xs);
  font-weight: 300;
  color: var(--caption);
  line-height: 1.6;
}

/* Section intro text block */
.section-intro {
  margin-bottom: var(--space-7);
}

.section-intro .eyebrow {
  margin-bottom: var(--space-2);
}

.section-intro h2 {
  margin-bottom: var(--space-4);
}

.section-intro .lead {
  margin-bottom: 0;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--ink);
  height: 64px;
  display: flex;
  align-items: center;
}

.nav-inner {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  flex: 1;
  justify-content: center;
}

/* Nav dropdown trigger button — same look as nav-link */
.nav-dropdown-trigger {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  padding: 6px 12px;
  border-radius: var(--radius-md);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-dropdown-trigger:hover { color: #fff; }
.nav-dropdown-trigger.active { color: #fff; }

.nav-link {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  padding: 6px 12px;
  border-radius: var(--radius-md);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav-link:hover { color: #fff; }
.nav-link.active { color: #fff; }

/* Dropdown */
.nav-item { position: relative; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-2);
  min-width: 240px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 200;
}

.nav-dropdown-link {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--body-text);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  transition: background var(--transition), color var(--transition);
}

.nav-dropdown-link:hover {
  background: var(--warm-white);
  color: var(--ink);
}

/* Nav CTA */
.nav-cta {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: var(--orange);
  padding: 8px 18px;
  border-radius: var(--radius-md);
  transition: background var(--transition);
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--orange-deep); }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Body offset for fixed nav */
.nav-offset { padding-top: 64px; }

/* Mobile nav */
@media (max-width: 860px) {
  .nav-links   { display: none; }
  .nav-cta     { display: none; }
  .nav-toggle  { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--ink);
    padding: var(--space-4) var(--gutter) var(--space-6);
    gap: var(--space-1);
    align-items: flex-start;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
  line-height: 1;
  text-decoration: none;
}

.btn-lg {
  font-size: 15px;
  padding: 14px 32px;
}

.btn-sm {
  font-size: 12px;
  padding: 8px 16px;
}

/* Primary */
.btn-primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-deep);
  border-color: var(--orange-deep);
}

/* Secondary (outlined) */
.btn-secondary {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-secondary:hover {
  background: var(--orange-wash);
}

/* Dark */
.btn-dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn-dark:hover {
  background: #2D3228;
  border-color: #2D3228;
}

/* Ghost */
.btn-ghost {
  background: transparent;
  color: var(--body-text);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: var(--warm-white);
  border-color: var(--caption);
}

/* White (on dark backgrounds) */
.btn-white {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--warm-white);
}

/* White outlined (on dark backgrounds) */
.btn-white-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-white-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.07);
}

/* ============================================================
   CARDS
   ============================================================ */

/* Base card */
.card {
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Card with orange left accent */
.card-accent {
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

/* Dark card */
.card-dark {
  background: var(--ink);
  border-color: var(--ink);
}

/* Warm white card */
.card-muted {
  background: var(--warm-white);
  border-color: var(--border-light);
}

/* Card label */
.card-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--space-2);
  display: block;
}

/* Card title */
.card-title {
  font-family: var(--font-head);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: var(--space-3);
}

/* Card body */
.card-body {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--body-text);
  line-height: 1.7;
}

/* Card link arrow */
.card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  margin-top: var(--space-4);
  transition: gap var(--transition);
}

.card-link:hover { gap: var(--space-3); }

/* ============================================================
   STAT / METRIC BLOCKS
   ============================================================ */
.stat {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.stat-num {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--caption);
  line-height: 1.5;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.hero h1 {
  color: var(--warm-white);
  margin-block: var(--space-4) var(--space-5);
}

.hero .lead {
  color: var(--caption);
  margin-bottom: var(--space-6);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-header {
  background: var(--ink);
  padding-block: clamp(3rem, 6vw, 5rem);
}

.page-header h1 {
  color: var(--warm-white);
  margin-block: var(--space-3) var(--space-4);
  max-width: 640px;
}

.page-header .lead {
  color: var(--caption);
  max-width: 560px;
}

/* ============================================================
   SECTION DIVIDERS
   ============================================================ */

/* Dark section */
.section-dark {
  background: var(--ink);
  color: var(--warm-white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--warm-white); }

.section-dark .lead       { color: var(--caption); }
.section-dark .card-body  { color: var(--caption); }

/* Warm white section */
.section-warm {
  background: var(--warm-white);
}

/* Deep green section */
.section-green {
  background: var(--green-deep);
  color: #fff;
}

.section-green h2,
.section-green h3 { color: #fff; }

.section-green .eyebrow { color: var(--sage); }

/* ============================================================
   ORANGE ACCENT SYSTEM
   ============================================================ */

/* Thin orange rule above section labels */
.orange-rule {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--orange);
  margin-bottom: var(--space-3);
}

/* Orange numbered section markers */
.section-num {
  font-family: var(--font-head);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.08em;
}

/* Left-border accent line on content blocks */
.accent-left {
  border-left: 3px solid var(--orange);
  padding-left: var(--space-5);
}

/* ============================================================
   SERVICE ITEMS
   ============================================================ */
.service-item {
  padding-block: var(--space-6);
  border-bottom: 0.5px solid var(--border-light);
}

.service-item:last-child { border-bottom: none; }

.service-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 700;
  color: var(--orange);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: var(--space-3);
}

.service-title {
  font-family: var(--font-head);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--space-4);
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.service-list li {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--body-text);
  padding-left: var(--space-5);
  position: relative;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 1.5px;
  background: var(--orange);
}

/* ============================================================
   TAGS & BADGES
   ============================================================ */
.tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

.tag-orange { background: var(--orange-wash); color: var(--orange-deep); }
.tag-green  { background: #EAF3DE;            color: var(--green-deep); }
.tag-teal   { background: #E1F7FA;            color: #006B78; }
.tag-gray   { background: var(--warm-white);  color: var(--caption); }

/* ============================================================
   FORMS
   ============================================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.03em;
}

.form-input,
.form-textarea,
.form-select {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-wash);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  padding-block: var(--space-9) var(--space-6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-7);
  margin-bottom: var(--space-8);
}

.footer-brand .nav-logo {
  font-size: 20px;
  display: block;
  margin-bottom: var(--space-4);
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--caption);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: var(--space-5);
}

.footer-contact a {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--caption);
  transition: color var(--transition);
  margin-bottom: var(--space-1);
}

.footer-contact a:hover { color: var(--orange); }

.footer-col-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--caption);
  margin-bottom: var(--space-4);
  display: block;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-links a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: #fff;
  opacity: 0.65;
  transition: opacity var(--transition), color var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-5);
  border-top: 0.5px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
  gap: var(--space-3);
}

.footer-copy {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--caption);
}

@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }
}

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

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

/* Spacing */
.mt-1 { margin-top: var(--space-1); }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mt-6 { margin-top: var(--space-6); }
.mt-7 { margin-top: var(--space-7); }
.mt-8 { margin-top: var(--space-8); }

.mb-1 { margin-bottom: var(--space-1); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-7 { margin-bottom: var(--space-7); }
.mb-8 { margin-bottom: var(--space-8); }

/* Display */
.hidden          { display: none; }
.sr-only         {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Dividers */
.divider {
  height: 0.5px;
  background: var(--border);
  border: none;
}

.divider-orange {
  height: 2px;
  background: var(--orange);
  border: none;
  width: 40px;
}

/* Images */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Aspect ratios */
.aspect-16-9  { aspect-ratio: 16 / 9; }
.aspect-4-3   { aspect-ratio: 4 / 3; }
.aspect-3-2   { aspect-ratio: 3 / 2; }
.aspect-1-1   { aspect-ratio: 1 / 1; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
  animation: fadeUp 0.5s var(--ease) both;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .animate-fade-up { animation: none; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .nav, .footer { display: none; }
  body { font-size: 12pt; color: #000; }
  a::after { content: ' (' attr(href) ')'; font-size: 10pt; color: #666; }
}
