/* =====================================================================
   FINE LAWN LANDSCAPING — bespoke static site
   Design thesis: "mow stripes". A lawn cut properly leaves parallel bands,
   and one of their own photos shows exactly that. So the page is built on
   soft vertical bands — behind the hero copy, under the section headings,
   across the dark blocks — instead of the boxes-and-shadows default. The
   business positions itself as premium ("clientes residenciales exclusivos",
   "mantenimiento de primer nivel"), so the type is editorial: Fraunces for
   display, Inter for everything that has to be read fast.

   Palette extracted by code (PIL) from their own promo graphics and logo:
     forest  #204e36  brand background green
     lime    #9bb446  accent, the "Lawn" word in the wordmark
     carbon  #565d5b  logo badge charcoal
     paper   #f2f7f3  logo background, warm mint white
   --lime-ink #5c7420 is a darkened lime used wherever the accent has to
   carry text on a light surface: raw #9bb446 is 2.2:1 on paper, decorative
   only, never text.

   Copy note: every specific claim is documented in their own material — the
   insurance badge, the two audience lines, the service list and the five
   pests all come from their promo graphics; the bio and the single review
   are quoted verbatim (including its typo). No price, warranty, years in
   business or crew size is claimed anywhere: none is documented.
   ===================================================================== */

:root {
  --forest:    #204e36;
  --forest-d:  #163627;
  --forest-dd: #0f261b;
  --forest-l:  #2c6746;

  --lime:      #9bb446;
  --lime-l:    #b6cd6b;
  --lime-ink:  #5c7420;   /* accent that is allowed to carry text on light */

  --paper:     #f2f7f3;
  --paper-2:   #e8f0ea;
  --white:     #ffffff;

  --ink:       #1c2b23;
  --body:      #4a5850;
  --muted:     #6f7d75;
  --carbon:    #565d5b;
  --line:      #d5e2d8;
  --line-2:    #e4ede6;

  --wa:        #25b85a;
  --wa-d:      #1c9c4a;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;

  --shadow-sm: 0 2px 10px rgba(28,43,35,.05);
  --shadow:    0 30px 64px -34px rgba(15,38,27,.45);
  --shadow-lg: 0 44px 90px -40px rgba(15,38,27,.55);

  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px; line-height: 1.65;
  color: var(--body); background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
svg { width: 1em; height: 1em; flex: none; }

h1, h2, h3 {
  font-family: Fraunces, Georgia, "Times New Roman", serif;
  font-optical-sizing: auto;
  color: var(--ink); line-height: 1.06;
  letter-spacing: -.018em; margin: 0; font-weight: 600;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.4rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h3 { font-size: 1.16rem; line-height: 1.3; letter-spacing: -.01em; }
h1 em, h2 em {
  font-style: italic; font-weight: 500;
  color: var(--lime-ink);
}
p { margin: 0; }

.wrap { width: min(1200px, 100% - 44px); margin-inline: auto; }

/* Mow stripes — the page's one repeated motif */
.stripes-bg {
  background-image: repeating-linear-gradient(
    90deg, rgba(255,255,255,.045) 0 46px, transparent 46px 92px);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ---------- tags / section heads ---------- */
.tag {
  display: inline-block; margin: 0 0 20px;
  font-size: .74rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--lime-ink);
}
.tag--light { color: var(--lime-l); }

.section-head { max-width: 720px; margin-bottom: clamp(38px, 4.6vw, 60px); }
.section-head--center { max-width: 700px; margin-inline: auto; text-align: center; }
.lead { margin-top: 20px; font-size: 1.08rem; color: var(--muted); max-width: 56ch; }
.section-head--center .lead { margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: 14px 24px; border-radius: 999px;
  background: var(--forest); color: var(--paper);
  font-weight: 600; font-size: .95rem; letter-spacing: -.005em;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease);
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn:hover { background: var(--forest-l); transform: translateY(-2px); }
.btn--lg { padding: 17px 30px; font-size: 1rem; }
.btn--sm { padding: 10px 18px; font-size: .87rem; }
.btn--block { width: 100%; }
.btn--wa { background: var(--wa); color: #06280f; }
.btn--wa:hover { background: var(--wa-d); color: #fff; }
.btn--ghost { background: transparent; border-color: rgba(242,247,243,.4); color: var(--paper); }
.btn--ghost:hover { background: rgba(242,247,243,.12); }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 600; font-size: .94rem; color: var(--forest);
  border-bottom: 1px solid var(--lime); padding-bottom: 3px;
  transition: gap .18s var(--ease), color .18s var(--ease);
}
.link-arrow svg { width: 1.05em; height: 1.05em; }
.link-arrow:hover { gap: .85em; color: var(--lime-ink); }

/* =====================================================================
   NAV
   ===================================================================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(242,247,243,.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 76px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img { width: 46px; height: 46px; border-radius: 50%; }
.brand__txt { display: grid; line-height: 1.1; }
.brand__txt b {
  font-family: Fraunces, Georgia, serif; font-weight: 700;
  font-size: 1.12rem; letter-spacing: -.02em; color: var(--ink);
}
.brand__txt b i { font-style: normal; color: var(--lime-ink); margin-left: .22em; }
.brand__txt span {
  font-size: .64rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted);
}

.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a {
  font-size: .92rem; font-weight: 500; color: var(--ink); opacity: .82;
  transition: opacity .18s var(--ease), color .18s var(--ease);
}
.nav__links a:hover { opacity: 1; color: var(--lime-ink); }
.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__phone {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .88rem; font-weight: 600; color: var(--forest);
}
.nav__phone svg { width: 17px; height: 17px; color: var(--lime-ink); }
.nav__menu-cta { display: none; }
.nav__toggle { display: none; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--forest-dd);
  color: var(--paper);
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 50%; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(15,38,27,.94) 0%, rgba(15,38,27,.82) 38%, rgba(15,38,27,.30) 72%, rgba(15,38,27,.42) 100%),
    linear-gradient(to top, rgba(15,38,27,.7) 0%, transparent 45%);
}
/* mow stripes over the photograph, fading out to the right */
.hero__stripes {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: repeating-linear-gradient(
    90deg, rgba(155,180,70,.14) 0 2px, transparent 2px, transparent 78px);
  mask-image: linear-gradient(90deg, #000 0%, rgba(0,0,0,.35) 46%, transparent 72%);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, rgba(0,0,0,.35) 46%, transparent 72%);
}
.hero__inner {
  position: relative;
  padding: clamp(74px, 10vw, 138px) 0 clamp(78px, 10vw, 142px);
  max-width: 1200px;
}
.hero h1 { color: var(--paper); }
.hero h1 em { color: var(--lime-l); }
.hero__sub {
  margin-top: 26px; max-width: 54ch;
  font-size: 1.08rem; color: rgba(242,247,243,.85);
}
.hero__sub b { color: var(--paper); font-weight: 600; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero__actions .btn:first-child { background: var(--lime); color: #172c07; }
.hero__actions .btn:first-child:hover { background: var(--lime-l); }
.hero__phone {
  display: inline-flex; align-items: center; gap: .55em;
  margin-top: 26px; font-size: 1rem; font-weight: 600; color: rgba(242,247,243,.9);
}
.hero__phone svg { width: 18px; height: 18px; color: var(--lime-l); }
.hero__phone a { border-bottom: 1px solid rgba(155,180,70,.5); padding-bottom: 2px; }

/* =====================================================================
   TRUST STRIP
   ===================================================================== */
.strip { background: var(--paper-2); border-bottom: 1px solid var(--line); }
.strip__inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);
  margin-block: 0;
}
.strip__item {
  display: flex; align-items: center; gap: 13px;
  background: var(--paper-2); padding: 26px 24px;
  font-size: .93rem; color: var(--body); line-height: 1.35;
}
.strip__item svg { width: 24px; height: 24px; color: var(--lime-ink); }
.strip__item b { color: var(--ink); font-weight: 600; }

/* =====================================================================
   SERVICIOS
   ===================================================================== */
.serv { padding: clamp(70px, 8.5vw, 120px) 0; }
.serv__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
  gap: 18px;
}
.scard {
  position: relative;
  background: var(--white); border: 1px solid var(--line-2);
  border-radius: var(--r-md); padding: 30px 26px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.scard:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line); }
.scard__ic {
  display: inline-grid; place-items: center;
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 20px;
  background: var(--paper-2); color: var(--forest);
}
.scard__ic svg { width: 27px; height: 27px; }
.scard p { margin-top: 11px; font-size: .95rem; color: var(--muted); }
.scard__link {
  display: inline-flex; align-items: center; gap: .45em;
  margin-top: 16px; font-size: .89rem; font-weight: 600; color: var(--lime-ink);
  transition: gap .18s var(--ease);
}
.scard__link svg { width: 1em; height: 1em; }
.scard__link:hover { gap: .8em; }
.scard--feat { background: var(--forest); border-color: var(--forest); }
.scard--feat h3 { color: var(--paper); }
.scard--feat p { color: rgba(242,247,243,.78); }
.scard--feat .scard__ic { background: rgba(155,180,70,.22); color: var(--lime-l); }
.scard__flag {
  position: absolute; top: 22px; right: 22px;
  font-size: .64rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: #172c07; background: var(--lime); padding: 5px 10px; border-radius: 999px;
}

/* =====================================================================
   PROPIEDADES
   ===================================================================== */
.props {
  padding: clamp(70px, 8.5vw, 120px) 0;
  background: var(--forest-d);
  background-image: repeating-linear-gradient(
    90deg, rgba(242,247,243,.035) 0 60px, transparent 60px 120px);
  color: rgba(242,247,243,.8);
}
.props h2, .props h3 { color: var(--paper); }
.props h2 em { color: var(--lime-l); }
.props__grid { display: grid; gap: 22px; }
.prop {
  display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(26px, 3.4vw, 48px); align-items: center;
  background: rgba(242,247,243,.05);
  border: 1px solid rgba(242,247,243,.11);
  border-radius: var(--r-lg); padding: 22px;
}
.prop--alt { grid-template-columns: minmax(0, 1.18fr) minmax(0, .82fr); }
.prop--alt .prop__media { order: 2; }
.prop__media {
  border-radius: var(--r-md); overflow: hidden;
  aspect-ratio: 4 / 3; background: var(--forest-dd);
}
.prop__media img { width: 100%; height: 100%; object-fit: cover; }
.prop__body { padding: 8px clamp(4px, 1.4vw, 20px) 10px 0; }
.prop--alt .prop__body { padding-left: clamp(4px, 1.4vw, 20px); padding-right: 0; }
.prop__body h3 {
  font-size: clamp(1.35rem, 2.1vw, 1.75rem); line-height: 1.2;
}
.prop__body > p { margin-top: 15px; font-size: .98rem; }

.badge-ins {
  display: flex; align-items: center; gap: 13px;
  margin-top: 22px; padding: 15px 18px; border-radius: var(--r-sm);
  background: rgba(155,180,70,.14);
  border: 1px solid rgba(155,180,70,.4);
  color: var(--paper); font-size: .95rem; line-height: 1.35;
}
.badge-ins svg { width: 26px; height: 26px; color: var(--lime-l); }
.badge-ins b { color: var(--lime-l); font-weight: 700; letter-spacing: .02em; }

.ticks { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 10px; }
.ticks li { display: flex; align-items: flex-start; gap: 11px; font-size: .95rem; }
.ticks li svg { width: 18px; height: 18px; margin-top: .32em; color: var(--lime-l); }

.props .link-arrow { margin-top: 24px; color: var(--paper); border-bottom-color: rgba(155,180,70,.6); }
.props .link-arrow:hover { color: var(--lime-l); }

/* =====================================================================
   TRABAJOS
   ===================================================================== */
.work { padding: clamp(70px, 8.5vw, 120px) 0; background: var(--paper-2); }
.work__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr; gap: 16px;
}
.shot {
  margin: 0; position: relative; overflow: hidden;
  border-radius: var(--r-md); background: var(--forest-dd);
  box-shadow: var(--shadow-sm);
}
.shot img {
  width: 100%; height: 100%; object-fit: cover;
  aspect-ratio: 1 / 1;
  transition: transform .5s var(--ease);
}
.shot--tall { grid-row: span 2; }
.shot--tall img { aspect-ratio: 354 / 764; }
.shot:hover img { transform: scale(1.045); }
.shot figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 34px 18px 16px;
  font-size: .85rem; line-height: 1.35; color: var(--paper);
  background: linear-gradient(to top, rgba(15,38,27,.92) 12%, transparent);
}

/* =====================================================================
   PLAGAS
   ===================================================================== */
.pest {
  padding: clamp(70px, 8.5vw, 120px) 0;
  background: var(--forest-dd);
  background-image: repeating-linear-gradient(
    90deg, rgba(155,180,70,.05) 0 1px, transparent 1px, transparent 64px);
  color: rgba(242,247,243,.78);
}
.pest__grid {
  display: grid; grid-template-columns: 1.02fr .98fr;
  gap: clamp(38px, 5vw, 76px); align-items: start;
}
.pest h2 { color: var(--paper); }
.pest h2 em { color: var(--lime-l); }
.pest__txt { margin-top: 20px; font-size: 1.02rem; max-width: 46ch; }
.pest .btn { margin-top: 30px; }

.pest__list { list-style: none; margin: 0; padding: 0; display: grid; }
.pest__list li {
  display: flex; align-items: baseline; gap: 20px;
  padding: 21px 4px;
  border-top: 1px solid rgba(242,247,243,.13);
}
.pest__list li:last-child { border-bottom: 1px solid rgba(242,247,243,.13); }
.pest__n {
  font-family: Fraunces, Georgia, serif; font-size: .95rem; font-weight: 600;
  color: var(--lime); letter-spacing: .04em;
}
.pest__list b { display: block; color: var(--paper); font-size: 1.05rem; font-weight: 600; }
.pest__list span { display: block; margin-top: 4px; font-size: .93rem; }

/* =====================================================================
   TESTIMONIO
   ===================================================================== */
.testi {
  padding: clamp(58px, 7vw, 92px) 0;
  background: var(--lime);
  background-image: repeating-linear-gradient(
    90deg, rgba(23,44,7,.045) 0 54px, transparent 54px 108px);
}
.testi__inner { max-width: 780px; margin-inline: auto; text-align: center; }
.testi__q { width: 40px; height: 40px; color: rgba(23,44,7,.32); margin-bottom: 18px; }
.testi blockquote {
  margin: 0;
  font-family: Fraunces, Georgia, serif; font-weight: 500; font-style: italic;
  font-size: clamp(1.6rem, 3.4vw, 2.5rem); line-height: 1.2;
  letter-spacing: -.015em; color: #17301a;
}
.testi__who { margin-top: 26px; display: grid; gap: 3px; }
.testi__who b { font-size: .98rem; font-weight: 700; color: #17301a; }
.testi__who span {
  font-size: .74rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(23,48,26,.62);
}

/* =====================================================================
   COTIZACIÓN
   ===================================================================== */
.quote { padding: clamp(70px, 8.5vw, 120px) 0; }
.quote__grid {
  display: grid; grid-template-columns: .88fr 1.12fr;
  gap: clamp(36px, 5vw, 72px); align-items: start;
}
.quote__sub { margin-top: 20px; font-size: 1.04rem; color: var(--muted); max-width: 44ch; }

.quote__lines { list-style: none; margin: 36px 0 0; padding: 0; display: grid; gap: 2px; }
.quote__lines li {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding: 15px 0; border-bottom: 1px solid var(--line);
}
.quote__lines li:first-child { border-top: 1px solid var(--line); }
.quote__k { font-size: .74rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.quote__v {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 600; font-size: .96rem; color: var(--forest);
  transition: color .18s var(--ease);
}
.quote__v svg { width: 17px; height: 17px; color: var(--lime-ink); }
.quote__v:hover { color: var(--lime-ink); }
.quote__v--plain { color: var(--body); font-weight: 500; }

/* ---------- form ---------- */
.form {
  background: var(--white); border: 1px solid var(--line-2);
  border-radius: var(--r-lg); padding: clamp(26px, 3.4vw, 40px);
  box-shadow: var(--shadow);
}
.field { margin-bottom: 24px; border: 0; padding: 0; min-width: 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label, .field legend {
  display: block; padding: 0; margin-bottom: 9px;
  font-size: .82rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--ink);
}
.field i { font-style: normal; color: var(--lime-ink); }
.opt-note { text-transform: none; letter-spacing: 0; font-weight: 500; color: var(--muted); }

.field input[type="text"], .field textarea {
  width: 100%; padding: 14px 16px;
  font: inherit; font-size: .97rem; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-sm); outline: none;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
}
.field textarea { resize: vertical; line-height: 1.55; }
.field input::placeholder, .field textarea::placeholder { color: #9aa8a0; }
.field input:focus, .field textarea:focus {
  background: var(--white);
  border-color: var(--lime-ink);
  box-shadow: 0 0 0 3px rgba(155,180,70,.24);
}

.opts { display: grid; gap: 10px; }
.opts--2 { grid-template-columns: 1fr 1fr; }
.opts--chips { grid-template-columns: repeat(auto-fill, minmax(178px, 1fr)); }
/* Beats the uppercase `.field label` rule above — the option text is a
   sentence the client reads, not a field label. */
.field .opt { margin: 0; text-transform: none; letter-spacing: 0; font-weight: 500; }
.opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.opt span {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 15px; border-radius: var(--r-sm);
  background: var(--paper); border: 1px solid var(--line);
  font-size: .93rem; color: var(--body); cursor: pointer;
  transition: border-color .16s var(--ease), background .16s var(--ease), color .16s var(--ease);
}
.opt span::before {
  content: ""; flex: none; width: 18px; height: 18px;
  border: 1.5px solid #b6c6ba; border-radius: 5px; background: var(--white);
  transition: border-color .16s var(--ease), background .16s var(--ease);
}
.opt input[type="radio"] + span::before { border-radius: 50%; }
.opt span:hover { border-color: #b3c6b8; }
.opt input:checked + span {
  background: rgba(155,180,70,.14); border-color: var(--lime-ink); color: var(--ink); font-weight: 600;
}
.opt input:checked + span::before {
  background: var(--lime-ink) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m4.5 12.5 5 5 10-11'/%3E%3C/svg%3E") center/13px no-repeat;
  border-color: var(--lime-ink);
}
.opt input:focus-visible + span { box-shadow: 0 0 0 3px rgba(155,180,70,.32); }

.form__error {
  display: none; margin: 0 0 18px;
  padding: 13px 16px; border-radius: var(--r-sm);
  background: #fdeceb; border: 1px solid #f3c9c5;
  color: #97281f; font-size: .92rem;
}
.form__error.is-on { display: block; }
.form__note { margin-top: 14px; text-align: center; font-size: .84rem; color: var(--muted); }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { background: var(--forest-dd); color: rgba(242,247,243,.62); padding: 46px 0; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 26px; }
.brand--footer .brand__txt b { color: var(--paper); }
.brand--footer .brand__txt b i { color: var(--lime-l); }
.brand--footer .brand__txt span { color: rgba(242,247,243,.5); }
.footer__links { display: flex; flex-wrap: wrap; gap: 22px; font-size: .9rem; }
.footer__links a:hover { color: var(--lime-l); }
.footer__meta { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; font-size: .82rem; }
.footer__meta a:hover { color: var(--lime-l); }
.footer__sep { color: rgba(242,247,243,.3); }

/* ---------- WhatsApp FAB ---------- */
.wa-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  display: inline-flex; align-items: center; gap: .55em;
  padding: 13px 20px; border-radius: 999px;
  background: var(--wa); color: #06280f; font-weight: 700; font-size: .93rem;
  box-shadow: 0 16px 34px -12px rgba(37,184,90,.6);
  transition: transform .2s var(--ease);
}
.wa-fab svg { width: 24px; height: 24px; }
.wa-fab:hover { transform: translateY(-2px) scale(1.03); }

/* ---------- scroll reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .shot img, .btn, .scard { transition: none; }
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1080px) {
  .prop, .prop--alt { grid-template-columns: 1fr; }
  .prop--alt .prop__media { order: 0; }
  .prop__media { aspect-ratio: 16 / 9; }
  .prop__body, .prop--alt .prop__body { padding: 4px 6px 12px; }
  .quote__grid { grid-template-columns: 1fr; }
  .quote__sub { max-width: 60ch; }
  .pest__grid { grid-template-columns: 1fr; }
  .work__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .strip__inner { grid-template-columns: 1fr 1fr; }
  .hero__bg img { object-position: 70% 50%; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  /* Standing rule for every build: the menu toggle sits flush right on mobile.
     .nav__cta keeps its own margin-left:auto so the drawer below can't drag
     the toggle back toward the middle. */
  .nav__links { display: none; }
  .nav__phone { display: none; }
  .nav__cta .btn--sm { display: none; }
  .nav__cta { margin-left: auto; gap: 0; }
  .nav__toggle {
    display: inline-grid; place-items: center;
    width: 44px; height: 44px; padding: 0;
    background: var(--white); border: 1px solid var(--line);
    border-radius: var(--r-sm); color: var(--ink); cursor: pointer;
  }
  .nav__toggle svg { width: 22px; height: 22px; }
  .nav__toggle-close { display: none; }
  .nav__toggle[aria-expanded="true"] .nav__toggle-open { display: none; }
  .nav__toggle[aria-expanded="true"] .nav__toggle-close { display: block; }

  .nav__links.is-open {
    display: flex; position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 8px 22px 22px; box-shadow: var(--shadow);
  }
  .nav__links.is-open a { padding: 14px 2px; border-bottom: 1px solid var(--line-2); }
  .nav__links.is-open .nav__menu-cta {
    display: inline-flex; align-items: center; justify-content: center;
    margin-top: 16px; padding: 15px 18px; border-radius: 999px;
    background: var(--forest); color: var(--paper); font-weight: 600; border-bottom: none;
  }

  .hero__inner { padding-block: 62px 68px; }
  .hero__actions .btn { flex: 1 1 100%; }
  .strip__inner { grid-template-columns: 1fr; }
  .strip__item { padding: 18px 4px; }
  .work__grid { grid-template-columns: 1fr; }
  .shot--tall { grid-row: auto; }
  .shot--tall img { aspect-ratio: 4 / 5; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .opts--2 { grid-template-columns: 1fr; }
  .opts--chips { grid-template-columns: 1fr; }
  .quote__lines li { flex-direction: column; align-items: flex-start; gap: 5px; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .wa-fab span { display: none; }
  .wa-fab { padding: 15px; }
}
