/* ==========================================================================
   IBPestControl Service Limited — Stylesheet
   Palette: green + red + white  (sampled from the shield logo)
   Signature device: the targeting "reticle" / crosshair from the logo
   Type: Barlow Condensed (display)  +  Poppins (body/UI)
   ========================================================================== */

/* ---------- Design tokens ------------------------------------------------- */
:root {
  /* Greens */
  --green-900: #063d14;   /* darkest — footer / overlays */
  --green-800: #0b5d1e;   /* primary brand green */
  --green-700: #0e6d24;
  --green-500: #1e8e3e;   /* leaf / accent green */
  --green-300: #6bc07f;

  /* Red (used sparingly — the reticle & urgency) */
  /* --red-600: #d6212b; */
  --red-600: #f0474f;
  --red-700: #b0151e;

  /* Neutrals */
  --white: #ffffff;
  --off:   #f3f7f1;       /* faint green-tinted white for alt sections */
  --line:  #e2ebe0;       /* hairline borders */
  --ink:   #16241a;       /* body text (very dark green-black) */
  --muted: #5c6b5e;       /* secondary text */

  /* WhatsApp brand green (kept only for WA buttons) */
  --wa: #25d366;
  --wa-dark: #1da851;

  /* Type */
  --display: "Barlow Condensed", "Poppins", system-ui, sans-serif;
  --body: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Layout */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 48px);
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 14px rgba(6, 61, 20, .08);
  --shadow-md: 0 14px 40px rgba(6, 61, 20, .14);
  --nav-h: 76px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

:focus-visible {
  outline: 3px solid var(--red-600);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Reusable layout ---------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding: clamp(64px, 9vw, 116px) 0; }
.section--alt { background: var(--off); }
.section--tint { background:
    linear-gradient(180deg, var(--off), #ffffff); }

/* Section header (eyebrow + heading + intro) */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--body);
  font-weight: 600;
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 18px;
}
/* the reticle glyph that marks every eyebrow */
.eyebrow::before {
  content: "";
  width: 18px; height: 18px;
  flex: none;
  border-radius: 50%;
  background:
    /* crosshair lines */
    linear-gradient(var(--red-600), var(--red-600)) center/2px 100% no-repeat,
    linear-gradient(var(--red-600), var(--red-600)) center/100% 2px no-repeat,
    /* ring */
    radial-gradient(circle, transparent 5px, var(--red-600) 5px, var(--red-600) 6.5px, transparent 6.5px);
}

.section-title {
  font-family: var(--display);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.01em;
  font-size: clamp(2.1rem, 5.4vw, 3.5rem);
  text-transform: uppercase;
  color: var(--ink);
}
.section-title .hl { color: var(--green-700); }

.section-head { max-width: 640px; margin-bottom: clamp(38px, 5vw, 60px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-intro { margin-top: 18px; color: var(--muted); font-size: 1.06rem; }

/* ---------- Buttons ------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .01em;
  padding: 15px 26px;
  border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background-color .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn i { font-size: 1.1em; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn-wa {
  background: var(--wa);
  color: #04310f;
  box-shadow: 0 10px 24px rgba(37, 211, 102, .35);
}
.btn-wa:hover { background: var(--wa-dark); color: #fff; }

.btn-primary { background: var(--green-800); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--green-700); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .85);
}
.btn-outline:hover { background: #fff; color: var(--green-800); box-shadow: inset 0 0 0 2px #fff; }

.btn-ghost {
  color: var(--green-800);
  box-shadow: inset 0 0 0 2px var(--line);
  background: #fff;
}
.btn-ghost:hover { box-shadow: inset 0 0 0 2px var(--green-500); color: var(--green-700); }

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 900;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease),
              height .3s var(--ease), background-color .3s var(--ease);
}
.nav.scrolled {
  height: 66px;
  box-shadow: 0 6px 24px rgba(6, 61, 20, .09);
  border-bottom-color: var(--line);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img { height: 46px; width: auto; transition: height .3s var(--ease); }
.nav.scrolled .brand img { height: 40px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text b {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.32rem;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--green-800);
}
.brand-text span {
  font-size: .58rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  position: relative;
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 8px;
  transition: color .2s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 6px;
  height: 2px;
  background: var(--red-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s var(--ease);
}
.nav-links a:hover { color: var(--green-700); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--green-800); font-weight: 600; }

.nav-cta { margin-left: 10px; }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: 10px;
  position: relative;
  flex: none;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 24px; height: 2.5px;
  background: var(--green-800);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle span::before { transform: translate(-50%, -9px); }
.nav-toggle span::after  { transform: translate(-50%, 9px); }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { transform: translate(-50%, 0) rotate(45deg); background: var(--red-600); }
.nav-toggle.open span::after  { transform: translate(-50%, 0) rotate(-45deg); background: var(--red-600); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: min(100vh, 780px);
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 64px;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(4, 40, 14, .93) 0%, rgba(6, 61, 20, .8) 45%, rgba(6, 61, 20, .45) 100%),
    linear-gradient(0deg, rgba(4, 40, 14, .7), rgba(4, 40, 14, 0) 55%);
}

.hero__inner { max-width: 720px; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(4px);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .02em;
  margin-bottom: 26px;
}
.hero__badge b { color: #fff; }
.hero__badge .pill {
  background: var(--red-600);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .04em;
  padding: 3px 10px;
  border-radius: 999px;
}

.hero h1 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2.7rem, 7.6vw, 5.4rem);
  line-height: .92;
  letter-spacing: -.01em;
  margin-bottom: 22px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, .3);
}
.hero h1 .accent {
  color: #fff;
  position: relative;
  display: inline-block;
  padding: 0 .12em;
}
.hero h1 .accent::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--red-600);
  transform: skewX(-6deg);
  border-radius: 4px;
}
.hero p.lead {
  font-size: clamp(1.05rem, 2.3vw, 1.28rem);
  color: rgba(255, 255, 255, .92);
  max-width: 560px;
  margin-bottom: 34px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__cta .btn { padding: 17px 30px; font-size: 1.02rem; }

/* thin reassurance strip inside hero */
.hero__assure {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .2);
}
.hero__assure li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .92rem;
  color: rgba(255, 255, 255, .9);
}
.hero__assure i { color: var(--green-300); font-size: 1.05rem; }

/* decorative scanning reticle on the hero (large, right side) */
.hero__reticle {
  position: absolute;
  z-index: -1;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(220px, 30vw, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid rgba(214, 33, 43, .55);
  pointer-events: none;
}
.hero__reticle::before,
.hero__reticle::after {
  content: "";
  position: absolute;
  background: rgba(214, 33, 43, .55);
}
.hero__reticle::before { left: 50%; top: -6%; width: 2px; height: 112%; transform: translateX(-50%); }
.hero__reticle::after  { top: 50%; left: -6%; height: 2px; width: 112%; transform: translateY(-50%); }
.hero__reticle span {
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  border: 2px dashed rgba(214, 33, 43, .8);
  animation: spin 26s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ==========================================================================
   TRUST BAR (stats)
   ========================================================================== */
.trust {
  background: var(--green-800);
  color: #fff;
}
.trust .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px 30px;
  padding-block: 40px;
}
.stat { text-align: center; padding: 8px 6px; position: relative; }
.stat + .stat::before {
  content: "";
  position: absolute;
  left: -15px; top: 50%;
  transform: translateY(-50%);
  height: 46px; width: 1px;
  background: rgba(255, 255, 255, .18);
}
.stat b {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  line-height: 1;
  color: #fff;
}
.stat b .plus { color: var(--green-300); }
.stat span {
  display: block;
  margin-top: 8px;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .78);
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
}
.about__media { position: relative; }
.about__media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}
/* the "17+ years" experience badge */
.exp-badge {
  position: absolute;
  right: -18px; bottom: -22px;
  background: var(--red-600);
  color: #fff;
  border-radius: 16px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 4px solid #fff;
}
.exp-badge b {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 2.9rem;
  line-height: .9;
}
.exp-badge span {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
}

.about__body p { color: var(--muted); margin-bottom: 18px; }
.about__body p strong { color: var(--ink); }

.about__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 22px;
  margin: 26px 0 32px;
}
.about__list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: .96rem;
  font-weight: 500;
}
.about__list i {
  color: var(--green-500);
  margin-top: 3px;
  font-size: 1.05rem;
  flex: none;
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.svc {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px 30px;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease),
              border-color .3s var(--ease);
}
.svc::before {                       /* green accent bar that grows on hover */
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--green-800), var(--green-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.svc:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.svc:hover::before { transform: scaleX(1); }

/* reticle icon — the pest "in the crosshairs" */
.svc__icon {
  position: relative;
  width: 68px; height: 68px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--off);
  color: var(--green-700);
  font-size: 1.6rem;
  transition: background-color .3s var(--ease), color .3s var(--ease);
}
.svc__icon::before {                 /* crosshair ring */
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--line);
  transition: border-color .3s var(--ease), transform .4s var(--ease);
}
.svc__icon::after {                  /* red target ticks */
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background:
    linear-gradient(var(--red-600), var(--red-600)) top center/2px 8px no-repeat,
    linear-gradient(var(--red-600), var(--red-600)) bottom center/2px 8px no-repeat,
    linear-gradient(var(--red-600), var(--red-600)) left center/8px 2px no-repeat,
    linear-gradient(var(--red-600), var(--red-600)) right center/8px 2px no-repeat;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.svc:hover .svc__icon { background: var(--green-800); color: #fff; }
.svc:hover .svc__icon::before { border-color: var(--green-500); transform: rotate(90deg); }
.svc:hover .svc__icon::after { opacity: 1; }

.svc h3 {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .01em;
  font-size: 1.5rem;
  line-height: 1.05;
  margin-bottom: 10px;
}
.svc p { color: var(--muted); font-size: .96rem; margin-bottom: 16px; }
.svc__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--green-700);
}
.svc__link i { transition: transform .25s var(--ease); }
.svc:hover .svc__link i { transform: translateX(5px); }

/* full-width note under the grid */
.svc-note {
  margin-top: 30px;
  text-align: center;
  color: var(--muted);
  font-size: .96rem;
}
.svc-note b { color: var(--green-700); }

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.shot {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: var(--green-900);
}
.shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.shot::after {
  content: "\f00e";                  /* fa magnifying-glass-plus */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 14px; bottom: 12px;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(214, 33, 43, .92);
  color: #fff;
  font-size: .95rem;
  transform: scale(.4);
  opacity: 0;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.shot__cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 34px 16px 14px;
  background: linear-gradient(0deg, rgba(4, 40, 14, .88), transparent);
  color: #fff;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .02em;
  transform: translateY(8px);
  opacity: 0;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.shot:hover img { transform: scale(1.08); }
.shot:hover::after { transform: scale(1); opacity: 1; }
.shot:hover .shot__cap { transform: translateY(0); opacity: 1; }

/* feature spans */
.shot.tall { grid-row: span 2; }
.shot.wide { grid-column: span 2; }

/* ---------- Lightbox ------------------------------------------------------ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vw;
  background: rgba(4, 22, 9, .93);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 100%;
  max-height: 86vh;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
  transform: scale(.94);
  transition: transform .3s var(--ease);
}
.lightbox.open img { transform: scale(1); }
.lightbox__close {
  position: absolute;
  top: 22px; right: 26px;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 1.4rem;
  transition: background-color .2s var(--ease), transform .2s var(--ease);
}
.lightbox__close:hover { background: var(--red-600); transform: rotate(90deg); }

/* ==========================================================================
   VIDEO
   ========================================================================== */
.video-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #000;
  aspect-ratio: 16 / 9;
  max-width: 940px;
  margin-inline: auto;
}
.video-wrap video { width: 100%; height: 100%; object-fit: cover; }
/* play affordance shown before the user hits play */
.video-wrap .play-hint {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(0deg, rgba(4, 40, 14, .5), rgba(4, 40, 14, .2));
  cursor: pointer;
  transition: opacity .3s var(--ease);
}
.video-wrap .play-hint.hidden { opacity: 0; pointer-events: none; }
.play-hint i {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--red-600);
  color: #fff;
  display: grid; place-items: center;
  font-size: 1.7rem;
  padding-left: 6px;
  box-shadow: 0 0 0 0 rgba(214, 33, 43, .55);
  animation: pulse-red 2.4s infinite;
}
@keyframes pulse-red {
  0% { box-shadow: 0 0 0 0 rgba(214, 33, 43, .5); }
  70% { box-shadow: 0 0 0 26px rgba(214, 33, 43, 0); }
  100% { box-shadow: 0 0 0 0 rgba(214, 33, 43, 0); }
}

/* "See more" link under the homepage gallery preview */
.gallery-more {
  margin-top: 44px;
  text-align: center;
}
.gallery-more p { margin-top: 14px; color: var(--muted); font-size: .94rem; }

/* ==========================================================================
   GALLERY PAGE
   ========================================================================== */
.page-hero {
  position: relative;
  background:
    linear-gradient(105deg, rgba(4, 40, 14, .93) 0%, rgba(6, 61, 20, .82) 55%, rgba(6, 61, 20, .55) 100%),
    var(--green-800);
  color: #fff;
  padding: calc(var(--nav-h) + 46px) 0 52px;
  overflow: hidden;
}
.page-hero .eyebrow { color: var(--green-300); }
.page-hero h1 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: .95;
}
.page-hero h1 .accent {
  color: #fff;
  position: relative;
  display: inline-block;
  padding: 0 .12em;
}
.page-hero h1 .accent::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--red-600);
  transform: skewX(-6deg);
  border-radius: 4px;
}
.page-hero p { margin-top: 16px; max-width: 560px; color: rgba(255, 255, 255, .88); font-size: 1.06rem; }
.page-hero__reticle {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(200px, 26vw, 360px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid rgba(214, 33, 43, .5);
  pointer-events: none;
}
.page-hero__reticle::before,
.page-hero__reticle::after {
  content: "";
  position: absolute;
  background: rgba(214, 33, 43, .5);
}
.page-hero__reticle::before { left: 50%; top: -6%; width: 2px; height: 112%; transform: translateX(-50%); }
.page-hero__reticle::after  { top: 50%; left: -6%; height: 2px; width: 112%; transform: translateY(-50%); }

/* filter tabs */
.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: clamp(34px, 5vw, 54px) 0 clamp(30px, 4vw, 44px);
}
.filter-btn {
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .92rem;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  transition: background-color .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.filter-btn:hover { border-color: var(--green-500); color: var(--green-700); }
.filter-btn.active {
  background: var(--green-800);
  color: #fff;
  border-color: var(--green-800);
  box-shadow: var(--shadow-sm);
}

/* photo & video grids */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* video cards */
.vid {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: var(--green-900);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.vid:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.vid video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.vid:hover video { transform: scale(1.06); }
.vid .play-badge {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(0deg, rgba(4, 40, 14, .62), rgba(4, 40, 14, .18));
  transition: background-color .25s var(--ease);
}
.vid .play-badge i {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--red-600);
  color: #fff;
  display: grid; place-items: center;
  font-size: 1.3rem;
  padding-left: 4px;
  box-shadow: 0 8px 24px rgba(214, 33, 43, .45);
  transition: transform .3s var(--ease);
}
.vid:hover .play-badge i { transform: scale(1.12); }
.vid .vid-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 14px 12px;
  background: linear-gradient(0deg, rgba(4, 40, 14, .9), transparent);
  color: #fff;
  font-size: .84rem;
  font-weight: 500;
}

/* ---------- Video lightbox (modal) ---------------------------------------- */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vw;
  background: rgba(4, 22, 9, .94);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.video-modal.open { opacity: 1; visibility: visible; }
.video-modal .vm-inner {
  position: relative;
  width: min(100%, 1000px);
}
.video-modal video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
}
.video-modal .vm-cap {
  position: absolute;
  left: 4px; bottom: -34px;
  color: rgba(255, 255, 255, .85);
  font-size: .92rem;
  font-weight: 500;
}
.video-modal .lightbox__close { top: -58px; right: 0; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact .container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(34px, 5vw, 60px);
  align-items: stretch;
}
.contact__info { display: flex; flex-direction: column; }

.info-list { display: grid; gap: 12px; margin: 8px 0 26px; }
.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.info-item:hover { border-color: var(--green-300); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.info-item .ic {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--off);
  color: var(--green-700);
  font-size: 1.15rem;
}
.info-item .lbl {
  display: block;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 3px;
}
.info-item .val { font-weight: 600; color: var(--ink); font-size: 1.02rem; line-height: 1.35; }
.info-item a.val:hover { color: var(--green-700); }

.contact__cta {
  margin-top: auto;
  background: var(--green-800);
  color: #fff;
  border-radius: var(--radius);
  padding: 26px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
  justify-content: space-between;
}
.contact__cta p { font-family: var(--display); font-weight: 700; font-size: 1.5rem; text-transform: uppercase; line-height: 1; }
.contact__cta p span { display: block; font-family: var(--body); font-weight: 400; font-size: .82rem; text-transform: none; color: rgba(255,255,255,.8); letter-spacing: 0; margin-top: 6px; }

.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.contact__map iframe { width: 100%; height: 100%; border: 0; display: block; min-height: 420px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, .78);
  padding-top: clamp(56px, 7vw, 80px);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.footer__brand img { height: 54px; margin-bottom: 18px; background:#fff; padding:8px 10px; border-radius:10px; }
.footer__brand p { font-size: .94rem; max-width: 320px; }
.footer h4 {
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 1.15rem;
  margin-bottom: 18px;
}
.footer__col a, .footer__col li { display: block; padding: 5px 0; font-size: .94rem; transition: color .2s var(--ease); }
.footer__col a:hover { color: var(--green-300); }
.footer__col i { color: var(--green-300); width: 18px; margin-right: 8px; }

.footer__social { display: flex; gap: 12px; margin-top: 10px; }
.footer__social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-size: 1.05rem;
  transition: background-color .25s var(--ease), transform .25s var(--ease);
}
.footer__social a:hover { background: var(--green-500); transform: translateY(-3px); }

.footer__bar {
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: space-between;
  align-items: center;
  font-size: .84rem;
}
.footer__bar .tag { display: inline-flex; align-items: center; gap: 8px; }
.footer__bar .tag i { color: var(--red-600); }

/* ==========================================================================
   FLOATING WHATSAPP
   ========================================================================== */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 800;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: grid; place-items: center;
  font-size: 1.8rem;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .45);
  animation: wa-pulse 2.6s infinite;
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.1) rotate(6deg); animation-play-state: paused; }
.wa-float::after {
  content: "Chat with us";
  position: absolute;
  right: 74px;
  white-space: nowrap;
  background: var(--green-900);
  color: #fff;
  font-size: .82rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.wa-float:hover::after { opacity: 1; transform: translateX(0); }
@keyframes wa-pulse {
  0% { box-shadow: 0 12px 30px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, .5); }
  70% { box-shadow: 0 12px 30px rgba(37, 211, 102, .45), 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 12px 30px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  .about .container { grid-template-columns: 1fr; }
  .about__media { max-width: 460px; margin-inline: auto; }
  .contact .container { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust .container { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .stat:nth-child(3)::before { display: none; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: #fff;
    padding: 18px var(--gutter) 28px;
    box-shadow: 0 20px 40px rgba(6, 61, 20, .12);
    border-bottom: 1px solid var(--line);
    transform: translateY(-140%);
    transition: transform .38s var(--ease);
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 8px; font-size: 1.05rem; border-radius: 8px; }
  .nav-links a::after { display: none; }
  .nav-links a:hover { background: var(--off); }
  .nav-links .mobile-cta {
    margin-top: 12px;
    background: var(--wa);
    color: #04310f;
    text-align: center;
    font-weight: 600;
  }
  .nav-links .mobile-cta:hover { background: var(--wa-dark); color: #fff; }
}

@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .shot.wide { grid-column: span 2; }
  .shot.tall { grid-row: span 1; }
  .hero__reticle { display: none; }
  .exp-badge { right: 10px; bottom: -18px; padding: 14px 16px; }
  .exp-badge b { font-size: 2.2rem; }
  .contact__cta { flex-direction: column; align-items: stretch; text-align: center; }
  .contact__cta .btn { justify-content: center; }
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero__reticle { display: none; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .about__list { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .hero__cta .btn { flex: 1 1 100%; }
  .brand-text b { font-size: 1.15rem; }
  .gallery-page-grid { grid-template-columns: 1fr; }
}

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