/* ──────────────────────────────────────────────────────────────────────
   Forgd — forgd.fit website
   Light editorial palette inspired by Alo Wellness Club: cream
   background, refined serif headlines, sage + terracotta accents,
   magazine-style spacing, photography-forward.
   The iOS app stays dark — the website is a different surface,
   marketing-focused. Brand mark (gradient flame) ties them together.
   ────────────────────────────────────────────────────────────────────── */

:root {
  /* Warm cream palette */
  --bg: #f6f2ea;
  --bg-2: #efeae0;
  --bg-3: #e8e1d4;
  --paper: #fdfbf7;
  --ink: #1a1410;
  --ink-soft: rgba(26, 20, 16, 0.72);
  --ink-dim: rgba(26, 20, 16, 0.5);
  --ink-faint: rgba(26, 20, 16, 0.2);
  --line: rgba(26, 20, 16, 0.08);
  --line-2: rgba(26, 20, 16, 0.16);

  /* Brand accents — warm sage + terracotta + the iOS app's gradient
     used very sparingly (logo + a couple of spots) so the brand is
     still recognizable when you flip from app to web. */
  --sage: #6b7a5f;
  --sage-soft: #d8dccf;
  --terra: #b85d3c;
  --terra-soft: #e8c8b8;
  --indigo: #6366f1;
  --purple: #a855f7;
  --gradient: linear-gradient(135deg, #6366f1, #a855f7);

  --max: 1200px;
  --serif: 'Cormorant Garamond', ui-serif, 'Iowan Old Style', 'Apple Garamond', Garamond, 'New York', Cambria, 'Times New Roman', Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Inter', system-ui, 'Segoe UI', Roboto, sans-serif;
  color-scheme: light;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; min-height: 100%; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; }
a:hover { color: var(--terra); }

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

/* ──────────────────────────────────────────────────────────────────────
   Layout
   ────────────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}
@media (min-width: 768px) {
  .container { padding: 0 48px; }
}
.container--narrow {
  max-width: 820px;
}

/* ──────────────────────────────────────────────────────────────────────
   Header
   ────────────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 242, 234, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.005em;
  font-size: 22px;
  color: var(--ink);
}
.brand__mark {
  width: 30px; height: 30px;
  border-radius: 9px;
  background: var(--gradient);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.18);
}
.brand__mark svg { width: 17px; height: 17px; }
.nav {
  display: none;
  gap: 36px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.nav a { transition: color .15s ease; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); }
@media (min-width: 760px) {
  .nav { display: flex; }
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--paper);
  transition: background .15s ease, transform .15s ease;
}
.cta:hover {
  background: var(--terra);
  color: var(--paper);
  transform: translateY(-1px);
}

/* ──────────────────────────────────────────────────────────────────────
   Hero — split layout: editorial copy left, full-bleed photo right.
   On mobile, stack: photo first, copy below.
   ────────────────────────────────────────────────────────────────────── */
.hero {
  padding: 56px 0 80px;
}
@media (min-width: 900px) {
  .hero { padding: 80px 0 110px; }
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero__inner { grid-template-columns: 1.05fr 1fr; gap: 80px; }
}
.eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  color: var(--ink);
}
.hero h1 em {
  font-style: italic;
  color: var(--terra);
  font-weight: 400;
}
.hero p.lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 36px;
  max-width: 480px;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 32px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background .15s, transform .15s;
}
.btn-primary:hover { background: var(--terra); color: var(--paper); transform: translateY(-1px); }
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 56px;
  padding: 0 12px;
  font-size: 14.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: color .15s, border-color .15s;
}
.btn-link:hover { color: var(--ink); border-bottom-color: var(--terra); }
.app-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 56px;
  padding: 0 22px 0 18px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 600;
  transition: background .15s ease, transform .15s ease;
}
.app-store-badge:hover {
  background: #2a221c;
  color: var(--paper);
  transform: translateY(-1px);
}
.app-store-badge__icon { width: 28px; height: 28px; }
.app-store-badge__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}
.app-store-badge__small {
  font-size: 11px;
  font-weight: 500;
  color: rgba(253, 251, 247, 0.7);
  letter-spacing: 0.02em;
}
.app-store-badge__big {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-top: 1px;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero__meta-item:not(:last-child)::after {
  content: '·';
  margin-left: 8px;
  color: var(--ink-faint);
}

/* Hero image — full-bleed editorial photo with subtle Ken Burns
   drift. Falls back to a sage solid block if Unsplash 404s so the
   layout never collapses into nothing. */
.hero__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--sage);
  background-size: 115%;
  background-position: center 35%;
  background-repeat: no-repeat;
  box-shadow: 0 30px 80px -30px rgba(26, 20, 16, 0.25);
  animation: kenBurns 22s ease-in-out infinite alternate;
}
@media (min-width: 900px) {
  .hero__photo { aspect-ratio: 4 / 5.2; }
}
@keyframes kenBurns {
  from { background-size: 115%; background-position: center 30%; }
  to   { background-size: 125%; background-position: center 55%; }
}

/* ──────────────────────────────────────────────────────────────────────
   Editorial section — split copy + photo, alternating sides.
   ────────────────────────────────────────────────────────────────────── */
.editorial {
  padding: 96px 0;
}
@media (min-width: 900px) { .editorial { padding: 140px 0; } }
.editorial__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .editorial__inner { grid-template-columns: 1fr 1fr; gap: 80px; }
}
.editorial--reverse .editorial__photo { grid-column: 1; grid-row: 1; }
@media (min-width: 900px) {
  .editorial--reverse .editorial__photo { grid-column: 2; grid-row: 1; }
  .editorial--reverse .editorial__copy  { grid-column: 1; grid-row: 1; }
}
.editorial__photo {
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--sage);
  background-size: 115%;
  background-position: center 40%;
  background-repeat: no-repeat;
  box-shadow: 0 24px 60px -28px rgba(26, 20, 16, 0.22);
  animation: kenBurns 26s ease-in-out infinite alternate;
}
.editorial--reverse .editorial__photo { animation-delay: -8s; }
.editorial--terracotta .editorial__photo { background-color: var(--terra-soft); }
.editorial__copy h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.018em;
  margin: 14px 0 24px;
  color: var(--ink);
}
.editorial__copy h2 em { font-style: italic; color: var(--terra); font-weight: 400; }
.editorial__copy p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 16px;
}

/* ──────────────────────────────────────────────────────────────────────
   Training — magazine-style modality grid. Photos on top, refined
   serif name + short factual caption.
   ────────────────────────────────────────────────────────────────────── */
.training {
  padding: 96px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 900px) { .training { padding: 140px 0; } }
.section-head {
  text-align: center;
  margin-bottom: 64px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.018em;
  margin: 14px 0 16px;
  color: var(--ink);
}
.section-head h2 em { font-style: italic; color: var(--terra); font-weight: 400; }
.section-head p {
  font-size: 17.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.modality-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px 32px;
}
@media (min-width: 600px) { .modality-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .modality-grid { grid-template-columns: repeat(3, 1fr); gap: 56px 40px; } }
.modality {
  display: flex;
  flex-direction: column;
}
.modality__photo {
  aspect-ratio: 4 / 5;
  border-radius: 3px;
  overflow: hidden;
  background-color: var(--sage-soft);
  background-size: cover;
  background-position: center;
  margin-bottom: 20px;
  transition: transform .8s cubic-bezier(0.22, 1, 0.36, 1), background-size .8s ease;
}
.modality:hover .modality__photo {
  background-size: 110%;
}
.modality {
  transition: transform .3s ease;
}
.modality:hover { transform: translateY(-3px); }
.modality:nth-child(3n+1) .modality__photo { background-color: var(--sage); }
.modality:nth-child(3n+2) .modality__photo { background-color: var(--terra-soft); }
.modality:nth-child(3n+3) .modality__photo { background-color: var(--bg-3); }
.modality__num {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}
.modality__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.012em;
  margin-bottom: 8px;
  color: var(--ink);
  display: block;
}
.modality__desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ──────────────────────────────────────────────────────────────────────
   How it works — refined editorial 4-step
   ────────────────────────────────────────────────────────────────────── */
.how {
  padding: 96px 0;
}
@media (min-width: 900px) { .how { padding: 140px 0; } }
.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) { .how-grid { grid-template-columns: repeat(4, 1fr); gap: 40px; } }
.how-step {
  text-align: left;
}
.how-step__num {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: 56px;
  line-height: 1;
  color: var(--terra);
  margin-bottom: 20px;
  display: block;
}
.how-step h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.005em;
  margin: 0 0 10px;
  color: var(--ink);
}
.how-step p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ──────────────────────────────────────────────────────────────────────
   Inside the app — phone screenshots in a paper frame.
   ────────────────────────────────────────────────────────────────────── */
.showcase {
  padding: 96px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 900px) { .showcase { padding: 140px 0; } }
.showcase__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  justify-items: center;
  align-items: end;
}
@media (min-width: 760px) {
  .showcase__row { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}
.showcase__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 280px;
}
.showcase__phone {
  width: 220px;
  aspect-ratio: 9 / 19.5;
  border-radius: 36px;
  background: #000;
  padding: 6px;
  margin-bottom: 22px;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.06),
    0 24px 60px -16px rgba(26, 20, 16, 0.25),
    0 60px 60px -32px rgba(26, 20, 16, 0.18);
}
.showcase__phone::before {
  content: '';
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 22px;
  background: #000;
  border-radius: 14px;
  z-index: 2;
}
.showcase__phone img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 30px;
  display: block;
}
.showcase__title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--ink);
}
.showcase__copy {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* ──────────────────────────────────────────────────────────────────────
   Final CTA — editorial, on cream
   ────────────────────────────────────────────────────────────────────── */
.final-cta {
  padding: 120px 0;
  text-align: center;
  background: var(--bg);
}
.final-cta__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 5.6vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.022em;
  margin: 0 auto 22px;
  max-width: 760px;
  color: var(--ink);
}
.final-cta__title em { font-style: italic; color: var(--terra); font-weight: 400; }
.final-cta__lede {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.final-cta__ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ──────────────────────────────────────────────────────────────────────
   Journal — editorial card grid
   ────────────────────────────────────────────────────────────────────── */
.journal {
  padding: 96px 0 120px;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
@media (min-width: 900px) { .journal { padding: 140px 0 160px; } }
.journal__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line-2);
}
.journal__head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: -0.018em;
  margin: 0;
  color: var(--ink);
}
.journal__see-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  transition: color .15s, border-color .15s;
  padding-bottom: 2px;
}
.journal__see-all:hover { color: var(--terra); border-bottom-color: var(--terra); }
.journal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 720px) { .journal-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.journal-card {
  display: flex;
  flex-direction: column;
  color: var(--ink);
  transition: color .15s;
}
.journal-card:hover { color: var(--terra); }
.journal-card__photo {
  aspect-ratio: 4 / 3;
  background-color: var(--sage-soft);
  background-size: cover;
  background-position: center;
  border-radius: 3px;
  margin-bottom: 22px;
  transition: background-size .8s ease;
}
.journal-card:hover .journal-card__photo { background-size: 108%; }
.journal-card { transition: transform .25s ease; }
.journal-card:hover { transform: translateY(-3px); }
.journal-card:nth-child(3n+1) .journal-card__photo { background-color: var(--sage); }
.journal-card:nth-child(3n+2) .journal-card__photo { background-color: var(--terra-soft); }
.journal-card:nth-child(3n+3) .journal-card__photo { background-color: var(--bg-3); }
.journal-card__tag {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.journal-card__title {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.18;
  letter-spacing: -0.012em;
  font-weight: 500;
  margin: 0 0 12px;
  color: inherit;
}
.journal-card__excerpt {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

/* ──────────────────────────────────────────────────────────────────────
   Footer
   ────────────────────────────────────────────────────────────────────── */
.site-footer {
  padding: 64px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 720px) {
  .site-footer__inner { grid-template-columns: 1fr auto; align-items: center; }
}
.site-footer__brand .brand { font-size: 19px; }
.site-footer__brand p {
  margin: 12px 0 0;
  font-size: 12.5px;
  color: var(--ink-dim);
  letter-spacing: 0.04em;
}
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
}
.site-footer__links a:hover { color: var(--terra); }

/* ──────────────────────────────────────────────────────────────────────
   Article (privacy + terms)
   ────────────────────────────────────────────────────────────────────── */
.article {
  padding: 80px 0 120px;
  background: var(--bg);
}
.article__inner {
  max-width: 720px;
  margin: 0 auto;
}
.article__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  margin: 0 0 12px;
  color: var(--ink);
}
.article__updated {
  color: var(--ink-dim);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 48px;
}
.article__inner h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.012em;
  margin: 56px 0 16px;
  color: var(--ink);
}
.article__inner h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 21px;
  letter-spacing: -0.005em;
  margin: 36px 0 10px;
  color: var(--ink);
}
.article__inner p,
.article__inner li {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.article__inner ul, .article__inner ol {
  padding-left: 22px;
  margin: 14px 0 22px;
}
.article__inner li { margin-bottom: 8px; }
.article__inner strong { color: var(--ink); font-weight: 600; }
.article__inner a {
  color: var(--terra);
  border-bottom: 1px solid var(--terra-soft);
  transition: border-color .15s;
}
.article__inner a:hover { border-color: var(--terra); }

/* Entrance animation — pure CSS so it doesn't depend on JS or
   IntersectionObserver. Background tabs and reduced-motion are both
   handled here without any client-side scripting required. */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in {
  animation: fadeUp .7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.modality.fade-in:nth-of-type(1) { animation-delay: 0.02s; }
.modality.fade-in:nth-of-type(2) { animation-delay: 0.06s; }
.modality.fade-in:nth-of-type(3) { animation-delay: 0.10s; }
.modality.fade-in:nth-of-type(4) { animation-delay: 0.14s; }
.modality.fade-in:nth-of-type(5) { animation-delay: 0.18s; }
.modality.fade-in:nth-of-type(6) { animation-delay: 0.22s; }
.modality.fade-in:nth-of-type(7) { animation-delay: 0.26s; }
.modality.fade-in:nth-of-type(8) { animation-delay: 0.30s; }
.modality.fade-in:nth-of-type(9) { animation-delay: 0.34s; }
.how-step.fade-in:nth-of-type(1) { animation-delay: 0.05s; }
.how-step.fade-in:nth-of-type(2) { animation-delay: 0.13s; }
.how-step.fade-in:nth-of-type(3) { animation-delay: 0.21s; }
.how-step.fade-in:nth-of-type(4) { animation-delay: 0.29s; }
.journal-card.fade-in:nth-of-type(1) { animation-delay: 0.05s; }
.journal-card.fade-in:nth-of-type(2) { animation-delay: 0.15s; }
.journal-card.fade-in:nth-of-type(3) { animation-delay: 0.25s; }
@media (prefers-reduced-motion: reduce) {
  .fade-in { animation: none; opacity: 1; transform: none; }
  .hero__photo, .editorial__photo { animation: none; }
  .modality__photo, .journal-card__photo { transition: none; }
  .modality:hover, .journal-card:hover { transform: none; }
  html { scroll-behavior: auto; }
}
