/* The Green Divide — design system (ESPM 50AC) */

:root {
  --black: #0f0e0c;
  --offwhite: #f4f0e6;
  --red: #c8321a;
  --green: #2d5a27;
  --yellow: #e8c840;

  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-quote: "DM Serif Display", Georgia, serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --font-body: Barlow, system-ui, sans-serif;

  --border-thick: 4px solid var(--black);
  --border-thin: 2px solid var(--black);
  --nav-height: 3.5rem;
  --max-content: 72rem;
  --ticker-speed: 38s;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--black);
  background-color: var(--offwhite);
}

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

a {
  color: var(--red);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--green);
}

code {
  font-family: var(--font-mono);
  font-size: 0.88em;
  padding: 0.12em 0.35em;
  border: var(--border-thin);
  background: color-mix(in srgb, var(--yellow) 18%, var(--offwhite));
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

/* ——— Sticky nav ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: var(--border-thick);
}

.nav-inner {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--nav-height);
  flex-wrap: wrap;
}

.site-title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin: 0;
}

.site-title a {
  color: var(--offwhite);
  text-decoration: none;
}

.site-title a:hover {
  color: var(--yellow);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.75rem;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
}

.site-nav a {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--offwhite);
  text-decoration: none;
  padding: 0.35rem 0.5rem;
  border: 2px solid transparent;
}

.site-nav a:hover {
  color: var(--yellow);
  border-color: var(--yellow);
}

.site-nav a[aria-current="page"] {
  color: var(--black);
  background: var(--yellow);
  border-color: var(--black);
}

.nav-cluster {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem 0.75rem;
}

.btn-live {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--black);
  background: var(--yellow);
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border: var(--border-thick);
  white-space: nowrap;
  line-height: 1.2;
}

.btn-live:hover {
  background: var(--offwhite);
  color: var(--black);
}

.btn-live:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

.nav-mirror {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--offwhite);
  text-decoration: none;
  align-self: center;
  padding: 0.25rem 0.35rem;
  border-bottom: 1px solid transparent;
  opacity: 0.88;
}

.nav-mirror:hover {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}

/* ——— Ticker ——— */
.ticker-wrap {
  background: var(--red);
  color: var(--offwhite);
  border-bottom: var(--border-thick);
  overflow: hidden;
}

.ticker {
  display: flex;
  width: max-content;
  animation: ticker-scroll var(--ticker-speed) linear infinite;
}

.ticker:hover {
  animation-play-state: paused;
}

.ticker__group {
  display: flex;
  flex-shrink: 0;
  gap: 3rem;
  padding: 0.65rem 0;
  padding-left: 3rem;
}

.ticker__item {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.ticker__item::before {
  content: "✦ ";
  color: var(--yellow);
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ——— Layout ——— */
.wrap {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 1rem;
}

.page-main {
  padding-bottom: 4rem;
}

/* ——— Hero ——— */
.hero {
  border-bottom: var(--border-thick);
  background: var(--offwhite);
}

.hero__inner {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 2.5rem 1rem 2rem;
}

.hero__kicker {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--green);
  margin: 0 0 0.75rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 8vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin: 0 0 1rem;
  max-width: 20ch;
}

.hero__deck {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  max-width: 38ch;
  margin: 0 0 1.5rem;
  border-left: 6px solid var(--red);
  padding-left: 1rem;
}

.hero__meta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--black);
  opacity: 0.85;
}

/* Hero + image split (homepage) */
.hero-layout {
  max-width: var(--max-content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
}

.hero-layout .hero__inner {
  max-width: none;
  margin: 0;
}

@media (min-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr minmax(300px, 42%);
    align-items: stretch;
    min-height: min(72vh, 560px);
  }
}

/* Zine-style figures (local photos, thick border) */
.figure-zine {
  margin: 0;
  padding: 0;
  border: none;
  background: var(--black);
  display: flex;
  flex-direction: column;
  min-height: 12rem;
}

.figure-zine img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  flex: 1 1 auto;
  min-height: 14rem;
}

@media (min-width: 900px) {
  .figure-zine--hero {
    border-left: var(--border-thick);
    min-height: 100%;
  }

  .figure-zine--hero img {
    min-height: 20rem;
    flex: 1;
  }
}

.figure-zine figcaption {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.65rem 0.9rem 0.75rem;
  background: var(--yellow);
  color: var(--black);
  border-top: var(--border-thick);
}

.figure-zine--inline {
  background: var(--offwhite);
  border: var(--border-thick);
  margin: 2rem 0;
}

.figure-zine--inline img {
  min-height: 0;
  max-height: 22rem;
  object-fit: cover;
}

.figure-zine--inline figcaption {
  text-transform: none;
  letter-spacing: 0.04em;
  background: var(--offwhite);
  border-top: var(--border-thin);
  font-size: 0.62rem;
  padding: 0.65rem 1rem;
}

.figure-zine--thumb {
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
}

.figure-zine--thumb img {
  max-height: 16rem;
  object-fit: contain;
  background: var(--offwhite);
}

.figure-zine--tile img {
  min-height: 0;
  max-height: 220px;
  width: 100%;
  object-fit: cover;
}

.figure-zine--tile figcaption {
  font-size: 0.52rem;
  letter-spacing: 0.05em;
  line-height: 1.35;
  padding: 0.5rem 0.65rem 0.6rem;
}

/* Multi-image grids (homepage gallery, dense pages) */
.home-gallery {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 1rem 2rem;
  border-bottom: var(--border-thick);
}

.gallery-heading {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.1rem);
  letter-spacing: 0.04em;
  margin: 0;
  padding: 1.75rem 0 0.25rem;
}

.gallery-lede {
  font-size: 0.95rem;
  max-width: 52ch;
  margin: 0 0 1rem;
  font-weight: 500;
}

.photo-matrix {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  background: var(--black);
  border: var(--border-thick);
  padding: 4px;
  margin-top: 0.5rem;
}

@media (min-width: 520px) {
  .photo-matrix {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .photo-matrix {
    grid-template-columns: repeat(3, 1fr);
  }
}

.photo-matrix .figure-zine {
  margin: 0;
  min-height: 0;
}

.photo-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 2rem 0;
}

@media (min-width: 700px) {
  .photo-strip--2 {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.article-visual-band {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 1rem 1.25rem;
  border-bottom: var(--border-thick);
}

.article-visual-band .photo-strip {
  margin: 0;
}

.resources-gallery {
  margin-top: 2rem;
}

/* ——— Homepage grid / cards ——— */
.home-grid {
  display: grid;
  gap: 0;
  border: var(--border-thick);
  border-top: none;
  max-width: var(--max-content);
  margin: 0 auto;
}

.home-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.75rem 1.25rem;
  border-bottom: var(--border-thick);
  background: var(--offwhite);
}

@media (min-width: 700px) {
  .home-card {
    grid-template-columns: minmax(8rem, 12rem) 1fr;
    align-items: start;
  }
}

.home-card:last-child {
  border-bottom: none;
}

.home-card:nth-child(odd) {
  background: color-mix(in srgb, var(--yellow) 18%, var(--offwhite));
}

.home-card__label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green);
  margin: 0;
  padding: 0.35rem 0.5rem;
  border: var(--border-thin);
  display: inline-block;
  width: fit-content;
}

.home-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  letter-spacing: 0.03em;
  margin: 0 0 0.5rem;
  line-height: 1;
}

.home-card p {
  margin: 0 0 1rem;
  max-width: 55ch;
}

.home-card a.standalone {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--black);
  text-decoration: none;
  border: var(--border-thin);
  padding: 0.45rem 0.75rem;
  display: inline-block;
  background: var(--offwhite);
}

.home-card a.standalone:hover {
  background: var(--red);
  color: var(--offwhite);
  border-color: var(--black);
}

/* ——— Article / longform (neighborhoods, etc.) ——— */
.article-header {
  padding: 2rem 1rem 1.5rem;
  border-bottom: var(--border-thick);
  max-width: var(--max-content);
  margin: 0 auto;
}

.article-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  line-height: 0.98;
  letter-spacing: 0.02em;
  margin: 0 0 0.75rem;
  max-width: 18ch;
}

.article-header .lede {
  font-size: 1.15rem;
  font-weight: 500;
  max-width: 60ch;
  margin: 0;
}

.article-body {
  max-width: 48rem;
  margin: 0 auto;
  padding: 2rem 1rem 3rem;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  letter-spacing: 0.03em;
  margin: 2.5rem 0 0.75rem;
  line-height: 1.05;
  border-left: 6px solid var(--green);
  padding-left: 0.75rem;
}

.article-body h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 2rem 0 0.5rem;
}

.article-body p {
  margin: 0 0 1rem;
}

.pull-quote {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  line-height: 1.35;
  margin: 2rem 0;
  padding: 1.25rem 1.25rem 1.25rem 1.5rem;
  border: var(--border-thick);
  background: var(--offwhite);
  position: relative;
}

.pull-quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: var(--yellow);
}

.callout {
  border: var(--border-thick);
  padding: 1.25rem 1.25rem 1rem;
  margin: 2rem 0;
  background: color-mix(in srgb, var(--green) 8%, var(--offwhite));
}

.callout__tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  margin: 0 0 0.5rem;
}

.callout p:last-child {
  margin-bottom: 0;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.5rem;
  border: var(--border-thin);
  background: var(--offwhite);
}

.timeline {
  margin: 2rem 0;
  padding: 0;
  list-style: none;
  border: var(--border-thick);
}

.timeline li {
  padding: 1rem 1.25rem;
  border-bottom: var(--border-thin);
}

.timeline li:last-child {
  border-bottom: none;
}

.timeline strong {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  display: block;
  margin-bottom: 0.35rem;
}

/* ——— Placeholder / scaffold pages ——— */
.page-placeholder {
  max-width: 42rem;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.page-placeholder h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0 0 1rem;
  line-height: 1;
}

.page-placeholder .box {
  border: var(--border-thick);
  padding: 1.5rem;
  margin-top: 1.5rem;
  background: color-mix(in srgb, var(--yellow) 12%, var(--offwhite));
}

.page-placeholder ul {
  margin: 0;
  padding-left: 1.25rem;
}

.page-placeholder li {
  margin-bottom: 0.5rem;
}

/* ——— Footer ——— */
.site-footer {
  border-top: var(--border-thick);
  background: var(--black);
  color: var(--offwhite);
  padding: 2rem 1rem;
  margin-top: auto;
}

.site-footer a {
  color: var(--yellow);
}

.site-footer a:hover {
  color: var(--offwhite);
}

.footer-inner {
  max-width: var(--max-content);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.footer-mirror {
  grid-column: 1 / -1;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.5;
  color: color-mix(in srgb, var(--offwhite) 72%, var(--black));
  border-top: 1px solid color-mix(in srgb, var(--offwhite) 22%, transparent);
  padding-top: 1.1rem;
  margin: 0;
}

.footer-mirror strong {
  color: var(--offwhite);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.02em;
}

.footer-mirror a {
  color: var(--yellow);
  font-weight: 600;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  margin: 0 0 0.5rem;
}

.footer-author {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  color: var(--yellow);
}

.footer-contact {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  line-height: 1.55;
  letter-spacing: 0.04em;
  margin: 0 0 0.5rem;
}

.footer-contact a {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.footer-contact .footer-sid {
  display: block;
  margin-top: 0.4rem;
  color: var(--offwhite);
  opacity: 0.88;
}

.footer-note {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.75;
  margin: 0;
  max-width: 36ch;
}

.footer-credit {
  font-size: 0.9rem;
  margin: 0;
  max-width: 42ch;
}

body {
  display: flex;
  flex-direction: column;
}

.page-shell {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Tables (rent / data page) */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.5rem 0;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  border: var(--border-thick);
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.data-table th,
.data-table td {
  border: var(--border-thin);
  padding: 0.5rem 0.65rem;
  text-align: left;
  vertical-align: top;
}

.data-table th {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: color-mix(in srgb, var(--yellow) 22%, var(--offwhite));
}

.data-table caption {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: left;
  margin-bottom: 0.5rem;
  max-width: 50ch;
}

/* Bibliography */
.bib-list {
  margin: 0 0 1.25rem;
  padding-left: 1.35rem;
}

.bib-list li {
  margin-bottom: 0.65rem;
}

.bib-note {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-top: 0.35rem;
}

.home-intro {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 2rem 1rem 0;
  border-bottom: var(--border-thick);
}

.home-intro p {
  max-width: 62ch;
  margin: 0 0 1rem;
}

.home-intro p:last-child {
  margin-bottom: 2rem;
}

/* ——— Motion (disable via .reduce-motion on <html>) ——— */
@keyframes mv-hero-rise {
  from {
    opacity: 0;
    transform: translateY(1.1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mv-ticker-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.72;
  }
}

@keyframes mv-pull-bar {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

@keyframes mv-header-drop {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mv-shake {
  0%,
  100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-3px);
  }
  40% {
    transform: translateX(3px);
  }
  60% {
    transform: translateX(-2px);
  }
  80% {
    transform: translateX(2px);
  }
}

html:not(.reduce-motion) .site-header {
  animation: mv-header-drop 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

html:not(.reduce-motion) .hero__kicker {
  animation: mv-hero-rise 0.55s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  animation-delay: 0.06s;
}

html:not(.reduce-motion) .hero__title {
  animation: mv-hero-rise 0.62s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  animation-delay: 0.12s;
}

html:not(.reduce-motion) .hero__deck {
  animation: mv-hero-rise 0.65s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  animation-delay: 0.2s;
}

html:not(.reduce-motion) .hero__meta {
  animation: mv-hero-rise 0.55s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  animation-delay: 0.32s;
}

html:not(.reduce-motion) .figure-zine--hero img {
  animation: mv-hero-rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  animation-delay: 0.18s;
}

html:not(.reduce-motion) .figure-zine--hero figcaption {
  animation: mv-hero-rise 0.5s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  animation-delay: 0.45s;
}

html:not(.reduce-motion) .ticker__item:nth-child(1) {
  animation: mv-ticker-pulse 2.8s ease-in-out infinite;
  animation-delay: 0s;
}
html:not(.reduce-motion) .ticker__item:nth-child(2) {
  animation: mv-ticker-pulse 2.8s ease-in-out infinite;
  animation-delay: 0.35s;
}
html:not(.reduce-motion) .ticker__item:nth-child(3) {
  animation: mv-ticker-pulse 2.8s ease-in-out infinite;
  animation-delay: 0.7s;
}
html:not(.reduce-motion) .ticker__item:nth-child(4) {
  animation: mv-ticker-pulse 2.8s ease-in-out infinite;
  animation-delay: 1.05s;
}
html:not(.reduce-motion) .ticker__item:nth-child(5) {
  animation: mv-ticker-pulse 2.8s ease-in-out infinite;
  animation-delay: 1.4s;
}

.js-mv {
  opacity: 0;
  transform: translateY(1.35rem);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.js-mv.is-inview {
  opacity: 1;
  transform: translateY(0);
}

html:not(.reduce-motion) .home-card.js-mv:nth-child(1) {
  transition-delay: 0s;
}
html:not(.reduce-motion) .home-card.js-mv:nth-child(2) {
  transition-delay: 0.07s;
}
html:not(.reduce-motion) .home-card.js-mv:nth-child(3) {
  transition-delay: 0.14s;
}
html:not(.reduce-motion) .home-card.js-mv:nth-child(4) {
  transition-delay: 0.21s;
}
html:not(.reduce-motion) .home-card.js-mv:nth-child(5) {
  transition-delay: 0.28s;
}
html:not(.reduce-motion) .home-card.js-mv:nth-child(6) {
  transition-delay: 0.35s;
}

html:not(.reduce-motion) .photo-matrix > .figure-zine.js-mv:nth-child(1) {
  transition-delay: 0s;
}
html:not(.reduce-motion) .photo-matrix > .figure-zine.js-mv:nth-child(2) {
  transition-delay: 0.06s;
}
html:not(.reduce-motion) .photo-matrix > .figure-zine.js-mv:nth-child(3) {
  transition-delay: 0.12s;
}
html:not(.reduce-motion) .photo-matrix > .figure-zine.js-mv:nth-child(4) {
  transition-delay: 0.18s;
}
html:not(.reduce-motion) .photo-matrix > .figure-zine.js-mv:nth-child(5) {
  transition-delay: 0.24s;
}
html:not(.reduce-motion) .photo-matrix > .figure-zine.js-mv:nth-child(6) {
  transition-delay: 0.3s;
}

.pull-quote.js-mv:not(.is-inview)::before {
  transform: scaleY(0);
  transform-origin: top center;
}

.pull-quote.js-mv.is-inview::before {
  animation: mv-pull-bar 0.55s cubic-bezier(0.34, 1.2, 0.64, 1) 0.15s forwards;
}

.figure-zine img {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

html:not(.reduce-motion) .figure-zine:hover img {
  transform: scale(1.03);
}

html:not(.reduce-motion) .figure-zine--hero:hover img {
  transform: scale(1.02);
}

.home-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

html:not(.reduce-motion) .home-card:hover {
  transform: translateY(-3px);
  box-shadow: 6px 6px 0 var(--black);
}

a.standalone {
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

html:not(.reduce-motion) a.standalone:hover {
  transform: translate(2px, -2px);
}

.site-nav a {
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.site-title a {
  transition: color 0.2s ease, letter-spacing 0.35s ease;
}

html:not(.reduce-motion) .site-title a:hover {
  letter-spacing: 0.08em;
}

.callout {
  transition: transform 0.25s ease;
}

html:not(.reduce-motion) .callout:hover {
  transform: skewX(-0.5deg);
}

.photo-matrix .figure-zine {
  transition: box-shadow 0.35s ease;
}

html:not(.reduce-motion) .photo-matrix .figure-zine:hover {
  box-shadow: 0 0 0 3px var(--yellow);
  z-index: 1;
}

.data-table tbody tr {
  transition: background 0.25s ease;
}

.data-table tbody tr:hover {
  background: color-mix(in srgb, var(--yellow) 14%, var(--offwhite));
}

html:not(.reduce-motion) .site-footer a:hover {
  text-decoration-thickness: 3px;
}

.reduce-motion .js-mv,
.reduce-motion .js-mv.is-inview {
  opacity: 1;
  transform: none;
  transition: none;
}

.reduce-motion .site-header,
.reduce-motion .hero__kicker,
.reduce-motion .hero__title,
.reduce-motion .hero__deck,
.reduce-motion .hero__meta,
.reduce-motion .figure-zine--hero img,
.reduce-motion .figure-zine--hero figcaption,
.reduce-motion .ticker__item {
  animation: none !important;
}

.reduce-motion .pull-quote.js-mv::before {
  transform: scaleY(1) !important;
  animation: none !important;
}

.reduce-motion .figure-zine:hover img {
  transform: none;
}

.reduce-motion .home-card:hover {
  transform: none;
  box-shadow: none;
}

.reduce-motion a.standalone:hover {
  transform: none;
}

.reduce-motion .callout:hover {
  transform: none;
}

.reduce-motion .photo-matrix .figure-zine:hover {
  box-shadow: none;
}
