@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800&family=Space+Grotesk:wght@600;700&display=swap");

:root {
  --navy: #07172c;
  --navy-2: #0b2b4b;
  --navy-3: #124765;
  --green: #a9d84f;
  --green-2: #dff879;
  --green-dark: #416911;
  --charcoal: #111923;
  --slate: #465768;
  --line: #e0e8ee;
  --mist: #f4f8f5;
  --soft: #fbfcf7;
  --cream: #f8f7ef;
  --white: #ffffff;
  --shadow: 0 28px 72px rgba(7, 23, 44, .15);
  --shadow-soft: 0 14px 34px rgba(7, 23, 44, .075);
  --ease: cubic-bezier(.2,.8,.2,1);
  --radius: 10px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--charcoal);
  background:
    linear-gradient(120deg, rgba(169,216,79,.1), transparent 32rem),
    linear-gradient(180deg, #ffffff 0%, var(--soft) 44%, #ffffff 100%);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: rgba(169,216,79,.34); color: var(--navy); }
:focus-visible {
  outline: 3px solid rgba(169,216,79,.72);
  outline-offset: 4px;
}
.wrap { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 12px; background: var(--green); padding: 10px 14px; z-index: 20; }
.skip-link:focus { left: 12px; }

.top-strip {
  background: linear-gradient(90deg, #061429, var(--navy-2) 54%, #0c3b55);
  color: #edf4ee;
  font-size: 12px;
  letter-spacing: .01em;
  position: relative;
  overflow: hidden;
}
.top-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 10%, rgba(255,255,255,.1), transparent 24%);
  transform: translateX(-130%);
  animation: stripSheen 7s ease-in-out infinite;
  pointer-events: none;
}
.top-strip .wrap {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.top-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 800;
}
.top-actions a + a {
  color: #e6fb9a;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(7,31,63,.08);
  box-shadow: 0 8px 28px rgba(7,31,63,.05);
  transition: background .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease), transform .28s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.96);
  border-color: rgba(7,31,63,.12);
  box-shadow: 0 14px 36px rgba(7,31,63,.1);
}
.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo { display: flex; align-items: center; gap: 12px; font-weight: 900; color: var(--navy); }
.logo img { width: 168px; height: 56px; object-fit: contain; filter: drop-shadow(0 5px 10px rgba(7,31,63,.08)); transition: transform .32s var(--ease), filter .32s var(--ease); }
.logo:hover img { transform: translateY(-1px) scale(1.015); filter: drop-shadow(0 9px 15px rgba(7,31,63,.12)); }
.nav-links { display: flex; align-items: center; gap: 20px; font-size: 14px; font-weight: 800; color: var(--navy); }
.nav-links a { position: relative; padding: 10px 0; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s var(--ease);
}
.nav-links a:hover,
.nav-links a.is-active { color: var(--green-dark); }
.nav-links a.is-active::after,
.nav-links a:hover::after { transform: scaleX(1); }
.menu-toggle { display: none; border: 1px solid var(--line); background: #fff; border-radius: var(--radius); width: 44px; height: 44px; font-size: 24px; color: var(--navy); }

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 14px 20px;
  border-radius: 10px;
  border: 2px solid transparent;
  font-weight: 900;
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  line-height: 1.15;
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), background .24s var(--ease), border-color .24s var(--ease);
  cursor: pointer;
  isolation: isolate;
}
.btn::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -55%;
  width: 42%;
  transform: skewX(-22deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.32), transparent);
  transition: left .62s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:hover::after { left: 115%; }
.btn:active { transform: translateY(0) scale(.99); }
.btn-primary { background: linear-gradient(180deg, #e7fb8b, var(--green)); color: #102008; box-shadow: 0 14px 34px rgba(169,216,79,.28), inset 0 1px 0 rgba(255,255,255,.48); }
.btn-primary:hover { box-shadow: 0 18px 44px rgba(169,216,79,.36), inset 0 1px 0 rgba(255,255,255,.52); }
.btn-dark { background: linear-gradient(180deg, var(--navy-2), var(--navy)); color: #fff; }
.btn-light { border-color: rgba(255,255,255,.5); color: #fff; background: rgba(255,255,255,.08); backdrop-filter: blur(8px); }
.btn-light:hover { background: rgba(255,255,255,.14); border-color: rgba(210,244,95,.7); }
.btn-outline { border-color: var(--navy); color: var(--navy); background: #fff; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7,23,44,.97) 0%, rgba(7,23,44,.88) 47%, rgba(7,23,44,.42) 100%),
    url("images/balcony-netting-focused-installation.jpg") center / cover;
  color: #fff;
  animation: heroPhotoDrift 22s ease-in-out infinite alternate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image:
    linear-gradient(rgba(255,255,255,.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0,0,0,.72) 42%, transparent 90%);
  animation: patternDrift 18s linear infinite;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 66%, rgba(7,23,44,.2)),
    linear-gradient(90deg, rgba(169,216,79,.12), transparent 42%);
}
.hero .wrap { position: relative; z-index: 1; }
.hero .wrap {
  min-height: 640px;
  display: grid;
  align-items: center;
  padding: 72px 0 86px;
}
.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(169,216,79,.18);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  box-shadow: inset 0 0 0 1px rgba(169,216,79,.28);
}
.hero .eyebrow,
.problem-section .eyebrow,
.service-hero .eyebrow {
  background: rgba(169,216,79,.16);
  color: #eaff9d;
  box-shadow: inset 0 0 0 1px rgba(234,255,157,.24);
}
h1, h2, h3 {
  font-family: "Space Grotesk", Manrope, ui-sans-serif, system-ui, sans-serif;
  line-height: 1.04;
  margin: 0;
  color: var(--navy);
  letter-spacing: 0;
}
p { color: var(--slate); font-weight: 500; }
.hero h1 { max-width: 760px; margin-top: 18px; color: #fff; font-size: clamp(40px, 6.6vw, 78px); }
.hero p { max-width: 640px; margin: 22px 0 0; font-size: clamp(18px, 2.1vw, 22px); color: #f4f8f4; line-height: 1.58; text-shadow: 0 2px 18px rgba(0,0,0,.22); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero .eyebrow,
.hero h1,
.hero p,
.hero-actions,
.badges {
  animation: heroRise .86s var(--ease) both;
}
.hero h1 { animation-delay: .08s; }
.hero p { animation-delay: .16s; }
.hero-actions { animation-delay: .24s; }
.badges { animation-delay: .32s; }
.badges { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; max-width: 760px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  color: #f4f8fc;
  font-weight: 800;
  font-size: 13px;
  backdrop-filter: blur(10px);
  transition: transform .24s var(--ease), background .24s var(--ease), border-color .24s var(--ease);
}
.badge:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.16);
  border-color: rgba(198,244,90,.36);
}
.badge::before, .check-list li::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(169,216,79,.16); flex: 0 0 auto; }

section { padding: 84px 0; }
.proof-strip-section {
  position: relative;
  z-index: 3;
  margin-top: -38px;
  padding: 0 0 34px;
  background: transparent !important;
}
.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(221,232,241,.92);
  background: rgba(255,255,255,.96);
  box-shadow: 0 22px 52px rgba(6,26,51,.13);
  backdrop-filter: blur(14px);
}
.proof-strip div {
  min-height: 116px;
  padding: 22px;
  display: grid;
  align-content: center;
  gap: 4px;
  border-right: 1px solid var(--line);
  position: relative;
}
.proof-strip div:last-child { border-right: 0; }
.proof-strip div::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 18px;
  width: 30px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), transparent);
}
.proof-strip strong {
  color: var(--navy);
  font-size: 18px;
  line-height: 1.15;
}
.proof-strip span {
  color: var(--slate);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 650;
}
.section-head .eyebrow { margin-bottom: 2px; }
.section-head { display: grid; gap: 14px; margin-bottom: 34px; }
.section-head.center { text-align: center; justify-items: center; }
.section-head h2 { font-size: clamp(32px, 4vw, 48px); max-width: 790px; }
.section-head p { max-width: 700px; margin: 0; color: var(--slate); font-size: 18px; line-height: 1.68; font-weight: 600; }

.grid { display: grid; gap: 22px; }
.services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .34s var(--ease), box-shadow .34s var(--ease), border-color .34s var(--ease);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
  isolation: isolate;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--green), #e2ff84);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .34s var(--ease);
  z-index: 2;
}
.card:hover {
  transform: translateY(-7px);
  border-color: rgba(169,216,79,.62);
  box-shadow: 0 25px 64px rgba(7,23,44,.13);
}
.card:hover::before { transform: scaleX(1); }
.card-body { padding: 24px; display: flex; flex: 1; flex-direction: column; align-items: flex-start; }
.card img { width: 100%; height: 260px; object-fit: cover; object-position: center; transition: transform .7s var(--ease), filter .7s var(--ease); }
.card:hover img { transform: scale(1.045); filter: saturate(1.02) contrast(1.02); }
.card img[src*="balcony-bird-netting-installation"],
.card img[src*="balcony-netting-focused-installation"],
.card img[src*="condo-balcony-netting-focused"],
.card img[src*="bird-netting-condo-balcony"] { object-position: center 44%; }
.card img[src*="pigeon-spikes-installation"],
.card img[src*="pigeon-spikes-close-up-installation"],
.card img[src*="pigeon-spike-roofline-focused"],
.card img[src*="pigeon-spike-roofline-installation"] { object-position: center 58%; }
.card img[src*="balcony-cleaning-service"],
.card img[src*="balcony-cleaning-finished-space"],
.card img[src*="pigeon-proof-balcony-before-after-focused"],
.card img[src*="pigeon-proof-balcony-before-after"] { object-position: center 48%; }
.card h3 { font-size: 25px; margin-bottom: 10px; }
.card p { color: var(--slate); margin: 0 0 18px; line-height: 1.62; font-weight: 600; }
.link-arrow { font-weight: 900; color: var(--navy); margin-top: auto; }
.link-arrow::after {
  content: " ->";
  display: inline-block;
  transition: transform .24s var(--ease);
}
.link-arrow:hover::after { transform: translateX(4px); }

.problem-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #07172c, #0b253e);
  color: #fff;
}
.problem-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(169,216,79,.15), transparent 34%),
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: auto, 58px 58px, 58px 58px;
  opacity: .58;
  pointer-events: none;
}
.problem-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 52px;
  align-items: center;
}
.problem-copy h2 {
  color: #fff;
  font-size: clamp(34px, 4.4vw, 54px);
  margin: 14px 0;
}
.problem-copy p {
  color: #e5eee9;
  font-size: 18px;
  line-height: 1.72;
}
.mini-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}
.problem-copy .link-arrow { color: #fff; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.problem-card {
  min-height: 210px;
  padding: 24px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  box-shadow: 0 18px 44px rgba(0,0,0,.16);
  backdrop-filter: blur(12px);
  transition: transform .32s var(--ease), background .32s var(--ease), border-color .32s var(--ease);
}
.problem-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,.12);
  border-color: rgba(210,244,95,.38);
}
.problem-card span {
  color: var(--green-2);
  font-weight: 950;
  font-size: 13px;
}
.problem-card h3 {
  color: #fff;
  font-size: 24px;
  margin: 34px 0 10px;
}
.problem-card p {
  color: #e5eee9;
  margin: 0;
  line-height: 1.6;
}

.band {
  background:
    linear-gradient(180deg, rgba(243,248,252,.98), rgba(255,255,255,.98)),
    linear-gradient(120deg, rgba(169,216,79,.09), transparent 35%);
}
.gallery-grid { grid-template-columns: 1.2fr 1fr 1fr; align-items: stretch; gap: 18px; }
.gallery-item { position: relative; overflow: hidden; min-height: 260px; border-radius: 10px; background: var(--navy); box-shadow: var(--shadow); transform: translateZ(0); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 25%, rgba(255,255,255,.16), transparent 55%);
  transform: translateX(-120%);
  transition: transform .8s var(--ease);
}
.gallery-item:hover::after { transform: translateX(120%); }
.gallery-item.tall { grid-row: span 2; min-height: 540px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .8s var(--ease), filter .8s var(--ease); }
.gallery-item img[src*="bird-netting-condo-balcony"],
.gallery-item img[src*="balcony-netting-focused-installation"],
.gallery-item img[src*="condo-balcony-netting-focused"],
.gallery-item img[src*="balcony-bird-netting-installation"] { object-position: center 42%; }
.gallery-item img[src*="pigeon-spikes-installation"],
.gallery-item img[src*="pigeon-spikes-close-up-installation"] { object-position: center 58%; }
.gallery-item img[src*="pigeon-spike-roofline-installation"],
.gallery-item img[src*="pigeon-spike-roofline-focused"] { object-position: center 62%; }
.gallery-item img[src*="pet-safe-balcony-cat-netting"] { object-position: center 72%; }
.gallery-item img[src*="pigeon-proof-balcony-before-after"],
.gallery-item img[src*="pigeon-proof-balcony-before-after-focused"] { object-position: center 48%; }
.gallery-item:hover img { transform: scale(1.055); filter: saturate(1.04) contrast(1.03); }
.caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
  color: #fff;
  font-weight: 900;
  font-size: 15px;
  background: linear-gradient(0deg, rgba(7,31,63,.88), rgba(7,31,63,0));
  transform: translateY(0);
  transition: padding .28s var(--ease), background .28s var(--ease);
}
.gallery-item:hover .caption { padding-bottom: 24px; }

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr); gap: 56px; align-items: center; }
.split h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 16px; }
.split p { font-size: 17px; line-height: 1.7; max-width: 680px; }
.quote-flow {
  background:
    linear-gradient(120deg, rgba(169,216,79,.1), transparent 35%),
    linear-gradient(180deg, #fff, var(--cream));
}
.quote-flow-grid {
  display: grid;
  grid-template-columns: .92fr 1fr;
  gap: 58px;
  align-items: center;
}
.quote-flow h2 {
  font-size: clamp(34px, 4.5vw, 54px);
  margin: 14px 0;
}
.quote-flow p {
  max-width: 660px;
  font-size: 18px;
  line-height: 1.72;
}
.quote-flow-media {
  position: relative;
  min-height: 520px;
}
.quote-flow-media img {
  border-radius: 10px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.quote-flow-media .media-main {
  width: min(82%, 430px);
  height: 520px;
  object-position: center 72%;
}
.quote-flow-media .media-overlap {
  position: absolute;
  right: 0;
  bottom: 34px;
  width: min(58%, 310px);
  height: 260px;
  border: 7px solid #fff;
}
.quote-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0 4px;
}
.quote-points span {
  padding: 12px 13px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy);
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(6,26,51,.055);
}

.feature-photo { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); border: 8px solid #fff; transform: translateZ(0); position: relative; }
.feature-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(169,216,79,.12), transparent 38%);
  opacity: 0;
  transition: opacity .34s var(--ease);
  pointer-events: none;
}
.feature-photo img { width: 100%; height: 520px; object-fit: cover; object-position: center; transition: transform .85s var(--ease), filter .85s var(--ease); }
.feature-photo:hover img { transform: scale(1.04); filter: saturate(1.03) contrast(1.02); }
.feature-photo:hover::after { opacity: 1; }
.feature-photo img[src*="bird-netting-condo-balcony"],
.feature-photo img[src*="balcony-netting-focused-installation"],
.feature-photo img[src*="condo-balcony-netting-focused"],
.feature-photo img[src*="balcony-bird-netting-installation"] { object-position: center 42%; }
.feature-photo img[src*="pigeon-spike-roofline-installation"],
.feature-photo img[src*="pigeon-spike-roofline-focused"],
.feature-photo img[src*="pigeon-spikes-close-up-installation"],
.feature-photo img[src*="pigeon-spikes-installation"] { object-position: center 60%; }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 13px; }
.check-list li { display: flex; gap: 12px; align-items: center; font-weight: 800; color: var(--navy); }
.check-list li::before { transition: transform .24s var(--ease), box-shadow .24s var(--ease); }
.check-list li:hover::before { transform: scale(1.25); box-shadow: 0 0 0 7px rgba(169,216,79,.13); }
.process-grid { grid-template-columns: repeat(4, 1fr); counter-reset: step; gap: 18px; }
.step { padding: 24px; border-left: 4px solid var(--green); background: linear-gradient(180deg, #fff, var(--soft)); border-radius: 10px; box-shadow: var(--shadow-soft); position: relative; overflow: hidden; }
.step { transition: transform .32s var(--ease), box-shadow .32s var(--ease); }
.step::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), transparent);
  opacity: 0;
  transform: translateY(3px);
  transition: opacity .32s var(--ease), transform .32s var(--ease);
}
.step:hover { transform: translateY(-5px); box-shadow: 0 22px 52px rgba(6,26,51,.12); }
.step:hover::after { opacity: 1; transform: translateY(0); }
.step::before { counter-increment: step; content: "0" counter(step); display: block; color: var(--green-dark); font-weight: 950; font-size: 16px; margin-bottom: 12px; }
.step h3 { font-size: 19px; margin-bottom: 8px; line-height: 1.2; }
.step p { margin: 0; line-height: 1.58; }
.areas { display: flex; flex-wrap: wrap; gap: 10px; }
.areas span { padding: 10px 14px; background: #fff; border: 1px solid var(--line); border-radius: 999px; font-weight: 800; color: var(--navy); box-shadow: 0 8px 22px rgba(7,31,63,.05); transition: transform .24s var(--ease), border-color .24s var(--ease), color .24s var(--ease), box-shadow .24s var(--ease); }
.areas span:hover { transform: translateY(-3px); border-color: rgba(169,216,79,.72); color: var(--green-dark); box-shadow: 0 14px 30px rgba(7,23,44,.075); }

.faq-list { display: grid; gap: 12px; max-width: 900px; margin: 0 auto; }
details { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 18px 20px; box-shadow: 0 10px 24px rgba(7,31,63,.05); transition: border-color .26s var(--ease), box-shadow .26s var(--ease), transform .26s var(--ease); }
details:hover { transform: translateY(-2px); }
details[open] { border-color: rgba(169,216,79,.72); box-shadow: 0 17px 40px rgba(7,23,44,.095); }
summary { cursor: pointer; font-weight: 950; color: var(--navy); list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(169,216,79,.16);
  color: var(--navy);
  flex: 0 0 auto;
  transition: transform .24s var(--ease), background .24s var(--ease);
}
details[open] summary::after { transform: rotate(45deg); background: var(--green); }
details p { color: var(--slate); margin: 12px 0 0; animation: faqIn .24s ease both; }

.cta {
  background:
    linear-gradient(90deg, rgba(7,31,63,.96), rgba(7,31,63,.8)),
    url("images/condo-balcony-netting-focused.jpg") center / cover;
  color: #fff;
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,.09), transparent);
  transform: translateX(-120%);
  animation: ctaSheen 9s ease-in-out infinite;
  pointer-events: none;
}
.cta .wrap {
  position: relative;
  z-index: 1;
  padding: 6px 0;
}
.cta h2 { color: #fff; font-size: clamp(32px, 4.4vw, 52px); max-width: 760px; }
.cta p { color: #e5eee9; max-width: 680px; font-size: 18px; line-height: 1.62; }

.service-hero {
  background:
    linear-gradient(145deg, rgba(169,216,79,.12), transparent 32%),
    linear-gradient(135deg, #061429 0%, var(--navy) 56%, var(--navy-3) 100%);
  color: #fff;
  padding: 76px 0 80px;
}
.service-hero .wrap { display: grid; grid-template-columns: 1fr .9fr; gap: 44px; align-items: center; }
.service-hero h1 { color: #fff; font-size: clamp(36px, 5vw, 60px); margin-top: 16px; }
.service-hero p { color: #e5eee9; font-size: 19px; max-width: 650px; line-height: 1.6; }
.service-hero img { border-radius: 12px; height: 420px; width: 100%; object-fit: cover; object-position: center; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.16); animation: imageSettle .9s var(--ease) both, imageFloat 7s ease-in-out 1.1s infinite; }
.service-hero img[src*="balcony-bird-netting-installation"],
.service-hero img[src*="balcony-netting-focused-installation"],
.service-hero img[src*="condo-balcony-netting-focused"],
.service-hero img[src*="bird-netting-condo-balcony"] { object-position: center 42%; }
.service-hero img[src*="pigeon-spikes-installation"],
.service-hero img[src*="pigeon-spikes-close-up-installation"],
.service-hero img[src*="pigeon-spike-roofline-focused"],
.service-hero img[src*="pigeon-spike-roofline-installation"] { object-position: center 60%; }
.service-hero img[src*="pet-safe-balcony-cat-netting"] { object-position: center 75%; }
.service-hero img[src*="pigeon-proof-balcony-before-after"],
.service-hero img[src*="pigeon-proof-balcony-before-after-focused"],
.service-hero img[src*="balcony-cleaning-finished-space"],
.service-hero img[src*="balcony-cleaning-service"] { object-position: center 48%; }
.quote-panel {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 30px;
  border-top: 6px solid var(--green);
  transition: transform .32s var(--ease), box-shadow .32s var(--ease);
}
.quote-panel:hover { transform: translateY(-5px); box-shadow: 0 30px 80px rgba(7,31,63,.17); }
.quote-panel h2 { font-size: 30px; margin-bottom: 12px; }
form { display: grid; gap: 14px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: grid; gap: 6px; color: var(--navy); font-weight: 800; font-size: 13px; }
input, select, textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cdd9e6;
  border-radius: 10px;
  padding: 12px 13px;
  font: inherit;
  color: var(--charcoal);
  background: #fff;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}
input::placeholder,
textarea::placeholder { color: #8a98a8; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(169,216,79,.16);
  transform: translateY(-1px);
}
textarea { min-height: 130px; resize: vertical; }
.form-note { margin: 0; color: var(--slate); font-size: 13px; }
.form-note a { color: var(--navy); font-weight: 900; }

.site-footer {
  background:
    linear-gradient(130deg, rgba(169,216,79,.12), transparent 34%),
    #061429;
  color: #e5eee9;
  padding: 54px 0 88px;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr .9fr .8fr 1.2fr; gap: 38px; align-items: start; }
.site-footer h3 { color: #fff; font-size: 15px; margin: 0 0 14px; letter-spacing: .02em; }
.site-footer a, .site-footer p { color: #e5eee9; margin: 0 0 8px; line-height: 1.55; }
.site-footer a { display: block; }
.site-footer a { transition: color .2s var(--ease), transform .2s var(--ease); }
.site-footer a:hover { color: var(--green-2); transform: translateX(2px); }
.footer-logo { width: 198px; margin-bottom: 16px; filter: drop-shadow(0 8px 14px rgba(0,0,0,.22)); }
.sticky-mobile {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 10px 12px;
  gap: 10px;
  box-shadow: 0 -12px 30px rgba(7,31,63,.12);
  animation: stickyIn .42s var(--ease) both;
}
.sticky-mobile a { flex: 1; min-height: 46px; }

main > section:nth-of-type(odd):not(.hero):not(.cta):not(.service-hero) {
  background: rgba(255,255,255,.72);
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(.985);
  filter: blur(6px);
  transition: opacity .78s var(--ease), transform .78s var(--ease), filter .78s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@keyframes heroRise {
  from { opacity: 0; transform: translateY(24px) scale(.985); filter: blur(6px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroPhotoDrift {
  from { background-position: 48% 50%; }
  to { background-position: 56% 50%; }
}

@keyframes patternDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 56px 56px, 56px 56px; }
}

@keyframes imageSettle {
  from { opacity: 0; transform: translateY(18px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes imageFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes faqIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes stickyIn {
  from { opacity: 0; transform: translateY(100%); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes stripSheen {
  0%, 42% { transform: translateX(-130%); }
  58%, 100% { transform: translateX(130%); }
}

@keyframes ctaSheen {
  0%, 52% { transform: translateX(-120%); }
  70%, 100% { transform: translateX(120%); }
}

@media (max-width: 980px) {
  .top-strip .wrap { justify-content: center; text-align: center; flex-direction: column; padding: 8px 0; }
  .top-actions { justify-content: center; }
  .nav { min-height: 68px; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-links {
    position: absolute;
    top: 69px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(7,31,63,.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .26s var(--ease), transform .26s var(--ease);
  }
  .nav-links.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-links a { padding: 12px; border-bottom: 1px solid var(--line); }
  .desktop-cta { display: none; }
  .hero .wrap { min-height: 650px; padding: 58px 0 84px; }
  .services-grid, .process-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .proof-strip { grid-template-columns: 1fr 1fr; }
  .proof-strip div:nth-child(2) { border-right: 0; }
  .proof-strip div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .split, .service-hero .wrap, .problem-layout, .quote-flow-grid { grid-template-columns: 1fr; gap: 34px; }
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .quote-flow-media { min-height: 470px; max-width: 620px; }
  .quote-flow-media .media-main { height: 470px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall { grid-row: span 1; min-height: 320px; }
}

@media (max-width: 640px) {
  .wrap { width: min(100% - 24px, 1120px); }
  section { padding: 58px 0; }
  .logo img { width: 146px; height: 50px; }
  .hero { background-position: 58% center; }
  .hero .wrap { min-height: 590px; align-items: end; padding-bottom: 66px; }
  .hero h1 { font-size: 40px; }
  .hero p { font-size: 17px; }
  .hero-actions .btn { width: 100%; }
  .proof-strip-section { margin-top: -24px; padding-bottom: 18px; }
  .proof-strip { grid-template-columns: 1fr; }
  .proof-strip div {
    min-height: 96px;
    padding: 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .proof-strip div:last-child { border-bottom: 0; }
  .badges { gap: 8px; }
  .badge { font-size: 12px; padding: 9px 10px; }
  .top-strip .wrap > span:first-child { display: none; }
  .top-actions { gap: 6px 12px; font-size: 12px; }
  .services-grid, .gallery-grid, .process-grid, .footer-grid, .field-grid, .problem-grid, .quote-points { grid-template-columns: 1fr; }
  .problem-card { min-height: auto; }
  .problem-card h3 { margin-top: 22px; }
  .quote-flow-media { min-height: auto; display: grid; gap: 14px; }
  .quote-flow-media .media-main,
  .quote-flow-media .media-overlap {
    position: static;
    width: 100%;
    height: 320px;
    border: 0;
  }
  .card img { height: 250px; }
  .feature-photo img, .service-hero img { height: 300px; }
  .gallery-item, .gallery-item.tall { min-height: 300px; }
  .section-head h2, .split h2 { font-size: 32px; }
  .section-head p, .split p { font-size: 16px; }
  .service-hero h1 { font-size: 38px; }
  .service-hero p { font-size: 17px; }
  .quote-panel { padding: 22px; }
  .sticky-mobile { display: flex; }
  body { padding-bottom: 74px; }
}

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