/* =========================================================
   Lawrex – Kanzlei-Landingpage
   Palette: Navy ink + light mist, monochrome professional
   Type: Poppins (display/body) + Playfair Display (accents)
   Radius system: buttons = pill, cards = 16px, inputs = 10px
   ========================================================= */

:root {
  --ink:        #2b333f;
  --ink-2:      #5c6675;
  --ink-3:      #8b94a1;
  --navy:       #2b333e;
  --navy-deep:  #232a34;
  --paper:      #ffffff;
  --mist:       #eef1f6;
  --mist-2:     #e4e9f0;
  --card:       #eef1f6;
  --card-mid:   #cfd7e3;
  --line:       rgba(43, 51, 63, 0.10);
  --line-light: rgba(255, 255, 255, 0.12);

  --hero-a: #e6ebf1;
  --hero-b: #d3dbe6;

  --shadow-sm: 0 8px 24px rgba(43, 51, 63, 0.06);
  --shadow-md: 0 22px 60px rgba(43, 51, 63, 0.12);
  --shadow-lg: 0 40px 90px rgba(35, 42, 52, 0.28);

  --radius-card: 16px;
  --radius-input: 10px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --container: 1200px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.15; font-weight: 700; letter-spacing: -0.01em; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.serif { font-family: "Playfair Display", Georgia, serif; letter-spacing: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-size: 0.9rem; font-weight: 600; white-space: nowrap;
  cursor: pointer; border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn svg { transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }

.btn-solid { background: var(--ink); color: #fff; }
.btn-solid:hover { background: #1c232d; box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn-solid.light { background: #fff; color: var(--ink); }
.btn-solid.light:hover { background: #f1f4f8; }

.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(43,51,63,0.25); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }

/* ---------- Section heads / eyebrow ---------- */
.section-head { margin-bottom: 52px; }
.section-head.center { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }
.eyebrow {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-2);
  margin-bottom: 14px;
}
.eyebrow.light { color: rgba(255,255,255,0.72); }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), padding 0.3s var(--ease);
  padding: 8px 0;
}
.site-header.scrolled { background: rgba(255,255,255,0.92); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--line), var(--shadow-sm); }
.header-inner { display: flex; align-items: center; gap: 28px; height: 68px; }

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.4rem; letter-spacing: -0.02em; color: var(--ink); }
.brand-mark { display: grid; place-items: center; width: 34px; height: 34px; color: var(--ink); }
.brand-name { font-weight: 700; }

.nav-primary { display: flex; gap: 30px; margin-left: 12px; }
.nav-primary a { font-size: 0.92rem; font-weight: 500; color: var(--ink); position: relative; padding: 4px 0; }
.nav-primary a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--ink); transition: width 0.3s var(--ease); }
.nav-primary a:hover::after { width: 100%; }

.call-pill { display: inline-flex; align-items: center; gap: 12px; margin-left: auto; padding: 8px 8px 8px 18px; }
.call-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--ink); color: #fff; order: 2; }
.call-text { display: flex; flex-direction: column; text-align: right; line-height: 1.25; }
.call-text small { font-size: 0.68rem; color: var(--ink-2); letter-spacing: 0.02em; }
.call-text strong { font-size: 0.95rem; font-weight: 700; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; border: none; background: transparent; cursor: pointer; margin-left: auto; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.3s var(--ease); margin: 0 auto; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  background: linear-gradient(120deg, var(--hero-a) 0%, var(--hero-b) 100%);
  padding-top: 84px;
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: stretch; gap: 30px; min-height: 0; }
.hero-copy { align-self: start; padding: 36px 0 48px; }
.hero-copy h1 { font-size: clamp(2.6rem, 5.4vw, 4.3rem); font-weight: 700; letter-spacing: -0.03em; }
.hero-copy p { margin: 22px 0 34px; font-size: 1.05rem; color: var(--ink-2); max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-visual { position: relative; align-self: stretch; justify-self: center; padding-top: 36px; width: 100%; max-width: 480px; }
.hero-visual img {
  width: 100%; height: 100%; max-height: 560px;
  object-fit: cover; object-position: top center;
  filter: drop-shadow(0 30px 50px rgba(35,42,52,0.18));
  -webkit-mask-image: linear-gradient(to bottom, #000 92%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 92%, transparent 100%);
}

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why { padding: 100px 0; background: var(--paper); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.why-card {
  background: var(--card); border-radius: var(--radius-card);
  padding: 44px 34px; text-align: center;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}
.why-card.featured { background: var(--card-mid); }
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.why-icon { display: grid; place-items: center; width: 82px; height: 82px; margin: 0 auto 24px; border-radius: 50%; background: #fff; color: var(--ink); }
.why-card.featured .why-icon { background: #fff; }
.why-card h3 { font-size: 1.15rem; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 14px; }
.why-card p { font-size: 0.92rem; color: var(--ink-2); max-width: 30ch; margin: 0 auto; }

/* =========================================================
   ABOUT (dark)
   ========================================================= */
.about { position: relative; background: var(--navy); color: #fff; padding: 104px 0; overflow: hidden; }
.about-dots {
  position: absolute; right: 3%; top: 50%; transform: translateY(-50%);
  width: 220px; height: 220px;
  background-image: radial-gradient(rgba(255,255,255,0.16) 1.6px, transparent 1.6px);
  background-size: 22px 22px; opacity: 0.6; pointer-events: none;
}
.about::before {
  content: ""; position: absolute; left: -12%; top: -20%;
  width: 60%; height: 140%; border-radius: 50%;
  background: rgba(255,255,255,0.03); pointer-events: none;
}
.about-grid { position: relative; display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: center; gap: 64px; }
.about-visual { position: relative; }
.about-blob {
  position: absolute; inset: -6% -4% -6% -4%;
  background: #fff;
  border-radius: 62% 38% 46% 54% / 55% 52% 48% 45%;
}
.about-visual img {
  position: relative; width: 100%; border-radius: 18px;
  aspect-ratio: 4 / 5; object-fit: cover;
}
.about-copy .eyebrow { margin-bottom: 16px; }
.about-copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.85rem); margin-bottom: 20px; }
.about-copy > p { color: rgba(255,255,255,0.72); max-width: 54ch; margin-bottom: 30px; }
.mv-list { list-style: none; display: grid; gap: 22px; margin-bottom: 34px; }
.mv-list li { display: flex; gap: 16px; }
.mv-icon { flex: none; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.10); color: #fff; }
.mv-list h4 { font-size: 1.1rem; margin-bottom: 4px; }
.mv-list p { font-size: 0.9rem; color: rgba(255,255,255,0.66); max-width: 46ch; }

/* =========================================================
   SERVICES
   ========================================================= */
.services { padding: 104px 0; background: var(--paper); }
.services .section-head h2 { font-size: clamp(2rem, 3.8vw, 3rem); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px 30px; }
.service-card {
  position: relative; isolation: isolate; text-align: center; padding: 48px 34px;
  transition: transform 0.35s var(--ease);
}
.service-card::before {
  content: ""; position: absolute; inset: 6px;
  background: var(--mist);
  border-radius: 58% 42% 47% 53% / 52% 48% 52% 48%;
  z-index: 0; transition: background 0.35s var(--ease), transform 0.5s var(--ease);
}
.service-card.featured::before { background: var(--card-mid); }
.service-card:hover { transform: translateY(-6px); }
.service-card:hover::before { transform: rotate(-4deg) scale(1.02); }
.service-icon { position: relative; z-index: 1; display: grid; place-items: center; width: 62px; height: 62px; margin: 0 auto 20px; color: var(--ink); }
.service-card h3 { position: relative; z-index: 1; font-size: 1.4rem; font-weight: 600; margin-bottom: 12px; }
.service-card p { position: relative; z-index: 1; font-size: 0.88rem; color: var(--ink-2); max-width: 28ch; margin: 0 auto; }

/* =========================================================
   TESTIMONIAL
   ========================================================= */
.testimonial-wrap { position: relative; padding: 20px 0 100px; background: var(--paper); overflow: hidden; }
.testimonial-wrap .container { position: relative; }
.testimonial-wrap::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 100px; height: 340px;
  background: var(--mist); transform: skewY(-2deg); transform-origin: left; z-index: 0;
}
.testimonial-card {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: center;
  background: var(--navy); color: #fff;
  border-radius: 22px; padding: 30px; box-shadow: var(--shadow-lg);
  max-width: 940px; margin: 60px auto 0;
}
.testimonial-photo img { border-radius: 14px; aspect-ratio: 3 / 3.4; object-fit: cover; }
.testimonial-body { padding-right: 20px; }
.testimonial-body blockquote {
  font-family: "Playfair Display", serif; font-style: italic;
  font-size: 1.05rem; line-height: 1.7; color: rgba(255,255,255,0.9);
  margin-bottom: 26px;
}
.testimonial-meta { display: flex; align-items: center; gap: 14px; }
.t-avatar { width: 54px; height: 54px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.3); object-fit: cover; }
.testimonial-meta strong { display: block; font-size: 1rem; }
.testimonial-meta span { font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.testimonial-nav { display: flex; gap: 12px; margin-top: 26px; }
.t-arrow { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: transparent; border: 1.5px solid rgba(255,255,255,0.25); color: #fff; cursor: pointer; transition: 0.25s var(--ease); }
.t-arrow:hover { background: #fff; color: var(--navy); }

/* =========================================================
   TEAM
   ========================================================= */
.team { padding: 100px 0; background: var(--paper); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 940px; margin: 0 auto; }
.team-card { text-align: center; }
.team-photo { position: relative; width: 230px; margin: 0 auto 22px; }
.team-photo::before {
  content: ""; position: absolute; inset: -8px;
  background: var(--mist);
  border-radius: 60% 40% 50% 50% / 52% 55% 45% 48%;
  z-index: 0; transition: transform 0.5s var(--ease);
}
.team-card:hover .team-photo::before { transform: rotate(6deg); }
.team-photo img { position: relative; z-index: 1; width: 230px; height: 230px; object-fit: cover; border-radius: 60% 40% 50% 50% / 52% 55% 45% 48%; }
.team-social {
  position: absolute; z-index: 2; left: 50%; bottom: 8px; transform: translate(-50%, 14px);
  display: flex; gap: 8px; padding: 8px 12px; border-radius: 999px;
  background: rgba(43,51,62,0.9); backdrop-filter: blur(4px);
  opacity: 0; transition: 0.35s var(--ease); pointer-events: none;
}
.team-card:hover .team-social { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }
.team-social a { display: grid; place-items: center; width: 26px; height: 26px; color: #fff; opacity: 0.85; transition: 0.2s; }
.team-social a:hover { opacity: 1; transform: translateY(-2px); }
.team-card h3 { font-size: 1.15rem; text-transform: uppercase; letter-spacing: 0.03em; }
.team-card span { font-size: 0.82rem; color: var(--ink-2); }

/* =========================================================
   CONTACT
   ========================================================= */
.contact { position: relative; padding: 90px 0; background: var(--paper); }
.contact::before {
  content: ""; position: absolute; inset: 0;
  background: var(--mist); transform: skewY(-2.5deg); transform-origin: top left; z-index: 0;
}
.contact-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; box-shadow: var(--shadow-md); border-radius: 20px; overflow: hidden; }
.contact-media { position: relative; min-height: 420px; }
.contact-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.play-btn {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  display: grid; place-items: center; width: 84px; height: 84px; border-radius: 50%;
  background: rgba(255,255,255,0.92); color: var(--ink); border: none; cursor: pointer;
  padding-left: 6px; transition: transform 0.3s var(--ease);
}
.play-btn::after { content: ""; position: absolute; inset: -10px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.6); animation: ripple 2.2s var(--ease) infinite; }
.play-btn:hover { transform: translate(-50%, -50%) scale(1.06); }
@keyframes ripple { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.5); opacity: 0; } }

.contact-form-wrap { background: var(--navy); color: #fff; padding: 46px 44px; }
.contact-form-wrap h2 { font-size: 1.9rem; margin: 8px 0 26px; }
.field { margin-bottom: 16px; display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.75); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border-radius: var(--radius-input);
  border: 1px solid rgba(255,255,255,0.16); background: rgba(255,255,255,0.06);
  color: #fff; font-family: inherit; font-size: 0.9rem; transition: 0.25s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.42); }
.field select { color: #fff; }
.field select option { color: var(--ink); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.10); }
.field textarea { resize: vertical; }
.field .err { font-size: 0.74rem; color: #ffb4a8; min-height: 0; }
.field.invalid input, .field.invalid textarea { border-color: #ff8a7a; }
.form-submit { margin-top: 8px; background: #fff; color: var(--ink); width: auto; }
.form-submit:hover { background: #eef1f6; }
.form-status { margin-top: 14px; font-size: 0.86rem; }
.form-status.ok { color: #9be6b4; }

/* =========================================================
   BLOG
   ========================================================= */
.blog { padding: 100px 0; background: var(--paper); }
.blog-head { display: grid; grid-template-columns: 1.3fr 1fr; align-items: end; gap: 30px; margin-bottom: 50px; }
.blog-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
.blog-intro { color: var(--ink-2); font-size: 0.94rem; text-align: right; max-width: 40ch; justify-self: end; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: #fff; border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-img { display: block; overflow: hidden; }
.blog-img img { aspect-ratio: 16 / 11; object-fit: cover; width: 100%; transition: transform 0.6s var(--ease); }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-body { padding: 24px 24px 20px; }
.blog-body h3 { font-size: 1.08rem; margin-bottom: 10px; }
.blog-body h3 a:hover { color: var(--ink-2); }
.blog-body > p { font-size: 0.86rem; color: var(--ink-2); margin-bottom: 20px; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--line); }
.author { display: flex; align-items: center; gap: 10px; }
.author img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
.author strong { display: block; font-size: 0.82rem; }
.author small { font-size: 0.72rem; color: var(--ink-3); }
.blog-share { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; color: var(--ink-2); transition: 0.25s var(--ease); }
.blog-share:hover { background: var(--mist); color: var(--ink); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.7); padding: 70px 0 26px; }
.footer-top {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.04); border-radius: 14px; padding: 22px 34px; margin-bottom: 52px;
}
.footer-brand { color: #fff; }
.footer-brand .brand-mark { color: #fff; }
.footer-follow { display: flex; align-items: center; gap: 12px; font-size: 0.88rem; }
.footer-follow a { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); color: #fff; transition: 0.25s var(--ease); }
.footer-follow a:hover { background: #fff; color: var(--navy); transform: translateY(-2px); }

.footer-cols { display: grid; grid-template-columns: 1.1fr 1.2fr 1fr 1fr; gap: 36px; padding-bottom: 44px; }
.f-col h4 { color: #fff; font-size: 1rem; margin-bottom: 22px; position: relative; padding-bottom: 12px; }
.f-col h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 34px; height: 2px; background: rgba(255,255,255,0.35); }
.f-links { list-style: none; display: grid; gap: 11px; }
.f-links a { font-size: 0.88rem; position: relative; padding-left: 16px; transition: color 0.2s, padding 0.2s; }
.f-links a::before { content: "-"; position: absolute; left: 0; color: rgba(255,255,255,0.4); }
.f-links a:hover { color: #fff; padding-left: 20px; }
.f-contact { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.fc-icon { flex: none; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.08); color: #fff; }
.f-contact small { display: block; font-size: 0.74rem; color: rgba(255,255,255,0.5); }
.f-contact a { color: #fff; font-weight: 600; font-size: 0.95rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; font-size: 0.82rem; }

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .about-grid { gap: 40px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 900px) {
  .nav-primary { display: none; }
  .nav-toggle { display: flex; }
  .call-pill { display: none; }

  .site-header.nav-open { background: #fff; }
  .nav-primary.open {
    display: flex; flex-direction: column; gap: 6px;
    position: absolute; top: 68px; left: 0; right: 0;
    background: #fff; padding: 16px 24px 24px; box-shadow: var(--shadow-md);
  }
  .nav-primary.open a { padding: 10px 0; border-bottom: 1px solid var(--line); }

  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { padding: 20px 0 30px; text-align: center; }
  .hero-copy p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-visual img { max-width: 320px; }

  .why-grid, .services-grid, .team-grid, .blog-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 420px; margin: 0 auto; }
  .about-dots { display: none; }

  .testimonial-card { grid-template-columns: 1fr; text-align: center; }
  .testimonial-photo { max-width: 260px; margin: 0 auto; }
  .testimonial-nav { justify-content: center; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-media { min-height: 300px; }

  .blog-head { grid-template-columns: 1fr; }
  .blog-intro { text-align: left; justify-self: start; }
}

@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .why, .services, .team, .blog, .about, .contact { padding: 64px 0; }
  .why-grid, .services-grid, .team-grid, .blog-grid { grid-template-columns: 1fr; }
  .why-card, .service-card { padding: 40px 28px; }
  .team-photo, .team-photo img { width: 210px; }
  .contact-form-wrap { padding: 34px 24px; }
  .footer-top { flex-direction: column; gap: 20px; text-align: center; }
  .footer-cols { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .play-btn::after { display: none; }
}
