/* Muhammad Awais — Source Sans 3, forest green on warm off-white. */

:root {
  --bg: #f7f8f4;
  --ink: #1e2521;
  --accent: #214b37;
  --surface: #e9f0e8;
  --muted: #4d5a54;
  --line: rgba(30, 37, 33, 0.12);
  --header-h: 68px;
  --max: 1160px;
  --gutter: clamp(18px, 5vw, 40px);
  --sans: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

html,
body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
}

html {
  background-color: var(--bg);
}

body {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  background: transparent;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(30, 40, 34, 0.09) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(30, 40, 34, 0.09) 1px, transparent 1px);
  background-size: 72px 72px;
  background-position: top left;
}

@media (min-width: 1024px) {
  body::before {
    background-size: 190px 190px;
  }
}

body.nav-open { overflow: hidden; }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a { color: inherit; text-underline-offset: 3px; }

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

button { cursor: pointer; }

ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, p { margin: 0; }

h1, h2, h3 {
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  overflow-wrap: break-word;
  max-width: 100%;
}

p, li { overflow-wrap: break-word; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  background: var(--accent);
  color: var(--bg);
  padding: 8px 14px;
  z-index: 100;
  font-weight: 600;
  text-decoration: none;
}
.skip:focus { top: 12px; }

.wrap {
  width: min(var(--max), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
  min-width: 0;
}

.kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.muted { color: var(--muted); }

.section {
  padding: clamp(56px, 9vw, 96px) 0;
  scroll-margin-top: calc(var(--header-h) + 8px);
}

.section-head {
  max-width: min(38rem, 100%);
  margin-bottom: 36px;
}

.section-head h2 {
  font-size: clamp(1.4rem, 6vw, 2.05rem);
  margin-top: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.25s var(--ease);
}
.btn:hover { background: #1a3c2c; border-color: #1a3c2c; transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--accent);
}
.btn-ghost:hover {
  background: var(--accent);
  color: var(--bg);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  animation: header-in 0.6s var(--ease) both;
  transition: box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 10px 28px rgba(30, 37, 33, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(var(--max), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}
.logo-photo {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 8%;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease);
  box-shadow: 0 0 0 0 rgba(33, 75, 55, 0.28);
  animation: ring 2.8s ease-out infinite;
}
.logo:hover .logo-photo { transform: scale(1.06); }
.logo-mark {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.logo-name {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav a {
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--muted);
  position: relative;
}
.nav a:hover,
.nav a.is-active { color: var(--ink); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav a:nth-child(1) { animation: rise 0.55s var(--ease) 0.05s both; }
.nav a:nth-child(2) { animation: rise 0.55s var(--ease) 0.12s both; }
.nav a:nth-child(3) { animation: rise 0.55s var(--ease) 0.18s both; }
.nav a:nth-child(4) { animation: rise 0.55s var(--ease) 0.24s both; }
.nav a:nth-child(5) { animation: rise 0.55s var(--ease) 0.3s both; }
.nav a:hover::after,
.nav a.is-active::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  position: relative;
  flex-shrink: 0;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  left: 12px;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  content: "";
}
.nav-toggle span { top: 21px; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* Hero */
.hero {
  padding: clamp(36px, 6vw, 72px) 0 clamp(48px, 8vw, 88px);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
  align-items: center;
  column-gap: clamp(12px, 1.8vw, 22px);
}

.hero-copy {
  min-width: 0;
}

.hero-copy > *:not(h1) { animation: rise 0.7s var(--ease) both; }
.hero-copy > *:nth-child(1) { animation: name-in 0.85s var(--ease) 0.04s both; }
.hero-copy > *:nth-child(2) { animation: role-in 0.8s var(--ease) 0.14s both; }
.hero-copy > *:nth-child(4) { animation-delay: 0.82s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.96s; }

.hero-name {
  font-size: 1.05rem;
  font-weight: 700;
}

.hero-role {
  margin-top: 6px;
  color: var(--accent);
  font-weight: 600;
  display: inline-block;
  position: relative;
}
.hero-role::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform-origin: left;
  animation: line-grow 0.6s var(--ease) 0.55s both;
}

.hero h1 {
  font-size: clamp(2.05rem, 4.4vw, 3.15rem);
  max-width: none;
  margin-top: 18px;
}
.hero-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.04em;
  margin-right: 0.28em;
}
.hero-word:last-child { margin-right: 0; }
.hero-word > span {
  display: inline-block;
  will-change: transform;
  animation: word-up 0.78s var(--ease) calc(var(--i) * 0.07s + 0.18s) both;
}
.hero-word.is-accent > span { color: var(--accent); }
.hero h1::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: var(--accent);
  margin-top: 16px;
  transform-origin: left;
  animation: line-grow 0.7s var(--ease) 0.92s both;
}

.hero-photo {
  margin: 0;
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4 / 5;
  animation: rise 1s var(--ease) 0.12s both;
}
.hero-blob {
  position: absolute;
  z-index: 0;
  width: 78%;
  height: 72%;
  right: -10%;
  bottom: -6%;
  background: var(--accent);
  opacity: 0.14;
  border-radius: 50%;
  animation: blob 8s ease-in-out infinite;
}
.hero-photo-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  overflow: hidden;
  border-radius: 160px 160px 28px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  animation: hero-float 5.5s ease-in-out 1.15s infinite;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 6%;
  transition: transform 0.7s var(--ease);
  animation: photo-zoom 9s ease-in-out 1s infinite alternate;
}
.hero-photo:hover img {
  animation: none;
  transform: scale(1.04);
}

.lede {
  margin-top: 20px;
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  color: var(--muted);
  max-width: min(46ch, 100%);
  line-height: 1.55;
}

/* Featured work */
.featured {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.featured-media {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
}
.featured-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.55s var(--ease);
}
.featured:hover img { transform: scale(1.03); }

.featured-copy h3 {
  font-size: clamp(1.45rem, 2.6vw, 1.85rem);
  margin: 8px 0 12px;
}

.featured-copy p { color: var(--muted); }

.featured-result {
  margin-top: 16px;
  padding: 14px 16px;
  background: var(--surface);
  border-left: 3px solid var(--accent);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.45;
}
.featured-result span {
  display: block;
  margin-top: 4px;
  font-weight: 400;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Compact projects */
.project-list {
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.project-row {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) auto;
  gap: 20px 24px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 0.3s var(--ease);
}
.project-row:hover { transform: translateX(4px); }

.project-row figure {
  margin: 0;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--surface);
}
.project-row img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}

.project-row h3 {
  font-size: 1.2rem;
  margin: 4px 0 8px;
}

.project-row > div p { color: var(--muted); font-size: 1rem; }

.project-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}
.project-links a {
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
}
.project-links a:hover { text-decoration: underline; }
.project-links:empty { display: none; }

.project-row details {
  margin-top: 10px;
}
.project-row summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--accent);
  list-style: none;
}
.project-row summary::-webkit-details-marker { display: none; }
.project-row summary::after {
  content: " +";
  font-weight: 700;
}
.project-row details[open] summary::after { content: " −"; }
.project-row details ul {
  margin-top: 8px;
  list-style: disc;
  padding-left: 18px;
}
.project-row details li {
  color: var(--muted);
  margin: 4px 0;
  font-size: 0.98rem;
}

/* Services */
.services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.services article {
  background: var(--surface);
  padding: clamp(22px, 3vw, 32px);
  min-width: 0;
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.services article:nth-child(1) { transition-delay: 0ms; }
.services article:nth-child(2) { transition-delay: 50ms; }
.services article:nth-child(3) { transition-delay: 100ms; }
.services article:nth-child(4) { transition-delay: 150ms; }
.services article:nth-child(5) { transition-delay: 200ms; }
.services article:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.services h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.services p { color: var(--muted); }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.about-copy p { color: var(--muted); max-width: 54ch; }
.about-copy p + p { margin-top: 12px; }
.about-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 8%;
  border: 1px solid var(--line);
  margin-bottom: 16px;
  background: var(--surface);
}

.exp {
  margin-top: 36px;
}
.exp-item {
  display: grid;
  grid-template-columns: minmax(0, 180px) minmax(0, 1fr);
  gap: 8px 24px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.exp-item:last-child { border-bottom: 1px solid var(--line); }
.exp-meta {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}
.exp-item h3 { font-size: 1.05rem; }
.exp-item p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.98rem;
}

.skills {
  background: var(--surface);
  padding: clamp(22px, 3vw, 28px);
  border: 1px solid var(--line);
}
.skills h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.skills dt {
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 14px;
  transition: color 0.25s var(--ease);
}
.skills dt:hover { color: var(--accent); }
.skills dt:first-of-type { margin-top: 0; }
.skills dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

/* CV */
.cv-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  text-decoration: none;
  min-height: 88px;
  max-width: 36rem;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.cv-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(33, 75, 55, 0.08);
}
.cv-card strong {
  display: block;
  font-size: 1.15rem;
}
.cv-card small { color: var(--muted); }

/* Contact */
.contact { border-top: 1px solid var(--line); }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.email-xl {
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  font-weight: 700;
  text-decoration: none;
  display: block;
  margin: 14px 0 8px;
  overflow-wrap: anywhere;
  color: var(--accent);
  border-bottom: none;
}
.email-xl:hover { text-decoration: underline; }
.phone-xl {
  display: block;
  font-weight: 600;
  text-decoration: none;
  margin: 0 0 18px;
}
.phone-xl:hover { text-decoration: underline; }
.contact .btn-ghost { margin-top: 6px; }

form {
  display: grid;
  gap: 12px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
}
label {
  display: grid;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}
input, textarea, select {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 11px 12px;
  width: 100%;
  min-width: 0;
}
textarea { min-height: 110px; resize: vertical; }
form .btn { margin-top: 4px; justify-self: start; }
.form-note { font-size: 0.92rem; color: var(--muted); }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 20px 0 28px;
  font-size: 0.92rem;
  color: var(--muted);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.site-footer a { text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

/* Case study */
.case-bar {
  padding: 16px 0 0;
  font-weight: 600;
}
.case-bar a {
  color: var(--accent);
  text-decoration: none;
}
.case-bar a:hover { text-decoration: underline; }

.case-hero { padding: 28px 0 0; }
.case-hero-grid > div:first-child { animation: rise 0.85s var(--ease) both; }
.case-hero h1 {
  font-size: clamp(2.2rem, 5.4vw, 3.4rem);
  margin: 10px 0 16px;
  max-width: 12ch;
}
.case-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 32px;
  align-items: end;
}
.case-cover {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  animation: rise 1s var(--ease) 0.1s both;
}
.case-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.case-caption {
  margin-top: 8px;
  font-size: 0.88rem;
  color: var(--muted);
}

.case-stat {
  margin: 36px 0;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.case-stat strong {
  display: block;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.prose { max-width: 66ch; }
.prose h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.75rem);
  margin: 36px 0 10px;
}
.prose p, .prose li { color: var(--muted); font-size: 1.05rem; }
.prose ul { margin: 10px 0 10px 18px; list-style: disc; }
.prose li { margin: 6px 0; }

.workstreams {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 20px;
}
.workstreams article {
  background: var(--bg);
  padding: 20px;
}
.workstreams h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.workstreams p { color: var(--muted); font-size: 0.98rem; }

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@keyframes header-in {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: none; }
}
@keyframes ring {
  0% { box-shadow: 0 0 0 0 rgba(33, 75, 55, 0.28); }
  70% { box-shadow: 0 0 0 10px rgba(33, 75, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(33, 75, 55, 0); }
}
@keyframes photo-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.045); }
}
@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-14px, 12px) scale(1.08); }
}
@keyframes line-grow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes word-up {
  from { opacity: 0; transform: translateY(115%) rotate(4deg); }
  to { opacity: 1; transform: translateY(0) rotate(0deg); }
}
@keyframes name-in {
  from { opacity: 0; transform: translateY(12px); letter-spacing: 0.12em; }
  to { opacity: 1; transform: none; letter-spacing: 0; }
}
@keyframes role-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  animation: reveal-failsafe 0.5s var(--ease) 1.2s forwards;
}
.js .reveal.in {
  opacity: 1;
  transform: none;
  animation: none;
}
@keyframes reveal-failsafe {
  to { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .featured,
  .about-grid,
  .contact-grid,
  .case-hero-grid,
  .workstreams,
  .services,
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .project-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .project-row figure { max-width: 280px; }
  .project-links { align-items: flex-start; }
  .exp-item { grid-template-columns: 1fr; gap: 4px; }
  .nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 28px var(--gutter) 40px;
    gap: 22px;
    display: none;
    overflow: auto;
    z-index: 40;
  }
  .nav.open { display: flex; }
  .nav a { font-size: 1.2rem; }
  .nav a::after { display: none; }
  .nav-toggle { display: inline-block; }
  .btn-row .btn,
  form .btn,
  .contact .btn { width: 100%; justify-self: stretch; }
  .hero-grid { row-gap: 28px; }
  .hero h1 { max-width: 12ch; }
  .hero-photo {
    justify-self: center;
    width: min(280px, 72%);
  }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .logo-name { font-size: 0.98rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn,
  .logo-photo,
  .hero-photo img,
  .featured-media img,
  .project-row,
  .services article,
  .cv-card,
  .site-header,
  .nav a::after {
    transition: none;
  }
  .hero-copy > *,
  .hero-word > span,
  .hero-role::after,
  .hero-photo,
  .hero-photo-frame,
  .hero-blob,
  .hero h1::after,
  .site-header,
  .nav a,
  .logo-photo,
  .hero-photo img,
  .case-hero-grid > div:first-child,
  .case-cover { animation: none; }
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
  .btn:hover,
  .project-row:hover,
  .services article:hover,
  .cv-card:hover,
  .logo:hover .logo-photo,
  .hero-photo:hover img,
  .featured:hover img { transform: none; }
}
