/* ═══════════════════════════════════════════
   RenovoStav B&S s.r.o. — Styles
   Dark anthracite + amber accent
   ═══════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --dark-900: #0f0f0f;
  --dark-800: #161616;
  --dark-700: #1c1c1c;
  --dark-600: #242424;
  --dark-500: #2e2e2e;
  --dark-400: #3a3a3a;
  --dark-300: #555;
  --amber: #d4a017;
  --amber-light: #e8b84a;
  --amber-dark: #b8890f;
  --text-white: #f0efe9;
  --text-light: #c8c6be;
  --text-gray: #8a8880;
  --text-dark: #5a5850;
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(212,160,23,0.25);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--dark-900);
  color: var(--text-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}
a { color:inherit; text-decoration:none; }
img { max-width:100%; height:auto; display:block; }

/* ── Language Toggle ── */
span.lang-en { display: none; }
html.lang-en span.lang-cs { display: none; }
html.lang-en span.lang-en { display: inline; }

/* ── Container ── */
.container { max-width:1140px; margin:0 auto; padding:0 24px; }

/* ── Utility ── */
.text-amber { color: var(--amber); }

/* ── Screen reader only (SEO H1) ── */
.sr-only {
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* ── Honeypot ── */
.hp-field { position:absolute; left:-9999px; opacity:0; height:0; overflow:hidden; }

/* ═══════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 36px;
  background: rgba(15, 15, 15, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: none;
  transition: background 0.4s;
  mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}
.navbar.scrolled {
  background: rgba(15, 15, 15, 0.6);
}

.nav-logo-img {
  height: 101px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
  transition: height 0.3s;
}
.navbar.scrolled .nav-logo-img { height: 75px; }

.nav-menu { display:flex; gap:28px; }
.nav-link {
  font-size: 1.05rem; font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.3px;
  transition: color 0.2s;
  position: relative;
  cursor: pointer;
}
.nav-link::after {
  content:''; position:absolute;
  bottom:-4px; left:0;
  width:0; height:1.5px;
  background: var(--amber);
  transition: width 0.3s;
}
.nav-link:hover { color: var(--amber); }
.nav-link:hover::after { width:100%; }

.nav-right { display:flex; align-items:center; gap:12px; }

.lang-toggle {
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 600;
  color: var(--text-gray);
  background: transparent;
  border: 1px solid var(--dark-400);
  padding: 7px 18px;
  border-radius: 5px;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all 0.2s;
}
.lang-toggle:hover { border-color: var(--amber); color: var(--amber); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-light);
  transition: all 0.3s;
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #0f0f0f;
  padding-top: 116px;
  padding-bottom: 60px;
}

.hero-ambient {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 40% 35% at 50% 42%, #141312, #0f0f0f 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-bottom-fade {
  position: absolute; bottom:0; left:0; right:0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--dark-700));
  z-index: 3;
  pointer-events: none;
}

.hero-top {
  position: relative; z-index: 10;
  text-align: center;
  margin-bottom: -40px;
}

.hero-h1-white {
  font-family: var(--font-heading);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.08;
  margin-bottom: 2px;
  opacity: 0; transform: translateY(24px);
  animation: fadeInUp 0.9s ease-out 0.4s forwards;
}
.hero-h1-amber {
  font-family: var(--font-heading);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 600;
  color: var(--amber);
  line-height: 1.08;
  margin-bottom: 0;
  opacity: 0; transform: translateY(24px);
  animation: fadeInUp 0.9s ease-out 0.6s forwards;
}

/* ── Video wrapper ── */
.hero-video-wrap {
  position: relative; z-index: 5;
  margin-bottom: -30px;
  opacity: 0; transform: scale(0.95);
  animation: fadeInScale 1s ease-out 0.8s forwards;
  mask-image: radial-gradient(ellipse 65% 80% at 50% 50%, black 30%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 65%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 65% 80% at 50% 50%, black 30%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 65%, transparent 75%);
}

.hero-video {
  display: block;
  margin: 0 auto;
  width: auto; height: auto;
  max-width: 59%;
  max-height: 70vh;
  object-fit: contain;
}

/* ── Hero bottom ── */
.hero-bottom {
  position: relative; z-index: 10;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  margin-top: -10px;
}

.hero-sub {
  font-size: 14px; color: var(--text-gray);
  margin-bottom: 28px;
  letter-spacing: 0.8px; line-height: 1.5;
  opacity: 0; transform: translateY(16px);
  animation: fadeInUp 0.7s ease-out 1.0s forwards;
}

.hero-cta {
  display: inline-block;
  background: var(--amber); color: var(--dark-900);
  padding: 16px 42px; border-radius: 50px;
  font-size: 15px; font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 24px rgba(212,160,23,0.3);
  text-decoration: none;
  opacity: 0; transform: translateY(16px);
  animation: fadeInUp 0.8s ease-out 1.2s forwards, ctaPulse 2.5s ease-in-out 3s infinite;
}
.hero-cta:hover {
  background: var(--amber-light);
  box-shadow: 0 6px 36px rgba(212,160,23,0.5);
  transform: translateY(-3px);
  animation: none;
}

.hero-phone {
  margin-top: 14px;
  font-size: 14px; color: var(--text-dark);
  letter-spacing: 0.5px;
  opacity: 0;
  animation: fadeInUp 0.7s ease-out 1.4s forwards;
}
.hero-phone a { color: var(--text-gray); transition: color 0.2s; }
.hero-phone a:hover { color: var(--amber); }

.hero-stats {
  display: flex; gap: 48px;
  margin-top: 36px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 1.6s forwards;
}
.hero-stat { text-align: center; }
.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 26px; font-weight: 700; color: var(--amber);
}
.hero-stat-label {
  font-size: 9px; color: var(--dark-300);
  text-transform: uppercase; letter-spacing: 2px;
  margin-top: 4px;
}

/* ── Scroll indicator ── */
.hero-scroll {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 2s forwards;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 1.5px solid rgba(240,239,233,0.2);
  border-radius: 11px;
  display: flex; justify-content: center;
  padding-top: 7px;
}
.scroll-dot {
  width: 3px; height: 7px;
  background: var(--amber);
  border-radius: 2px;
  animation: scrollHint 2s ease-in-out infinite;
}
.scroll-text {
  font-size: 8px; color: #333;
  letter-spacing: 3px; text-transform: uppercase;
}

/* ═══════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════ */
.section-services {
  position: relative;
  padding: 80px 0;
  background: var(--dark-700);
  z-index: 1;
}

.section-alt {
  position: relative;
  padding: 80px 0;
  background: var(--dark-800);
  z-index: 1;
}

.section-header { margin-bottom: 0; }

.section-line { width:36px; height:2px; background:var(--amber); margin-bottom:16px; }

.section-title {
  font-family: var(--font-heading);
  font-size: 2rem; font-weight:600;
  color: var(--text-white); margin-bottom:6px;
}

.section-subtitle {
  font-size:0.9rem; color:var(--text-gray);
  font-weight:300; margin-bottom:40px;
}

/* Section transitions */
.section-services + .section-alt::before,
.section-alt + .section-services::before {
  content:''; position:absolute; top:-60px; left:0; right:0; height:60px; pointer-events:none;
}
.section-services + .section-alt::before { background:linear-gradient(to bottom, var(--dark-700), var(--dark-800)); }
.section-alt + .section-services::before { background:linear-gradient(to bottom, var(--dark-800), var(--dark-700)); }

/* ═══════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════ */
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }

.service-card {
  background: var(--dark-600);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 38px 28px;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  position: relative; overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content:''; position:absolute; inset:0; border-radius:10px;
  background: radial-gradient(circle 150px at var(--mx,50%) var(--my,50%),
    rgba(212,160,23,0.06), transparent);
  opacity:0; transition:opacity 0.4s; pointer-events:none;
}
.service-card:hover::before { opacity:1; }
.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.3);
}

.service-icon {
  width:52px; height:52px;
  background: var(--amber);
  border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:22px;
  color: var(--dark-900);
  box-shadow: 0 3px 12px rgba(212,160,23,0.2);
}

.service-card h3 { font-size:1.1rem; font-weight:600; color:var(--text-white); margin-bottom:10px; }
.service-card p { font-size:0.9rem; color:var(--text-gray); line-height:1.7; font-weight:300; }

/* ═══════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════ */
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:start; }
.about-image { align-self: center; }
.about-text p { font-size:1.02rem; color:var(--text-light); line-height:1.85; font-weight:300; margin-bottom:16px; }
.about-text strong { font-weight:600; }
.about-meta { font-size:0.72rem; color:var(--text-dark); margin-top:16px; padding-top:16px; border-top:1px solid var(--border); line-height:1.8; }

/* About video */
.about-video-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%),
              linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%),
                      linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
}
.about-video-wrap video { display:none; position:absolute; }
.about-video-wrap canvas { display:block; width:100%; }

/* ═══════════════════════════════════════════
   REFERENCES
   ═══════════════════════════════════════════ */
.ref-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.ref-card { border-radius:10px; overflow:hidden; border:1px solid var(--border); background:var(--dark-600); transition:border-color 0.3s; }
.ref-card:hover { border-color:var(--border-hover); }
.ref-slider { position:relative; height:360px; overflow:hidden; cursor:ew-resize; user-select:none; -webkit-user-select:none; }
.ref-img { position:absolute; inset:0; }
.ref-img-before { z-index:1; }
.ref-img-after { z-index:0; }
.ref-placeholder { width:100%; height:100%; display:block; font-size:0; }
.ref-placeholder-before { background:linear-gradient(135deg,#2a2520,#3a3028); }
.ref-placeholder-after { background:linear-gradient(135deg,#20282a,#283830); }
.ref-img img { width:100%; height:100%; object-fit:cover; display:block; }
.ref-img-after img { transform: scale(1.37); }

.ref-label-before,
.ref-label-after {
  position:absolute; top:12px;
  font-size:0.65rem; font-weight:600; letter-spacing:2px; text-transform:uppercase;
  color:var(--amber); background:rgba(15,15,15,0.75);
  padding:4px 10px; border-radius:4px; z-index:4;
  pointer-events:none; white-space:nowrap; transition:none;
}

.ref-handle {
  position:absolute; top:0; bottom:0; left:50%; transform:translateX(-50%);
  z-index:3; width:4px;
  display:flex; flex-direction:column; align-items:center;
  pointer-events:none;
}
.ref-handle-line { flex:1; width:2px; background:var(--amber); }
.ref-handle-knob {
  width:32px; height:32px; border-radius:50%;
  background:var(--amber); border:2px solid var(--dark-800);
  display:flex; align-items:center; justify-content:center; gap:0;
  color:var(--dark-900); box-shadow:0 2px 10px rgba(0,0,0,0.4);
  flex-shrink:0; position:absolute; top:50%; transform:translateY(-50%);
}

/* ═══════════════════════════════════════════
   USP
   ═══════════════════════════════════════════ */
.usp-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.usp-card { text-align:center; padding:48px 24px; background:var(--dark-600); border:1px solid var(--border); border-radius:14px; transition:all 0.3s; cursor:pointer; }
.usp-card:hover { border-color:var(--border-hover); transform:translateY(-3px); }
.usp-value { font-family:var(--font-heading); font-size:2.6rem; font-weight:700; color:var(--amber); line-height:1; display:flex; align-items:center; justify-content:center; }
.usp-value svg { color:var(--amber); }
.usp-label { font-size:0.9rem; color:var(--text-gray); margin-top:12px; font-weight:300; }

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.faq-list { max-width:800px; }
.faq-item { border-bottom:1px solid var(--border); }
.faq-item:last-child { border-bottom:none; }
.faq-question {
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:20px 0; background:none; border:none;
  color:var(--text-white); font-family:var(--font-body);
  font-size:1.05rem; font-weight:500; text-align:left;
  cursor:pointer; transition:color 0.2s;
}
.faq-question:hover { color:var(--amber); }
.faq-chevron { flex-shrink:0; color:var(--amber); transition:transform 0.3s; }
.faq-item.open .faq-chevron { transform:rotate(180deg); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height 0.4s ease, padding 0.4s ease; }
.faq-item.open .faq-answer { max-height:300px; padding-bottom:20px; }
.faq-answer p { font-size:0.92rem; color:var(--text-gray); line-height:1.8; font-weight:300; }
.faq-answer a { color:var(--amber); text-decoration:underline; }

/* ═══════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════ */
.contact-grid { display:grid; grid-template-columns:1.3fr 0.7fr; gap:48px; }
.contact-form { position:relative; }
.form-field { margin-bottom:18px; }
.form-field label { display:block; font-size:0.82rem; font-weight:500; color:var(--text-gray); margin-bottom:8px; letter-spacing:0.3px; }
.form-field input, .form-field textarea {
  width:100%; padding:14px 18px;
  background:var(--dark-600); border:1px solid var(--border); border-radius:8px;
  color:var(--text-white); font-family:var(--font-body); font-size:0.95rem;
  transition:border-color 0.2s, box-shadow 0.2s; outline:none;
}
.form-field input:focus, .form-field textarea:focus { border-color:var(--amber); box-shadow:0 0 0 3px rgba(212,160,23,0.08); }
.form-field input::placeholder, .form-field textarea::placeholder { color:var(--text-dark); }
.form-field textarea { min-height:100px; resize:vertical; }

.btn-submit {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  width:100%; padding:16px 24px;
  background:var(--amber); border:none; border-radius:6px;
  color:var(--dark-900); font-family:var(--font-body);
  font-size:0.88rem; font-weight:600; cursor:pointer;
  transition:all 0.2s; letter-spacing:0.3px;
}
.btn-submit:hover { background:var(--amber-light); box-shadow:0 4px 20px rgba(212,160,23,0.25); transform:translateY(-1px); }
.btn-submit:active { transform:translateY(0); }

.form-status { margin-top:14px; font-size:0.82rem; text-align:center; min-height:24px; }
.form-status.success { color:#6ec87a; }
.form-status.error { color:#e87a5c; }

.contact-details h3 { font-size:1.4rem; font-weight:600; color:var(--text-white); margin-bottom:24px; }
.contact-item { display:flex; align-items:flex-start; gap:16px; margin-bottom:24px; }
.contact-item-icon { width:44px; height:44px; flex-shrink:0; background:var(--dark-500); border:1px solid var(--border); border-radius:8px; display:flex; align-items:center; justify-content:center; color:var(--amber); }
.contact-item-label { font-size:0.72rem; font-weight:600; color:var(--text-dark); text-transform:uppercase; letter-spacing:1px; margin-bottom:2px; }
.contact-item-value { font-size:1.1rem; color:var(--text-light); font-weight:300; line-height:1.5; }
.contact-item-value a { transition:color 0.2s; }
.contact-item-value a:hover { color:var(--amber); }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer { padding:18px 0; background:var(--dark-900); position:relative; z-index:1; }
.footer-inner { display:flex; justify-content:space-between; align-items:center; }
.footer-left { font-size:1rem; color:var(--amber); line-height:1.8; }
.footer-right { font-size:1rem; color:var(--amber); }

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════ */
.animate-on-scroll { opacity:0; transform:translateY(24px); transition:opacity 0.7s ease, transform 0.7s ease; }
.animate-on-scroll.visible { opacity:1; transform:translateY(0); }

/* ═══════════════════════════════════════════
   FLOATING CTA
   ═══════════════════════════════════════════ */
@keyframes ctaFloat {
  0%,100% { box-shadow:0 4px 24px rgba(212,160,23,0.35), 0 0 0 0 rgba(212,160,23,0.4); }
  50% { box-shadow:0 4px 24px rgba(212,160,23,0.35), 0 0 0 12px rgba(212,160,23,0); }
}
.floating-cta {
  position:fixed; bottom:28px; right:28px; z-index:900;
  display:inline-flex; align-items:center; gap:8px;
  padding:14px 28px; background:var(--amber); color:var(--dark-900);
  font-family:var(--font-body); font-size:0.95rem; font-weight:600;
  border-radius:50px; text-decoration:none;
  animation:ctaFloat 2.5s ease-in-out infinite;
  transition:opacity 0.4s, transform 0.4s, background 0.2s;
}
.floating-cta:hover { background:var(--amber-light); animation:none; box-shadow:0 6px 32px rgba(212,160,23,0.5); transform:translateY(-2px); }
.floating-cta.hidden { opacity:0; pointer-events:none; transform:translateY(20px); animation:none; }

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
@keyframes fadeInUp { to { opacity:1; transform:translateY(0) scale(1); } }
@keyframes fadeInScale { to { opacity:1; transform:scale(1); } }
@keyframes ctaPulse {
  0%,100% { box-shadow:0 4px 24px rgba(212,160,23,0.3), 0 0 0 0 rgba(212,160,23,0.3); }
  50% { box-shadow:0 4px 24px rgba(212,160,23,0.3), 0 0 0 14px rgba(212,160,23,0); }
}
@keyframes scrollHint {
  0%,100% { transform:translateY(0); opacity:1; }
  50% { transform:translateY(10px); opacity:0.2; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .usp-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .navbar { padding: 10px 16px; }
  .nav-logo-img { height: 81px; }
  .hero { padding-top: 55px; }

  .nav-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }
  .nav-menu.open { display: flex; }
  .nav-menu .nav-link { font-size: 1.2rem; }
  .nav-hamburger { display: flex; }

  .hero-video { max-width: 70%; max-height: 40vh; }

  .hero-stats { gap: 28px; }
  .hero-stat-value { font-size: 20px; }
  .hero-cta { padding: 14px 32px; font-size: 14px; }

  .services-grid { grid-template-columns: 1fr; }
  .section-services, .section-alt { padding: 56px 0; }
  .about-grid { grid-template-columns: 1fr; }
  .ref-grid { grid-template-columns: 1fr; }
  .ref-slider { height: 200px; }
  .usp-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
  .floating-cta { bottom: 16px; right: 16px; padding: 10px 20px; font-size: 0.8rem; }
  .container { padding: 0 16px; }
}

@media (max-width: 480px) {
  .usp-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .hero-h1-white, .hero-h1-amber,
  .hero-sub, .hero-cta, .hero-phone,
  .hero-stats, .hero-scroll,
  .service-card, .animate-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .scroll-dot { animation: none; }
  html { scroll-behavior: auto; }
}
