:root {
  --bg: #050806;
  --bg-soft: #09110c;
  --surface: #0c1710;
  --surface-2: #101d14;
  --green: #7bff37;
  --green-strong: #35d611;
  --green-deep: #0d6e2b;
  --white: #f6faf7;
  --muted: #a7b3a9;
  --line: rgba(203, 225, 207, .16);
  --silver: #c7d2ca;
  --shadow: 0 24px 70px rgba(0, 0, 0, .42);
  --radius: 24px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { color: #071108; background: var(--green); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link {
  position: fixed; left: 16px; top: -100px; z-index: 1000;
  padding: 10px 16px; border-radius: 10px; color: #071108; background: var(--green);
}
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  height: 82px; border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled {
  background: rgba(5, 8, 6, .86); border-color: var(--line); backdrop-filter: blur(18px);
}
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; font-size: .96rem; letter-spacing: .01em; }
.brand img { width: 52px; height: 54px; object-fit: contain; }
.brand strong { color: var(--green); }
.main-nav { display: flex; align-items: center; gap: 30px; color: #dfe8e1; font-size: .9rem; }
.main-nav > a:not(.nav-cta) { position: relative; padding-block: 11px; }
.main-nav > a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 5px; height: 1px; background: var(--green); transition: right .2s ease;
}
.main-nav > a:not(.nav-cta):hover::after, .main-nav > a:not(.nav-cta):focus-visible::after { right: 0; }
.nav-cta { padding: 10px 18px; color: #071108; background: var(--green); border-radius: 999px; font-weight: 800; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 11px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; border-radius: 2px; background: var(--white); transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative; min-height: 880px; padding-top: 82px; overflow: hidden;
  background:
    radial-gradient(circle at 72% 44%, rgba(92, 255, 43, .16), transparent 30%),
    radial-gradient(circle at 10% 20%, rgba(18, 117, 50, .2), transparent 25%),
    linear-gradient(135deg, #030604 0%, #08140c 56%, #020503 100%);
}
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 80%, var(--bg)); pointer-events: none; }
.hero-grid {
  position: absolute; inset: 0; opacity: .12; pointer-events: none;
  background-image: linear-gradient(rgba(124,255,55,.22) 1px, transparent 1px), linear-gradient(90deg, rgba(124,255,55,.22) 1px, transparent 1px);
  background-size: 72px 72px; mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.hero-layout { position: relative; display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 36px; min-height: 690px; padding-block: 64px 80px; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 18px; color: var(--green); font-size: .75rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { width: 32px; height: 1px; background: var(--green); box-shadow: 0 0 16px var(--green); }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 720px; margin-bottom: 24px; font-size: clamp(4.1rem, 8vw, 7.5rem); line-height: .86; letter-spacing: -.075em; text-transform: uppercase; }
h1 em { display: block; color: var(--green); font-style: normal; text-shadow: 0 0 36px rgba(123, 255, 55, .25); }
.hero-lead { max-width: 600px; margin-bottom: 34px; color: #c9d2cb; font-size: clamp(1.05rem, 2vw, 1.35rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 54px; padding: 0 24px; border: 1px solid transparent; border-radius: 999px; font-size: .9rem; font-weight: 850; letter-spacing: .01em; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button svg { width: 22px; fill: currentColor; }
.button-primary { color: #061008; background: var(--green); box-shadow: 0 14px 40px rgba(79, 224, 25, .2); }
.button-primary:hover { background: #94ff63; box-shadow: 0 18px 46px rgba(79, 224, 25, .28); }
.button-secondary { border-color: var(--line); background: rgba(255,255,255,.035); }
.button-secondary:hover { border-color: rgba(123, 255, 55, .5); background: rgba(123, 255, 55, .06); }
.button-light { color: #071108; background: var(--white); }
.hero-meta { display: flex; gap: 0; margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--line); }
.hero-meta div { display: grid; gap: 3px; min-width: 205px; padding-right: 30px; }
.hero-meta div + div { padding-left: 30px; border-left: 1px solid var(--line); }
.hero-meta span { color: var(--muted); font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; }
.hero-meta strong { font-size: .97rem; }
.hero-visual { position: relative; display: grid; place-items: center; min-height: 600px; }
.hero-visual img { position: relative; z-index: 2; width: min(88%, 560px); filter: drop-shadow(0 35px 65px rgba(0, 0, 0, .6)); animation: float-logo 6s ease-in-out infinite; }
.logo-glow { position: absolute; width: 66%; aspect-ratio: 1; border-radius: 50%; background: rgba(86, 255, 34, .18); filter: blur(70px); }
.orbit { position: absolute; border: 1px solid rgba(123,255,55,.22); border-radius: 50%; }
.orbit-one { width: 82%; aspect-ratio: 1; animation: spin 28s linear infinite; }
.orbit-one::after { content: ""; position: absolute; width: 9px; height: 9px; top: 10%; left: 20%; border-radius: 50%; background: var(--green); box-shadow: 0 0 18px var(--green); }
.orbit-two { width: 98%; aspect-ratio: 1; border-style: dashed; opacity: .4; animation: spin-reverse 40s linear infinite; }
@keyframes float-logo { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spin-reverse { to { transform: rotate(-360deg); } }
.service-strip { position: relative; z-index: 3; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(3, 7, 4, .7); backdrop-filter: blur(10px); }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.strip-grid > div { display: flex; align-items: center; gap: 14px; min-height: 92px; padding: 16px 22px; }
.strip-grid > div + div { border-left: 1px solid var(--line); }
.strip-grid span { color: var(--green); font-size: .68rem; letter-spacing: .12em; }
.strip-grid strong { font-size: .86rem; }

.section { position: relative; padding: 120px 0; }
.section-heading { display: grid; grid-template-columns: 1.15fr .6fr; align-items: end; gap: 48px; margin-bottom: 56px; }
h2 { margin-bottom: 20px; font-size: clamp(2.65rem, 5vw, 5.2rem); line-height: .98; letter-spacing: -.055em; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p, .pricing-copy > p, .coverage-panel > p, .video-copy > p { margin-bottom: 0; color: var(--muted); font-size: 1.05rem; }
.services { background: linear-gradient(to bottom, var(--bg), var(--bg-soft)); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.service-card { position: relative; min-height: 330px; padding: 34px 28px; background: rgba(255,255,255,.018); transition: background .25s ease, transform .25s ease; }
.service-card + .service-card { border-left: 1px solid var(--line); }
.service-card:hover { background: rgba(123,255,55,.05); }
.service-card-featured { background: linear-gradient(145deg, rgba(123,255,55,.16), rgba(123,255,55,.025)); }
.service-number { position: absolute; top: 24px; right: 24px; color: #607064; font-size: .65rem; letter-spacing: .14em; }
.service-icon { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 62px; border: 1px solid rgba(123,255,55,.35); border-radius: 16px; color: var(--green); background: rgba(123,255,55,.06); }
.service-icon svg { width: 29px; fill: currentColor; }
.service-card h3 { margin-bottom: 12px; font-size: 1.35rem; }
.service-card p { margin-bottom: 0; color: var(--muted); font-size: .92rem; }

.pricing-section { overflow: hidden; background: #071009; }
.pricing-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 12% 35%, rgba(76, 227, 27, .14), transparent 30%); }
.pricing-layout { position: relative; display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: 76px; }
.pricing-copy h2 { max-width: 440px; }
.interior-exterior { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 35px; }
.interior-exterior span { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; color: #cfdbd1; font-size: .75rem; }
.price-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.price-card { position: relative; min-height: 390px; padding: 38px; border: 1px solid var(--line); border-radius: var(--radius); background: #0b160e; box-shadow: var(--shadow); overflow: hidden; }
.price-card::after { content: ""; position: absolute; width: 180px; height: 180px; right: -80px; bottom: -80px; border: 1px solid rgba(123,255,55,.15); border-radius: 50%; }
.price-card-promo { border-color: rgba(123,255,55,.55); background: linear-gradient(145deg, #122419, #09130c); }
.promo-label { display: inline-flex; margin: -12px 0 26px; padding: 7px 11px; border-radius: 999px; color: #071108; background: var(--green); font-size: .67rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.price-card > p { margin-bottom: 22px; color: var(--silver); font-weight: 700; }
.price-value { min-height: 96px; margin-bottom: 8px; font-size: clamp(4rem, 7vw, 6.5rem); line-height: .9; font-weight: 900; letter-spacing: -.07em; }
.price-text { display: flex; align-items: center; font-size: clamp(2.7rem, 4.2vw, 4.2rem); line-height: .95; }
.price-card > span { color: var(--muted); font-size: .85rem; }
.price-card a { position: absolute; left: 38px; right: 38px; bottom: 34px; display: flex; justify-content: space-between; align-items: center; padding-top: 19px; border-top: 1px solid var(--line); color: var(--green); font-size: .86rem; font-weight: 800; }

.coverage { background: var(--bg); }
.coverage-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: stretch; }
.coverage-panel { display: flex; flex-direction: column; justify-content: center; padding: 48px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, #0d1a11, #070d09); }
.coverage-panel h2 { font-size: clamp(2.6rem, 4.8vw, 4.8rem); }
.text-link { display: inline-flex; gap: 10px; align-items: center; align-self: flex-start; margin-top: 34px; padding-bottom: 7px; border-bottom: 1px solid var(--green); color: var(--green); font-weight: 800; }
.locations { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.location { display: grid; min-height: 142px; align-content: space-between; padding: 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.015); transition: background .2s ease; }
.location:hover { background: rgba(123,255,55,.045); }
.location span { color: var(--green); font-size: .65rem; letter-spacing: .12em; }
.location strong { font-size: 1.16rem; }
.location-main { background: rgba(123,255,55,.07); }
.location-wide { grid-column: 1 / -1; }

.gallery-section { background: #080e0a; }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 225px; grid-auto-flow: dense; gap: 12px; }
.gallery-item { position: relative; padding: 0; border: 0; border-radius: 15px; background: #101711; overflow: hidden; cursor: zoom-in; }
.gallery-item::after { content: "+"; position: absolute; right: 14px; bottom: 14px; display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: rgba(4, 8, 5, .55); backdrop-filter: blur(8px); font-size: 1.3rem; opacity: 0; transform: translateY(8px); transition: opacity .2s ease, transform .2s ease; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease, filter .45s ease; }
.gallery-item:hover img { transform: scale(1.04); filter: brightness(.84); }
.gallery-item:hover::after, .gallery-item:focus-visible::after { opacity: 1; transform: translateY(0); }
.gallery-item-wide { grid-column: span 2; }
.gallery-item-tall { grid-row: span 2; }
.lightbox { position: fixed; width: min(92vw, 1050px); max-width: none; max-height: 92vh; padding: 0; border: 0; border-radius: 18px; background: #030503; overflow: visible; }
.lightbox::backdrop { background: rgba(0,0,0,.9); backdrop-filter: blur(5px); }
.lightbox img { width: 100%; max-height: 88vh; object-fit: contain; border-radius: 18px; }
.lightbox-close { position: absolute; z-index: 2; top: -18px; right: -18px; display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; color: var(--white); background: #101711; font-size: 1.6rem; cursor: pointer; }

.video-section { background: linear-gradient(135deg, #071108 0%, #0e1d12 60%, #050806 100%); overflow: hidden; }
.video-section::after { content: "DLG"; position: absolute; right: -3vw; bottom: -10vw; color: rgba(123,255,55,.035); font-size: 30vw; font-weight: 900; line-height: 1; letter-spacing: -.1em; }
.video-layout { position: relative; z-index: 2; display: grid; grid-template-columns: .75fr 1.25fr; align-items: center; gap: 80px; }
.video-copy .button { margin-top: 30px; }
.video-frame { position: relative; padding: 12px; border: 1px solid rgba(123,255,55,.35); border-radius: 28px; background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.02)); box-shadow: var(--shadow); }
.video-frame::before, .video-frame::after { content: ""; position: absolute; width: 70px; height: 70px; border-color: var(--green); pointer-events: none; }
.video-frame::before { top: -8px; left: -8px; border-top: 2px solid; border-left: 2px solid; border-radius: 22px 0 0; }
.video-frame::after { right: -8px; bottom: -8px; border-right: 2px solid; border-bottom: 2px solid; border-radius: 0 0 22px; }
.video-frame video { width: 100%; aspect-ratio: 1; border-radius: 18px; background: #000; object-fit: contain; }

.faq-section { background: var(--bg); }
.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; align-items: start; }
.faq-heading { position: sticky; top: 120px; }
.accordion details { border-top: 1px solid var(--line); }
.accordion details:last-child { border-bottom: 1px solid var(--line); }
.accordion summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 26px 4px; font-weight: 750; cursor: pointer; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { color: var(--green); font-size: 1.45rem; font-weight: 400; transition: transform .2s ease; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { max-width: 720px; padding: 0 48px 26px 4px; color: var(--muted); }

.contact-cta { position: relative; padding: 82px 0; color: #061008; background: var(--green); overflow: hidden; }
.contact-pattern { position: absolute; inset: 0; opacity: .13; background-image: radial-gradient(#051008 1.4px, transparent 1.4px); background-size: 18px 18px; }
.contact-inner { position: relative; display: grid; grid-template-columns: auto 1fr auto; gap: 36px; align-items: center; }
.contact-inner > img { width: 120px; height: 124px; object-fit: contain; filter: drop-shadow(0 12px 18px rgba(0,0,0,.2)); }
.contact-inner .eyebrow { color: #0e481e; margin-bottom: 12px; }
.contact-inner .eyebrow span { background: #0e481e; box-shadow: none; }
.contact-inner h2 { margin-bottom: 7px; font-size: clamp(2.1rem, 4vw, 4rem); }
.contact-inner p { margin-bottom: 0; font-weight: 650; }

.site-footer { padding: 54px 0 22px; background: #030504; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .6fr; align-items: center; gap: 38px; padding-bottom: 42px; }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand img { width: 66px; height: 70px; object-fit: contain; }
.footer-brand div { display: grid; }
.footer-brand span, .footer-phone span { color: var(--muted); font-size: .8rem; }
.site-footer nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 22px; color: #ccd5ce; font-size: .85rem; }
.site-footer nav a:hover { color: var(--green); }
.footer-phone { display: grid; justify-items: end; }
.footer-phone strong { font-size: 1.2rem; color: var(--green); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; border-top: 1px solid var(--line); color: #748078; font-size: .75rem; }
.footer-bottom a:hover { color: var(--green); }

.whatsapp-float { position: fixed; z-index: 90; right: 22px; bottom: 22px; display: grid; place-items: center; width: 60px; height: 60px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; color: #071108; background: var(--green); box-shadow: 0 15px 38px rgba(0,0,0,.4), 0 0 0 7px rgba(123,255,55,.09); transition: transform .2s ease; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); }
.whatsapp-float svg { width: 31px; fill: currentColor; }

/* El contenido permanece visible aunque JavaScript no cargue. */
.reveal { opacity: 1; transform: none; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .hero { min-height: auto; }
  .hero-layout { grid-template-columns: 1fr 1fr; min-height: 650px; }
  h1 { font-size: clamp(3.7rem, 8vw, 6rem); }
  .hero-visual { min-height: 500px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .service-card:nth-child(4) { border-top: 1px solid var(--line); }
  .pricing-layout, .coverage-layout, .video-layout, .faq-layout { gap: 46px; }
  .price-card { padding: 30px; }
  .price-card a { left: 30px; right: 30px; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .contact-inner { grid-template-columns: auto 1fr; }
  .contact-inner .button { grid-column: 2; justify-self: start; }
}

@media (max-width: 820px) {
  .site-header { height: 72px; }
  .brand img { width: 45px; height: 47px; }
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed; inset: 72px 0 auto; display: grid; gap: 0; padding: 18px 20px 28px;
    border-bottom: 1px solid var(--line); background: rgba(5, 8, 6, .98); transform: translateY(-130%); transition: transform .25s ease;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 14px 10px; border-bottom: 1px solid var(--line); }
  .main-nav .nav-cta { margin-top: 14px; text-align: center; border-bottom: 0; border-radius: 14px; }
  .hero { padding-top: 72px; }
  .hero-layout { grid-template-columns: 1fr; min-height: auto; padding-top: 80px; text-align: center; }
  .hero-copy { display: grid; justify-items: center; }
  .hero-visual { order: -1; min-height: auto; }
  .hero-visual img { width: min(74vw, 390px); }
  .orbit-one { width: min(80vw, 430px); }
  .orbit-two { width: min(92vw, 500px); }
  .hero-meta { justify-content: center; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-grid > div:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .strip-grid > div:nth-child(4) { border-top: 1px solid var(--line); }
  .section { padding: 90px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .section-heading > p { max-width: 610px; }
  .pricing-layout, .coverage-layout, .video-layout, .faq-layout { grid-template-columns: 1fr; }
  .pricing-copy { text-align: center; }
  .pricing-copy .eyebrow, .pricing-copy .interior-exterior { justify-content: center; }
  .coverage-panel { padding: 38px; }
  .video-copy { text-align: center; }
  .video-copy .eyebrow { justify-content: center; }
  .video-frame { width: min(100%, 620px); margin-inline: auto; }
  .faq-heading { position: static; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .contact-inner .eyebrow { justify-content: center; }
  .contact-inner .button { grid-column: auto; justify-self: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-phone { grid-column: 1 / -1; justify-items: start; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand span { display: none; }
  .hero-layout { padding-top: 56px; padding-bottom: 64px; }
  .hero-visual img { width: min(82vw, 330px); }
  h1 { font-size: clamp(3.2rem, 18vw, 4.6rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { width: 100%; }
  .hero-actions .button { width: 100%; }
  .hero-meta { width: 100%; display: grid; grid-template-columns: 1fr; }
  .hero-meta div { padding: 14px 0; }
  .hero-meta div + div { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .strip-grid > div { min-height: 78px; padding: 13px 12px; gap: 9px; }
  .strip-grid strong { font-size: .76rem; }
  .section { padding: 72px 0; }
  h2 { font-size: clamp(2.35rem, 12vw, 3.5rem); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 280px; }
  .service-card + .service-card { border-left: 0; border-top: 1px solid var(--line); }
  .service-icon { margin-bottom: 42px; }
  .price-cards { grid-template-columns: 1fr; }
  .price-card { min-height: 360px; }
  .locations { grid-template-columns: 1fr; }
  .location-wide { grid-column: auto; }
  .coverage-panel { padding: 30px 24px; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 165px; gap: 8px; }
  .gallery-item-wide { grid-column: span 2; }
  .gallery-item-tall { grid-row: span 2; }
  .lightbox { width: calc(100vw - 24px); }
  .lightbox-close { top: 8px; right: 8px; }
  .contact-inner > img { width: 100px; height: 104px; }
  .contact-inner .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .site-footer nav { grid-template-columns: repeat(2, 1fr); }
  .footer-phone { grid-column: auto; }
  .footer-bottom { gap: 20px; }
  .whatsapp-float { width: 56px; height: 56px; right: 15px; bottom: 15px; }
}

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