/* ==========================================================================
   Crown Money Reviews — crownmoneyreviews.com.au
   Brand: #250B40 (royal purple) · #E6DEEE (lavender) · white · gold accent
   Type: Fraunces (display) · Outfit (body)
   ========================================================================== */

:root {
  --purple: #250B40;
  --purple-soft: #3A1A5E;
  --purple-deep: #1A0730;
  --lavender: #E6DEEE;
  --lavender-soft: #F4F0F9;
  --gold: #F2B72E;
  --gold-soft: #F8D585;
  --ink: #241832;
  --ink-soft: #5C4E6E;
  --white: #FFFFFF;
  --display: "Fraunces", Georgia, serif;
  --body: "Outfit", -apple-system, sans-serif;
  --radius: 18px;
  --shadow: 0 18px 50px -18px rgba(37, 11, 64, 0.25);
  --maxw: 1160px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, video, iframe { max-width: 100%; display: block; }

a { color: inherit; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow { max-width: 820px; }

.center { text-align: center; }

/* ---------- Type ---------- */

h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; }

h1 { font-size: clamp(2.8rem, 7vw, 4.8rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 0.5em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple-soft);
  margin-bottom: 1.1rem;
}

.eyebrow-light { color: var(--gold-soft); }

.section-sub {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 640px;
  margin-bottom: 3rem;
}

.section-sub-light { color: rgba(230, 222, 238, 0.85); }

.lead { font-size: 1.2rem; font-weight: 500; margin-bottom: 1.4rem; }

.gold { color: var(--gold); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  font-family: var(--body);
}

.btn-lg { padding: 1rem 2.2rem; font-size: 1.05rem; }

.btn-gold {
  background: var(--gold);
  color: var(--purple-deep);
  box-shadow: 0 10px 30px -10px rgba(242, 183, 46, 0.6);
}

.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -10px rgba(242, 183, 46, 0.75); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(230, 222, 238, 0.5);
}

.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(37, 11, 64, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.brand img { height: 38px; width: auto; }

.site-nav { display: flex; gap: 1.6rem; }

.site-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.site-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 1.1rem; }

.phone-link { font-weight: 700; text-decoration: none; color: var(--purple); font-size: 0.95rem; }

@media (max-width: 900px) {
  .site-nav { display: none; }
  .phone-link { display: none; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(90, 45, 140, 0.55), transparent 60%),
    radial-gradient(900px 500px at 10% 110%, rgba(242, 183, 46, 0.12), transparent 55%),
    var(--purple-deep);
  color: var(--white);
  overflow: hidden;
  padding: clamp(4.5rem, 9vw, 8rem) 0 clamp(3rem, 6vw, 5rem);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner { position: relative; text-align: center; }

.hero .eyebrow { color: var(--gold-soft); }

.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

.hero-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.hero-stars .stars {
  color: var(--gold);
  font-size: 1.35rem;
  letter-spacing: 0.18em;
  line-height: 1;
  text-shadow: 0 0 20px rgba(242, 183, 46, 0.55);
}

.hero-stars .stars-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(230, 222, 238, 0.9);
}

@media (max-width: 480px) {
  .hero-stars { flex-direction: column; gap: 0.3rem; }
}

.hero-sub {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  max-width: 680px;
  margin: 1.4rem auto 2.2rem;
  color: rgba(230, 222, 238, 0.9);
}

.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3.5rem; }

.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 980px;
  margin: 0 auto;
}

@media (max-width: 860px) { .stat-band { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stat-band { grid-template-columns: 1fr; } }

.stat {
  background: rgba(230, 222, 238, 0.07);
  border: 1px solid rgba(230, 222, 238, 0.14);
  border-radius: var(--radius);
  padding: 1.5rem 1.2rem 1.3rem;
  backdrop-filter: blur(6px);
}

.stat-value {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}

.stat-label { display: block; font-size: 0.92rem; margin-top: 0.5rem; color: rgba(255,255,255,0.92); }

.stat-compare { display: block; font-size: 0.78rem; margin-top: 0.35rem; color: rgba(230, 222, 238, 0.55); }

.stat-source {
  font-size: 0.75rem;
  color: rgba(230, 222, 238, 0.45);
  margin-top: 1.6rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Media strip ---------- */

.media-strip {
  background: var(--white);
  padding: 2.4rem 0 2.8rem;
  border-bottom: 1px solid rgba(37, 11, 64, 0.07);
}

.media-title {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1.6rem;
}

.marquee { overflow: hidden; position: relative; }

.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}

.marquee::before { left: 0; background: linear-gradient(90deg, var(--white), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--white), transparent); }

.marquee-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: scroll 45s linear infinite;
  padding: 0 2rem;
}

.marquee-track img {
  height: 34px;
  width: auto;
  filter: grayscale(1) opacity(0.65);
  transition: filter 0.3s ease;
}

.marquee-track img:hover { filter: grayscale(0) opacity(1); }

@keyframes scroll {
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; }
}

/* ---------- Sections ---------- */

.section { padding: clamp(4rem, 8vw, 6.5rem) 0; }

.section-lavender { background: linear-gradient(180deg, var(--lavender-soft), var(--lavender) 140%); }

.section-dark {
  background:
    radial-gradient(1000px 500px at 15% 0%, rgba(90, 45, 140, 0.5), transparent 60%),
    var(--purple);
  color: var(--white);
}

/* ---------- Google reviews embed ---------- */

.reviews-embed {
  background: var(--lavender-soft);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  min-height: 320px;
}

/* ---------- Review cards ---------- */

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

@media (max-width: 980px) { .review-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .review-grid { grid-template-columns: 1fr; } }

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  border-top: 4px solid var(--gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover { transform: translateY(-5px); box-shadow: 0 26px 60px -20px rgba(37, 11, 64, 0.35); }

.badge-gold {
  align-self: flex-start;
  background: linear-gradient(120deg, var(--gold), var(--gold-soft));
  color: var(--purple-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.32rem 0.8rem;
  border-radius: 999px;
}

.review-card blockquote {
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--purple);
}

.review-body { font-size: 0.95rem; color: var(--ink-soft); flex-grow: 1; }

.review-card footer { border-top: 1px solid rgba(37, 11, 64, 0.08); padding-top: 0.9rem; }

.review-card cite { font-style: normal; font-weight: 700; display: block; }

.outcome { font-size: 0.8rem; color: var(--ink-soft); }

/* ---------- Video testimonials ---------- */

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  margin-bottom: 2.2rem;
}

@media (max-width: 980px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .video-grid { grid-template-columns: 1fr; } }

.video-card {
  background: rgba(230, 222, 238, 0.06);
  border: 1px solid rgba(230, 222, 238, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.video-card:hover { transform: translateY(-4px); border-color: rgba(242, 183, 46, 0.5); }

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background:
    radial-gradient(400px 200px at 50% 0%, rgba(90, 45, 140, 0.6), transparent),
    var(--purple-deep);
}

.video-card figcaption {
  padding: 0.85rem 1.1rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--lavender);
}

.video-card.is-hidden { display: none; }

#loadMoreVideos { margin: 0 auto 1rem; }

.feature-videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  margin-top: 3.2rem;
}

@media (max-width: 860px) { .feature-videos { grid-template-columns: 1fr; } }

.feature-video h3 { margin-bottom: 0.9rem; color: var(--gold-soft); }

.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 22px 55px -20px rgba(0, 0, 0, 0.55);
}

.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- Case studies ---------- */

.case-study {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.6rem;
  align-items: center;
  margin-bottom: 3.5rem;
  background: var(--lavender-soft);
  border-radius: calc(var(--radius) * 1.4);
  padding: 2.4rem;
}

.case-study:last-child { margin-bottom: 0; }

.case-study-flip { grid-template-columns: 1.15fr 0.85fr; }

.case-study-flip .case-media { order: 2; }

@media (max-width: 860px) {
  .case-study, .case-study-flip { grid-template-columns: 1fr; padding: 1.6rem; }
  .case-study-flip .case-media { order: 0; }
}

.case-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
}

.case-body h3 {
  color: var(--purple);
  margin-bottom: 1rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.case-body p { margin-bottom: 1rem; color: var(--ink-soft); }

.case-body p:first-of-type::first-letter {
  font-family: var(--display);
  font-size: 2.2em;
  line-height: 1;
  float: left;
  padding-right: 0.12em;
  color: var(--gold);
  font-weight: 700;
}

/* ---------- Awards ---------- */

.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  margin-bottom: 3rem;
}

@media (max-width: 980px) { .awards-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .awards-grid { grid-template-columns: repeat(2, 1fr); } }

.award {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.6rem 1.2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.award:hover { transform: translateY(-5px) rotate(-0.5deg); }

.award img { height: 130px; width: auto; margin: 0 auto 1rem; object-fit: contain; }

.award figcaption { font-size: 0.82rem; line-height: 1.45; color: var(--ink-soft); }

.award figcaption strong { color: var(--purple); }

.awards-photo { max-width: 860px; margin: 0 auto; text-align: center; }

.awards-photo img { border-radius: calc(var(--radius) * 1.4); box-shadow: var(--shadow); }

.awards-photo figcaption { margin-top: 0.9rem; font-size: 0.9rem; color: var(--ink-soft); }

.awards-note {
  text-align: center;
  font-size: 0.92rem;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 2rem auto 0;
}

/* ---------- About ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.4rem;
  align-items: start;
}

@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

.about-copy h3 { margin: 1.8rem 0 0.8rem; color: var(--purple); }

.about-copy p { margin-bottom: 1rem; color: var(--ink-soft); }

.check-list { list-style: none; margin-top: 1.4rem; }

.check-list li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 0.7rem;
  font-weight: 500;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--purple-deep);
  font-size: 0.8rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.why-card {
  background: var(--purple);
  color: var(--white);
  border-radius: calc(var(--radius) * 1.4);
  padding: 2.2rem 2rem;
  position: sticky;
  top: 96px;
  box-shadow: 0 30px 70px -25px rgba(37, 11, 64, 0.55);
}

.why-card > h3 { color: var(--gold-soft); margin-bottom: 1.6rem; }

.why-item { margin-bottom: 1.4rem; }

.why-item h4 { font-size: 1.02rem; margin-bottom: 0.3rem; color: var(--gold); }

.why-item p { font-size: 0.92rem; color: rgba(230, 222, 238, 0.85); }

.mfaa {
  border-top: 1px solid rgba(230, 222, 238, 0.2);
  margin-top: 1.8rem;
  padding-top: 1.6rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.mfaa img { width: 84px; border-radius: 8px; background: var(--white); padding: 4px; }

.mfaa p { font-size: 0.8rem; color: rgba(230, 222, 238, 0.75); }

/* ---------- Team ---------- */

.leader-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  margin-bottom: 3.4rem;
}

@media (max-width: 860px) { .leader-grid { grid-template-columns: repeat(2, 1fr); } }

.leader img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  filter: grayscale(0.2);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.leader:hover img { filter: grayscale(0); transform: translateY(-4px); }

.leader figcaption { margin-top: 0.8rem; }

.leader strong { display: block; font-size: 1.02rem; }

.leader span { font-size: 0.85rem; color: var(--ink-soft); }

.team-sub { margin-bottom: 1.4rem; color: var(--purple); }

.team-wall {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
}

/* Featured team member (Head of Sales) — larger, with animated purple ring */
.team-featured {
  position: relative;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
}

.team-featured::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    var(--purple) 0%,
    #7A3FF2 25%,
    var(--lavender) 45%,
    #A05CE8 65%,
    var(--purple-soft) 85%,
    var(--purple) 100%
  );
  animation: ring-spin 3.5s linear infinite;
}

.team-featured::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 63, 242, 0.35), transparent 70%);
  filter: blur(8px);
  z-index: -1;
  animation: ring-pulse 3.5s ease-in-out infinite;
}

.team-wall .team-featured img {
  position: relative;
  z-index: 1;
  width: 98px;
  height: 98px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: 0 8px 20px -8px rgba(37, 11, 64, 0.35);
  transition: transform 0.25s ease;
}

.team-wall .team-featured:hover img { transform: scale(1.08); }

@keyframes ring-spin {
  to { transform: rotate(360deg); }
}

@keyframes ring-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
  .team-featured::before, .team-featured::after { animation: none; }
}

.team-wall img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
  box-shadow: 0 8px 20px -8px rgba(37, 11, 64, 0.35);
  transition: transform 0.25s ease;
}

.team-wall img:hover { transform: scale(1.12); z-index: 2; position: relative; }

/* ---------- FAQ ---------- */

.faq-item {
  border: 1px solid rgba(37, 11, 64, 0.12);
  border-radius: var(--radius);
  margin-bottom: 0.9rem;
  background: var(--white);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item[open] { box-shadow: var(--shadow); border-color: rgba(242, 183, 46, 0.5); }

.faq-item summary {
  cursor: pointer;
  padding: 1.15rem 1.4rem;
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p { padding: 0 1.4rem 1.3rem; color: var(--ink-soft); }

.faq-item a { color: var(--purple); font-weight: 600; }

/* ---------- Booking ---------- */

.booking-embed {
  background: var(--white);
  border-radius: calc(var(--radius) * 1.4);
  padding: 1.2rem;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.6);
  max-width: 880px;
  margin: 0 auto;
}

.contact-alt { text-align: center; margin-top: 1.8rem; color: rgba(230, 222, 238, 0.85); }

.contact-alt a { color: var(--gold); font-weight: 700; text-decoration: none; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--purple-deep);
  color: rgba(230, 222, 238, 0.8);
  padding: 4rem 0 2.5rem;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand img { margin-bottom: 1.1rem; }

.footer-brand p { margin-bottom: 1rem; max-width: 320px; }

.footer-contact a { color: var(--gold); text-decoration: none; font-weight: 600; }

.footer-links h4 {
  font-family: var(--body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-soft);
  margin-bottom: 1rem;
}

.footer-links a {
  display: block;
  text-decoration: none;
  margin-bottom: 0.55rem;
  color: rgba(230, 222, 238, 0.75);
  transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--gold); }

.footer-legal {
  border-top: 1px solid rgba(230, 222, 238, 0.15);
  padding-top: 1.8rem;
  font-size: 0.78rem;
  color: rgba(230, 222, 238, 0.5);
}

.footer-legal p { margin-bottom: 0.8rem; max-width: 900px; }

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
