:root {
  --green: #00a950;
  --green-bright: #20d36f;
  --green-dark: #05743c;
  --ink: #07120c;
  --black: #030604;
  --charcoal: #111713;
  --offwhite: #f4f6f2;
  --white: #ffffff;
  --muted: #aeb9b1;
  --line: rgba(255,255,255,.13);
  --shadow: 0 26px 70px rgba(0,0,0,.22);
  --radius: 28px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--offwhite);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open,
body.lightbox-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
svg { width: 1em; height: 1em; fill: currentColor; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section-dark { color: var(--white); background: var(--ink); }
.section-light { color: var(--ink); background: var(--offwhite); }
em { color: var(--green); font-style: normal; }

.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 9999;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(3,6,4,.93);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(18px);
}
.nav-wrap {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand { display: flex; align-items: center; gap: 13px; min-width: 250px; }
.brand img {
  width: 74px;
  height: 64px;
  object-fit: contain;
  border-radius: 12px;
  background: #000;
}
.brand-text { display: grid; line-height: 1.05; }
.brand-text strong { font-size: .92rem; letter-spacing: .02em; }
.brand-text small { margin-top: 7px; color: var(--green-bright); font-weight: 850; letter-spacing: .14em; font-size: .64rem; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 25px; margin-left: auto; }
.main-nav a { position: relative; padding-block: 34px; color: #d9dfda; font-size: .88rem; font-weight: 750; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 25px; height: 2px; background: var(--green); transition: right .22s ease; }
.main-nav a:hover::after,
.main-nav a:focus-visible::after { right: 0; }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  font-weight: 850;
  font-size: .88rem;
  box-shadow: 0 12px 30px rgba(0,169,80,.24);
  transition: transform .2s ease, background .2s ease;
}
.header-cta:hover { transform: translateY(-2px); background: var(--green-bright); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 760px;
  padding: 86px 0 78px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 15%, rgba(0,169,80,.18), transparent 32%),
    linear-gradient(135deg, #07120c 0%, #050806 70%, #0a160f 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image:
    linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 66px; }
.hero-copy { padding-top: 12px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 22px; color: #d9dfda; font-size: .76rem; font-weight: 900; letter-spacing: .21em; }
.eyebrow span { width: 42px; height: 3px; background: var(--green); }
.eyebrow.dark { color: #68716b; }
.hero h1,
.section-heading h2,
.coverage h2,
.gallery-heading h2,
.contact-content h2 {
  margin: 0;
  font-size: clamp(3rem, 6.5vw, 6.4rem);
  line-height: .88;
  letter-spacing: -.065em;
  font-weight: 950;
  text-transform: uppercase;
}
.hero h1 em { display: block; font-size: .52em; line-height: 1.05; margin-top: 15px; letter-spacing: -.03em; }
.hero-location { max-width: 510px; margin: 32px 0 0; color: #d9dfda; font-size: 1.08rem; font-weight: 700; letter-spacing: .075em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 35px; }
.btn {
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border-radius: 16px;
  padding: 12px 20px;
  font-weight: 900;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn svg { font-size: 1.4rem; flex: 0 0 auto; }
.btn span { display: grid; }
.btn small { opacity: .75; font-size: .61rem; letter-spacing: .14em; }
.btn-primary { background: var(--green); color: var(--white); box-shadow: 0 18px 40px rgba(0,169,80,.22); }
.btn-primary:hover { background: var(--green-bright); }
.btn-outline { border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.04); color: var(--white); }
.btn-outline:hover { border-color: var(--green); background: rgba(0,169,80,.09); }
.hero-visual { position: relative; min-height: 560px; }
.hero-frame {
  position: absolute;
  inset: 0 0 46px 46px;
  display: grid;
  grid-template-rows: 1fr auto;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: var(--radius);
  overflow: hidden;
  background: #0c110d;
  box-shadow: var(--shadow);
}
.hero-frame > img { width: 100%; height: 100%; object-fit: contain; background: #111; }
.hero-frame-label { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 18px 22px; background: var(--green); color: var(--white); }
.hero-frame-label span { font-size: .72rem; letter-spacing: .22em; font-weight: 900; }
.hero-frame-label strong { font-size: .82rem; letter-spacing: .08em; }
.hero-logo-card {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 190px;
  padding: 10px;
  border-radius: 22px;
  background: #000;
  box-shadow: 0 18px 40px rgba(0,0,0,.4);
  border: 1px solid rgba(255,255,255,.16);
}
.hero-logo-card img { width: 100%; height: auto; border-radius: 14px; }
.hero-line { position: absolute; right: 0; bottom: 34px; width: 38%; height: 1px; background: linear-gradient(90deg, var(--green), transparent); }

.contact-strip { background: var(--green); color: var(--white); }
.strip-grid { min-height: 112px; display: grid; grid-template-columns: 1.35fr .7fr .7fr; align-items: stretch; }
.strip-grid > * { display: flex; justify-content: center; flex-direction: column; padding: 22px 28px; border-left: 1px solid rgba(255,255,255,.26); }
.strip-grid > *:first-child { border-left: 0; padding-left: 0; }
.strip-title span { font-size: .7rem; letter-spacing: .18em; font-weight: 900; opacity: .78; }
.strip-title strong { font-size: 1rem; letter-spacing: .04em; }
.strip-grid a { transition: background .2s ease; }
.strip-grid a:hover { background: rgba(0,0,0,.08); }
.strip-grid small { font-size: .65rem; letter-spacing: .15em; font-weight: 900; opacity: .8; }
.strip-grid b { margin-top: 4px; font-size: 1.16rem; }

.services { padding: 112px 0 120px; }
.section-heading { display: grid; grid-template-columns: 1fr; margin-bottom: 54px; }
.section-heading h2,
.gallery-heading h2 { font-size: clamp(2.8rem, 5vw, 5.2rem); }
.section-heading h2 em,
.gallery-heading h2 em { display: block; font-size: .68em; margin-top: 10px; }
.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; }
.service-card {
  position: relative;
  min-height: 320px;
  padding: 38px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid #dce2dd;
  box-shadow: 0 20px 50px rgba(7,18,12,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-7px); box-shadow: 0 30px 70px rgba(7,18,12,.13); }
.service-card.featured { color: var(--white); background: var(--ink); border-color: var(--ink); }
.service-number { position: absolute; right: 25px; top: 14px; color: rgba(7,18,12,.07); font-size: 7rem; line-height: 1; font-weight: 950; }
.featured .service-number { color: rgba(255,255,255,.08); }
.service-icon { width: 74px; height: 74px; display: grid; place-items: center; border-radius: 20px; background: rgba(0,169,80,.12); color: var(--green); font-size: 2.2rem; }
.service-card p { margin: 57px 0 8px; color: var(--green); font-size: .76rem; font-weight: 950; letter-spacing: .18em; }
.service-card h3 { max-width: 430px; margin: 0; font-size: clamp(2rem, 4vw, 3.6rem); line-height: .96; letter-spacing: -.04em; }

.coverage { position: relative; overflow: hidden; padding: 120px 0; background: linear-gradient(135deg, #07120c, #020403); }
.coverage::after { content: ""; position: absolute; width: 420px; height: 420px; right: -130px; top: -150px; border-radius: 50%; border: 90px solid rgba(0,169,80,.08); }
.coverage-shape { position: absolute; left: -35px; bottom: -100px; color: rgba(0,169,80,.08); font-size: 30rem; line-height: .8; font-weight: 950; letter-spacing: -.12em; pointer-events: none; }
.coverage-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .75fr 1.25fr; gap: 72px; align-items: center; }
.coverage h2 { font-size: clamp(3rem, 5.5vw, 5.8rem); }
.coverage h2 em { display: inline-block; margin-top: 10px; }
.coverage-visual { position: relative; }
.coverage-visual > img { width: 100%; max-height: 560px; object-fit: contain; border-radius: var(--radius); background: #111; box-shadow: var(--shadow); border: 1px solid var(--line); }
.coverage-cards { width: calc(100% - 54px); margin: -45px auto 0; position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,.36); }
.coverage-cards div { min-height: 110px; padding: 22px; display: grid; align-content: center; background: var(--white); color: var(--ink); }
.coverage-cards div + div { background: var(--green); color: var(--white); }
.coverage-cards span { font-size: .67rem; letter-spacing: .16em; font-weight: 950; opacity: .72; }
.coverage-cards strong { margin-top: 5px; font-size: 1.1rem; line-height: 1.1; }

.gallery-section { padding: 120px 0 130px; }
.gallery-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 54px; }
.gallery-heading > p { margin: 0 0 7px; color: #68716b; font-size: .86rem; font-weight: 850; letter-spacing: .08em; text-align: right; }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.gallery-item {
  grid-column: span 4;
  appearance: none;
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: #0d130f;
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: 0 18px 42px rgba(7,18,12,.12);
  transition: transform .25s ease, box-shadow .25s ease;
}
.gallery-item.wide { grid-column: span 6; }
.gallery-item img { width: 100%; height: 360px; object-fit: contain; background: #0c110d; transition: transform .4s ease; }
.gallery-item.tall img { height: 520px; }
.gallery-item:hover { transform: translateY(-5px); box-shadow: 0 28px 65px rgba(7,18,12,.18); }
.gallery-item:hover img { transform: scale(1.015); }
.gallery-item:focus-visible { outline: 4px solid var(--green); outline-offset: 4px; }

.contact-section { padding: 112px 0; background: linear-gradient(120deg, #07120c 0%, #07120c 56%, #0a1b10 56%); }
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; }
.contact-brand { position: relative; }
.contact-brand::before { content: ""; position: absolute; inset: -24px; border: 1px solid rgba(0,169,80,.35); border-radius: 50%; transform: rotate(-8deg); }
.contact-brand img { position: relative; width: 100%; height: auto; padding: 18px; border-radius: 30px; background: #000; box-shadow: var(--shadow); }
.contact-content h2 { font-size: clamp(3rem, 5.8vw, 5.9rem); }
.contact-content h2 em { display: block; font-size: .68em; margin-top: 8px; }
.contact-coverage { margin: 30px 0 34px; color: #d9dfda; font-weight: 800; letter-spacing: .09em; }
.contact-options { display: grid; gap: 12px; }
.contact-option { min-height: 92px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; padding: 16px 20px; border-radius: 20px; transition: transform .2s ease, border-color .2s ease; }
.contact-option:hover { transform: translateX(6px); }
.contact-option.whatsapp { background: var(--green); color: var(--white); }
.contact-option.phone { border: 1px solid rgba(255,255,255,.21); background: rgba(255,255,255,.04); color: var(--white); }
.contact-option.phone:hover { border-color: var(--green); }
.contact-option-icon { width: 55px; height: 55px; display: grid; place-items: center; border-radius: 16px; background: rgba(0,0,0,.15); font-size: 1.7rem; }
.contact-option small { display: block; font-size: .65rem; font-weight: 900; letter-spacing: .16em; opacity: .76; }
.contact-option strong { display: block; margin-top: 3px; font-size: 1.35rem; }
.contact-option .arrow { font-size: 1.5rem; }

.site-footer { color: #d8dfda; background: #010201; border-top: 1px solid rgba(255,255,255,.09); padding: 34px 0; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 30px; }
.footer-grid > div:first-child { display: grid; }
.footer-grid strong { color: var(--white); font-size: .95rem; }
.footer-grid span { color: var(--green-bright); font-size: .66rem; font-weight: 900; letter-spacing: .16em; }
.footer-grid p { margin: 0; font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-align: center; }
.footer-links { display: flex; flex-direction: column; align-items: flex-end; font-size: .78rem; font-weight: 750; }
.footer-links a:hover { color: var(--green-bright); }
.mobile-contact-bar { display: none; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  grid-template-columns: 70px minmax(0,1fr) 70px;
  align-items: center;
  gap: 16px;
  padding: 38px;
  color: var(--white);
  background: rgba(0,0,0,.94);
  backdrop-filter: blur(12px);
}
.lightbox[hidden] { display: none; }
.lightbox figure { min-width: 0; max-width: 1180px; width: 100%; margin: auto; display: grid; justify-items: center; }
.lightbox img { max-width: 100%; max-height: 82vh; object-fit: contain; border-radius: 14px; box-shadow: 0 25px 90px rgba(0,0,0,.7); }
.lightbox figcaption { margin-top: 14px; color: #e6eae7; text-align: center; font-size: .85rem; }
.lightbox button { border: 0; color: var(--white); background: rgba(255,255,255,.1); cursor: pointer; transition: background .2s ease, transform .2s ease; }
.lightbox button:hover { background: var(--green); transform: scale(1.05); }
.lightbox-prev,
.lightbox-next { width: 58px; height: 58px; border-radius: 50%; font-size: 2.3rem; }
.lightbox-close { position: absolute; right: 24px; top: 22px; width: 48px; height: 48px; border-radius: 50%; font-size: 2rem; line-height: 1; }

.noscript { position: fixed; left: 10px; right: 10px; bottom: 10px; z-index: 5000; padding: 12px; border-radius: 10px; background: #fff3cd; color: #3d3310; text-align: center; }
.reveal { opacity: 1; transform: none; }
.reveal.is-visible { opacity: 1; transform: none; }

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

@media (max-width: 1020px) {
  .header-cta { display: none; }
  .main-nav { gap: 18px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-visual { min-height: 620px; }
  .coverage-grid { grid-template-columns: 1fr; }
  .coverage-copy { max-width: 700px; }
  .contact-layout { gap: 48px; }
  .gallery-item,
  .gallery-item.wide { grid-column: span 6; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-column: 1 / -1; align-items: flex-start; flex-direction: row; gap: 25px; }
}

@media (max-width: 800px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .nav-wrap { min-height: 78px; }
  .brand { min-width: 0; margin-right: auto; }
  .brand img { width: 62px; height: 54px; }
  .brand-text strong { font-size: .78rem; }
  .brand-text small { font-size: .56rem; }
  .menu-toggle {
    position: relative;
    z-index: 1002;
    display: grid;
    gap: 5px;
    width: 46px;
    height: 46px;
    place-content: center;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 13px;
    background: rgba(255,255,255,.04);
    color: var(--white);
    cursor: pointer;
  }
  .menu-toggle span { display: block; width: 22px; height: 2px; background: currentColor; 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); }
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 10px;
    margin: 0;
    background: rgba(3,6,4,.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: opacity .24s ease, visibility .24s ease, transform .24s ease;
  }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav a { padding: 10px 16px; font-size: 1.5rem; }
  .main-nav a::after { bottom: 4px; }
  .hero { min-height: auto; padding: 70px 0 66px; }
  .hero-grid { gap: 46px; }
  .hero-location { font-size: .92rem; }
  .hero-visual { min-height: 510px; }
  .hero-frame { inset: 0 0 38px 28px; }
  .hero-logo-card { width: 150px; }
  .strip-grid { grid-template-columns: 1fr 1fr; }
  .strip-title { grid-column: 1 / -1; min-height: 84px; border-bottom: 1px solid rgba(255,255,255,.25); }
  .strip-grid > * { padding: 18px; }
  .strip-grid > *:first-child { padding-left: 18px; }
  .strip-grid > a:first-of-type { border-left: 0; }
  .services,
  .gallery-section { padding: 88px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .coverage { padding: 90px 0; }
  .coverage-cards { width: calc(100% - 24px); }
  .gallery-heading { display: grid; }
  .gallery-heading > p { text-align: left; }
  .gallery-item img,
  .gallery-item.tall img { height: 410px; }
  .contact-section { padding: 88px 0 110px; background: linear-gradient(160deg, #07120c, #0a1b10); }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-brand { max-width: 520px; margin: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid p { text-align: left; }
  .footer-links { grid-column: auto; flex-direction: column; gap: 4px; }
  .mobile-contact-bar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 950;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 16px 45px rgba(0,0,0,.35);
  }
  .mobile-contact-bar a { min-height: 52px; display: grid; place-items: center; background: var(--green); color: var(--white); font-weight: 900; }
  .mobile-contact-bar a + a { background: var(--ink); }
  .site-footer { padding-bottom: 90px; }
  .lightbox { grid-template-columns: 44px minmax(0,1fr) 44px; gap: 7px; padding: 16px 8px; }
  .lightbox-prev,
  .lightbox-next { width: 42px; height: 42px; font-size: 1.7rem; }
}

@media (max-width: 560px) {
  .brand-text { display: none; }
  .hero h1 { font-size: clamp(2.9rem, 16vw, 4.6rem); }
  .hero-actions { display: grid; }
  .btn { width: 100%; }
  .hero-visual { min-height: 390px; }
  .hero-frame { inset: 0 0 28px 18px; border-radius: 20px; }
  .hero-frame-label { padding: 13px 14px; }
  .hero-frame-label strong { font-size: .65rem; }
  .hero-logo-card { width: 116px; padding: 7px; border-radius: 16px; }
  .service-card { padding: 28px; min-height: 290px; }
  .coverage-cards { grid-template-columns: 1fr; }
  .gallery-grid { display: grid; grid-template-columns: 1fr; }
  .gallery-item,
  .gallery-item.wide { grid-column: auto; }
  .gallery-item img,
  .gallery-item.tall img { height: auto; max-height: 560px; object-fit: contain; }
  .contact-option { grid-template-columns: auto 1fr; }
  .contact-option .arrow { display: none; }
  .contact-option strong { font-size: 1.1rem; }
  .lightbox { grid-template-columns: 1fr; }
  .lightbox-prev,
  .lightbox-next { position: absolute; bottom: 18px; z-index: 2; }
  .lightbox-prev { left: calc(50% - 52px); }
  .lightbox-next { right: calc(50% - 52px); }
  .lightbox figure { padding-bottom: 66px; }
}
