/* ============================================
   THE EGLEN GROUP — Heartland AI Consulting
   Aesthetic: Seymour, Indiana / Mellencamp
   Weathered, honest, built-to-last
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Special+Elite&family=Oswald:wght@300;400;500;600;700&family=Caveat:wght@400;500;600&display=swap');

:root {
  /* Palette: Indiana fields, weathered wood, dusk sky, faded denim */
  --paper:        #f0e6d2;   /* aged paper / cornfield haze */
  --paper-deep:   #e4d6b8;   /* deeper paper for cards */
  --ink:          #1a1410;   /* near-black wood */
  --ink-soft:     #3d2f24;   /* old barn wood */
  --rust:         #a8421c;   /* small-town brick + rust */
  --rust-deep:    #7a2f15;   /* deeper brick */
  --wheat:        #c89b3c;   /* harvest wheat */
  --denim:        #2c3e50;   /* faded work denim */
  --denim-deep:   #1a2733;
  --moss:         #5a6b3d;   /* roadside grass */
  --cream:        #faf3e3;
  --shadow:       rgba(26, 20, 16, 0.18);

  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-stencil:  'Oswald', 'Arial Narrow', sans-serif;
  --font-type:     'Special Elite', 'Courier New', monospace;
  --font-hand:     'Caveat', cursive;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.8;
  color: var(--ink);
  background: var(--paper);
  background-image:
    radial-gradient(ellipse at top, rgba(168, 66, 28, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at bottom, rgba(44, 62, 80, 0.08) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.15 0 0 0 0 0.12 0 0 0 0 0.08 0 0 0 0.12 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  min-height: 100vh;
  overflow-x: hidden;
}

/* Subtle paper grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='g'%3E%3CfeTurbulence baseFrequency='0.9' numOctaves='1'/%3E%3CfeColorMatrix values='0 0 0 0 0.4 0 0 0 0 0.3 0 0 0 0 0.2 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ============ NAVIGATION ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--cream);
  border-bottom: 3px solid var(--rust);
  box-shadow: 0 2px 24px var(--shadow);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-brand {
  font-family: var(--font-stencil);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  border-left: 3px solid var(--rust);
  padding-left: 0.9rem;
  line-height: 1.1;
}

.nav-brand small {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  color: var(--wheat);
  margin-top: 2px;
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-family: var(--font-stencil);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  font-weight: 400;
}

.nav-links a:hover,
.nav-links a.active {
  border-color: var(--wheat);
  color: var(--wheat);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--cream);
  color: var(--cream);
  padding: 0.4rem 0.7rem;
  cursor: pointer;
  font-family: var(--font-stencil);
  letter-spacing: 0.15em;
  font-size: 0.75rem;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 6rem 2rem 5rem;
  text-align: center;
  z-index: 2;
  border-bottom: 1px solid rgba(26, 20, 16, 0.15);
  background:
    linear-gradient(180deg, transparent 0%, rgba(200, 155, 60, 0.08) 100%);
}

.hero-eyebrow {
  font-family: var(--font-type);
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1.5rem;
  display: inline-block;
  border-top: 1px solid var(--rust);
  border-bottom: 1px solid var(--rust);
  padding: 0.4rem 1.2rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 1.05;
  color: var(--ink);
  margin: 0.4rem auto 1.5rem;
  max-width: 18ch;
  letter-spacing: -0.01em;
}

.hero h1 em {
  font-style: normal;
  color: var(--rust);
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.hero h1 em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 8px;
  background: var(--wheat);
  opacity: 0.35;
  z-index: -1;
  transform: skewX(-8deg);
}

.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 auto 2.5rem;
  line-height: 1.55;
}

.hero-lyric {
  font-family: var(--font-hand);
  font-size: 1.5rem;
  color: var(--ink-soft);
  opacity: 0.7;
  margin: 1.5rem auto 0;
  max-width: 50ch;
  line-height: 1.3;
}

.hero-lyric span {
  display: block;
  font-family: var(--font-type);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--rust);
  margin-top: 0.6rem;
  opacity: 0.8;
}

.hero-cta {
  margin-top: 2.5rem;
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  font-family: var(--font-stencil);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--ink);
  color: var(--cream);
  border: 2px solid var(--ink);
  transition: all 0.2s ease;
  cursor: pointer;
  font-weight: 500;
  position: relative;
}

.btn:hover {
  background: var(--rust);
  border-color: var(--rust);
  transform: translateY(-2px);
  box-shadow: 4px 4px 0 var(--ink);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
}

/* ============ SECTIONS ============ */
.section {
  position: relative;
  z-index: 2;
  padding: 5rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 3.5rem;
  position: relative;
}

.section-eyebrow {
  font-family: var(--font-type);
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.8rem;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.1;
  color: var(--ink);
  max-width: 22ch;
}

.section-title-flag {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.section-title-flag::before {
  content: '';
  height: 2px;
  width: 60px;
  background: var(--rust);
  flex-shrink: 0;
}

/* ============ PORTFOLIO GRID ============ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.work-card {
  background: var(--paper-deep);
  border: 1px solid rgba(26, 20, 16, 0.12);
  padding: 2rem 1.75rem;
  position: relative;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.work-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: var(--rust);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 8px 8px 0 var(--ink);
  background: var(--cream);
}

.work-card:hover::before {
  transform: scaleX(1);
}

.work-card-tag {
  font-family: var(--font-type);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1rem;
}

.work-card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.15;
  margin-bottom: 0.8rem;
  color: var(--ink);
}

.work-card p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.work-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px dashed rgba(26, 20, 16, 0.25);
  font-family: var(--font-stencil);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.work-card-meta .arrow {
  color: var(--rust);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.work-card:hover .arrow {
  transform: translateX(6px);
}

/* ============ SERVICES STRIP ============ */
.services {
  background: var(--ink);
  color: var(--cream);
  padding: 5rem 2rem;
  position: relative;
  z-index: 2;
  border-top: 4px solid var(--rust);
  border-bottom: 4px solid var(--rust);
}

.services-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.services .section-eyebrow { color: var(--wheat); }
.services .section-title { color: var(--cream); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid rgba(250, 243, 227, 0.15);
}

.service {
  padding: 2rem 1.5rem;
  border-right: 1px solid rgba(250, 243, 227, 0.15);
  border-bottom: 1px solid rgba(250, 243, 227, 0.15);
  position: relative;
}

.service:last-child { border-right: 1px solid rgba(250, 243, 227, 0.15); }

.service-number {
  font-family: var(--font-type);
  font-size: 0.85rem;
  color: var(--rust);
  letter-spacing: 0.3em;
  margin-bottom: 0.8rem;
}

.service h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 0.8rem;
  color: var(--cream);
}

.service p {
  font-size: 0.95rem;
  color: rgba(250, 243, 227, 0.75);
  line-height: 1.55;
}

/* ============ PLATFORMS BADGE ROW ============ */
.platforms {
  padding: 3rem 2rem;
  background: var(--paper-deep);
  border-top: 1px solid rgba(26, 20, 16, 0.1);
  border-bottom: 1px solid rgba(26, 20, 16, 0.1);
  position: relative;
  z-index: 2;
}

.platforms-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.platforms-label {
  font-family: var(--font-type);
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--rust);
  border-right: 1px solid var(--ink-soft);
  padding-right: 2.5rem;
}

.platform-badge {
  font-family: var(--font-stencil);
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  position: relative;
}

.platform-badge::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--rust);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.platform-badge:hover::after { transform: scaleX(1); }

/* ============ SITREP FEATURE ============ */
.feature-band {
  position: relative;
  z-index: 2;
  padding: 5rem 2rem;
  background:
    linear-gradient(135deg, var(--denim-deep) 0%, var(--denim) 100%);
  color: var(--cream);
  overflow: hidden;
}

.feature-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 30 L60 30 M30 0 L30 60' stroke='%23faf3e3' stroke-width='0.5' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.feature-band-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

.feature-band .section-eyebrow { color: var(--wheat); }

.feature-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.1;
  margin: 0.5rem 0 1.5rem;
}

.feature-band p {
  font-size: 1.1rem;
  color: rgba(250, 243, 227, 0.85);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.sitrep-card {
  background: var(--ink);
  border: 1px solid var(--wheat);
  padding: 2rem;
  position: relative;
  box-shadow: 12px 12px 0 rgba(26, 20, 16, 0.4);
}

.sitrep-card::before {
  content: 'CLASSIFIED // DAILY';
  position: absolute;
  top: -12px;
  left: 1rem;
  background: var(--rust);
  color: var(--cream);
  font-family: var(--font-stencil);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  padding: 0.3rem 0.8rem;
}

.sitrep-meta {
  font-family: var(--font-type);
  font-size: 0.8rem;
  color: var(--wheat);
  letter-spacing: 0.15em;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed rgba(200, 155, 60, 0.4);
}

.sitrep-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  font-family: var(--font-type);
  font-size: 0.85rem;
  color: var(--cream);
  border-bottom: 1px dotted rgba(250, 243, 227, 0.15);
}

.sitrep-row:last-child { border-bottom: 0; }

.sitrep-row span:first-child {
  color: var(--wheat);
  letter-spacing: 0.1em;
}

/* ============ QUOTE BAND ============ */
.quote-band {
  position: relative;
  z-index: 2;
  padding: 5rem 2rem;
  text-align: center;
  background: var(--paper);
  border-top: 1px solid rgba(26, 20, 16, 0.12);
  border-bottom: 1px solid rgba(26, 20, 16, 0.12);
}

.quote-band blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  line-height: 1.35;
  max-width: 32ch;
  margin: 0 auto;
  color: var(--ink);
  position: relative;
}

.quote-band blockquote::before,
.quote-band blockquote::after {
  content: '"';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--rust);
  position: absolute;
  opacity: 0.4;
  line-height: 0.5;
}

.quote-band blockquote::before { top: 0; left: -2rem; }
.quote-band blockquote::after { bottom: -2rem; right: -2rem; }

.quote-band cite {
  display: block;
  margin-top: 1.8rem;
  font-family: var(--font-type);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rust);
  font-style: normal;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 4rem 2rem 2rem;
  position: relative;
  z-index: 2;
  border-top: 4px solid var(--rust);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.8rem;
}

.footer-tag {
  font-family: var(--font-hand);
  font-size: 1.3rem;
  color: var(--wheat);
  margin-bottom: 1.2rem;
}

.footer p {
  color: rgba(250, 243, 227, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer h5 {
  font-family: var(--font-stencil);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--wheat);
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.footer ul { list-style: none; }
.footer li { margin-bottom: 0.6rem; }
.footer a {
  color: rgba(250, 243, 227, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.footer a:hover { color: var(--wheat); }

.footer-base {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 243, 227, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--font-type);
  font-size: 0.78rem;
  color: rgba(250, 243, 227, 0.5);
  letter-spacing: 0.1em;
}

/* ============ INNER PAGE CONTENT ============ */
.page-hero {
  padding: 5rem 2rem 3rem;
  border-bottom: 1px solid rgba(26, 20, 16, 0.15);
  position: relative;
  z-index: 2;
}

.page-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.page-hero .hero-eyebrow { margin-bottom: 1rem; }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 1rem;
  color: var(--ink);
}

.page-hero .lede {
  font-size: 1.25rem;
  color: var(--ink-soft);
  max-width: 60ch;
  line-height: 1.55;
}

.content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
  position: relative;
  z-index: 2;
}

.content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  font-weight: 500;
  margin: 2.5rem 0 1rem;
  color: var(--ink);
  border-bottom: 2px solid var(--rust);
  padding-bottom: 0.6rem;
  display: inline-block;
}

.content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 600;
  margin: 1.8rem 0 0.8rem;
  color: var(--ink-soft);
}

.content p {
  margin-bottom: 1.2rem;
  color: var(--ink);
}

.content ul, .content ol {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--ink);
}

.content li { margin-bottom: 0.5rem; }

.content a {
  color: var(--rust);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.content a:hover { color: var(--rust-deep); }

.embed-frame {
  width: 100%;
  height: 80vh;
  min-height: 600px;
  border: 3px solid var(--ink);
  box-shadow: 12px 12px 0 var(--rust);
  margin: 2rem 0;
  background: var(--cream);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  body { font-size: 17px; }

  .nav-inner { padding: 0.8rem 1.2rem; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--ink);
    flex-direction: column;
    padding: 1rem;
    border-top: 1px solid rgba(250, 243, 227, 0.15);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 0.8rem 1rem;
  }

  .hero { padding: 4rem 1.2rem 3.5rem; }
  .section { padding: 3.5rem 1.2rem; }
  .services, .feature-band, .platforms, .quote-band {
    padding: 3.5rem 1.2rem;
  }

  .feature-band-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .platforms-inner { gap: 1.2rem; }
  .platforms-label {
    border-right: none;
    border-bottom: 1px solid var(--ink-soft);
    padding-right: 0;
    padding-bottom: 0.8rem;
    width: 100%;
    text-align: center;
  }

  .quote-band blockquote::before { left: -0.5rem; top: -1rem; font-size: 3rem; }
  .quote-band blockquote::after { right: -0.5rem; bottom: -3rem; font-size: 3rem; }

  .services-grid { grid-template-columns: 1fr; }
  .service { border-right: none; }

  .embed-frame { height: 70vh; box-shadow: 6px 6px 0 var(--rust); }

  .page-hero { padding: 3.5rem 1.2rem 2.5rem; }
  .content { padding: 3rem 1.2rem; }
}

@media (max-width: 500px) {
  .hero h1 { font-size: 2.4rem; }
  .nav-brand { font-size: 0.9rem; }
  .nav-brand small { font-size: 0.55rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn { text-align: center; }
}

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

.hero-eyebrow { animation: fadeUp 0.7s ease 0.1s both; }
.hero h1 { animation: fadeUp 0.7s ease 0.25s both; }
.hero-sub { animation: fadeUp 0.7s ease 0.4s both; }
.hero-cta { animation: fadeUp 0.7s ease 0.55s both; }
.hero-lyric { animation: fadeUp 1s ease 0.85s both; }

.work-card { animation: fadeUp 0.6s ease both; }
.work-card:nth-child(1) { animation-delay: 0.1s; }
.work-card:nth-child(2) { animation-delay: 0.2s; }
.work-card:nth-child(3) { animation-delay: 0.3s; }
.work-card:nth-child(4) { animation-delay: 0.4s; }

/* Print-friendly */
@media print {
  body::before, .nav, .footer { display: none; }
}
