/* =====================================================
   Casa Arroyo Blanco — Editorial Luxury (Moonshot v1)
   ===================================================== */

:root {
  --bg: #f5f1ea;
  --bg-alt: #ebe4d7;
  --paper: #faf7f1;
  --ink: #15140f;
  --ink-soft: #5e564a;
  --line: #d4ccbc;
  --accent: #7d6442;     /* warm bronze */
  --accent-soft: #b89e72;
  --terra: #a85b3a;      /* terracotta */
  --jungle: #2a3a2c;
  --dark: #14110d;
  --light: #faf7f1;
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --rule: #d4ccbc;       /* alias for --line — used in gallery zone headers */
  --muted: #5e564a;      /* alias for --ink-soft */
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; }

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ---------- Typography ---------- */
h1, h2, h3, .display {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 1.05;
  color: var(--ink);
}
.hero-title { font-size: clamp(3.5rem, 10vw, 8.5rem); font-weight: 300; }
.hero-title em { font-style: italic; color: var(--accent-soft); font-weight: 300; }
.display { font-size: clamp(2rem, 4.5vw, 4rem); }
h3 { font-family: var(--serif); font-size: 1.6rem; font-weight: 400; }

p { font-weight: 300; }
.light { color: var(--light) !important; }
.muted { color: var(--ink-soft); }
.small { font-size: 0.8125rem; }

.eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: inline-block;
}
.eyebrow-light { color: var(--accent-soft); }

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
@media (max-width: 640px) {
  .container { padding: 0 1.25rem; }
}
@media (max-width: 380px) {
  .container { padding: 0 1rem; }
}

.section { padding: clamp(5rem, 10vw, 9rem) 0; }

/* ---------- Loader ---------- */
.loader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: opacity 0.8s ease 0.3s, visibility 0s 1.1s;
}
.loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.loader-text {
  font-family: var(--serif);
  color: var(--light);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  opacity: 0;
  animation: fadeIn 0.6s ease 0.2s forwards;
}
.loader-line {
  display: block;
  width: 0;
  height: 1px;
  background: var(--accent-soft);
  animation: loaderLine 1.2s ease forwards;
}
@keyframes loaderLine { to { width: 120px; } }
@keyframes fadeIn { to { opacity: 1; } }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2.5rem;
  z-index: 100;
  transition: all 0.4s ease;
  mix-blend-mode: difference;
  color: #fff;
}
.nav.scrolled {
  mix-blend-mode: normal;
  background: rgba(245, 241, 234, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding: 1rem 2.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--serif);
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid currentColor;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-family: var(--sans);
  font-weight: 500;
}
.brand-name { font-size: 1.05rem; letter-spacing: 0.04em; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  position: relative;
  padding: 0.25rem 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  border: 1px solid currentColor;
  padding: 0.6rem 1.25rem;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: #fff; color: #14110d; border-color: #fff; }
.nav.scrolled .nav-cta:hover { background: var(--dark); color: var(--light); border-color: var(--dark); }
@media (max-width: 800px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .brand-name { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--light);
  overflow: hidden;
  background-color: #0f0d0a;
}
.hero-slides { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  filter: brightness(0.78);
  animation: heroFade 21s infinite;
  will-change: opacity, transform;
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 7s; }
.hero-slide:nth-child(3) { animation-delay: 14s; }
@keyframes heroFade {
  0%   { opacity: 0; transform: scale(1.06); }
  5%   { opacity: 1; }
  33%  { opacity: 1; transform: scale(1.14); }
  38%  { opacity: 0; }
  100% { opacity: 0; transform: scale(1.06); }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(15,13,10,0.10) 0%, rgba(15,13,10,0.5) 80%),
    linear-gradient(180deg, rgba(15,13,10,0.1) 0%, rgba(15,13,10,0.55) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 2rem;
  max-width: 1100px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.4);
}
.hero-title { margin: 0.5rem 0 1.75rem; }
.hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.125rem, 1.7vw, 1.5rem);
  color: rgba(250, 247, 241, 0.9);
  margin-bottom: 3rem;
  font-weight: 300;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(250, 247, 241, 0.7);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.hero-scroll-line {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, rgba(250,247,241,0.7), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity: 0.7; }
  50%     { transform: scaleY(0.5); opacity: 0.3; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 1.1rem 2.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid currentColor;
  background: transparent;
  font-family: var(--sans);
  position: relative;
  overflow: hidden;
}
.btn-light { background: var(--light); color: var(--ink); border-color: var(--light); }
.btn-light:hover { background: transparent; color: var(--light); }
.btn-dark { background: var(--ink); color: var(--light); border-color: var(--ink); }
.btn-dark:hover { background: var(--accent); border-color: var(--accent); }
.btn-ghost { background: transparent; color: var(--light); border-color: rgba(250,247,241,0.55); }
.btn-ghost:hover { background: var(--light); color: var(--ink); border-color: var(--light); }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2rem 0;
}
.marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
  animation: marquee 28s linear infinite;
}
.marquee-track .dot { color: var(--accent); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Intro ---------- */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 800px) { .intro-grid { grid-template-columns: 1fr; gap: 1.5rem; } }
.intro-prose p { font-size: clamp(1.05rem, 1.4vw, 1.25rem); }
.intro-prose p + p { margin-top: 1.5rem; }
.intro-prose .display { margin-bottom: 2rem; }

/* ---------- Stats bar ---------- */
.stats-bar {
  background: var(--paper);
  padding: 3.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}
@media (max-width: 800px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
.stat { display: flex; flex-direction: column; gap: 0.4rem; text-align: left; border-left: 1px solid var(--line); padding-left: 1.25rem; }
.stat:first-child { border-left: none; padding-left: 0; }
@media (max-width: 800px) { .stat { border-left: none; padding-left: 0; } }
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.stat-num {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--ink);
  line-height: 1;
}
.stat-sub {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ---------- Parallax ---------- */
.parallax {
  position: relative;
  height: 60vh;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.parallax.tall { height: 80vh; min-height: 500px; }
.parallax-overlay {
  position: absolute; inset: 0;
  background: rgba(15, 13, 10, 0.35);
}
.parallax-overlay.light { background: rgba(15, 13, 10, 0.45); }
.parallax-content { position: relative; z-index: 2; color: var(--light); padding: 0 2rem; }
.parallax-content.centered { max-width: 800px; }
@media (max-width: 800px) {
  .parallax { background-attachment: scroll; }
}

/* ---------- Split sections ---------- */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.split.reverse .split-grid > .split-text { order: 2; }
.split.reverse .split-grid > .split-image { order: 1; }
@media (max-width: 900px) {
  .split-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .split.reverse .split-grid > .split-text { order: 1; }
  .split.reverse .split-grid > .split-image { order: 2; }
}
.split-text p { font-size: 1.05rem; }
.split-text p + p { margin-top: 1rem; }
.split-text .display { margin-bottom: 1.75rem; }
.split-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.25);
}
.caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-top: 1rem;
  text-align: center;
}

/* ---------- Video section ---------- */
.video-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.video-header {
  margin-bottom: 4rem;
  max-width: 700px;
}
.video-frame {
  position: relative;
  width: min(1100px, 90vw);
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8);
  overflow: hidden;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Dark section / Features ---------- */
.section.dark {
  background: var(--dark);
  color: var(--light);
}
.section.dark p { color: rgba(250,247,241,0.75); }
.section.dark .display { color: var(--light); }
.features-header { margin-bottom: 4rem; max-width: 700px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.feature {
  padding-top: 2rem;
  border-top: 1px solid rgba(184, 158, 114, 0.3);
}
.feature h3 {
  color: var(--accent-soft);
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}
.feature p { font-size: 0.95rem; line-height: 1.65; }

/* ---------- Invitation / Quote ---------- */
.invitation { background: var(--paper); text-align: center; }
.invitation-inner { max-width: 900px; margin: 0 auto; }
.quote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.4;
  color: var(--ink);
  margin-top: 1.5rem;
}

/* ---------- Gallery zones ---------- */
.gallery-zone { margin-bottom: 5rem; }
.gallery-zone:last-child { margin-bottom: 0; }
.gallery-zone-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rule);
}
.zone-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.gallery-item {
  overflow: hidden;
  display: block;
  cursor: zoom-in;
  background: var(--bg-alt);
}
.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease, filter 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); filter: brightness(1.04); }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.wide img { height: 280px; }
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item img, .gallery-item.wide img { height: 220px; }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-item img, .gallery-item.wide img { height: 240px; }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(15, 13, 10, 0.95);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 95%;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none;
  border: none;
  color: var(--light);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
}

/* ---------- Paths ---------- */
.paths { background: var(--bg-alt); }
.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 800px) { .paths-grid { grid-template-columns: 1fr; } }
.path-card {
  background: var(--paper);
  border: 1px solid var(--line);
  display: block;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}
.path-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 30px 60px -20px rgba(0,0,0,0.15); }
.path-image {
  width: 100%;
  height: 320px;
  background-size: cover;
  background-position: center;
  transition: transform 1s ease;
}
.path-card:hover .path-image { transform: scale(1.04); }
.path-body { padding: 2.5rem; }
.path-body h3 { font-size: 1.8rem; margin-bottom: 1rem; }
.path-body p { color: var(--ink-soft); margin-bottom: 2rem; }
.path-link {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

/* ---------- Location ---------- */
.location-meta {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 2rem 2.5rem;
}
.loc-row {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.loc-row:last-child { border-bottom: none; }
.loc-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.loc-val { font-family: var(--serif); font-size: 1.1rem; color: var(--ink); }

/* ---------- Contact ---------- */
.contact-section { background: var(--paper); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.contact-meta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-meta > div { display: flex; flex-direction: column; gap: 0.3rem; }
.contact-meta a {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.2rem;
  display: inline-block;
  width: fit-content;
  transition: border-color 0.2s;
}
.contact-meta a:hover { border-color: var(--accent); }
.prose-narrow { max-width: 460px; color: var(--ink-soft); margin: 1rem 0; }

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form label {
  display: flex;
  flex-direction: column;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  gap: 0.5rem;
}
.form .full { grid-column: 1 / -1; }
.form input, .form select, .form textarea {
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 0.6rem 0;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.form input:focus, .form select:focus, .form textarea:focus { border-bottom-color: var(--ink); }
.form input:focus-visible, .form select:focus-visible, .form textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 1px;
}
.form textarea { resize: vertical; }
.form .btn { margin-top: 1.5rem; }

/* ---------- Footer ---------- */
footer {
  background: var(--dark);
  color: rgba(250, 247, 241, 0.7);
  padding: 4rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  align-items: end;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer-brand {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--light);
  margin-bottom: 0.5rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.footer-links a { color: rgba(250, 247, 241, 0.7); transition: color 0.2s; }
.footer-links a:hover { color: var(--accent-soft); }

/* ---------- Architect section ---------- */
.architect-section-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 6rem;
  align-items: center;
}
@media (max-width: 900px) {
  .architect-section-grid { grid-template-columns: 1fr; gap: 3rem; }
  .architect-section-logo { order: -1; }
}
.architect-section-text p { font-size: 1.05rem; }
.architect-section-text p + p { margin-top: 1rem; }
.architect-section-text .display { margin-bottom: 1.75rem; }
.architect-email {
  display: inline-block;
  margin-top: 1.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.2rem;
  transition: border-color 0.2s, color 0.2s;
}
.architect-email:hover { border-color: var(--accent); color: var(--terra); }
.architect-section-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.architect-section-logo img {
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
}

/* ---------- Architect credit ---------- */
.architect-credit {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(250,247,241,0.12);
}
.architect-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.architect-logo {
  width: 64px;
  height: auto;
  opacity: 0.85;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}
.architect-text { display: flex; flex-direction: column; gap: 0.2rem; }
.architect-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250,247,241,0.4);
}
.architect-name {
  font-family: var(--serif);
  font-size: 1rem;
  color: rgba(250,247,241,0.75);
  letter-spacing: 0.04em;
}
.architect-desc {
  font-size: 0.8rem;
  color: rgba(250,247,241,0.45);
  max-width: 480px;
  line-height: 1.6;
  margin-top: 0.2rem;
}
@media (max-width: 640px) {
  .architect-inner { flex-direction: column; align-items: flex-start; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .hero-slide { animation: none; opacity: 1; }
  .hero-slide:nth-child(2), .hero-slide:nth-child(3) { opacity: 0; }
  .marquee-track { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
