

:root {
  --black: #080b0d;
  --black-soft: #111518;
  --orange: #f4511e;
  --cream: #f2f0eb;
  --line: rgba(255, 255, 255, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: white;
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; text-decoration: none; }

.topbar {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 42px;
  padding: 0 6vw;
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand-logo {
  display: block;
  width: 76px;
  height: 76px;
  object-fit: contain;
}
.footer-logo { width: 92px; height: 92px; }
nav { display: flex; gap: 34px; font-size: 13px; font-weight: 700; }
nav a:hover { color: var(--orange); }
.nav-cta { border: 1px solid rgba(255,255,255,.5); padding: 12px 20px; font-size: 13px; font-weight: 800; }

.hero { min-height: 760px; height: 100vh; position: relative; overflow: hidden; background: #07090b; }
.hero-image {
  position: absolute; inset: 0;
  background: url("/gatica-cover.jpg") center top / cover no-repeat;
  filter: saturate(1.08) contrast(1.02);
}
.eyebrow { color: var(--orange); text-transform: uppercase; letter-spacing: 3px; font-size: 11px; font-weight: 800; }
.eyebrow.dark { color: #bd3d17; }
.button { display: inline-flex; min-height: 54px; padding: 0 26px; align-items: center; justify-content: center; font-size: 13px; font-weight: 900; }
.button-primary { background: var(--orange); color: white; }
.button-primary:hover { background: #ff6738; }

.section { padding: 110px 7vw; }
.intro { background: var(--cream); color: #111; display: grid; grid-template-columns: 1.1fr .9fr; gap: 10vw; }
h2 { margin: 18px 0 0; font-size: clamp(38px, 5vw, 72px); line-height: 1; letter-spacing: -2px; text-transform: uppercase; }
.intro-copy { padding-top: 20px; }
.intro-copy p { color: #515151; font-size: 17px; line-height: 1.75; }
.text-link { display: inline-block; margin-top: 22px; color: #bd3d17; font-weight: 800; }

.services { background: #0c0f11; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 58px; }
.section-heading > p { width: 420px; margin: 0; color: #9ea3a6; line-height: 1.6; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 330px; padding: 35px 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .25s, transform .25s; }
.service-card:hover { background: var(--orange); transform: translateY(-5px); }
.service-card > span { color: var(--orange); font-weight: 900; }
.service-card:hover > span { color: white; }
.service-card h3 { margin-top: 70px; font-size: 24px; text-transform: uppercase; }
.service-card p { color: #a8abad; line-height: 1.55; font-size: 14px; }
.service-card:hover p { color: #fff; }
.service-card a { display: inline-block; margin-top: 18px; font-size: 12px; font-weight: 900; text-transform: uppercase; }

.method { background: var(--cream); color: #111; display: grid; grid-template-columns: 1fr 1fr; gap: 9vw; }
.method-copy > p { max-width: 540px; color: #555; line-height: 1.7; font-size: 16px; }
.steps { list-style: none; padding: 0; margin: 0; border-top: 1px solid #ccc; }
.steps li { display: flex; align-items: center; gap: 24px; padding: 20px 0; border-bottom: 1px solid #ccc; font-size: 20px; font-weight: 800; text-transform: uppercase; }
.steps span { color: var(--orange); font-size: 12px; }

.work { background: #090c0e; }
.work-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 18px; }
.work-card { position: relative; height: 320px; overflow: hidden; background: #171b1e; }
.work-main { grid-row: span 2; height: 658px; }
.work-photo { position: absolute; inset: 0; background-repeat: no-repeat; background-size: cover; transition: transform .5s ease; }
.work-card:hover .work-photo { transform: scale(1.04); }
.photo-one { background-image: url("/gatica-work.jpg"); background-position: 55% 17%; }
.photo-two { background-image: url("/gatica-company.jpg"); background-position: 61% 84%; }
.photo-three { background-image: url("/gatica-services.jpg"); background-position: 52% 70%; }
.work-card > div:last-child { position: absolute; inset: auto 0 0; padding: 48px 28px 26px; background: linear-gradient(transparent, rgba(0,0,0,.9)); }
.work-card span { color: var(--orange); font-size: 11px; font-weight: 900; }
.work-card h3 { margin: 8px 0 0; text-transform: uppercase; font-size: 22px; }

.coverage { background: var(--orange); display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; color: white; }
.coverage .eyebrow { color: #431105; }
.regions { display: flex; flex-direction: column; border-top: 1px solid rgba(0,0,0,.3); }
.regions span { padding: 19px 0; border-bottom: 1px solid rgba(0,0,0,.3); font-size: 28px; font-weight: 900; text-transform: uppercase; }

.contact { display: grid; grid-template-columns: 1.15fr .85fr; gap: 12vw; background: #0a0d0f; }
.contact-copy p { color: #aaa; line-height: 1.7; max-width: 560px; margin: 24px 0 34px; }
.contact-details { border-top: 1px solid var(--line); }
.contact-details > div { padding: 25px 0; border-bottom: 1px solid var(--line); }
.contact-details small { display: block; color: var(--orange); margin-bottom: 9px; text-transform: uppercase; letter-spacing: 2px; }
.contact-details a, .contact-details p { display: block; margin: 5px 0; font-size: 18px; }

footer { padding: 42px 7vw; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; color: #888; font-size: 12px; }
footer .brand { color: white; }
.floating-whatsapp {
  position: fixed; z-index: 20; right: 22px; bottom: 22px; padding: 14px 20px;
  background: #22a95c; color: white; border-radius: 999px; font-size: 12px; font-weight: 900;
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
}

@media (max-width: 900px) {
  .topbar { display: none; }
  nav { display: none; }
  .nav-cta { display: none; }
  .brand-logo { width: 64px; height: 64px; }
  .hero { min-height: 720px; }
  .hero-image { background-position: left top; }
  .section { padding: 80px 6vw; }
  .intro, .method, .coverage, .contact { grid-template-columns: 1fr; gap: 50px; }
  .section-heading { display: block; }
  .section-heading > p { width: auto; margin-top: 24px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card { min-height: 280px; }
  .service-card h3 { margin-top: 45px; }
  .work-grid { grid-template-columns: 1fr; }
  .work-main, .work-card { height: 430px; }
  footer { flex-direction: column; gap: 20px; text-align: center; }
}

@media (max-width: 560px) {
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 250px; }
  .work-main, .work-card { height: 340px; }
  .floating-whatsapp { right: 14px; bottom: 14px; }
}
