/* ==========================================================================
   Aurelia Textile — Inner pages, footer and floating actions
   ========================================================================== */

/* ============================================================================
   Page hero — the band at the top of every inner page
   ============================================================================ */
.page-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(420px, 56vh, 620px);
  overflow: hidden;
  background: var(--color-aubergine-900);
}

.page-hero__media {
  position: absolute;
  inset: 0;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: page-hero-drift 18s ease-in-out infinite alternate;
}

@keyframes page-hero-drift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
}

/* Dark from the bottom so the copy always has something to sit on. */
.page-hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(28, 18, 32, 0.92) 0%, rgba(28, 18, 32, 0.55) 45%, rgba(28, 18, 32, 0.25) 100%),
    linear-gradient(to right, rgba(28, 18, 32, 0.6), transparent 60%);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: clamp(5rem, 12vh, 7rem) clamp(2.5rem, 6vh, 4rem);
}

.page-hero__title {
  font-size: var(--fs-h2);
  margin-top: var(--space-3);
  max-width: 18ch;
}

.page-hero__lead {
  margin-top: var(--space-5);
  max-width: 54ch;
  color: var(--text-body-muted-inverse);
}

/* Small trail of where you are. */
.page-hero__crumbs {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-body-muted-inverse);
}

.page-hero__crumbs a {
  color: var(--color-lime-600);
}

.page-hero__crumbs a:hover {
  text-decoration: underline;
}

/* ============================================================================
   About
   ============================================================================ */
.section--about-intro {
  background: var(--bg-page);
}

.about__lead {
  max-width: 44ch;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.45;
  font-family: 'Fraunces', serif;
  color: var(--text-heading);
}

.about__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
}

.about__pillar {
  padding: var(--space-6);
  border-radius: var(--radius-card-sm);
  background: var(--color-cream);
  border: 1px solid var(--divider);
}

.about__pillar-title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--text-heading);
}

.about__pillar-body {
  margin-top: var(--space-3);
  font-size: var(--fs-body-sm);
  color: var(--text-body-muted);
}

.section--timeline {
  background: var(--bg-lab);
}

.timeline {
  margin-top: var(--space-8);
  border-top: 1px solid var(--divider-inverse);
}

.timeline__row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: var(--space-6);
  padding-block: var(--space-5);
  border-bottom: 1px solid var(--divider-inverse);
  transition: background var(--dur-fast) ease;
}

.timeline__row:hover {
  background: rgba(240, 235, 216, 0.05);
}

.timeline__year {
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--color-lime-600);
}

.timeline__text {
  color: var(--color-cream-text);
}

/* ============================================================================
   Contact
   ============================================================================ */
.section--contact {
  background: var(--bg-page);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-10);
  align-items: start;
}

.contact__form {
  display: grid;
  gap: var(--space-5);
}

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

.field label {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-label);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.85em 1em;
  font-family: inherit;
  font-size: var(--fs-body);
  color: var(--text-heading);
  background: var(--color-cream);
  border: 1px solid var(--divider);
  border-radius: var(--radius-card-sm);
  transition: border-color var(--dur-fast) ease, box-shadow var(--dur-fast) ease;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--color-purple-500);
  box-shadow: 0 0 0 3px rgba(92, 66, 112, 0.15);
}

.field.is-invalid input,
.field.is-invalid textarea {
  border-color: var(--color-terracotta-600);
  box-shadow: 0 0 0 3px rgba(217, 143, 115, 0.18);
}

.field__error {
  font-size: 0.75rem;
  color: var(--color-terracotta-600);
  min-height: 1em;
}

.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.contact__submit {
  justify-self: start;
}

.contact__status {
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--text-label);
  min-height: 1.2em;
}

/* Details panel beside the form */
.contact__panel {
  padding: var(--space-6);
  border-radius: var(--radius-card);
  background: var(--color-aubergine-900);
  color: var(--color-cream-text);
}

.contact__panel-heading {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.2rem;
}

.contact__details {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-5);
}

.contact__detail {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.contact__detail svg {
  width: 20px;
  height: 20px;
  flex: none;
  color: var(--color-lime-600);
}

.contact__detail dt {
  font-family: 'Space Mono', monospace;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-body-muted-inverse);
  margin-bottom: 2px;
}

.contact__detail dd {
  margin: 0;
  font-size: 0.95rem;
}

.contact__detail a:hover {
  color: var(--color-lime-600);
}

.contact__panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid var(--divider-inverse);
}

/* ============================================================================
   FAQ
   ============================================================================ */
.section--faq {
  background: var(--bg-page);
}

.faq {
  max-width: 900px;
  margin-top: var(--space-8);
  border-top: 1px solid var(--divider);
}

.faq__item {
  border-bottom: 1px solid var(--divider);
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  padding: var(--space-5) 0;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: var(--text-heading);
  transition: color var(--dur-fast) ease;
}

.faq__q:hover {
  color: var(--color-purple-500);
}

.faq__icon {
  flex: none;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--divider);
  color: var(--text-heading);
  transition: transform var(--dur-med) var(--ease-out), background var(--dur-fast) ease, color var(--dur-fast) ease;
}

.faq__icon svg {
  width: 16px;
  height: 16px;
}

.faq__q[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
  background: var(--color-aubergine-900);
  color: var(--color-cream-text);
}

.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--dur-med) var(--ease-out);
}

.faq__a-inner {
  padding-bottom: var(--space-5);
  max-width: 68ch;
  color: var(--text-body-muted);
}

.faq__cta {
  margin-top: var(--space-8);
  padding: var(--space-6);
  border-radius: var(--radius-card);
  background: var(--color-lime-400);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}

.faq__cta p {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  color: var(--text-heading);
}

/* ============================================================================
   Testimonials
   ============================================================================ */
.section--testimonials {
  background: var(--bg-collection);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-8);
}

.testimonial {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  padding: var(--space-6);
  border-radius: var(--radius-card);
  background: var(--color-cream);
  border: 1px solid var(--divider);
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.testimonial__mark {
  width: 28px;
  height: 28px;
  color: var(--color-purple-400);
}

.testimonial__quote {
  flex: 1;
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--text-heading);
}

.testimonial__who {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--divider);
}

/* Initials rather than invented portraits. */
.testimonial__monogram {
  flex: none;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.testimonial__monogram--aubergine { background: var(--color-aubergine-900); color: var(--color-cream-text); }
.testimonial__monogram--purple { background: var(--color-purple-500); color: var(--color-cream-text); }
.testimonial__monogram--terracotta { background: var(--color-terracotta-500); color: var(--color-aubergine-900); }
.testimonial__monogram--lime { background: var(--color-lime-500); color: var(--color-aubergine-900); }

.testimonial__name {
  display: block;
  font-weight: 600;
  color: var(--text-heading);
}

.testimonial__role {
  display: block;
  font-size: 0.78rem;
  color: var(--text-body-muted);
}

/* ============================================================================
   Footer
   ============================================================================ */
.footer__subscribe {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-10);
  align-items: end;
  padding-bottom: var(--space-10);
  border-bottom: 1px solid var(--divider-inverse);
}

.footer__title {
  font-size: var(--fs-h2);
}

/* Each line rises on its own, a beat apart. */
.footer__title-line {
  display: block;
  overflow: hidden;
}

.footer__title-line > * ,
.footer__title-line em {
  display: inline-block;
}

.footer__field-label {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-lime-600);
  margin-bottom: var(--space-3);
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.3fr;
  gap: var(--space-8);
  padding-block: var(--space-10);
}

.footer__col-heading {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-lime-600);
  margin-bottom: var(--space-5);
}

.footer__links {
  display: grid;
  gap: var(--space-3);
}

/* Animated underline that sweeps in from the left on hover. */
.footer__link {
  position: relative;
  display: inline-block;
  color: var(--color-cream-text);
  transition: color var(--dur-fast) ease, transform var(--dur-fast) var(--ease-out);
}

.footer__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--color-lime-600);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur-med) var(--ease-out);
}

.footer__link:hover {
  color: var(--color-lime-600);
}

.footer__link:hover::after,
.footer__link.is-here::after {
  transform: scaleX(1);
  transform-origin: left;
}

.footer__link.is-here {
  color: var(--color-lime-600);
}

.footer__contact-list {
  display: grid;
  gap: var(--space-4);
  color: var(--color-cream-text);
  font-size: 0.92rem;
}

.footer__contact-list li {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}

.footer__contact-icon {
  width: 18px;
  height: 18px;
  flex: none;
  margin-top: 2px;
  color: var(--color-lime-600);
}

/* Socials */
.footer__socials {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-3);
  padding-top: var(--space-8);
  border-top: 1px solid var(--divider-inverse);
}

.footer__social {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  border-radius: var(--radius-card-sm);
  border: 1px solid var(--divider-inverse);
  color: var(--color-cream-text);
  transition: transform var(--dur-med) var(--ease-out), background var(--dur-fast) ease, border-color var(--dur-fast) ease;
}

.footer__social:hover {
  transform: translateY(-3px);
  background: rgba(240, 235, 216, 0.08);
  border-color: var(--color-lime-600);
}

.footer__social-icon {
  width: 20px;
  height: 20px;
  flex: none;
  transition: color var(--dur-fast) ease, transform var(--dur-med) var(--ease-out);
}

.footer__social:hover .footer__social-icon {
  color: var(--color-lime-600);
  transform: scale(1.12);
}

.footer__social-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.footer__social-text strong {
  font-size: 0.82rem;
  font-weight: 600;
}

.footer__social-text small {
  font-size: 0.68rem;
  color: var(--text-body-muted-inverse);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============================================================================
   Floating actions — WhatsApp with back-to-top stacked above it
   ============================================================================ */
.floaties {
  position: fixed;
  right: clamp(1rem, 2.5vw, 2rem);
  bottom: clamp(1rem, 2.5vw, 2rem);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
}

.floaties__btn {
  position: relative;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(43, 27, 58, 0.35);
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) ease, opacity var(--dur-med) ease;
}

.floaties__btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 18px 34px rgba(43, 27, 58, 0.45);
}

.floaties__icon {
  width: 24px;
  height: 24px;
}

/* The arrow only earns its place once you've scrolled. */
.floaties__btn--top {
  background: #FFE800;
  color: var(--color-near-black);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.85);
}

.floaties.is-scrolled .floaties__btn--top {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.floaties__btn--whatsapp {
  background: #25d366;
  color: #fff;
}

/* A slow ring, so it reads as live without nagging. */
.floaties__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: floaties-pulse 2.8s ease-out infinite;
  pointer-events: none;
}

@keyframes floaties-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .floaties__pulse,
  .page-hero__media img {
    animation: none;
  }
}

/* ============================================================================
   Responsive
   ============================================================================ */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact__grid,
  .footer__subscribe {
    grid-template-columns: 1fr;
  }

  .about__pillars,
  .testimonials__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .footer__grid,
  .about__pillars,
  .testimonials__grid,
  .contact__row {
    grid-template-columns: 1fr;
  }

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

  .timeline__row {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }

  .floaties__btn {
    width: 48px;
    height: 48px;
  }
}

/* ---- Side rail: WhatsApp row --------------------------------------------- */
.siderail__row--whatsapp .siderail__icon-svg {
  flex: none;
  width: 22px;
  height: 22px;
  padding: 1px;
  color: #25d366;
}

.siderail__row--whatsapp:hover .siderail__icon-svg {
  color: #3ef083;
}

.siderail[data-theme="day"] .siderail__row--whatsapp .siderail__icon-svg {
  color: #128c4b;
}

/* ---- Honeypot ------------------------------------------------------------
   Off-screen rather than display:none — some bots skip hidden inputs, and
   this way they fill it in and give themselves away. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* ---- Age / consent tick in the footer form -------------------------------- */
.footer__consent {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-top: var(--space-4);
  font-size: var(--fs-body-sm);
  line-height: 1.5;
  color: var(--color-cream-text);
  cursor: pointer;
}

.footer__consent input {
  flex: none;
  appearance: none;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 1.5px solid rgba(240, 235, 216, 0.6);
  border-radius: 5px;
  background: rgba(240, 235, 216, 0.08);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.footer__consent input:checked {
  background: var(--color-lime-500);
  border-color: var(--color-lime-500);
}

.footer__consent input:checked::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  margin: 1px auto 0;
  border: solid var(--color-aubergine-900);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.footer__consent input:focus-visible {
  outline: 2px solid var(--color-lime-400);
  outline-offset: 2px;
}

/* ---- Legal pages (privacy, terms) ----------------------------------------- */
.section--legal {
  background: var(--bg-page);
  padding: var(--section-pad-y) 0;
}

.legal {
  max-width: 68ch;
}

.legal__updated {
  font-size: var(--fs-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--text-label);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--divider);
}

.legal__block {
  padding: var(--space-8) 0;
  border-bottom: 1px solid var(--divider);
}

.legal__block h2 {
  font-family: var(--font-display, inherit);
  font-size: clamp(1.4rem, 2.4vw, 1.95rem);
  line-height: var(--lh-snug);
  color: var(--text-heading);
  /* A lime tick in the margin, so the sections scan at a glance. */
  position: relative;
}

.legal__block h2::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 0.55em;
  width: 8px;
  height: 2px;
  background: var(--color-purple-500);
}

.legal__block p {
  margin-top: var(--space-4);
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
  color: var(--text-body-muted);
}

.legal__block p strong {
  color: var(--text-heading);
  font-weight: 600;
}

.legal__a,
.legal__block a {
  color: var(--text-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.2s ease;
}

.legal__a:hover,
.legal__block a:hover {
  color: var(--color-aubergine-900);
}

.legal__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  margin-top: var(--space-8);
  padding: var(--space-7);
  border-radius: var(--radius-card-sm);
  background: rgba(107, 78, 147, 0.1);
}

.legal__cta p {
  font-size: var(--fs-body);
  color: var(--text-heading);
  margin: 0;
}

@media (max-width: 640px) {
  .legal__block h2::before {
    display: none;
  }

  .legal__cta {
    padding: var(--space-5);
  }
}

/* ---- 404 ------------------------------------------------------------------
   Full-bleed photo, the three digits woven out of thread strokes. The
   digits drift apart under the pointer and settle back on their own. */
.notfound {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-aubergine-900);
}

.notfound__bg,
.notfound__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.notfound__bg img {
  object-fit: cover;
  transform: scale(1.06);
  animation: notfound-drift 22s ease-in-out infinite alternate;
}

@keyframes notfound-drift {
  from { transform: scale(1.06) translate3d(-1.2%, 0, 0); }
  to   { transform: scale(1.12) translate3d(1.2%, -1.4%, 0); }
}

.notfound__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(43, 27, 58, 0.9) 0%, rgba(43, 27, 58, 0.62) 46%, rgba(43, 27, 58, 0.34) 100%);
}

.notfound__inner {
  position: relative;
  z-index: 2;
  padding-top: var(--space-16);
  padding-bottom: var(--space-12);
  max-width: 900px;
}

/* --- the digits --- */
.notfound__code {
  display: flex;
  gap: clamp(0.15rem, 1.6vw, 1.2rem);
  margin-bottom: var(--space-5);
  user-select: none;
}

.notfound__digit {
  font-family: var(--font-display, inherit);
  font-size: clamp(5rem, 17vw, 13rem);
  line-height: 0.82;
  font-weight: 500;
  color: transparent;
  -webkit-text-stroke: 2px var(--color-lime-500);
  text-shadow: 0 0 44px rgba(214, 237, 74, 0.28);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              -webkit-text-stroke-color 0.5s ease;
  will-change: transform;
}

.notfound__digit--spool {
  color: rgba(214, 237, 74, 0.12);
}

.notfound__code:hover .notfound__digit {
  -webkit-text-stroke-color: var(--color-lime-400);
}

/* Follows the pointer: the script sets --nf-x / --nf-y per digit. */
.notfound__digit[style*="--nf"] {
  transition-duration: 0.35s;
}

.notfound__title {
  font-size: clamp(2.1rem, 5.2vw, 4rem);
  line-height: var(--lh-snug);
}

.notfound__lead {
  margin-top: var(--space-5);
  max-width: 52ch;
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
  color: var(--text-body-muted-inverse);
}

.notfound__actions {
  margin-top: var(--space-7);
}

.notfound__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  margin-top: var(--space-8);
  padding-top: var(--space-5);
  border-top: 1px solid var(--divider-inverse);
  list-style: none;
}

.notfound__links a {
  font-size: var(--fs-nav);
  letter-spacing: var(--tracking-nav);
  text-transform: uppercase;
  color: var(--text-body-muted-inverse);
  transition: color 0.2s ease;
}

.notfound__links a:hover {
  color: var(--color-lime-500);
}

@media (prefers-reduced-motion: reduce) {
  .notfound__bg img { animation: none; }
  .notfound__digit { transition: none; }
}
