:root {
  --primary: #C0202A;
  --primary-dark: #951319;
  --ink: #1c1c1c;
  --ink-soft: #3a3a3a;
  --muted: #6b6b6b;
  --line: #e7e4e1;
  --bg: #edeae6;
  --bg-soft: #e3dfd9;
  --bg-dark: #191919;
  --bg-dark-2: #201f1e;
  --card: #dcd6ce;
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.06), 0 4px 14px rgba(20,20,20,.06);
  --shadow-md: 0 8px 30px rgba(20,20,20,.10);
  --shadow-lg: 0 24px 60px rgba(20,20,20,.18);
  --maxw: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --font: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --display: 'Archivo', var(--font);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--display); line-height: 1.06; letter-spacing: -0.02em; font-weight: 800; color: var(--ink); }
:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; border-radius: 4px; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ---------- eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font); font-weight: 700; font-size: 12.5px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--primary);
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--primary); display: inline-block; }
.eyebrow-light { color: #ff6a5f; }
.eyebrow-light::before { background: #ff6a5f; }

/* ---------- buttons ---------- */
.btn {
  --pad-y: 14px; --pad-x: 26px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font); font-weight: 700; font-size: 15px; letter-spacing: .01em;
  padding: var(--pad-y) var(--pad-x); border-radius: 999px; cursor: pointer;
  border: 1.5px solid transparent; transition: transform .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease), color .18s var(--ease);
  white-space: nowrap; line-height: 1;
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 8px 22px rgba(192,32,42,.28); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(192,32,42,.36); }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.55); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }
.btn-sm { --pad-y: 11px; --pad-x: 20px; font-size: 14px; }
.btn-lg { --pad-y: 17px; --pad-x: 34px; font-size: 16px; }
.btn-block { width: 100%; }

/* ---------- header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.0); transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled { background: rgba(237,234,230,.95); backdrop-filter: saturate(1.4) blur(10px); box-shadow: 0 1px 0 rgba(0,0,0,.05), 0 8px 30px rgba(0,0,0,.06); border-color: var(--line); }
.header-inner { display: flex; align-items: center; gap: 26px; height: 76px; }
.brand img { height: 46px; width: auto; transition: height .3s var(--ease); }
.site-header.scrolled .brand img { height: 40px; }
.main-nav { display: flex; gap: 28px; margin-left: 8px; }
.main-nav a { font-weight: 600; font-size: 15px; color: #f3f3f3; position: relative; padding: 6px 0; transition: color .2s; }
.site-header.scrolled .main-nav a { color: var(--ink-soft); }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 0; height: 2px; background: var(--primary); transition: width .25s var(--ease); }
.main-nav a:hover { color: var(--primary); }
.main-nav a:hover::after { width: 100%; }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 16px; }
.phone-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; color: #fff; }
.site-header.scrolled .phone-link { color: var(--ink); }
.phone-ico { color: var(--primary); font-size: 17px; }
.lang-toggle { display: inline-flex; border: 1.5px solid rgba(255,255,255,.5); border-radius: 999px; overflow: hidden; }
.site-header.scrolled .lang-toggle { border-color: var(--line); }
.lang-btn { background: transparent; border: 0; color: #fff; font-family: var(--font); font-weight: 700; font-size: 12.5px; letter-spacing: .06em; padding: 6px 11px; cursor: pointer; transition: background .2s, color .2s; }
.site-header.scrolled .lang-btn { color: var(--ink-soft); }
.lang-btn.active { background: var(--primary); color: #fff; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: transparent; border: 0; cursor: pointer; padding: 8px 4px; }
.nav-toggle span { width: 26px; height: 2.5px; background: #fff; border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.site-header.scrolled .nav-toggle span { background: var(--ink); }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 92vh; display: flex; flex-direction: column; justify-content: flex-end; padding-top: 76px; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background:
  linear-gradient(180deg, rgba(15,15,15,.62) 0%, rgba(15,15,15,.30) 34%, rgba(15,15,15,.55) 78%, rgba(15,15,15,.82) 100%),
  linear-gradient(90deg, rgba(15,15,15,.55) 0%, rgba(15,15,15,0) 62%); }
.hero-inner { position: relative; z-index: 2; padding-bottom: 54px; padding-top: 90px; }
.hero-copy { max-width: 690px; }
.hero h1 { color: #fff; font-size: clamp(2.5rem, 6vw, 4.6rem); font-weight: 900; text-shadow: 0 2px 30px rgba(0,0,0,.3); }
.hero .lede { color: rgba(255,255,255,.92); font-size: clamp(1.05rem, 1.6vw, 1.28rem); margin-top: 22px; max-width: 600px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-stats {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(255,255,255,.14);
  border-top: 1px solid rgba(255,255,255,.14);
}
.hero-stats .stat { background: rgba(20,18,17,.55); backdrop-filter: blur(6px); padding: 26px 10px; text-align: center; }
.stat-n { display: block; font-family: var(--display); font-weight: 900; font-size: clamp(1.8rem, 3.4vw, 2.7rem); color: #fff; letter-spacing: -.02em; }
.stat-l { display: block; color: rgba(255,255,255,.72); font-size: 13.5px; font-weight: 500; margin-top: 4px; letter-spacing: .02em; }
/* full-width stat band background */
.hero-stats { max-width: none; padding: 0; }
.hero-stats::before, .hero-stats::after { content: none; }

/* ---------- sections ---------- */
.section { padding: 92px 0; }
.section-soft { background: var(--bg-soft); }
.section-dark { background: var(--bg-dark); color: #eee; position: relative; }
.section-dark::before {
  content: ""; position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 4px 4px;
}
.section-dark > .wrap { position: relative; z-index: 1; }
.section-dark h2 { color: #fff; }
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.section-sub { color: var(--muted); font-size: 1.08rem; margin-top: 16px; }
.section-dark .section-sub { color: rgba(255,255,255,.66); }

/* ---------- services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: #ddd8d4; }
.service-media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.service-card:hover .service-media img { transform: scale(1.06); }
.service-num { position: absolute; top: 12px; left: 12px; background: var(--primary); color: #fff; font-family: var(--display); font-weight: 800; font-size: 13px; padding: 4px 10px; border-radius: 999px; letter-spacing: .04em; }
.service-body { padding: 24px 24px 28px; }
.service-body h3 { font-size: 1.28rem; }
.service-body p { color: var(--muted); margin-top: 10px; font-size: 15.5px; }

/* ---------- why ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card { padding: 30px 26px; border: 1px solid rgba(255,255,255,.10); border-radius: var(--radius); background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015)); transition: transform .3s var(--ease), border-color .3s; }
.why-card:hover { transform: translateY(-5px); border-color: rgba(255,106,95,.5); }
.why-ico { width: 46px; height: 46px; border-radius: 12px; background: rgba(192,32,42,.16); color: #ff6a5f; display: grid; place-items: center; font-size: 22px; margin-bottom: 18px; }
.why-card h3 { color: #fff; font-size: 1.16rem; }
.why-card p { color: rgba(255,255,255,.66); font-size: 15px; margin-top: 9px; }

/* ---------- process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
.process-step { position: relative; padding-top: 24px; }
.process-step::before { content: ""; position: absolute; top: 0; left: 0; width: 46px; height: 4px; background: var(--primary); border-radius: 2px; }
.process-n { font-family: var(--display); font-weight: 900; font-size: 2.6rem; color: var(--line); line-height: 1; }
.process-step h3 { font-size: 1.2rem; margin-top: 6px; }
.process-step p { color: var(--muted); margin-top: 10px; font-size: 15.5px; }

/* ---------- gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; gap: 16px; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; box-shadow: var(--shadow-sm); }
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(6) { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 18px 14px; color: #fff; font-weight: 600; font-size: 14.5px; background: linear-gradient(0deg, rgba(0,0,0,.72), transparent); opacity: 0; transform: translateY(8px); transition: opacity .3s var(--ease), transform .3s var(--ease); }
.gallery-item:hover .gallery-cap { opacity: 1; transform: translateY(0); }

/* ---------- about ---------- */
.about-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow-md); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.about-media::after { content: ""; position: absolute; left: -18px; bottom: -18px; width: 130px; height: 130px; background: var(--primary); border-radius: var(--radius); z-index: -1; }
.about-copy h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
.about-body { color: var(--ink-soft); margin-top: 18px; font-size: 1.06rem; }
.about-points { list-style: none; padding: 0; margin: 26px 0 30px; display: grid; gap: 12px; }
.about-points li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--ink); }
.tick { flex: none; width: 26px; height: 26px; border-radius: 50%; background: rgba(192,32,42,.12); color: var(--primary); display: grid; place-items: center; font-size: 14px; font-weight: 800; }

/* ---------- testimonials ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { padding: 32px 28px; border-radius: var(--radius); background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.10); }
.review-stars { color: #ffb23e; letter-spacing: 3px; font-size: 15px; margin-bottom: 16px; }
.review-quote { color: rgba(255,255,255,.9); font-size: 1.06rem; line-height: 1.62; }
.review-quote::before { content: "\201C"; font-family: var(--display); color: var(--primary); font-size: 2.4rem; line-height: 0; vertical-align: -.35em; margin-right: 4px; }
.review-by { margin-top: 20px; display: flex; align-items: center; gap: 12px; }
.review-av { width: 42px; height: 42px; border-radius: 50%; background: var(--primary); color: #fff; display: grid; place-items: center; font-family: var(--display); font-weight: 800; }
.review-name { font-weight: 700; color: #fff; font-size: 15px; }
.review-role { color: rgba(255,255,255,.55); font-size: 13px; }

/* ---------- cta band ---------- */
.cta-band { position: relative; overflow: hidden; padding: 84px 0; text-align: center; }
.cta-media { position: absolute; inset: 0; z-index: 0; }
.cta-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.2); }
.cta-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(149,19,25,.92), rgba(25,25,25,.86)); }
.cta-inner { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); }
.cta-band p { color: rgba(255,255,255,.85); margin-top: 14px; font-size: 1.1rem; }
.cta-actions { margin-top: 30px; display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; }
.cta-call { color: rgba(255,255,255,.9); font-weight: 600; }
.cta-call a { color: #fff; font-weight: 800; border-bottom: 2px solid rgba(255,255,255,.5); }
.cta-call a:hover { border-color: #fff; }

/* ---------- contact ---------- */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 28px 0 24px; display: grid; gap: 18px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 15.5px; color: var(--ink-soft); }
.contact-list a:hover { color: var(--primary); }
.ci { flex: none; width: 40px; height: 40px; border-radius: 11px; background: var(--bg-soft); border: 1px solid var(--line); color: var(--primary); display: grid; place-items: center; font-size: 18px; }
.socials { display: flex; gap: 12px; }
.socials a { width: 42px; height: 42px; border-radius: 11px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink); font-weight: 700; transition: background .2s, color .2s, border-color .2s; }
.socials a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.contact-form { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-md); }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-weight: 600; font-size: 13.5px; color: var(--ink-soft); margin-bottom: 7px; letter-spacing: .01em; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font); font-size: 15px; color: var(--ink); background: #eae4dc; transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: #8a827a; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(192,32,42,.10); background: #f1ece6; }
.field textarea { resize: vertical; }
.form-note { margin-top: 14px; font-size: 14.5px; font-weight: 600; padding: 12px 14px; border-radius: var(--radius-sm); }
.form-note.ok { background: #e9f7ec; color: #1c7a37; }
.form-note.err { background: #fdeceb; color: var(--primary-dark); }

/* ---------- footer ---------- */
.site-footer { background: var(--bg-dark-2); color: rgba(255,255,255,.7); padding-top: 62px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer-brand img { height: 46px; width: auto; margin-bottom: 16px; background: #fff; padding: 9px 14px; border-radius: 12px; box-shadow: 0 4px 14px rgba(0,0,0,.25); }
.footer-brand p { max-width: 320px; font-size: 15px; }
.footer-links h4, .footer-contact { }
.footer-links h4 { color: #fff; font-size: 15px; margin-bottom: 16px; letter-spacing: .04em; }
.footer-links a, .footer-contact a, .footer-contact span { display: block; color: rgba(255,255,255,.66); font-size: 15px; padding: 5px 0; transition: color .2s; }
.footer-links a:hover, .footer-contact a:hover { color: #ff6a5f; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; font-size: 13.5px; color: rgba(255,255,255,.5); }

/* ---------- reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .services-grid, .gallery-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .about-wrap, .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .about-media { max-width: 460px; }
  .gallery-item:nth-child(1) { grid-row: span 1; }
  .gallery-item:nth-child(6) { grid-column: span 1; }
}
@media (max-width: 820px) {
  .main-nav { position: fixed; top: 76px; left: 0; right: 0; background: var(--bg); flex-direction: column; gap: 0; padding: 8px 22px 22px; box-shadow: var(--shadow-md); transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .25s var(--ease), transform .25s var(--ease); border-top: 1px solid var(--line); }
  .main-nav.open { opacity: 1; transform: none; pointer-events: auto; }
  .main-nav a { color: var(--ink) !important; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav-toggle { display: flex; }
  .header-actions .phone-link { display: none; }
  .header-actions .btn { display: none; }
  .site-header { background: rgba(255,255,255,.94); backdrop-filter: saturate(1.4) blur(10px); border-color: var(--line); }
  .site-header .main-nav a, .site-header .phone-link, .site-header .lang-btn { color: var(--ink-soft); }
  .site-header .nav-toggle span { background: var(--ink); }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding: 66px 0; }
  .hero { min-height: 88vh; }
  .hero-inner { padding-bottom: 40px; }
  .services-grid, .gallery-grid, .reviews-grid, .why-grid, .process-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stats .stat { padding: 18px 10px; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .cta-actions { flex-direction: column; gap: 16px; }
  .gallery-grid { grid-auto-rows: 200px; }
}





/* ========================================================
   PREMIUM MOTION / EFFECTS
   ======================================================== */

/* scroll progress bar */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 200;
  background: linear-gradient(90deg, var(--primary), #ff6a5f); box-shadow: 0 0 10px rgba(192,32,42,.5); transition: width .08s linear; }

/* hero cinematic drift (Ken Burns) on image or video */
@keyframes heroDrift { 0% { transform: scale(1.05) translate3d(0,0,0); } 100% { transform: scale(1.14) translate3d(-1.6%, -1.2%, 0); } }
.hero-media img, .hero-media video { animation: heroDrift 24s ease-in-out infinite alternate; will-change: transform; }
.hero-media video { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

/* hero content staggered entrance */
@keyframes heroUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.hero-copy .eyebrow { animation: heroUp .7s .10s var(--ease) both; }
.hero-copy h1       { animation: heroUp .8s .24s var(--ease) both; }
.hero-copy .lede    { animation: heroUp .8s .40s var(--ease) both; }
.hero-cta           { animation: heroUp .8s .56s var(--ease) both; }
.hero-stats .stat   { animation: heroUp .7s var(--ease) both; }
.hero-stats .stat:nth-child(1) { animation-delay: .62s; }
.hero-stats .stat:nth-child(2) { animation-delay: .72s; }
.hero-stats .stat:nth-child(3) { animation-delay: .82s; }

/* button sheen sweep */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after { content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.38), transparent); transform: skewX(-18deg); transition: left .65s var(--ease); pointer-events: none; }
.btn-primary:hover::after { left: 150%; }

/* eyebrow bar draws in on reveal */
.section-head .eyebrow::before { transition: width .5s var(--ease) .1s; }
[data-reveal] .eyebrow::before, .section-head[data-reveal]:not(.in) .eyebrow::before { width: 0; }

/* reveal: subtle scale + blur lift */
[data-reveal] { opacity: 0; transform: translateY(24px) scale(.985); filter: blur(2px);
  transition: opacity .7s var(--ease), transform .7s var(--ease), filter .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; filter: none; }

/* card lift already exists; add red top accent on hover for service cards */
.service-card { position: relative; }
.service-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--primary); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); z-index: 3; }
.service-card:hover::before { transform: scaleX(1); }

/* gallery zoom cursor cue */
.gallery-item { cursor: zoom-in; }

/* animated count-up stats keep monospaced width to avoid jitter */
.stat-n, .why-ico { font-variant-numeric: tabular-nums; }

@media (prefers-reduced-motion: reduce) {
  .hero-media img, .hero-media video { animation: none; }
  .hero-copy .eyebrow, .hero-copy h1, .hero-copy .lede, .hero-cta, .hero-stats .stat { animation: none; }
  .scroll-progress { display: none; }
  [data-reveal] { filter: none; transform: none; }
}
