/* Landing — Larissa Riquelme | Media Kit */

:root {
  --graphite: #1a1a1a;
  --graphite-soft: #242424;
  --white: #ffffff;
  --carmine: #8b0000;
  --carmine-hover: #a30000;
  --muted: rgba(255, 255, 255, 0.65);
  --border: rgba(255, 255, 255, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: var(--graphite);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

section[id] {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
  scroll-margin-top: 5.5rem;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.site-wrap {
  position: relative;
  z-index: 1;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--carmine), var(--carmine-hover));
  box-shadow: 0 0 14px rgba(139, 0, 0, 0.5);
  transition: width 0.08s linear;
  pointer-events: none;
}

/* Nav */
.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 150;
  padding: max(1rem, env(safe-area-inset-top, 0px)) 1.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 26, 0.95) 0%,
    rgba(26, 26, 26, 0) 100%
  );
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.nav-bar.is-scrolled {
  background: rgba(26, 26, 26, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
}

.nav-logo span {
  color: var(--carmine);
}

.nav-links {
  display: none;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--white);
}

.nav-links a.is-active {
  position: relative;
}

.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: var(--carmine);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 48px;
  min-height: 48px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--white);
  transition: transform 0.25s, opacity 0.25s;
}

.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: rgba(26, 26, 26, 0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-mobile.is-open {
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile a {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.08em;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  align-items: end;
}

@media (min-width: 1024px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

@media (min-width: 1024px) {
  .hero-media {
    left: 40%;
  }
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  filter: grayscale(100%) contrast(1.05);
  will-change: transform;
}

@media (max-width: 1023px) {
  .hero-media img {
    will-change: auto;
    transform: none !important;
  }
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    var(--graphite) 0%,
    rgba(26, 26, 26, 0.75) 35%,
    rgba(26, 26, 26, 0.4) 100%
  );
}

@media (min-width: 1024px) {
  .hero-media::after {
    background: linear-gradient(
      90deg,
      var(--graphite) 0%,
      rgba(26, 26, 26, 0.85) 45%,
      rgba(26, 26, 26, 0.2) 100%
    );
  }
}

.hero-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 120px;
  background: var(--carmine);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: max(6rem, calc(5rem + env(safe-area-inset-top, 0px))) 1.5rem 3rem;
  max-width: 36rem;
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 8rem 4rem 4rem;
    max-width: 42rem;
  }
}

.hero-eyebrow {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--carmine-hover);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.25rem, 8vw, 3.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin: 0 0 0.5rem;
}

.hero-title-line {
  display: block;
  font-size: clamp(0.875rem, 3vw, 1.125rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-top: 0.5rem;
}

.hero-sub {
  margin: 1.5rem 0 2rem;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.95rem 1.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--carmine);
  color: var(--white);
  border-color: var(--carmine);
}

.btn-primary:hover {
  background: var(--carmine-hover);
  border-color: var(--carmine-hover);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--border);
  margin-left: 0.75rem;
}

.btn-outline:hover {
  border-color: var(--white);
}

@media (max-width: 480px) {
  .hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .btn-outline {
    margin-left: 0;
  }
}

/* Secciones */
.section {
  padding: 5rem 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

.section--bordered {
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 2.5rem;
  }
}

.section-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--carmine-hover);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 600;
  margin: 0 0 1rem;
  line-height: 1.15;
}

.section-intro {
  max-width: 40rem;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.9375rem;
}

.quote-mark {
  font-family: "Playfair Display", serif;
  color: var(--carmine);
  font-size: 3rem;
  line-height: 0;
}

/* Timeline */
.timeline {
  position: relative;
  margin-top: 3rem;
  padding-left: 0;
}

@media (min-width: 768px) {
  .timeline {
    padding-left: 2rem;
  }
  .timeline::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(
      180deg,
      var(--carmine),
      var(--border) 80%,
      transparent
    );
  }
}

.timeline-item {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
  .timeline-item {
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    padding-left: 2rem;
  }
}

.timeline-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.timeline-item {
  opacity: 0.55;
  transition: opacity 0.5s ease;
}

.timeline-item.is-inview {
  opacity: 1;
}

.timeline-year {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--carmine);
  line-height: 1;
}

.timeline-year small {
  display: block;
  font-family: Inter, sans-serif;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.5rem;
}

.timeline-img {
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4/3;
  background: var(--graphite-soft);
}

.timeline-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline-img--heritage img {
  filter: grayscale(30%);
}

/* Spotlight editorial — foto + ficha de prensa */
.press-spotlight {
  display: grid;
  margin-top: 3rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  background: var(--graphite-soft);
}

@media (min-width: 900px) {
  .press-spotlight {
    grid-template-columns: minmax(280px, 42%) 1fr;
    min-height: 420px;
  }
}

.press-spotlight__media {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

@media (min-width: 900px) {
  .press-spotlight__media {
    min-height: 100%;
  }
}

.press-spotlight__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center 18%;
  filter: grayscale(25%) contrast(1.05);
  display: block;
}

.press-spotlight__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(26, 26, 26, 0.85) 100%
  );
  pointer-events: none;
}

@media (min-width: 900px) {
  .press-spotlight__media::after {
    background: linear-gradient(
      90deg,
      transparent 55%,
      rgba(26, 26, 26, 0.92) 100%
    );
  }
}

.press-spotlight__badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  padding: 0.35rem 0.75rem;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--carmine);
  border-radius: 2px;
}

.press-spotlight__body {
  padding: 2rem 1.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 900px) {
  .press-spotlight__body {
    padding: 2.5rem 2.75rem;
  }
}

.press-spotlight__label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--carmine-hover);
  margin-bottom: 0.5rem;
}

.press-spotlight__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 1rem;
}

.press-spotlight__lead {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--muted);
  margin: 0 0 1.5rem;
  max-width: 36rem;
}

.press-spotlight__facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 480px) {
  .press-spotlight__facts {
    grid-template-columns: 1fr;
  }
}

.press-fact {
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-left: 2px solid var(--carmine);
  border-radius: 2px;
}

.press-fact strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.press-fact span {
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.press-spotlight__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.press-spotlight__list li {
  position: relative;
  padding-left: 1.125rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.press-spotlight__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: var(--carmine);
  border-radius: 50%;
}

.press-spotlight__quote {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-family: "Playfair Display", serif;
  font-size: 0.9375rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.88);
}

.press-spotlight__quote cite {
  display: block;
  margin-top: 0.5rem;
  font-family: Inter, sans-serif;
  font-size: 0.625rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--carmine-hover);
}

.timeline-body h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.375rem;
  margin: 0 0 0.75rem;
}

.timeline-body p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.9375rem;
  margin: 0;
}

/* Diferencial */
.cards-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  position: relative;
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.02);
  transition:
    border-color 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(
    280px circle at var(--mx, 50%) var(--my, 50%),
    rgba(139, 0, 0, 0.12),
    transparent 65%
  );
  transition: opacity 0.35s ease;
  pointer-events: none;
}

@media (hover: hover) {
  .card:hover {
    border-color: rgba(139, 0, 0, 0.45);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  }

  .card:hover::before {
    opacity: 1;
  }
}

.card:active {
  transform: translateY(-2px);
}

.card-num {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--carmine);
  margin-bottom: 1rem;
  line-height: 1;
}

.card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
  margin: 0 0 0.75rem;
}

.card p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

/* Bio + revista */
.bio-grid {
  display: grid;
  gap: 3rem;
  margin-top: 3rem;
}

@media (min-width: 1024px) {
  .bio-grid {
    grid-template-columns: 1fr 380px;
    align-items: start;
  }
}

.bio-text p {
  color: var(--muted);
  line-height: 1.85;
  font-size: 0.9375rem;
  margin: 0 0 1.25rem;
}

.bio-text p:first-of-type::first-letter {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  float: left;
  line-height: 0.85;
  margin: 0.1rem 0.5rem 0 0;
  color: var(--carmine);
}

.bio-visual {
  position: relative;
}

@media (min-width: 1024px) {
  .bio-visual {
    position: sticky;
    top: 6rem;
  }
}

.bio-visual img {
  width: 100%;
  border-radius: 2px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.bio-portrait {
  margin-top: 2rem;
  overflow: hidden;
  border-radius: 2px;
  max-width: 280px;
}

.bio-portrait img {
  width: 100%;
  display: block;
  filter: grayscale(20%);
}

/* Stats strip */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  margin: 0 auto;
  max-width: 72rem;
  border: 1px solid var(--border);
  width: calc(100% - 2rem);
}

@media (min-width: 768px) {
  .stats-strip {
    width: calc(100% - 5rem);
    margin-top: 0;
  }
}

@media (min-width: 640px) {
  .stats-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  background: var(--graphite);
  padding: 1.75rem 1rem;
  text-align: center;
}

.stat strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.stat span {
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Contacto */
.contact-section {
  background: var(--graphite-soft);
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: Inter, sans-serif;
  font-size: 0.875rem;
  color: var(--white);
  background: var(--graphite);
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--carmine);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-info a {
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid var(--carmine);
}

.contact-info a:hover {
  color: var(--carmine-hover);
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.contact-list__label {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.35rem;
}

.footer-sep {
  margin: 0 0.5rem;
  color: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
  padding: 2rem 1.5rem;
  text-align: center;
  border-top: 1px solid var(--border);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-bottom a {
  color: var(--muted);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--white);
}

/* Reveal scroll */
[data-reveal] {
  --reveal-delay: 0ms;
  --reveal-duration: 0.8s;
  opacity: 0;
  transition:
    opacity var(--reveal-duration) cubic-bezier(0.22, 1, 0.36, 1),
    transform var(--reveal-duration) cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay);
}

[data-reveal].is-visible {
  opacity: 1;
}

[data-reveal="up"] {
  transform: translateY(32px);
}

[data-reveal="up"].is-visible {
  transform: translateY(0);
}

[data-reveal="fade"].is-visible {
  transform: none;
}

[data-reveal="line"] {
  transform: scaleX(0);
  transform-origin: left;
}

[data-reveal="line"].is-visible {
  transform: scaleX(1);
}

/* Bloques utilitarios */
.mt-4 {
  margin-top: 1rem;
}
.mt-10 {
  margin-top: 2.5rem;
}
.mt-16 {
  margin-top: 4rem;
}
.text-sm {
  font-size: 0.875rem;
}
.italic {
  font-style: italic;
}
.text-carmine-light {
  color: var(--carmine-hover);
}
.text-strong {
  color: var(--white);
  font-weight: 600;
}

.quote-block {
  display: grid;
  gap: 1.5rem;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .quote-block {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.quote-block__img {
  overflow: hidden;
  border-radius: 2px;
  min-height: 280px;
}

.quote-block__img img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center 20%;
}

.quote-block__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--border);
  padding: 2rem 1.75rem;
}

@media (min-width: 768px) {
  .quote-block__text {
    padding: 2.5rem;
  }
}

.quote-block__cite {
  margin-top: 1rem;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--carmine-hover);
}

.quote-block__quote {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.125rem, 3vw, 1.25rem);
  font-style: italic;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

.quote-mark--end {
  text-align: right;
}

.btn-full-mobile {
  width: 100%;
}

@media (min-width: 768px) {
  .btn-full-mobile {
    width: auto;
  }
}

/* Toque: feedback al pulsar enlaces y botones */
@media (hover: none) {
  .btn:active,
  .nav-mobile a:active,
  .card:active {
    opacity: 0.88;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .scroll-progress {
    display: none;
  }

  .timeline-item {
    opacity: 1 !important;
  }

  .hero-media img {
    transform: none !important;
  }

  .card::before {
    display: none;
  }
}
