/* ============================================================
   Alexander Neuhausen — style.css
   Premium · bold · minimal · dark.
   Typography: Fraunces (soft variable serif) + Hanken Grotesk.
   Signature: warm near-black canvas, orange→violet gradient.
   ============================================================ */

/* ------------------------------------------------------------
   TOKENS — colours, type, spacing, motion
------------------------------------------------------------ */
:root {
  /* Canvas & ink */
  --bg:            #0c0b10;
  --bg-2:          #110f17;
  --surface:       #16141d;
  --surface-2:     #1d1a26;
  --line:          rgba(243, 239, 233, 0.10);
  --line-strong:   rgba(243, 239, 233, 0.18);

  --ink:           #f3efe9;   /* primary text  */
  --ink-soft:      #c8c2d0;   /* secondary     */
  --ink-mute:      #8b8597;   /* tertiary/meta */

  /* Signature gradient — orange → violet */
  --accent:        #ff7a18;
  --accent-2:      #c054de;
  --grad:          linear-gradient(100deg, #ff7a18 0%, #ff5e7e 48%, #c054de 100%);
  --grad-soft:     linear-gradient(100deg, rgba(255,122,24,.16), rgba(192,84,222,.16));

  /* Type families */
  --font-display:  "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:     "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Soft, rounded serif feel for display type */
  --fvar-display:  "opsz" 144, "SOFT" 70, "WONK" 0;

  /* Fluid type scale (clamp on all headline sizes) */
  --fs-hero:   clamp(2.6rem, 7.2vw, 6.4rem);
  --fs-h2:     clamp(2rem, 4.6vw, 3.6rem);
  --fs-h3:     clamp(1.15rem, 2.2vw, 1.6rem);
  --fs-lede:   clamp(1.05rem, 1.8vw, 1.4rem);
  --fs-body:   1.0625rem;          /* 17px */
  --fs-label:  0.78rem;

  /* Spacing scale (8pt rhythm) */
  --sp-1: 0.5rem;  --sp-2: 1rem;   --sp-3: 1.5rem;  --sp-4: 2rem;
  --sp-5: 3rem;    --sp-6: 4rem;   --sp-7: 6rem;    --sp-8: 9rem;

  --container: 1180px;
  --gutter:    clamp(1.25rem, 5vw, 4rem);
  --radius:    18px;

  /* Motion */
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  --dur:       0.55s;

  /* Z-scale */
  --z-nav: 100; --z-progress: 110;
}

/* ------------------------------------------------------------
   RESET / BASE
------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Ambient texture — drifting aurora, sits behind everything */
body::before {
  content: "";
  position: fixed;
  inset: -15%;                 /* oversize so the drift never reveals an edge */
  z-index: -2;
  background:
    radial-gradient(45% 40% at 75% 8%,  rgba(255,122,24,.12), transparent 60%),
    radial-gradient(42% 38% at 12% 92%, rgba(192,84,222,.12), transparent 60%),
    radial-gradient(38% 34% at 50% 50%, rgba(255,94,126,.06), transparent 60%);
  pointer-events: none;
  animation: aurora 30s ease-in-out infinite alternate;
}
@keyframes aurora {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(2.5%, -2%, 0) scale(1.08); }
  100% { transform: translate3d(-2%, 2.5%, 0) scale(1.04); }
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ol, ul { list-style: none; padding: 0; }

::selection { background: rgba(255,122,24,.28); color: #fff; }

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

/* Gradient text utility */
.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Slow "breathing" pan for signature gradient text (hero word, email) */
.grad,
.contact__email-text {
  background-size: 220% auto;
  animation: grad-pan 9s ease-in-out infinite;
}
@keyframes grad-pan {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* ------------------------------------------------------------
   SCROLL PROGRESS BAR
------------------------------------------------------------ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: var(--z-progress);
  background: transparent;
}
.scroll-progress__bar {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--grad);
  box-shadow: 0 0 12px rgba(255,122,24,.5);
  transition: width 0.1s linear;
}

/* ------------------------------------------------------------
   NAVIGATION — hidden until 80px scroll
------------------------------------------------------------ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  background: rgba(12, 11, 16, 0.72);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid var(--line);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.4s ease;
}
.nav.is-visible { transform: translateY(0); opacity: 1; }

.nav__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 0.85rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
}

.nav__brand { display: flex; align-items: center; gap: 0.65rem; min-height: 44px; }
.nav__mark {
  font-family: var(--font-display);
  font-variation-settings: var(--fvar-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav__name {
  display: none;            /* mobile: monogram only, keeps links from overflowing */
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.nav__links { display: flex; align-items: center; gap: clamp(0.5rem, 2.5vw, 2rem); }
.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 0.2rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.25s ease;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 8px;
  width: 100%; height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--ink); }

.nav__link--cta {
  color: var(--ink);
  padding-inline: 0.95rem;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  background: var(--grad-soft);
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover { border-color: transparent; box-shadow: inset 0 0 0 1px var(--accent); }

/* ------------------------------------------------------------
   LAYOUT — sections
------------------------------------------------------------ */
.section {
  max-width: var(--container);
  margin-inline: auto;
  padding: var(--sp-7) var(--gutter);
}

.section__head { margin-bottom: var(--sp-5); }

.section__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.section__label::before {
  content: "";
  display: inline-block;
  width: 26px; height: 1px;
  margin-right: 0.7rem;
  vertical-align: middle;
  background: var(--grad);
}

.section__intro {
  font-family: var(--font-display);
  font-variation-settings: var(--fvar-display);
  font-weight: 400;
  font-size: var(--fs-h2);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: var(--sp-2);
}

/* ------------------------------------------------------------
   HERO
------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sp-7) var(--gutter) var(--sp-6);
  max-width: var(--container);
  margin-inline: auto;
  overflow: hidden;
}

/* glow orb behind portrait */
.hero__glow {
  position: absolute;
  top: 50%; right: 0;
  width: min(60vw, 620px);
  aspect-ratio: 1;
  transform: translate(20%, -55%);
  background: var(--grad);
  filter: blur(120px);
  opacity: 0.30;
  border-radius: 50%;
  z-index: -1;
  animation: float 14s var(--ease) infinite alternate;
}
@keyframes float {
  to { transform: translate(8%, -45%) scale(1.12); opacity: 0.42; }
}

.hero__inner {
  display: flex;
  flex-direction: column-reverse;
  gap: var(--sp-5);
  align-items: flex-start;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: var(--sp-3);
}
.hero__num {
  font-family: var(--font-display);
  font-variation-settings: var(--fvar-display);
  font-size: 0.95rem;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__title {
  font-family: var(--font-display);
  font-variation-settings: var(--fvar-display);
  font-weight: 400;
  font-size: var(--fs-hero);
  line-height: 0.98;
  letter-spacing: -0.025em;
  max-width: 16ch;
}

.hero__lede {
  margin-top: var(--sp-4);
  font-size: var(--fs-lede);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 52ch;
  font-weight: 350;
}

.hero__actions {
  margin-top: var(--sp-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.6rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s ease, color 0.3s ease;
}
.btn--primary {
  background: var(--grad);
  color: #1a0d00;
  font-weight: 700;
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -10px rgba(255,122,24,.55); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover { border-color: var(--accent); transform: translateY(-2px); }
.btn:active { transform: scale(0.97); }

/* Portrait */
.hero__portrait { width: 100%; }
.hero__portrait-frame {
  position: relative;
  width: clamp(140px, 38vw, 200px);
  aspect-ratio: 1;
  border-radius: var(--radius);
  padding: 3px;
  background: var(--grad);
}
.hero__portrait-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius) - 3px);
  filter: grayscale(0.15) contrast(1.04);
}
.hero__caption {
  margin-top: var(--sp-2);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
}

/* Scroll cue */
.hero__scroll {
  position: absolute;
  bottom: var(--sp-4);
  left: var(--gutter);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 44px;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.hero__scroll-line {
  width: 44px; height: 1px;
  background: var(--line-strong);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--grad);
  transform: translateX(-100%);
  animation: sweep 2.4s var(--ease) infinite;
}
@keyframes sweep { 50%,100% { transform: translateX(100%); } }

/* Hero entrance — one-shot fade-up.
   IMPORTANT: the base (resting) state is fully VISIBLE. The animation is added
   only via .is-ready, which JS sets when the tab is actually visible. So with no
   JS, a throttled/hidden tab, or a slow load, the hero still shows — it never
   depends on a transition or rAF that a background tab would freeze. */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
.is-ready .hero__eyebrow  { animation: heroIn 0.7s var(--ease) 0.05s both; }
.is-ready .hero__title    { animation: heroIn 0.7s var(--ease) 0.14s both; }
.is-ready .hero__portrait { animation: heroIn 0.7s var(--ease) 0.18s both; }
.is-ready .hero__lede     { animation: heroIn 0.7s var(--ease) 0.28s both; }
.is-ready .hero__actions  { animation: heroIn 0.7s var(--ease) 0.40s both; }
.is-ready .hero__scroll   { animation: heroIn 0.7s var(--ease) 0.55s both; }

/* ------------------------------------------------------------
   01 — ABOUT
------------------------------------------------------------ */
.about__grid {
  display: grid;
  gap: var(--sp-5);
}
.about__title {
  font-family: var(--font-display);
  font-variation-settings: var(--fvar-display);
  font-weight: 400;
  font-size: var(--fs-h2);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 14ch;
}
.about__body p {
  color: var(--ink-soft);
  font-size: var(--fs-lede);
  line-height: 1.6;
  font-weight: 350;
  max-width: 62ch;
}
.about__body p + p { margin-top: var(--sp-3); }

.about__quote {
  margin-top: var(--sp-5);
  padding-left: var(--sp-3);
  border-left: 2px solid transparent;
  border-image: var(--grad) 1;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 60, "SOFT" 60, "WONK" 0;
  font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  line-height: 1.3;
  color: var(--ink);
  max-width: 26ch;
}

/* ------------------------------------------------------------
   02 — WORK / CARDS
------------------------------------------------------------ */
.cards { display: flex; flex-direction: column; gap: var(--sp-2); }

.card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-3);
  align-items: start;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  padding-left: clamp(1.5rem, 3vw, 2.4rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s var(--ease);
}
/* animated gradient left border */
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: var(--grad);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.45s var(--ease);
}
/* cursor-tracking spotlight (position set via --mx/--my in main.js) */
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    320px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255,122,24,.10), rgba(192,84,222,.07) 35%, transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}
.card:hover {
  background: var(--surface-2);
  border-color: var(--line-strong);
  transform: translateX(4px);
}
.card:hover::before { transform: scaleY(1); }
.card:hover::after  { opacity: 1; }

.card__icon {
  position: relative; z-index: 1;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  color: var(--ink-soft);
  transition: color 0.4s ease, border-color 0.4s ease;
}
.card__icon svg { width: 26px; height: 26px; }
.card:hover .card__icon { color: var(--accent); border-color: var(--line-strong); }

.card__body { position: relative; z-index: 1; }
.card__tag {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.7rem;
}
.card__challenge {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 60, "SOFT" 70, "WONK" 0;
  font-weight: 400;
  font-size: var(--fs-h3);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 44ch;
}
.card__outcome {
  margin-top: 0.85rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.55;
  font-weight: 350;
  max-width: 56ch;
}

.card__index {
  position: absolute;
  z-index: 1;
  top: clamp(1.2rem, 2.4vw, 1.8rem);
  right: clamp(1.2rem, 2.4vw, 1.8rem);
  font-family: var(--font-display);
  font-variation-settings: var(--fvar-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-mute);
  opacity: 0.6;
}

/* ------------------------------------------------------------
   03 — SERVICES (definition list rows)
------------------------------------------------------------ */
.svc { border-top: 1px solid var(--line); }
.svc__row {
  display: grid;
  gap: var(--sp-2);
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.4s var(--ease);
}
.svc__row:hover { padding-left: clamp(0.5rem, 1.5vw, 1.25rem); }

.svc__term {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 72, "SOFT" 70, "WONK" 0;
  font-weight: 400;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.svc__num {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  min-width: 1.8rem;
  font-style: italic;
}
.svc__desc {
  color: var(--ink-soft);
  font-size: var(--fs-lede);
  line-height: 1.55;
  font-weight: 350;
  max-width: 62ch;
}

/* ------------------------------------------------------------
   04 — CONTACT
------------------------------------------------------------ */
.contact { padding-bottom: var(--sp-8); }
.contact__headline {
  font-family: var(--font-display);
  font-variation-settings: var(--fvar-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 7vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin-bottom: var(--sp-3);
}
.contact__sub {
  color: var(--ink-soft);
  font-size: var(--fs-lede);
  font-weight: 350;
  max-width: 44ch;
  margin-bottom: var(--sp-5);
}

/* large email with underline-draw on hover */
.contact__email {
  display: inline-block;
  position: relative;
  font-family: var(--font-display);
  font-variation-settings: var(--fvar-display);
  font-weight: 400;
  font-size: clamp(1.7rem, 6vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  padding-bottom: 0.15em;
  min-height: 44px;
}
.contact__email-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact__email::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.contact__email:hover::after { transform: scaleX(1); }

.contact__linkedin {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 0.6rem;
  margin-top: var(--sp-5);
  min-height: 44px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.3s ease, gap 0.3s ease;
}
.contact__linkedin svg { transition: color 0.3s ease; }
.contact__linkedin:hover { color: var(--ink); gap: 0.85rem; }
.contact__linkedin:hover svg { color: var(--accent); }

/* ------------------------------------------------------------
   FOOTER
------------------------------------------------------------ */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.footer__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: var(--sp-4) var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer__name { font-family: var(--font-display); font-variation-settings: var(--fvar-display); font-size: 1.1rem; }
.footer__meta,
.footer__year { font-size: 0.82rem; color: var(--ink-mute); letter-spacing: 0.02em; }

/* ------------------------------------------------------------
   SCROLL REVEAL (JS toggles .is-in)
------------------------------------------------------------ */
/* Hidden state is applied only once JS confirms a visible, animatable tab
   (.is-ready). Default = visible, so sections never get stuck hidden. */
.is-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }

/* Staggered reveal for repeated rows */
.cards .card:nth-child(2)   { transition-delay: 0.06s; }
.cards .card:nth-child(3)   { transition-delay: 0.12s; }
.svc__row:nth-child(2)      { transition-delay: 0.08s; }
.svc__row:nth-child(3)      { transition-delay: 0.16s; }

/* ============================================================
   RESPONSIVE — single breakpoint at 768px (desktop+)
   Base styles above are mobile-first (320px+).
============================================================ */
@media (min-width: 768px) {

  .hero__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: var(--sp-6);
  }
  .hero__text { flex: 1; }
  .hero__portrait {
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .hero__portrait-frame { width: clamp(220px, 24vw, 300px); }
  .hero__caption { text-align: right; }

  .about__grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: var(--sp-6);
    align-items: start;
  }

  .card { grid-template-columns: auto 1fr; gap: var(--sp-4); }

  .svc__row {
    grid-template-columns: 0.95fr 1.05fr;
    gap: var(--sp-5);
    align-items: baseline;
  }

  .nav__name { display: inline; }   /* full name returns on wider screens */
}

/* ============================================================
   REDUCED MOTION — disable / soften all animation
============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal,
  .is-ready .reveal { opacity: 1; transform: none; }
  .hero__glow { animation: none; }
  .hero__scroll-line::after { animation: none; display: none; }

  /* new motion: hold everything still and fully visible */
  body::before { animation: none; }
  .grad, .contact__email-text { animation: none; background-position: 0% 50%; }
  .card::after { display: none; }
  .is-ready .hero__eyebrow,
  .is-ready .hero__title,
  .is-ready .hero__lede,
  .is-ready .hero__actions,
  .is-ready .hero__portrait,
  .is-ready .hero__scroll { animation: none; opacity: 1; transform: none; }
}
