/* ==========================================================================
   Amir Ghazizadeh — personal site
   Aesthetic: technical report. Rules instead of glows, numbers instead of
   clipart, one accent colour, serif display + mono for data.
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Newsreader:opsz,wght@6..72,400;6..72,500;6..72,600&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500&display=swap");

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  --ink:        #0c0e12;
  --ink-2:      #12151b;
  --ink-3:      #171b23;
  --line:       #242935;
  --line-soft:  #1a1e27;
  --paper:      #dfe3ea;
  --paper-hi:   #f6f7f9;
  --paper-lo:   #8c95a5;

  /* Single accent. Swap this one line to reskin the whole site.
     Alternates: #7cc4a4 (sage)  #9db4d6 (slate blue)  #d98466 (terracotta) */
  --accent:     #f0b429;
  --accent-ink: #0c0e12;
  --accent-wash: rgba(240,180,41,.10);
  --accent-line: rgba(240,180,41,.34);

  /* terminal card only — the one place colour is allowed to play */
  --term-key: #f0b429;
  --term-str: #9ec7a8;
  --term-com: #7a8496;

  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --wrap: 1120px;
  --nav-h: 62px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

[data-theme="light"] {
  --ink:        #fbfaf7;   /* warm paper, not blue-white */
  --ink-2:      #ffffff;
  --ink-3:      #f4f2ec;
  --line:       #e0dcd2;
  --line-soft:  #ebe8e0;
  --paper:      #34383f;
  --paper-hi:   #14171c;
  --paper-lo:   #6f7683;

  --accent:     #a8700c;
  --accent-ink: #ffffff;
  --accent-wash: rgba(168,112,12,.09);
  --accent-line: rgba(168,112,12,.32);

  --term-key: #a8700c;
  --term-str: #3f6b4c;
  --term-com: #7b8290;
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 24px); }

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  transition: background .3s var(--ease), color .3s var(--ease);
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--paper-hi);
  font-weight: 500;
  letter-spacing: -.005em;
  margin: 0;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

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

ul { margin: 0; padding: 0; list-style: none; }

img { max-width: 100%; height: auto; display: block; }

::selection { background: var(--accent); color: var(--accent-ink); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 32px; }

.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;
}

.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 200;
  background: var(--accent); color: var(--accent-ink);
  padding: 10px 16px; border-radius: 4px; font-size: 14px; font-weight: 500;
}
.skip-link:focus { top: 12px; }

/* --------------------------------------------------------------------------
   3. Section furniture
   -------------------------------------------------------------------------- */
.section { padding: 92px 0; border-top: 1px solid var(--line-soft); }
.section:first-of-type { border-top: 0; }

.section-head { margin-bottom: 48px; max-width: 680px; }

.eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.85rem, 3.4vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: 12px;
}

.section-note {
  color: var(--paper-lo);
  font-size: 16px;
  margin: 0;
}

/* --------------------------------------------------------------------------
   4. Navigation — sticky, always visible
   -------------------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: color-mix(in srgb, var(--ink) 86%, transparent);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.nav.is-stuck { border-bottom-color: var(--line); }

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--paper-hi);
  letter-spacing: -.01em;
  white-space: nowrap;
  flex-shrink: 0;
}
.brand .dot { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-links a {
  position: relative;
  display: block;
  padding: 7px 13px;
  font-size: 14.5px;
  color: var(--paper-lo);
  border-radius: 4px;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 13px; right: 13px; bottom: 2px;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s var(--ease);
}
.nav-links a:hover { color: var(--paper-hi); background: var(--ink-2); }
.nav-links a.is-active { color: var(--paper-hi); }
.nav-links a.is-active::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.icon-btn {
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: transparent;
  color: var(--paper-lo);
  cursor: pointer;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.icon-btn:hover { color: var(--accent); border-color: var(--accent-line); }
.icon-btn svg { width: 16px; height: 16px; }
.icon-btn .moon { display: none; }
[data-theme="light"] .icon-btn .moon { display: block; }
[data-theme="light"] .icon-btn .sun  { display: none; }

.nav-toggle { display: none; }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 5px;
  border: 1px solid var(--line);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--paper);
  background: transparent;
  cursor: pointer;
  transition: all .22s var(--ease);
}
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.btn:hover { border-color: var(--accent-line); color: var(--paper-hi); background: var(--accent-wash); }

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
}
.btn-primary:hover {
  background: var(--accent);
  color: var(--accent-ink);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px -6px var(--accent-line);
}

.btn-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero { padding: 84px 0 76px; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 64px;
  align-items: start;
}
.hero-grid > * { min-width: 0; }

.hero-name {
  font-size: clamp(2.9rem, 6.2vw, 4.35rem);
  line-height: 1.02;
  letter-spacing: -.025em;
  font-weight: 500;
  margin-bottom: 16px;
}

.hero-role {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--paper-lo);
  margin-bottom: 28px;
  padding-left: 15px;
  border-left: 2px solid var(--accent);
  line-height: 1.75;
}
.hero-role strong { color: var(--paper); font-weight: 500; }

.hero-lede {
  font-size: 18.5px;
  line-height: 1.65;
  color: var(--paper);
  max-width: 34em;
  margin-bottom: 18px;
}

.hero-aside {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--paper-lo);
  max-width: 34em;
}

/* --------------------------------------------------------------------------
   7. Terminal card (kept — the one playful object on the page)
   -------------------------------------------------------------------------- */
.terminal {
  max-width: 100%;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  font-family: var(--mono);
  font-size: 12.8px;
  line-height: 1.75;
  box-shadow: 0 20px 50px -28px rgba(0,0,0,.75);
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--ink-3);
  border-bottom: 1px solid var(--line);
}
.terminal-bar i {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--line);
  display: block;
}
.terminal-bar i:first-child { background: color-mix(in srgb, var(--accent) 65%, var(--line)); }
.terminal-bar span {
  margin-left: 6px;
  font-size: 11.5px;
  color: var(--paper-lo);
  letter-spacing: .02em;
}

.terminal-body { padding: 18px 20px 22px; overflow-x: auto; }
.terminal-body > div { white-space: pre; }
.terminal-body .ps  { color: var(--accent); }
.terminal-body .cmd { color: var(--paper-hi); }
.terminal-body .out { color: var(--paper-lo); }
.terminal-body .key { color: var(--term-key); }
.terminal-body .str { color: var(--term-str); }
.terminal-body .com { color: var(--term-com); font-style: italic; }
.terminal-body .sp  { height: 12px; }

.caret {
  display: inline-block;
  width: 7px; height: 14px;
  background: var(--accent);
  vertical-align: -2px;
  animation: blink 1.15s steps(2, start) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* --------------------------------------------------------------------------
   8. Stat strip
   -------------------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 60px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  overflow: hidden;
}
.stat {
  background: var(--ink);
  padding: 22px 24px;
  min-height: 122px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.stat b {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--paper-hi);
  letter-spacing: -.02em;
}
.stat b.sm { font-size: 1.28rem; letter-spacing: -.005em; white-space: nowrap; }
.stat span {
  display: block;
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--paper-lo);
}

/* --------------------------------------------------------------------------
   9. Research rows
   -------------------------------------------------------------------------- */
.work {
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
  min-width: 0;
  gap: 44px;
  padding: 42px 0;
  border-top: 1px solid var(--line-soft);
  align-items: start;
}
.work:last-of-type { border-bottom: 1px solid var(--line-soft); }

/* the illustration sits in a framed plate so its own light ground reads
   as a deliberate figure rather than a stray rectangle on the page */
.work-thumb {
  position: relative;
  aspect-ratio: 1400 / 870;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink-3);
}
.work-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* settle the figures into the page; hovering restores full colour */
  filter: var(--fig-filter, saturate(.94));
  transition: transform .6s var(--ease), filter .4s var(--ease);
}
[data-theme="dark"] .work-thumb { --fig-filter: saturate(.88) brightness(.86); }
.work:hover .work-thumb img { transform: scale(1.035); filter: none; }

/* hairline inset keeps the figure from bleeding into the page edge */
.work-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.05);
  pointer-events: none;
}

.work-body { min-width: 0; }

.work-meta {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 10px;
}
.work-venue {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--accent);
}
.work-when {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--paper-lo);
}
.work-when::before { content: "· "; }

.work h3 {
  font-size: 1.34rem;
  line-height: 1.3;
  margin-bottom: 10px;
}
.work p {
  color: var(--paper-lo);
  font-size: 16px;
  line-height: 1.62;
  max-width: 62ch;
  margin-bottom: 18px;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 16px;
}
.metrics li {
  padding: 0 20px;
  border-left: 1px solid var(--line);
}
.metrics li:first-child { padding-left: 0; border-left: 0; }
.metrics b {
  display: block;
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -.01em;
}
.metrics span {
  display: block;
  font-size: 11.5px;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--paper-lo);
  margin-top: 2px;
}

.work-links { display: flex; flex-wrap: wrap; gap: 18px; }
.work-links a {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--paper-lo);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.work-links a:hover { color: var(--accent); border-bottom-color: var(--accent-line); }
.work-links svg { width: 12px; height: 12px; }

.work-earlier {
  margin-top: 34px;
  padding: 22px 26px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--ink-2);
}
.work-earlier h4 {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--paper-lo);
  margin-bottom: 12px;
}
.work-earlier p { font-size: 15px; color: var(--paper-lo); margin: 0; }
.work-earlier a { color: var(--paper); border-bottom: 1px solid var(--line); }
.work-earlier a:hover { color: var(--accent); border-bottom-color: var(--accent-line); }

/* --------------------------------------------------------------------------
   10. Publications
   -------------------------------------------------------------------------- */
.pubs { border-top: 1px solid var(--line-soft); }

.pub {
  display: grid;
  grid-template-columns: 152px minmax(0, 1fr);
  gap: 36px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: baseline;
  transition: background .2s var(--ease);
}

.pub-venue {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--accent);
  letter-spacing: .04em;
}

.pub-title {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--paper-hi);
  margin-bottom: 5px;
}

.pub-authors {
  font-size: 14px;
  color: var(--paper-lo);
}
.pub-authors .self { color: var(--paper); font-weight: 500; }

.pub-links { margin-top: 8px; display: flex; gap: 16px; }
.pub-links a {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--paper-lo);
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.pub-links a:hover { color: var(--accent); border-bottom-color: var(--accent-line); }

/* --------------------------------------------------------------------------
   11. Experience / education timeline
   -------------------------------------------------------------------------- */
.cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
}

.col-title {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px;
}

.entry { padding: 22px 0; border-bottom: 1px solid var(--line-soft); }
.entry:last-child { border-bottom: 0; }

.entry-when {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .06em;
  color: var(--paper-lo);
  display: block;
  margin-bottom: 6px;
}
.entry h4 {
  font-size: 1.1rem;
  line-height: 1.35;
  margin-bottom: 3px;
}
.entry .org {
  display: block;
  font-size: 13.5px;
  color: var(--paper-lo);
  margin-bottom: 9px;
}
.entry p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--paper-lo);
  margin: 0;
}

/* the preceding .entry already draws the divider — no second rule here */
.service {
  margin-top: 26px;
  padding-top: 0;
}
.service p { font-size: 15px; color: var(--paper-lo); margin: 0; }
.service .v { color: var(--paper); font-family: var(--mono); font-size: 13.5px; }

/* --------------------------------------------------------------------------
   12. Skills
   -------------------------------------------------------------------------- */
.skills {
  display: block;
  max-width: 900px;
}
.skill {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 24px;
  min-width: 0;
  padding: 20px 0;
  border-top: 1px solid var(--line-soft);
  align-items: baseline;
}
.skill dt {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--paper-lo);
}
.skill dd {
  margin: 0;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  row-gap: 4px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--paper);
}
/* each term is atomic — it never breaks mid-word, only between terms */
.skill dd span { white-space: nowrap; }
.skill dd span:not(:last-child)::after {
  content: "·";
  color: var(--line);
  margin: 0 11px;
}
.skill dd .on { font-weight: 500; color: var(--paper-hi); }

/* --------------------------------------------------------------------------
   13. Contact
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 64px;
  align-items: start;
}

.contact-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15.5px;
}
.contact-list li:first-child { border-top: 1px solid var(--line-soft); }
.contact-list svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.contact-list a { color: var(--paper); border-bottom: 1px solid transparent; transition: color .2s var(--ease), border-color .2s var(--ease); }
.contact-list a:hover { color: var(--accent); border-bottom-color: var(--accent-line); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }

.field {
  width: 100%;
  padding: 12px 14px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--paper-hi);
  font-family: var(--sans);
  font-size: 15px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.field::placeholder { color: var(--paper-lo); }
.field:focus { outline: none; border-color: var(--accent-line); background: var(--ink-3); }
textarea.field { resize: vertical; min-height: 130px; }

/* --------------------------------------------------------------------------
   14. Footer
   -------------------------------------------------------------------------- */
.footer {
  border-top: 1px solid var(--line-soft);
  padding: 34px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--paper-lo);
}
.footer a { color: var(--paper-lo); border-bottom: 1px solid var(--line); }
.footer a:hover { color: var(--accent); border-bottom-color: var(--accent-line); }
.footer-social { display: flex; gap: 16px; }
.footer-social a { border: 0; display: inline-flex; }
.footer-social svg { width: 17px; height: 17px; }

/* --------------------------------------------------------------------------
   15. Reveal on scroll
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   16. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .cols, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  
  .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .wrap { padding: 0 20px; }
  .section { padding: 68px 0; }
  .hero { padding: 56px 0 52px; }

  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink);
    border-bottom: 1px solid var(--line);
    padding: 8px 20px 16px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; font-size: 16px; border-bottom: 1px solid var(--line-soft); border-radius: 0; }
  .nav-links a::after { left: 0; right: auto; width: 22px; bottom: 6px; }
  .nav-links a:hover { background: transparent; }

  .terminal { font-size: 11.6px; }
  .terminal-body { padding: 16px 16px 18px; }
  .hero-role { font-size: 12px; }

  .pub  { grid-template-columns: 1fr; gap: 10px; }
  .work { grid-template-columns: 1fr; gap: 22px; padding: 30px 0; }
  .pub-venue { font-size: 11.5px; }

  .skill { grid-template-columns: 1fr; gap: 6px; }
  .form-grid { grid-template-columns: 1fr; }

  /* metrics wrap on narrow screens, so drop the dividers rather than
     leave one stranded at the start of a wrapped row */
  .metrics { gap: 16px 30px; }
  .metrics li { padding: 0; border-left: 0; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .nav, .footer-social, .contact-form, .reveal { display: revert; }
  .nav { position: static; }
  body { background: #fff; color: #000; }
}
