:root {
  --black: #050505;
  --ink: #111214;
  --graphite: #202226;
  --steel: #646a71;
  --silver: #dfe2e4;
  --mist: #f2f3f3;
  --white: #fff;
  --accent: #f2f3f3;
  --accent-dark: #747b80;
  --page-bg: #ffffff;
  --page-text: #111214;
  --light-bg: #f2f3f3;
  --light-text: #111214;
  --dark-bg: #050505;
  --dark-text: #ffffff;
  --graphite-bg: #202226;
  --graphite-text: #ffffff;
  --muted-text: #52565b;
  --muted-dark-text: #c8cbce;
  --font-scale: 1;
  --line: rgba(255, 255, 255, 0.15);
  --content: 1180px;
  --header-h: 84px;
  --radius: 4px;
  --hero-gradient-rgb: 5, 5, 5;
  --hero-gradient-start: 0%;
  --hero-gradient-end: 48%;
  --hero-gradient-opacity: .95;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }
body {
  margin: 0;
  background: var(--page-bg);
  color: var(--page-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: calc(16px * var(--font-scale));
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button, input { font: inherit; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 999;
  background: var(--accent); color: var(--black); padding: 12px 18px;
  font-weight: 850; text-decoration: none;
}
.skip-link:focus { top: 14px; }
.container { width: min(var(--content), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 92px 0; }
.section-sm { padding: 58px 0; }
.dark { background: var(--dark-bg); color: var(--dark-text); }
.graphite { background: var(--graphite-bg); color: var(--graphite-text); }
.light { background: var(--light-bg); color: var(--light-text); }
.eyebrow {
  margin: 0 0 12px; color: var(--steel); font-size: .78rem; font-weight: 900;
  letter-spacing: .18em; text-transform: uppercase;
}
.dark .eyebrow, .graphite .eyebrow, .hero .eyebrow, .page-hero .eyebrow { color: var(--accent); }
h1, h2, h3, h4 { margin: 0 0 18px; line-height: 1.05; letter-spacing: -.035em; }
h1 { font-size: clamp(2.7rem, 7vw, 6.4rem); max-width: 12ch; font-weight: 920; }
h2 { font-size: clamp(2.1rem, 4vw, 4rem); max-width: 14ch; font-weight: 900; }
h3 { font-size: clamp(1.25rem, 2vw, 1.7rem); }
p { margin: 0 0 18px; }
.lead { font-size: clamp(1.1rem, 2vw, 1.4rem); line-height: 1.5; max-width: 65ch; color: var(--muted-text); }
.dark .lead, .graphite .lead, .page-hero .lead { color: var(--muted-dark-text); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 44px; }
.section-head > p { max-width: 54ch; margin: 0; color: #676b70; }
.section-head.light-text > p { color: #c6c8ca; }
.kicker-line { display: flex; align-items: center; gap: 12px; }
.kicker-line::before { content: ""; width: 44px; height: 3px; background: var(--accent); }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100; height: var(--header-h);
  background: var(--dark-bg); color: var(--dark-text); border-bottom: 1px solid var(--line);
}
.nav-wrap { height: 100%; display: flex; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; text-decoration: none; }
.brand img { width: 172px; height: 66px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.main-nav a {
  min-height: 44px; display: inline-flex; align-items: center; padding: 0 12px;
  color: #d9dadd; font-size: .9rem; font-weight: 760; text-decoration: none;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--white); }
.main-nav .nav-cta, .main-nav .nav-cta:hover { color: var(--black); }
.main-nav a[aria-current="page"]::after { content: ""; position: absolute; bottom: 15px; height: 2px; background: var(--accent); }
.nav-cta { margin-left: 10px; }
.menu-toggle {
  display: none; width: 48px; height: 48px; margin-left: auto; border: 1px solid #444;
  border-radius: var(--radius); background: transparent; color: var(--white); cursor: pointer;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  content: ""; display: block; width: 22px; height: 2px; margin: 5px auto; background: currentColor; transition: .2s ease;
}
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }

.btn {
  min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 20px; border: 1px solid transparent; border-radius: var(--radius);
  background: var(--accent); color: var(--black); font-weight: 900; text-decoration: none;
  cursor: pointer; transition: transform .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); background: #d9dcde; }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: #222; }
.btn-outline { background: transparent; color: inherit; border-color: currentColor; }
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-sm { min-height: 44px; padding: 9px 15px; font-size: .88rem; }
.btns { display: flex; flex-wrap: wrap; gap: 12px; }
.text-link { font-weight: 850; text-decoration-thickness: 2px; text-underline-offset: 4px; }

main { padding-top: var(--header-h); }
.hero {
  min-height: calc(100svh - var(--header-h)); display: grid; align-items: stretch;
  background: var(--dark-bg); color: var(--dark-text); position: relative;
}
.hero::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 22%; height: 10px;
  background: var(--accent); clip-path: polygon(0 0, 100% 0, 94% 100%, 0 100%);
}
.hero-grid { position: relative; display: grid; min-height: inherit; overflow: hidden; isolation: isolate; }
.hero-copy { position: relative; z-index: 2; width: min(100%, calc((100vw - var(--content)) / 2 + 720px)); display: flex; flex-direction: column; justify-content: center; padding: 72px 7vw 80px max(20px, calc((100vw - var(--content)) / 2)); }
.hero-copy .subhead { max-width: 560px; color: #c9cbcd; font-size: clamp(1.1rem, 2vw, 1.45rem); margin: 18px 0 30px; }
.hero-media { position: absolute; z-index: 0; inset: 0; min-height: 100%; overflow: hidden; background: var(--dark-bg); }
.hero-media::before { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events:none; background: linear-gradient(90deg, rgba(var(--hero-gradient-rgb), var(--hero-gradient-opacity)) var(--hero-gradient-start), rgba(var(--hero-gradient-rgb), 0) var(--hero-gradient-end)); }
.hero-media img, .hero-media video { position:absolute; inset:0; width:100%; height:100%; object-fit:var(--media-fit,cover); object-position:var(--media-x,63%) var(--media-y,50%); transform:scale(var(--media-zoom,1)); transform-origin:var(--media-x,63%) var(--media-y,50%); filter:grayscale(.38) contrast(1.12); transition:opacity .35s ease; }
.hero-media video { opacity:0; }
.hero-media.has-video video { opacity:1; }
.hero-media.has-video img { opacity:0; }
.hero-note { position: absolute; z-index: 2; right: 22px; bottom: 24px; max-width: 280px; padding: 12px 16px; border-left: 3px solid var(--accent); background: rgba(5,5,5,.82); color: #d8dadd; font-size: .78rem; }
.social-links { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 28px; }
.social-links a { color: #e6e6e6; font-size: .9rem; font-weight: 800; text-underline-offset: 5px; }

.page-hero { padding: 105px 0 70px; background: var(--dark-bg); color: var(--dark-text); position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; right: -5vw; bottom: -52px; width: 40vw; height: 110px; border-top: 1px solid #3a3d41; transform: skewY(-5deg); }
.page-hero h1 { max-width: 15ch; font-size: clamp(2.7rem, 6vw, 5.7rem); }
.page-hero .lead { max-width: 720px; }
.page-hero .btns { margin-top: 30px; }
.crumbs { margin-bottom: 30px; color: #a9adb1; font-size: .86rem; }
.crumbs a { color: var(--white); text-underline-offset: 4px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 7vw, 100px); align-items: center; }
.split-media { height: 520px; overflow: hidden; background: #ddd; }
.split-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.18); }
.service-gates { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: #c9ccce; }
.service-gate { background: var(--white); padding: clamp(34px, 5vw, 70px); position: relative; overflow: hidden; }
.service-gate::before { content: attr(data-index); position: absolute; right: 28px; top: 10px; color: #eceeef; font-size: 6rem; font-weight: 950; line-height: 1; }
.service-gate h3 { font-size: clamp(2rem, 4vw, 3.7rem); }
.service-gate ul { columns: 2; margin: 24px 0 30px; padding-left: 20px; }
.feature-strip { display: grid; grid-template-columns: repeat(5, 1fr); border-block: 1px solid #303236; }
.feature-strip div { padding: 25px 18px; text-align: center; border-right: 1px solid #303236; font-size: .83rem; font-weight: 820; }
.feature-strip div:last-child { border-right: 0; }
.feature-strip strong { display: block; color: var(--accent); font-size: 1.25rem; margin-bottom: 7px; }

.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #cfd2d4; border: 1px solid #cfd2d4; }
.benefit { min-height: 220px; padding: 28px; background: var(--white); color: var(--ink); }
.benefit-num { display: block; margin-bottom: 34px; color: var(--steel); font-size: .72rem; font-weight: 900; letter-spacing: .13em; }
.benefit p { margin: 0; color: #5c6064; }
.tone-scale { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 38px; }
.tone { min-height: 220px; display: flex; flex-direction: column; justify-content: end; padding: 22px; color: var(--white); border: 1px solid #555; }
.tone:nth-child(1) { color: var(--black); background: #e6e8e9; }
.tone:nth-child(2) { background: #555b60; }
.tone:nth-child(3) { background: #0d0e0f; }
.tone span { font-size: .74rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.tone strong { font-size: 1.25rem; }
.tint-reference { margin:38px 0 0; overflow:hidden; border:1px solid #555b60; background:#0b0c0d; }
.tint-reference img { display:block; width:100%; aspect-ratio:16/9; object-fit:cover; }
.tint-reference figcaption { display:grid; grid-template-columns:repeat(3,1fr); }
.tint-reference figcaption span { padding:14px 12px; border-right:1px solid #555b60; color:#fff; font-size:.78rem; font-weight:900; letter-spacing:.12em; text-align:center; text-transform:uppercase; }
.tint-reference figcaption span:last-child { border-right:0; }
.reference-disclaimer { margin:14px 0 0; color:var(--muted-dark-text); font-size:.9rem; }
.notice { margin-top: 28px; padding: 20px 22px; border-left: 4px solid var(--accent-dark); background: #f4f5ef; }
.notice strong { display: block; margin-bottom: 4px; }
.dark .notice, .graphite .notice { background: #17191b; color: #f5f6f6; border-color: var(--accent); }

.brand-stack { display: grid; gap: 2px; background: #34373a; }
.brand-panel { display: grid; grid-template-columns: 230px 1fr auto; gap: 34px; align-items: center; padding: 34px; background: var(--dark-bg); }
.brand-name { font-size: 2.1rem; font-weight: 950; letter-spacing: -.05em; }
.brand-panel p { margin: 0; color: #c1c4c7; }
.tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 15px; }
.tag { padding: 5px 9px; border: 1px solid #4a4e51; color: #d9dbdd; font-size: .75rem; }
.comparator-controls { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0; }
.compare-toggle { min-height: 46px; padding: 10px 15px; border: 1px solid #777; background: transparent; color: inherit; font-weight: 800; cursor: pointer; }
.compare-toggle[aria-pressed="true"] { background: var(--accent); color: var(--black); border-color: var(--accent); }
.compare-note { min-height: 24px; color: #b9bdc0; font-size: .85rem; }
.comparison { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.compare-card { padding: 24px; border: 1px solid #44484c; background: #131517; }
.compare-card dl { margin: 18px 0 24px; }
.compare-card dl div { padding: 10px 0; border-bottom: 1px solid #32363a; }
.compare-card dt { color: #8f9498; font-size: .72rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.compare-card dd { margin: 3px 0 0; }
.empty-compare { grid-column: 1 / -1; padding: 34px; border: 1px dashed #555; color: #b7bbbe; text-align: center; }

.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 34px; }
.filter-button { min-height: 44px; padding: 9px 16px; border: 1px solid #777; border-radius: 30px; background: transparent; color: inherit; font-weight: 850; cursor: pointer; }
.filter-button[aria-pressed="true"] { border-color: var(--black); background: var(--black); color: var(--white); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-card { display: flex; flex-direction: column; min-height: 365px; padding: 26px; border: 1px solid #d5d7d9; background: var(--white); }
.equipment-media-placeholder { position:relative; height:220px; display:grid; place-items:center; margin:-26px -26px 22px; overflow:hidden; border-bottom:1px solid #d5d7d9; background:#f4f5f6; color:#555b60; text-align:center; }
.equipment-media-placeholder img { position:absolute; inset:12px; display:none; width:calc(100% - 24px); height:calc(100% - 24px); object-fit:contain; object-position:center; }
.equipment-media-placeholder span { max-width:18ch; font-size:.72rem; font-weight:900; letter-spacing:.1em; text-transform:uppercase; }
.equipment-media-placeholder.has-media img { display:block; }.equipment-media-placeholder.has-media span { display:none; }
.product-card[hidden] { display: none; }
.product-brand { margin-bottom: 38px; color: var(--steel); font-size: .74rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.product-card p { color: #5c6064; }
.product-meta { margin-top: auto; padding-top: 20px; border-top: 1px solid #dedfe0; font-size: .84rem; }
.product-card .btn { margin-top: 18px; align-self: flex-start; }
.category-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: #4b4f53; }
.category { padding: clamp(28px, 4vw, 50px); background: var(--graphite-bg); color: var(--graphite-text); }
.category .eyebrow { color: var(--muted-dark-text); }
.category p { color: #c5c8ca; }
.category ul { margin: 18px 0 0; padding-left: 20px; color: #e8e9ea; }
.request-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; margin-top: 32px; background: #d7d9da; }
.request-list div { padding: 22px 15px; background: var(--white); text-align: center; font-weight: 850; }
.request-list span { display: block; color: var(--steel); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }

.gallery-intro { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: end; }
.gallery-shell { position: relative; margin-top: 42px; }
.gallery-stage { min-height: 560px; background: #151719; color: var(--white); border: 1px solid #3a3d40; }
.gallery-slide { min-height: inherit; display: grid; place-items: center; padding: 50px; text-align: center; }
.gallery-slide > img { width: min(920px, 100%); height: min(62vh, 620px); object-fit: var(--gallery-fit, cover); object-position: var(--gallery-x, 50%) var(--gallery-y, 50%); transform: scale(var(--gallery-zoom, 1)); transform-origin: var(--gallery-x, 50%) var(--gallery-y, 50%); }
.gallery-placeholder { width: min(720px, 100%); aspect-ratio: 16 / 9; display: grid; place-items: center; border: 1px dashed #74787c; background: repeating-linear-gradient(-45deg, #202326 0 14px, #25282b 14px 28px); }
.gallery-placeholder-inner { max-width: 480px; padding: 30px; }
.gallery-placeholder .stamp { display: inline-block; margin-bottom: 18px; padding: 7px 10px; border: 1px solid var(--accent); color: var(--accent); font-size: .7rem; font-weight: 900; letter-spacing: .15em; }
.gallery-caption { margin-top: 22px; }
.gallery-caption h3 { margin-bottom: 6px; }
.gallery-caption p { margin: 0; color: #bfc2c4; }
.gallery-controls { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 18px; }
.carousel-btn, .modal-close { width: 48px; height: 48px; border: 1px solid #777; border-radius: 50%; background: var(--white); color: var(--black); font-size: 1.3rem; cursor: pointer; }
.gallery-dots { display: flex; gap: 8px; }
.gallery-dot { width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; position: relative; }
.gallery-dot::after { content: ""; position: absolute; inset: 19px 8px; background: #a9adb0; }
.gallery-dot[aria-current="true"]::after { background: var(--black); }
.gallery-status { text-align: center; color: #686d71; font-size: .84rem; margin-top: 10px; }
.modal { width: min(960px, calc(100% - 30px)); border: 0; padding: 0; background: #0b0c0d; color: white; }
.modal::backdrop { background: rgba(0,0,0,.86); }
.modal-content { padding: 24px; }
.modal-close { display: block; margin: 0 0 15px auto; background: #161719; color: white; }
.modal .gallery-placeholder { margin-inline: auto; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 2px; background: #d0d3d5; }
.contact-card { padding: clamp(32px, 5vw, 62px); background: var(--white); }
.contact-card address { font-style: normal; font-size: 1.12rem; }
.contact-card hr { border: 0; border-top: 1px solid #d8dadb; margin: 28px 0; }
.map-wrap { min-height: 510px; background: #e5e6e7; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 510px; border: 0; filter: grayscale(.75) contrast(1.05); }

.site-footer { background: var(--dark-bg); color: var(--dark-text); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 60px; }
.footer-logo { width: 240px; height: auto; margin-bottom: 24px; }
.footer-title { margin-bottom: 14px; color: #92979b; font-size: .72rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { color: #e3e4e5; text-underline-offset: 4px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 48px; padding-top: 24px; border-top: 1px solid #2d3033; color: #919599; font-size: .78rem; }

.floating-whatsapp {
  position: fixed; right: 20px; bottom: 20px; z-index: 90; min-height: 52px;
  display: inline-flex; align-items: center; gap: 9px; padding: 13px 18px;
  border-radius: 999px; background: #25d366; color: #07180d; font-weight: 920;
  text-decoration: none; box-shadow: 0 6px 18px rgba(0,0,0,.2);
}
.to-top {
  position: fixed; right: 27px; bottom: 86px; z-index: 89; width: 44px; height: 44px;
  border: 1px solid #696d70; border-radius: 50%; background: var(--black); color: var(--white);
  cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(10px); transition: .2s ease;
}
.to-top.visible { opacity: 1; pointer-events: auto; transform: none; }
.source-note { color: #6c7074; font-size: .78rem; }
.source-note a { text-underline-offset: 3px; }
[data-media-key] { object-fit: var(--media-fit, cover) !important; object-position: var(--media-x, 50%) var(--media-y, 50%) !important; transform: scale(var(--media-zoom, 1)); transform-origin: var(--media-x, 50%) var(--media-y, 50%); }
.media-custom-frame { min-height: var(--media-height, inherit) !important; aspect-ratio: var(--media-aspect, auto); }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  :root { --header-h: 76px; }
  .brand img { width: 150px; height: 58px; }
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed; inset: var(--header-h) 0 0; display: flex; flex-direction: column; align-items: stretch;
    gap: 2px; padding: 22px; background: var(--dark-bg); transform: translateX(100%); transition: transform .24s ease;
  }
  .main-nav.open { transform: none; }
  .main-nav a { min-height: 56px; padding: 0 18px; border-bottom: 1px solid #292c2f; font-size: 1.03rem; }
  .main-nav a[aria-current="page"]::after { display: none; }
  .main-nav .nav-cta { margin: 16px 0 0; justify-content: center; color: var(--black); border: 0; }
  .hero-copy { width: 100%; min-height: inherit; padding: 62px 24px 120px; }
  .hero-media { min-height: 100%; }
  .hero-media::before { background: linear-gradient(180deg, rgba(var(--hero-gradient-rgb), var(--hero-gradient-opacity)) var(--hero-gradient-start), rgba(var(--hero-gradient-rgb), 0) var(--hero-gradient-end)); }
  .split, .contact-grid, .gallery-intro { grid-template-columns: 1fr; }
  .split-media { height: 420px; }
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .feature-strip div:last-child { grid-column: 1 / -1; }
  .benefit-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-panel { grid-template-columns: 180px 1fr; }
  .brand-panel .btn { grid-column: 2; justify-self: start; }
  .comparison { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.2fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--content)); }
  .section { padding: 68px 0; }
  .section-head { display: block; }
  .section-head > p { margin-top: 18px; }
  .hero-media { min-height: 390px; }
  .split-media { height: 320px; }
  .hero-note { right: 14px; bottom: 14px; left: 14px; max-width: none; }
  .service-gates { grid-template-columns: 1fr; }
  .service-gate ul { columns: 1; }
  .feature-strip { grid-template-columns: 1fr; }
  .feature-strip div, .feature-strip div:last-child { grid-column: auto; border-right: 0; border-bottom: 1px solid #303236; }
  .benefit-grid, .product-grid, .category-list { grid-template-columns: 1fr; }
  .tone-scale { grid-template-columns: 1fr; }
  .tone { min-height: 160px; }
  .tint-reference figcaption span { padding:11px 5px; font-size:.67rem; letter-spacing:.07em; }
  .brand-panel { grid-template-columns: 1fr; gap: 18px; }
  .brand-panel .btn { grid-column: auto; }
  .request-list { grid-template-columns: 1fr; }
  .gallery-stage { min-height: 480px; }
  .gallery-slide { padding: 22px; }
  .contact-card { padding: 30px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid > :first-child { grid-column: auto; }
  .footer-bottom { display: block; }
  .floating-whatsapp span { display: none; }
  .floating-whatsapp { width: 56px; height: 56px; justify-content: center; padding: 0; font-size: 1.3rem; }
  .to-top { right: 26px; bottom: 88px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media video { display:none; }
  .hero-media.has-video img { opacity:1; }
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
