/* ==========================================================================
   Ian McIvor — Core Stylesheet
   Vanilla CSS. Load order: variables.css → style.css → responsive.css

   Color model: the page itself is dark (--color-bg / --color-bg-secondary),
   lit warm like firelight. Headings and body text inherit their color from
   whatever surface they sit on — default is light-on-dark; anything placed
   inside a .card, .release, or .asset-list (the site's "printed" objects)
   flips to dark-on-cream automatically via `color: inherit`.
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body,
h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[class],
ol[class] {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

input, textarea, select {
  font: inherit;
  color: inherit;
}

/* ---- Base ----------------------------------------------------------------- */
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--color-text-on-dark);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .font-display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: var(--lh-tight);
  letter-spacing: -0.01em;
  color: inherit;
  /* Em-based so larger headings naturally claim more air beneath them.
     Reset to 0 wherever a flex/grid `gap` already governs spacing
     (.card, .release, .hero-full__content) to avoid doubling up. */
  margin-bottom: 0.45em;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

p.lead {
  font-size: var(--fs-lead);
  color: var(--color-text-on-dark-soft);
  line-height: var(--lh-normal);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: var(--space-sm);
  background: var(--color-card);
  color: var(--color-text-on-light);
  padding: var(--space-2xs) var(--space-sm);
  z-index: 200;
  transition: top var(--duration-fast) var(--ease);
}

.skip-link:focus {
  top: var(--space-sm);
}

/* ---- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  padding: 0.95em 2.1em;
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: var(--tracking-mid);
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  transition: background-color var(--duration-fast) var(--ease),
              color var(--duration-fast) var(--ease),
              border-color var(--duration-fast) var(--ease),
              box-shadow var(--duration-fast) var(--ease),
              transform var(--duration-fast) var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background-color: var(--color-button);
  color: var(--color-text-on-dark);
}

.btn--primary:hover {
  background-color: var(--color-button-hover);
  box-shadow: var(--shadow-card);
}

.btn--outline {
  border-color: var(--color-border-on-dark);
  color: var(--color-text-on-dark);
}

.btn--outline:hover {
  background-color: var(--color-button-hover);
  border-color: var(--color-button-hover);
  color: var(--color-text-on-dark);
}

.btn--outline-light {
  border-color: var(--color-text-on-dark);
  color: var(--color-text-on-dark);
}

.btn--outline-light:hover {
  background-color: var(--color-button-hover);
  border-color: var(--color-button-hover);
  color: var(--color-text-on-dark);
}

.btn--sm {
  padding: 0.7em 1.5em;
  font-size: 0.8rem;
}

/* ---- Text links -------------------------------------------------------------
   Secondary, inline actions (streaming platforms, "view release") read as
   editorial cross-references rather than UI buttons — small caps, an
   animated underline, no box. Reserve .btn for primary navigation only. */
.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: var(--tracking-mid);
  text-transform: uppercase;
  color: var(--color-text-on-dark-soft);
  padding-bottom: 0.2em;
  transition: color var(--duration-fast) var(--ease);
}

.text-link__icon {
  width: 1.05em;
  height: 1.05em;
  flex-shrink: 0;
}

.text-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background-color: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-fast) var(--ease);
}

.text-link:hover {
  color: var(--color-text-on-dark);
}

.text-link:hover::after {
  transform: scaleX(1);
}

.text-link-row {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.text-link--disabled {
  color: var(--color-text-on-dark-soft);
  opacity: 0.5;
  cursor: default;
}

.text-link--disabled:hover {
  color: var(--color-text-on-dark-soft);
}

/* ---- Header & Navigation --------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(31, 31, 29, 0.82);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--duration-fast) var(--ease),
              box-shadow var(--duration-fast) var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--color-border-on-dark);
  box-shadow: var(--shadow-card);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: var(--space-sm);
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.primary-nav a {
  position: relative;
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: var(--tracking-mid);
  text-transform: uppercase;
  padding-block: var(--space-2xs);
  color: var(--color-text-on-dark-soft);
  transition: color var(--duration-fast) var(--ease);
}

.primary-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background-color: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-fast) var(--ease);
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--color-text-on-dark);
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
}

.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: var(--color-text-on-dark);
  transition: transform var(--duration-fast) var(--ease), opacity var(--duration-fast) var(--ease);
}

/* ---- Hero (page-header variant, used on interior pages) ------------------- */
.hero {
  padding-block: var(--space-xl) var(--space-lg);
}

.hero__inner {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}

.hero__title {
  font-size: var(--fs-hero);
  margin-bottom: var(--space-md);
}

.hero__lead {
  max-width: 48ch;
  margin-bottom: var(--space-md);
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* ---- Hero (full-bleed homepage variant) ------------------------------------
   Text lives in a fixed-width column over the left ~35–40% of the frame;
   the right side (subject, fire, aurora) stays clear. A bottom fade lets
   the photograph dissolve directly into the page's own dark background,
   so there is no hard seam between hero and first section. */
.hero-full {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-bg);
}

.hero-full__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 78%, var(--color-bg) 100%),
    linear-gradient(
      90deg,
      rgba(10, 8, 7, 0.48) 0%,
      rgba(10, 8, 7, 0.34) 30%,
      rgba(10, 8, 7, 0.1) 50%,
      rgba(10, 8, 7, 0) 60%
    );
}

.hero-full__content {
  position: relative;
  z-index: 2;
  width: clamp(300px, 42vw, 740px);
  padding-left: var(--gutter);
  padding-right: var(--space-md);
  color: var(--color-text-on-dark);
}

.hero-full__title {
  font-size: var(--fs-hero);
  color: var(--color-text-on-dark);
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.5);
  margin-bottom: 0;
  opacity: 0;
  animation: hero-fade-up 1.1s var(--ease) 0.1s both;
}

.hero-full__subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: var(--fs-lead);
  letter-spacing: 0.01em;
  margin-top: var(--space-md);
  color: var(--color-text-on-dark-soft);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
  opacity: 0;
  animation: hero-fade-up 1.1s var(--ease) 0.35s both;
}

.hero-full__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-lg);
  opacity: 0;
  animation: hero-fade-up 1.1s var(--ease) 0.6s both;
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- Media component ------------------------------------------------------
   Wraps every photograph on the site. Points at a real file in
   assets/images/; if that file is missing, app.js adds `.is-missing` and
   the caption in `.media__fallback` takes over — no broken-image icons. */
.media {
  position: relative;
  overflow: hidden;
  background-color: var(--color-bg-secondary);
}

.media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.media__fallback {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-sm);
  font-size: var(--fs-eyebrow);
  line-height: 1.7;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-text-on-dark-faint);
}

.media.is-missing {
  background: linear-gradient(160deg, var(--color-bg-secondary), var(--color-bg-accent));
  border: 1px solid var(--color-border-on-dark);
}

.media.is-missing img {
  display: none;
}

.media.is-missing .media__fallback {
  display: flex;
}

/* Card and gallery thumbnails lift with a slow, restrained zoom on hover */
.card:hover .media:not(.media--hero-bg) img,
a.media:not(.media--hero-bg):hover img,
figure.media:not(.media--hero-bg):hover img {
  transform: scale(1.04);
}

.media--hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.media--hero-bg img {
  /* Calibrated to fire.jpg: Ian, the guitar, and the fire sit roughly
     55–97% across the frame, centered near 70%; face/hat sit around 40%
     down. Keeps the subject in view as the crop narrows. */
  object-position: 70% 42%;
  animation: hero-drift 24s ease-in-out infinite alternate;
}

@keyframes hero-drift {
  from { transform: scale(1); }
  to { transform: scale(1.035); }
}

.media--square { aspect-ratio: 1 / 1; }
.media--portrait { aspect-ratio: 4 / 5; }
.media--wide { aspect-ratio: 16 / 9; }

/* ---- Section ---------------------------------------------------------------- */
.section {
  padding-block: var(--space-xl);
}

.section--alt {
  background-color: var(--color-bg-secondary);
}

/* Used sparingly — one or two moments per page, not a repeating pattern */
.section--accent {
  background-color: var(--color-bg-accent);
}

.section__head {
  max-width: var(--max-width-narrow);
  margin-bottom: var(--space-lg);
}

.section__head--center {
  margin-inline: auto;
  text-align: center;
}

/* ---- Grid & cards -------------------------------------------------------- */
.grid {
  display: grid;
  gap: var(--space-md);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Let a single grid item take two columns — e.g. a wide photo in an
   otherwise square-tiled gallery grid. Degrades gracefully as columns
   collapse at narrower breakpoints (responsive.css). */
.grid-span-2 { grid-column: span 2; }

/* Album artwork: the photography carries the story — no box, no mat,
   just the image at full size directly on the dark page, with a quiet
   caption beneath. The image itself lifts slightly on hover; see the
   shared .media hover-zoom rule below for the actual motion. */
.card {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: transform var(--duration) var(--ease);
}

.card:hover {
  transform: translateY(-6px);
}

.card__meta {
  font-size: var(--fs-small);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: var(--tracking-mid);
}

.card__title {
  font-size: var(--fs-h3);
  margin-bottom: 0;
}

.card__text {
  color: var(--color-text-on-dark-soft);
}

.card__actions {
  margin-top: var(--space-2xs);
}

/* ---- Editorial release rows (music page) -----------------------------------
   Each release is a full-width spread, image and copy alternating sides —
   large photography and a caption, like turning a page in a printed
   catalog rather than scanning a grid of product cards. */
.release {
  margin-bottom: var(--space-2xl);
}

.release:last-of-type {
  margin-bottom: 0;
}

.release__grid {
  align-items: center;
  grid-template-columns: 1.15fr 1fr;
}

.release:nth-of-type(even) .release__grid {
  direction: rtl;
}

.release:nth-of-type(even) .release__grid > * {
  direction: ltr;
}

.release__title {
  margin-top: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.release__credit {
  font-size: var(--fs-small);
  letter-spacing: var(--tracking-mid);
  text-transform: uppercase;
  color: var(--color-accent);
}

.release .lead {
  margin-bottom: var(--space-md);
}

/* ---- Play button overlay --------------------------------------------------
   Centered over a .media element to mark it as a video. */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background-color: rgba(247, 244, 238, 0.92);
  color: var(--color-text-on-light);
  transform: translate(-50%, -50%);
  transition: transform var(--duration-fast) var(--ease), background-color var(--duration-fast) var(--ease);
}

.media:hover .play-button {
  transform: translate(-50%, -50%) scale(1.08);
  background-color: var(--color-card);
}

/* ---- Archival photograph ----------------------------------------------------
   A small, deliberately un-retouched print resting on the page — thin cream
   mat, soft shadow, no forced crop. The photo keeps its own proportions
   rather than filling a fixed aspect box like the rest of the site's media. */
.archival-photo {
  display: flex;
  justify-content: center;
}

.archival-photo__frame {
  display: inline-block;
  width: 100%;
  max-width: 300px;
  padding: 10px;
  background-color: var(--color-card);
  box-shadow: var(--shadow-card);
}

.archival-photo__frame img {
  display: block;
  width: 100%;
  height: auto;
}

.archival-photo__caption {
  margin-top: var(--space-sm);
  text-align: center;
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--tracking-mid);
  color: var(--color-text-on-dark-faint);
}

/* ---- Chapter heading --------------------------------------------------------
   For headings that open a chapter within a page rather than the page
   itself — roughly half the size of h1, so it reads as "part of the
   story," never competing with the actual page title above it. */
.chapter-heading {
  font-size: clamp(1.5rem, 1.25rem + 1.1vw, 2.375rem);
  letter-spacing: 0.01em;
  margin-bottom: var(--space-sm);
}

/* ---- Pull quote ----------------------------------------------------------- */
.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: var(--fs-h2);
  line-height: 1.35;
  max-width: var(--max-width-narrow);
  margin-inline: auto;
  text-align: center;
  color: var(--color-text-on-dark);
}

.pull-quote cite {
  display: block;
  margin-top: var(--space-md);
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--fs-small);
  letter-spacing: var(--tracking-mid);
  text-transform: uppercase;
  color: var(--color-text-on-dark-faint);
}

/* ---- Fact list (about / press kit) ------------------------------------------ */
.fact-list {
  display: grid;
  gap: var(--space-sm);
}

.fact-list__row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: var(--space-md);
  padding-block: var(--space-sm);
  border-top: 1px solid var(--color-border-on-dark);
}

.fact-list__row dt {
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-on-dark-faint);
}

.fact-list__row dd {
  color: var(--color-text-on-dark-soft);
}

/* ---- Asset download list (press kit) ----------------------------------------
   A printed spec sheet resting on the dark page. */
.asset-list {
  background-color: var(--color-card);
  color: var(--color-text-on-light);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.asset-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
  border-top: 1px solid var(--color-border-on-light);
  transition: background-color var(--duration-fast) var(--ease);
}

.asset-list__item:first-child {
  border-top: none;
}

.asset-list__item:hover {
  background-color: #ece5d7;
}

.asset-list__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.asset-list__meta {
  font-size: var(--fs-small);
  color: var(--color-text-on-light-soft);
}

/* ---- Forms ------------------------------------------------------------------ */
.form {
  display: grid;
  gap: var(--space-md);
}

.form__row {
  display: grid;
  gap: var(--space-2xs);
}

.form__row--split {
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form label {
  font-size: var(--fs-small);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-text-on-dark-soft);
}

.form input,
.form textarea {
  padding: var(--space-sm);
  background-color: var(--color-bg-secondary);
  color: var(--color-text-on-dark);
  border: 1px solid var(--color-border-on-dark);
  border-radius: var(--radius-sm);
  transition: border-color var(--duration-fast) var(--ease);
}

.form input::placeholder,
.form textarea::placeholder {
  color: var(--color-text-on-dark-faint);
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form textarea {
  resize: vertical;
  min-height: 140px;
}

.form__note {
  font-size: var(--fs-small);
  color: var(--color-text-on-dark-faint);
}

/* ---- Contact list ------------------------------------------------------------ */
.contact-list {
  display: grid;
  gap: var(--space-sm);
}

.contact-list__item {
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
  padding-block: var(--space-sm);
  border-top: 1px solid var(--color-border-on-dark);
}

/* ---- Footer -------------------------------------------------------------- */
.site-footer {
  background-color: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border-on-dark);
  padding-block: var(--space-lg);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--color-text-on-dark);
}

.footer__social {
  display: flex;
  gap: var(--space-md);
}

.footer__social a {
  position: relative;
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: var(--tracking-mid);
  padding-bottom: var(--space-3xs);
  color: var(--color-text-on-dark-soft);
  transition: color var(--duration-fast) var(--ease);
}

.footer__social a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background-color: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-fast) var(--ease);
}

.footer__social a:hover {
  color: var(--color-text-on-dark);
}

.footer__social a:hover::after {
  transform: scaleX(1);
}

.footer__meta {
  width: 100%;
  font-size: var(--fs-small);
  color: var(--color-text-on-dark-faint);
}

/* ---- Icon grid (performance formats, press-kit page) -----------------------
   Icon + label pairs, no boxes/borders — reads as an editorial list rather
   than a feature-tile grid. */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg) var(--space-md);
}

.icon-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.icon-item__icon {
  width: 1.9rem;
  height: 1.9rem;
  color: var(--color-accent);
}

.icon-item__label {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-text-on-dark);
}

/* ---- Stronger hero scrim variant --------------------------------------------
   For hero photography that already carries its own baked-in typography
   (e.g. album artwork used as a hero) — darkens the left text column enough
   that the page's own headline reads as the only typography in view. */
.hero-full__overlay--strong {
  background:
    linear-gradient(180deg, transparent 70%, var(--color-bg) 100%),
    linear-gradient(
      90deg,
      rgba(10, 8, 7, 0.82) 0%,
      rgba(10, 8, 7, 0.66) 32%,
      rgba(10, 8, 7, 0.28) 55%,
      rgba(10, 8, 7, 0) 72%
    );
}

/* ---- Floating download button -----------------------------------------------
   Stays put in the lower-right corner as the page scrolls — booking agents
   can grab the PDF without hunting back up to the hero. */
.floating-download {
  position: fixed;
  right: var(--space-md);
  bottom: var(--space-md);
  z-index: 80;
  box-shadow: var(--shadow-lift);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity var(--duration-fast) var(--ease), transform var(--duration-fast) var(--ease), background-color var(--duration-fast) var(--ease), box-shadow var(--duration-fast) var(--ease);
}

.floating-download.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ---- Reveal-on-scroll ------------------------------------------------------
   Hidden state only applies once JS has run (html.js, set inline in <head>),
   so content stays visible by default if JavaScript is unavailable. */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--duration) var(--ease), transform var(--duration) var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn:hover,
  .card:hover {
    transform: none;
  }

  .media img,
  .media--hero-bg img {
    animation: none;
    transition: none;
  }

  .hero-full__title,
  .hero-full__subtitle,
  .hero-full__actions {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
