/* =========================================================================
   ANTI-PESTO BUG KILLERS — the customer front door  (antipesto.com)
   Bright, premium, warm. The public face of the business; the owner
   control room lives one click away at /app.
   ========================================================================= */
:root {
  --cream:   #F7F5F1;
  --surface: #FFFFFF;
  --warm:    #F4EFE6;
  --ink:     #23282F;
  --body:    #4E545C;
  --muted:   #79808A;
  --line:    #E9E4DB;
  --green:        #D2691E;
  --green-deep:   #B0541A;
  --green-bright: #F0883C;
  --green-soft:   #FCEEE0;
  --gold:    #E9A93C;
  --serif: "Fraunces", "Playfair Display", Georgia, serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --r: 16px; --r-lg: 24px; --r-xl: 32px;
  --shadow: 0 20px 50px rgba(20,50,30,.12);
  --shadow-sm: 0 8px 24px rgba(20,50,30,.08);
  --ease: cubic-bezier(.22,.61,.36,1);
  --maxw: 1160px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--sans); background: var(--cream); color: var(--body); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.serif { font-family: var(--serif); }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }
.eyebrow { font-size: .74rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--green); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; font-weight: 650; font-size: .95rem; padding: .85rem 1.5rem; border-radius: 999px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s; white-space: nowrap; }
.btn svg { width: 18px; height: 18px; }
.btn:active { transform: translateY(1px); }
.btn-primary { color: #fff; background: linear-gradient(180deg, var(--green-bright), var(--green)); box-shadow: 0 10px 26px rgba(210,105,30,.32); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(210,105,30,.42); }
.btn-light { color: var(--ink); background: #fff; box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-2px); }
.btn-ghost { color: var(--ink); border: 1px solid var(--line); background: #fff; }
.btn-ghost:hover { border-color: var(--green); color: var(--green); }
.btn-on-dark { color: var(--ink); background: #fff; }
.btn-outline-light { color: #fff; border: 1px solid rgba(255,255,255,.5); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); animation: rvFail .01s linear 2.8s forwards; }
[data-reveal].in { opacity: 1; transform: none; }

/* ---- header ----------------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 40; background: rgba(247,245,241,.85); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.site-header .container { display: flex; align-items: center; gap: 1.2rem; padding-top: .8rem; padding-bottom: .8rem; }
.logo { display: flex; align-items: center; gap: .6rem; font-family: var(--serif); font-weight: 600; font-size: 1.2rem; color: var(--ink); }
.logo .mk { width: 36px; height: 36px; }
.logo em { color: var(--green); font-style: italic; }
.site-nav { display: flex; align-items: center; gap: 1.6rem; margin-left: auto; }
.site-nav a { font-size: .9rem; font-weight: 550; color: var(--body); transition: color .2s; }
.site-nav a:hover { color: var(--green); }
.site-nav .btn { padding: .6rem 1.1rem; font-size: .86rem; }
.hdr-toggle { display: none; }

/* ---- hero ------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; color: #fff; padding: clamp(3rem, 8vw, 6rem) 0 clamp(5rem, 10vw, 8rem); background: linear-gradient(155deg, #1B2027 0%, #5A3210 45%, #D2691E 115%); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .5; background: repeating-linear-gradient(108deg, rgba(255,255,255,.03) 0 70px, rgba(255,255,255,.07) 70px 140px); -webkit-mask-image: radial-gradient(120% 100% at 70% 20%, #000, transparent 75%); mask-image: radial-gradient(120% 100% at 70% 20%, #000, transparent 75%); }
.hero::after { content: ""; position: absolute; right: -10%; top: -20%; width: 60%; height: 120%; background: radial-gradient(circle at center, rgba(251,164,90,.22), transparent 60%); }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 3rem; align-items: center; }
.hero-inner > * { min-width: 0; }
.hero-kicker { display: inline-flex; align-items: center; gap: .5rem; font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #F6D9BE; margin-bottom: 1.2rem; }
.hero-kicker .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-bright); }
.hero h1 { font-family: var(--serif); font-weight: 600; font-size: clamp(2.6rem, 6vw, 4.3rem); line-height: 1.02; letter-spacing: -.02em; }
.hero h1 em { font-style: italic; color: var(--green-bright); }
.hero-lead { margin-top: 1.3rem; font-size: 1.12rem; color: #EBE2D6; max-width: 46ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero-rating { display: flex; align-items: center; gap: .6rem; margin-top: 1.6rem; font-size: .9rem; color: #E3D8C9; }
.stars { color: var(--gold); letter-spacing: .1em; }

/* hero proof card */
.hero-card { position: relative; z-index: 1; background: #fff; border-radius: var(--r-xl); padding: 1rem; box-shadow: 0 40px 90px rgba(0,0,0,.4); color: var(--ink); transform: rotate(1.4deg); }
.hero-photo { position: relative; aspect-ratio: 4/3; border-radius: 20px; overflow: hidden; background: linear-gradient(160deg, #FBA45A 0%, #B0541A 100%); }
.hero-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-photo::after { content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none; background: linear-gradient(to top, rgba(0,0,0,.28), transparent 55%); }
/* pest proof scene — home exterior perimeter, treated base band + bait station */
.turf { position: absolute; inset: 0; background: linear-gradient(180deg,
  #bcd9ec 0 24%, #e6ddcb 24% 28%, #d8cab0 28% 30%, #cdbfa4 30% 60%, #6f5a40 60% 78%, #8a9b6b 78% 100%); }
.turf::before { content: ""; position: absolute; left: 0; right: 0; top: 56%; height: 6%; z-index: 1; background: linear-gradient(180deg, rgba(240,136,60,.4), rgba(240,136,60,0)); }
.turf::after { content: ""; position: absolute; left: 12%; bottom: 13%; width: 14%; height: 11%; z-index: 2; border-radius: 3px; background: linear-gradient(180deg,#4a3f33,#332a20); box-shadow: 0 2px 5px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.12); }
.hero-photo .gps { position: absolute; z-index: 4; right: 12px; top: 12px; display: inline-flex; align-items: center; gap: .3rem; font-size: .68rem; font-weight: 800; letter-spacing: .01em; color: #2b1505; background: var(--green-bright); padding: .32rem .62rem .32rem .5rem; border-radius: 999px; box-shadow: 0 4px 12px rgba(20,30,15,.32), inset 0 1px 0 rgba(255,255,255,.4); }
.hero-photo .gps svg { color: #2b1505; flex: none; }
.hero-card .hc-foot { display: flex; align-items: center; gap: .7rem; padding: .85rem .6rem .4rem; }
.hc-check { width: 36px; height: 36px; border-radius: 50%; background: var(--green-soft); color: var(--green); display: grid; place-items: center; flex: none; }
.hc-foot strong { font-family: var(--serif); font-size: 1.05rem; display: block; color: var(--ink); }
.hc-foot span { font-size: .8rem; color: var(--muted); }
@media (prefers-reduced-motion: no-preference) { .hero-card { animation: floaty 7s var(--ease) infinite; } }
@keyframes floaty { 0%,100%{ transform: rotate(1.4deg) translateY(0); } 50%{ transform: rotate(1.4deg) translateY(-12px); } }

/* ---- trust strip ------------------------------------------------------ */
.trust { position: relative; z-index: 2; margin-top: -3rem; }
.trust-bar { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow); display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-bar div { padding: 1.5rem 1rem; text-align: center; border-right: 1px solid var(--line); }
.trust-bar div:last-child { border-right: none; }
.trust-bar .n { font-family: var(--serif); font-weight: 600; font-size: 1.9rem; color: var(--green); line-height: 1; }
.trust-bar .l { font-size: .76rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); margin-top: .4rem; }

/* ---- sections --------------------------------------------------------- */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-head { text-align: center; max-width: 40ch; margin: 0 auto 3rem; }
.section-head h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(2rem, 4.5vw, 2.9rem); line-height: 1.08; color: var(--ink); margin-top: .6rem; letter-spacing: -.01em; }
.section-head h2 em { font-style: italic; color: var(--green); }
.section-head p { margin-top: .9rem; font-size: 1.05rem; }

/* services */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.svc { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.8rem 1.5rem; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; }
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.svc-ic { width: 64px; height: 64px; border-radius: 16px; background: var(--green-soft); color: var(--green); display: grid; place-items: center; margin-bottom: 1.1rem; }
.svc-ic svg { width: 34px; height: 34px; }
.svc h3 { font-family: var(--serif); font-weight: 600; font-size: 1.25rem; color: var(--ink); }
.svc p { font-size: .92rem; margin-top: .5rem; }
.svc .from { display: inline-block; margin-top: .9rem; font-size: .82rem; font-weight: 700; color: var(--green); }

/* proof band */
.proof { background: linear-gradient(160deg, #1B2027, #3A2410); color: #fff; }
.proof-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.proof .eyebrow { color: var(--green-bright); }
.proof h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(2rem, 4.5vw, 2.9rem); line-height: 1.08; margin-top: .6rem; letter-spacing: -.01em; }
.proof h2 em { font-style: italic; color: var(--green-bright); }
.proof p.lead { margin-top: 1.1rem; font-size: 1.08rem; color: #EAE0D2; max-width: 46ch; }
.proof-list { margin-top: 1.8rem; display: flex; flex-direction: column; gap: 1rem; }
.proof-list li { display: flex; gap: .8rem; align-items: flex-start; list-style: none; }
.proof-list .tick { width: 26px; height: 26px; border-radius: 50%; background: rgba(251,164,90,.18); color: var(--green-bright); display: grid; place-items: center; flex: none; margin-top: 2px; box-shadow: inset 0 0 0 1px rgba(251,164,90,.28); }
.proof-list .tick svg { width: 14px; height: 14px; }
.proof-list b { color: #fff; } .proof-list span { color: #D9CDBC; font-size: .94rem; }
.proof-visual { position: relative; }
.phone-shot { width: min(280px, 80%); margin: 0 auto; background: #0a130d; border: 9px solid #050d08; border-radius: 38px; padding: .8rem; box-shadow: 0 40px 80px rgba(0,0,0,.45); }
.phone-shot .ps-photo { aspect-ratio: 3/4; border-radius: 22px; overflow: hidden; position: relative; background: linear-gradient(160deg, #FBA45A 0%, #B0541A 100%); }
.phone-shot .ps-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.phone-shot .ps-photo::after { content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none; background: linear-gradient(to top, rgba(0,0,0,.28), transparent 55%); }
.phone-shot .ps-gps { position: absolute; z-index: 4; right: 10px; top: 10px; font-size: .62rem; font-weight: 800; color: #2b1505; background: var(--green-bright); padding: .22rem .52rem; border-radius: 999px; box-shadow: 0 3px 9px rgba(20,30,15,.3), inset 0 1px 0 rgba(255,255,255,.4); }
.phone-shot .ps-foot { color: #fff; padding: .8rem .4rem .2rem; }
.phone-shot .ps-foot strong { display: block; font-family: var(--serif); }
.phone-shot .ps-foot span { font-size: .78rem; color: #9A9387; }

/* areas */
.areas { text-align: center; }
.area-pills { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; margin-top: 1.5rem; }
.area-pills span { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .6rem 1.2rem; font-weight: 600; font-size: .92rem; color: var(--ink); }

/* reviews */
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.rev { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.8rem; }
.rev .stars { font-size: 1rem; }
.rev p { margin-top: .8rem; color: var(--ink); font-size: 1rem; }
.rev .who { margin-top: 1.2rem; display: flex; align-items: center; gap: .7rem; }
.rev .av { width: 40px; height: 40px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; font-weight: 700; }
.rev .who b { display: block; color: var(--ink); font-size: .92rem; }
.rev .who span { font-size: .8rem; color: var(--muted); }

/* quote */
.quote { background: var(--warm); }
.quote-card { background: #fff; border-radius: var(--r-xl); box-shadow: var(--shadow); display: grid; grid-template-columns: .9fr 1.1fr; overflow: hidden; }
.quote-aside { background: linear-gradient(160deg, #3A2410, #D2691E); color: #fff; padding: 2.6rem; display: flex; flex-direction: column; justify-content: center; }
.quote-aside h2 { font-family: var(--serif); font-weight: 600; font-size: 2rem; line-height: 1.1; }
.quote-aside p { margin-top: .9rem; color: #EAE0D2; }
.quote-aside .qa-li { display: flex; align-items: center; gap: .6rem; margin-top: 1rem; font-size: .92rem; color: #eafff0; }
.quote-aside .qa-li svg { width: 18px; height: 18px; color: var(--green-bright); }
.quote-form { padding: 2.6rem; }
.qf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.qf-field { margin-bottom: 1rem; }
.qf-field label { display: block; font-size: .74rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: .4rem; }
.qf-field input, .qf-field select { width: 100%; padding: .8rem .9rem; border: 1px solid var(--line); border-radius: 12px; font-size: .95rem; color: var(--ink); background: #fff; transition: border-color .2s, box-shadow .2s; }
.qf-field input:focus, .qf-field select:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 4px var(--green-soft); }
.quote-form .btn { width: 100%; margin-top: .4rem; }
.qf-note { text-align: center; margin-top: .9rem; font-size: .8rem; color: var(--muted); }
.qf-success { text-align: center; padding: 1rem; }
.qf-success .big { width: 70px; height: 70px; border-radius: 50%; background: var(--green-soft); color: var(--green); display: grid; place-items: center; margin: 0 auto 1rem; }
.qf-success .big svg { width: 34px; height: 34px; }
.qf-success h3 { font-family: var(--serif); font-size: 1.6rem; color: var(--ink); }
.qf-success p { margin-top: .5rem; }

/* footer */
.site-footer { background: #1B2027; color: #D9CFC2; padding: 3rem 0 2rem; }
.foot-grid { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: flex-start; }
.foot-brand { max-width: 30ch; }
.foot-brand .logo { color: #fff; }
.foot-brand p { margin-top: .8rem; font-size: .9rem; color: #9A9387; }
.foot-cols { display: flex; gap: 3.5rem; flex-wrap: wrap; }
.foot-col h4 { font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #8A8276; margin-bottom: .8rem; }
.foot-col a { display: block; font-size: .9rem; padding: .25rem 0; color: #D9CFC2; }
.foot-col a:hover { color: var(--green-bright); }
.foot-bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .82rem; color: #8A8276; }
.foot-bottom a { color: var(--green-bright); font-weight: 600; }

.toast-wrap { position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%); z-index: 80; display: flex; flex-direction: column; gap: .6rem; align-items: center; pointer-events: none; }
.toast { display: flex; align-items: center; gap: .6rem; padding: .85rem 1.2rem; border-radius: 999px; background: var(--ink); color: #fff; font-size: .9rem; font-weight: 600; box-shadow: var(--shadow); animation: tin .4s var(--ease) both; }
.toast svg { width: 18px; height: 18px; color: var(--green-bright); }
@keyframes tin { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* ---- responsive ------------------------------------------------------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; } .hero-card { max-width: 380px; margin-top: 1rem; }
  .proof-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .quote-card { grid-template-columns: 1fr; } .quote-aside { padding: 2rem; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .rev-grid { grid-template-columns: 1fr; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); } .trust-bar div:nth-child(2) { border-right: none; }
  .site-nav { position: fixed; inset: 60px 1rem auto 1rem; flex-direction: column; align-items: stretch; gap: .3rem; background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow); padding: 1rem; transform: translateY(-130%); transition: transform .3s var(--ease); }
  .site-nav.open { transform: none; }
  .site-nav a { padding: .7rem .5rem; }
  .hdr-toggle { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--line); margin-left: auto; color: var(--ink); }
}
@media (max-width: 540px) {
  .svc-grid { grid-template-columns: 1fr; } .qf-row { grid-template-columns: 1fr; }
  .container { padding: 0 1.1rem; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .001ms !important; transition: none !important; } [data-reveal] { opacity: 1; transform: none; } }


/* ─── real-photo proof + elevated icon tiles (showcase pass) ─── */
img.turf { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-ic { border: 1px solid rgba(210,105,30,.12); box-shadow: inset 0 1.5px 0 rgba(255,255,255,.9), inset 0 -2px 6px rgba(210,105,30,.08), 0 14px 26px -14px rgba(110,55,15,.55); transition: box-shadow .25s var(--ease), transform .25s var(--ease); }
.svc-ic, .svc:nth-child(even) .svc-ic { background-image: linear-gradient(160deg, rgba(255,255,255,.72), rgba(255,255,255,0) 62%) !important; }
.svc:hover .svc-ic { transform: translateY(-2px); box-shadow: inset 0 1.5px 0 rgba(255,255,255,.96), inset 0 -2px 6px rgba(210,105,30,.1), 0 18px 32px -12px rgba(110,55,15,.66); }

@keyframes rvFail { to { opacity: 1; transform: none; } }
