/* =========================================================================
   Complete Termite Solutions - flagship design system
   Brand extracted from the real CTS logo:
   Blue #0072BC / #00A3E0 (trust), Green #57963F / #A2C944 (eco/safe),
   Roof-red #DC3227 (protection / call-to-action).
   Design language: calm, premium, high-contrast, generous whitespace,
   bento layout, glass header, soft depth, progressive disclosure, motion.
   ========================================================================= */

:root {
  /* Brand */
  --blue: #0072BC;
  --blue-light: #00A3E0;
  --blue-ink: #044a78;
  --green: #57963F;
  --green-light: #A2C944;
  --red: #DC3227;
  --red-dark: #b8271d;

  /* Neutrals */
  --ink: #10241d;
  --body: #3d4b46;
  --muted: #6b7772;
  --line: #e6ebe8;
  --surface: #ffffff;
  --surface-2: #f5f8f6;
  --surface-3: #eef3ef;
  --wash: #f0f6f8;

  /* Effects */
  --radius: 18px;
  --radius-lg: 26px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 3px rgba(16,36,29,.06), 0 1px 2px rgba(16,36,29,.04);
  --shadow: 0 10px 30px -12px rgba(16,36,29,.18), 0 4px 10px -6px rgba(16,36,29,.10);
  --shadow-lg: 0 30px 60px -20px rgba(16,36,29,.28), 0 12px 24px -12px rgba(16,36,29,.14);
  --shadow-blue: 0 18px 40px -16px rgba(0,114,188,.45);
  --shadow-red: 0 16px 34px -14px rgba(220,50,39,.44);

  /* Gradients */
  --grad-blue: linear-gradient(135deg, var(--blue-light), var(--blue));
  --grad-green: linear-gradient(120deg, var(--green-light), var(--green));
  --grad-brand: linear-gradient(120deg, var(--blue) 0%, var(--green) 100%);

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

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--body);
  background: var(--surface);
  line-height: 1.65;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
h1,h2,h3,h4 { font-family: 'Fraunces', Georgia, serif; color: var(--ink); line-height: 1.1; font-weight: 600; letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.32rem; }
p { text-wrap: pretty; }
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.muted { color: var(--muted); }
.skip-link { position: absolute; left: -999px; }
.skip-link:focus { left: 1rem; top: 1rem; z-index: 200; background: #fff; padding: .6rem 1rem; border-radius: 8px; box-shadow: var(--shadow); }
section { position: relative; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--blue);
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-weight: 700; font-size: .98rem; line-height: 1;
  padding: .95rem 1.5rem; border-radius: 999px; border: 0; cursor: pointer;
  background: var(--btn-bg); color: #fff; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
  box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translateY(-2px); }
.btn i { font-size: .95em; }
.btn-red { --btn-bg: var(--red); box-shadow: var(--shadow-red); }
.btn-red:hover { background: var(--red-dark); box-shadow: var(--shadow-red); }
.btn-blue { --btn-bg: var(--blue); box-shadow: var(--shadow-blue); }
.btn-green { background: var(--grad-green); box-shadow: 0 14px 30px -14px rgba(87,150,63,.5); }
.btn-white { background: #fff; color: var(--blue-ink); box-shadow: var(--shadow); }
.btn-white:hover { color: var(--blue); }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--blue); color: var(--blue); }
.btn-lg { padding: 1.1rem 1.9rem; font-size: 1.05rem; }
.btn-sm { padding: .7rem 1.1rem; font-size: .9rem; }

/* ---------- Header (glass, sticky) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s, border-color .3s, background .3s;
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); border-bottom-color: var(--line); }
.header-inner { display: flex; align-items: center; gap: 1.2rem; height: 76px; }
.brand { display: flex; align-items: center; gap: .7rem; margin-right: auto; }
.brand-logo { height: 46px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: 'Fraunces', serif; font-weight: 700; color: var(--ink); font-size: 1.04rem; letter-spacing: -.01em; }
.brand-sub { font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--green); font-weight: 700; margin-top: 3px; }
.site-nav { display: flex; align-items: center; gap: .35rem; }
.nav-link {
  color: var(--ink); font-weight: 600; font-size: .96rem; padding: .55rem .85rem; border-radius: 10px;
  position: relative; transition: color .2s, background .2s;
}
.nav-link:hover { color: var(--blue); background: var(--surface-2); }
.nav-link-active { color: var(--blue); }
.header-cta { display: flex; align-items: center; gap: .6rem; margin-left: .4rem; }
.header-phone { display: inline-flex; align-items: center; gap: .5rem; font-weight: 800; color: var(--ink); font-size: .96rem; padding: .5rem .4rem; }
.header-phone i { color: var(--red); }
.header-phone:hover { color: var(--blue); }
.nav-toggle { display: none; background: var(--surface-2); border: 1px solid var(--line); border-radius: 12px; width: 46px; height: 46px; font-size: 1.2rem; color: var(--ink); cursor: pointer; }
.mobile-nav { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--surface); padding-top: clamp(2.5rem, 6vw, 4.5rem); }
.hero-inner { display: grid; grid-template-columns: 1.06fr .94fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; padding-bottom: clamp(3rem, 6vw, 5rem); }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .55rem; font-weight: 700; font-size: .82rem;
  letter-spacing: .04em; color: var(--green); background: var(--surface-3);
  padding: .5rem .95rem; border-radius: 999px; margin-bottom: 1.3rem;
}
.hero-eyebrow i { color: var(--green); }
.hero h1 { margin-bottom: 1.2rem; }
.hero h1 .accent { color: var(--blue); }
.hero h1 .accent-red { color: var(--red); }
.hero .lead { font-size: 1.18rem; color: var(--body); max-width: 52ch; margin-bottom: 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.7rem; }
.hero-assure { display: flex; flex-wrap: wrap; gap: 1.1rem 1.6rem; }
.hero-assure span { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .92rem; color: var(--ink); }
.hero-assure i { color: var(--green); font-size: 1.05rem; }

/* Hero visual (image + floating glass cards) */
.hero-visual { position: relative; }
.hero-media {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3.4;
  box-shadow: var(--shadow-lg);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, transparent 55%, rgba(4,74,120,.28)); }
.hero-card {
  position: absolute; background: rgba(255,255,255,.9); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.7); border-radius: 16px; padding: .85rem 1.05rem;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: .7rem;
}
.hero-card i { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 11px; color: #fff; font-size: 1.05rem; flex-shrink: 0; }
.hero-card .t { font-family: 'Fraunces', serif; font-weight: 700; color: var(--ink); font-size: 1.02rem; line-height: 1.1; }
.hero-card .s { font-size: .78rem; color: var(--muted); }
.hero-card-rating { top: 1.3rem; left: -1.1rem; }
.hero-card-rating i { background: var(--grad-green); }
.hero-card-rating .stars { color: #f5a524; letter-spacing: 2px; font-size: .8rem; }
.hero-card-speed { bottom: 1.6rem; right: -1rem; }
.hero-card-speed i { background: var(--red); }

/* Decorative brand mesh */
.hero-mesh { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero-mesh::before, .hero-mesh::after {
  content: ''; position: absolute; border-radius: 50%; filter: blur(70px); opacity: .18;
}
.hero-mesh::before { width: 460px; height: 460px; background: var(--blue-light); top: -120px; right: -80px; }
.hero-mesh::after { width: 380px; height: 380px; background: var(--green-light); bottom: -140px; left: -100px; opacity: .22; }

/* ---------- Marquee trust bar ---------- */
.trustbar { background: var(--ink); color: #fff; }
.trustbar .wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.4rem; padding-block: 1.05rem; }
.trustbar span { display: inline-flex; align-items: center; gap: .55rem; font-weight: 600; font-size: .92rem; color: #e8efe9; }
.trustbar i { color: var(--green-light); }

/* ---------- Section scaffolding ---------- */
.section { padding-block: clamp(3.5rem, 7vw, 6rem); }
.section-tint { background: var(--surface-2); }
.section-ink { background: var(--ink); color: #cdd7d1; }
.section-ink h2, .section-ink h3 { color: #fff; }
.section-head { max-width: 62ch; margin-bottom: 2.6rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-weight: 800; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); margin-bottom: .9rem; }
.eyebrow i { color: var(--green); }
.section-head p { font-size: 1.1rem; margin-top: .8rem; }

/* ---------- Why-us bento ---------- */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.bento-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  position: relative; overflow: hidden;
}
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.bento-card .ico { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; font-size: 1.3rem; color: #fff; background: var(--grad-brand); margin-bottom: 1.1rem; }
.bento-card:nth-child(3n+2) .ico { background: var(--grad-green); }
.bento-card:nth-child(3n) .ico { background: var(--red); }
.bento-card h3 { margin-bottom: .5rem; }
.bento-card p { font-size: .98rem; }

/* ---------- Services (progressive disclosure) ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.svc {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.8rem; box-shadow: var(--shadow-sm); transition: box-shadow .3s var(--ease), transform .3s var(--ease), border-color .3s;
  position: relative; overflow: hidden;
}
.svc:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.svc-featured { border: 0; background: linear-gradient(160deg, #fff, var(--wash)); box-shadow: var(--shadow); grid-column: span 2; }
.svc-featured::before { content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1.6px; background: var(--grad-brand); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.svc-featured .svc-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 1.5rem; align-items: center; }
.svc-tag { position: absolute; top: 1.3rem; right: 1.3rem; background: var(--red); color: #fff; font-size: .72rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; padding: .35rem .7rem; border-radius: 999px; }
.svc-head { display: flex; align-items: center; gap: .9rem; margin-bottom: .9rem; }
.svc-ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 1.25rem; color: #fff; background: var(--grad-blue); flex-shrink: 0; }
.svc h3 { font-size: 1.28rem; }
.svc-price { font-family: 'Fraunces', serif; font-weight: 700; color: var(--blue); font-size: 1.5rem; line-height: 1; }
.svc-price small { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: .74rem; color: var(--muted); letter-spacing: .02em; margin-top: .3rem; text-transform: none; }
.svc-blurb { font-size: .99rem; margin-bottom: 1rem; }
.svc-media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-sm); }
.svc-media img { width: 100%; height: 100%; object-fit: cover; }

/* Disclosure */
.disclosure { border-top: 1px dashed var(--line); margin-top: 1rem; }
.disclosure summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-top: 1rem; font-weight: 700; color: var(--ink); font-size: .95rem;
}
.disclosure summary::-webkit-details-marker { display: none; }
.disclosure summary .chev { width: 30px; height: 30px; border-radius: 50%; background: var(--surface-2); display: grid; place-items: center; color: var(--blue); transition: transform .3s var(--ease), background .2s; flex-shrink: 0; }
.disclosure[open] summary .chev { transform: rotate(180deg); background: var(--blue); color: #fff; }
.disclosure-body { padding-top: .9rem; animation: fade-in .4s var(--ease); }
.disclosure-body p { font-size: .96rem; margin-bottom: .8rem; }
.svc-bullets { list-style: none; padding: 0; display: grid; gap: .55rem; }
.svc-bullets li { display: flex; align-items: flex-start; gap: .6rem; font-size: .94rem; color: var(--body); }
.svc-bullets i { color: var(--green); margin-top: .25rem; }
@keyframes fade-in { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

/* ---------- Process (numbered timeline) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; counter-reset: step; }
.step { position: relative; padding: 1.6rem; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.step .num { font-family: 'Fraunces', serif; font-weight: 700; font-size: 2.4rem; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; display: block; margin-bottom: .6rem; }
.step .ico { position: absolute; top: 1.5rem; right: 1.5rem; color: var(--green); font-size: 1.3rem; opacity: .55; }
.step h3 { font-size: 1.12rem; margin-bottom: .45rem; }
.step p { font-size: .93rem; }

/* ---------- Locations ---------- */
.loc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.loc { border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s; }
.loc:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.loc-top { background: var(--grad-brand); color: #fff; padding: 1.3rem 1.5rem; display: flex; align-items: center; gap: .7rem; }
.loc-top i { font-size: 1.2rem; }
.loc-top h3 { color: #fff; font-size: 1.24rem; }
.loc-body { padding: 1.4rem 1.5rem; }
.loc-body p { font-size: .97rem; margin-bottom: 1rem; }
.loc-suburbs { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.2rem; }
.loc-suburbs span { font-size: .8rem; background: var(--surface-2); color: var(--body); padding: .3rem .7rem; border-radius: 999px; border: 1px solid var(--line); }

/* ---------- Pests chips ---------- */
.pest-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: .9rem; }
.pest { display: flex; flex-direction: column; align-items: center; gap: .6rem; padding: 1.3rem .8rem; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); text-align: center; transition: transform .25s var(--ease), border-color .25s, box-shadow .25s; }
.pest:hover { transform: translateY(-3px); border-color: var(--green-light); box-shadow: var(--shadow-sm); }
.pest i { font-size: 1.5rem; color: var(--blue); }
.pest span { font-weight: 600; font-size: .9rem; color: var(--ink); }

/* ---------- Guarantee (split) ---------- */
.guarantee { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.guarantee-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.guarantee-media img { width: 100%; height: 100%; object-fit: cover; }
.seal { display: inline-flex; align-items: center; gap: .7rem; background: var(--surface-3); border-radius: 999px; padding: .5rem 1rem .5rem .5rem; margin-bottom: 1.2rem; font-weight: 700; color: var(--green); }
.seal i { width: 38px; height: 38px; border-radius: 50%; background: var(--grad-green); color: #fff; display: grid; place-items: center; }
.guarantee-points { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin-top: 1.5rem; }
.guarantee-points li { display: flex; align-items: center; gap: .6rem; font-weight: 600; color: var(--ink); font-size: .96rem; }
.guarantee-points i { color: var(--green); font-size: 1.1rem; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--grad-brand); color: #fff; border-radius: var(--radius-lg); padding: clamp(2.2rem, 5vw, 3.4rem); text-align: center; position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.cta-band::before { content: ''; position: absolute; width: 340px; height: 340px; background: rgba(255,255,255,.12); border-radius: 50%; top: -140px; right: -60px; }
.cta-band h2 { color: #fff; margin-bottom: .8rem; position: relative; }
.cta-band p { color: rgba(255,255,255,.9); font-size: 1.1rem; max-width: 54ch; margin: 0 auto 1.7rem; position: relative; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; position: relative; }

/* ---------- Reviews / trust proof ---------- */
.reviews { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.1rem; }
.review { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); }
.review .stars { color: #f5a524; letter-spacing: 2px; margin-bottom: .8rem; }
.review p { font-size: .98rem; color: var(--body); }
.rating-hero { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.rating-score { font-family: 'Fraunces', serif; font-size: 3rem; font-weight: 700; color: var(--ink); line-height: 1; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: .8rem; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: var(--blue-light); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.2rem 1.4rem; font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.08rem; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { color: var(--blue); transition: transform .3s var(--ease); flex-shrink: 0; }
.faq-item[open] summary .chev { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 1.4rem 1.3rem; color: var(--body); font-size: .99rem; animation: fade-in .3s var(--ease); }

/* ---------- Prose (articles / about) ---------- */
.prose { max-width: 760px; margin-inline: auto; }
.prose > * + * { margin-top: 1.2rem; }
.prose h2 { margin-top: 2.4rem; }
.prose h3 { margin-top: 1.6rem; font-size: 1.2rem; }
.prose p, .prose li { font-size: 1.06rem; color: var(--body); }
.prose ul, .prose ol { padding-left: 1.3rem; display: grid; gap: .5rem; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.answer-box { background: var(--wash); border: 1px solid #d6e8f1; border-left: 4px solid var(--blue); border-radius: var(--radius); padding: 1.3rem 1.5rem; }
.answer-box .lbl { display: inline-flex; align-items: center; gap: .5rem; font-weight: 800; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); margin-bottom: .5rem; }
.price-table { width: 100%; border-collapse: collapse; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); font-size: .98rem; }
.price-table th, .price-table td { text-align: left; padding: .95rem 1.1rem; border-bottom: 1px solid var(--line); }
.price-table thead th { background: var(--ink); color: #fff; font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif; font-size: .9rem; }
.price-table tbody tr:nth-child(even) { background: var(--surface-2); }
.price-table td:last-child { font-weight: 700; color: var(--blue); white-space: nowrap; }

/* ---------- Knowledge hub cards ---------- */
.article-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.article-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s; display: flex; flex-direction: column; }
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.article-card .media { aspect-ratio: 16/10; overflow: hidden; }
.article-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.article-card:hover .media img { transform: scale(1.05); }
.article-card .body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.article-card .cat { font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--green); margin-bottom: .5rem; }
.article-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.article-card p { font-size: .94rem; margin-bottom: 1rem; }
.article-card .more { margin-top: auto; font-weight: 700; color: var(--blue); display: inline-flex; align-items: center; gap: .4rem; }

/* ---------- Contact / form ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(1.8rem,4vw,3rem); align-items: start; }
.contact-aside .seal { background: #fff; box-shadow: var(--shadow-sm); }
.contact-list { list-style: none; padding: 0; display: grid; gap: 1rem; margin-top: 1.5rem; }
.contact-list li { display: flex; gap: .9rem; align-items: flex-start; }
.contact-list .ci { width: 46px; height: 46px; border-radius: 13px; background: var(--surface-3); color: var(--blue); display: grid; place-items: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-list .ct { font-weight: 700; color: var(--ink); }
.contact-list .cs { font-size: .88rem; color: var(--muted); }
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.2rem); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.field label { font-weight: 700; font-size: .88rem; color: var(--ink); }
.field input, .field select, .field textarea {
  font: inherit; font-size: .98rem; color: var(--ink); background: var(--surface-2);
  border: 1.5px solid var(--line); border-radius: 12px; padding: .8rem .95rem; width: 100%;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(0,114,188,.12); }
.field textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: .9rem; text-align: center; }
.form-msg { display: none; border-radius: 12px; padding: .9rem 1.1rem; margin-bottom: 1.2rem; font-weight: 600; }
.form-msg.show { display: block; }
.form-msg.ok { background: #e7f6ed; color: #1a7a45; border: 1px solid #b6e2c7; }
.form-msg.err { background: #fdecea; color: var(--red-dark); border: 1px solid #f6c9c4; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #b8c5be; padding-top: clamp(3rem,6vw,4.5rem); margin-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; }
.footer-logo { background: #fff; padding: .6rem .8rem; border-radius: 12px; display: inline-block; margin-bottom: 1rem; }
.footer-logo img { height: 40px; }
.footer-blurb { font-size: .95rem; max-width: 40ch; margin-bottom: 1rem; }
.footer-note { font-size: .85rem; color: #8b9a92; }
.site-footer h4 { color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer a { color: #b8c5be; }
.site-footer a:hover { color: #fff; }
.footer-link { display: block; padding: .3rem 0; font-size: .95rem; }
.site-footer .footer-grid p { font-size: .95rem; margin-bottom: .8rem; }
.site-footer i { color: var(--green-light); width: 1.1em; }
.footer-base { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-block: 1.4rem; border-top: 1px solid rgba(255,255,255,.08); font-size: .85rem; color: #8b9a92; }

/* ---------- Sticky mobile action bar ---------- */
.action-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; display: none; gap: .6rem; padding: .7rem .8rem calc(.7rem + env(safe-area-inset-bottom)); background: rgba(255,255,255,.92); backdrop-filter: blur(12px); border-top: 1px solid var(--line); box-shadow: 0 -8px 24px -12px rgba(16,36,29,.2); }
.action-bar a { flex: 1; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .bento, .reviews, .article-grid { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
  .pest-grid { grid-template-columns: repeat(4,1fr); }
}
@media (max-width: 860px) {
  .site-nav, .header-cta .header-phone { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .mobile-nav { display: none; flex-direction: column; padding: .5rem 1rem 1.2rem; border-top: 1px solid var(--line); background: #fff; }
  .mobile-nav.open { display: flex; }
  .mobile-nav .nav-link { padding: .85rem .5rem; border-bottom: 1px solid var(--surface-2); border-radius: 0; }
  .mobile-nav .btn { margin-top: .8rem; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-media { aspect-ratio: 16/11; }
  .hero-card-rating { left: .6rem; }
  .hero-card-speed { right: .6rem; }
  .svc-grid, .loc-grid, .guarantee, .contact-grid, .svc-featured .svc-inner { grid-template-columns: 1fr; }
  .svc-featured { grid-column: auto; }
  .svc-featured .svc-media { order: -1; }
  .action-bar { display: flex; }
  body { padding-bottom: 76px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .bento, .reviews, .article-grid, .steps { grid-template-columns: 1fr; }
  .pest-grid { grid-template-columns: repeat(2,1fr); }
  .guarantee-points { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-card { display: none; }
}

/* ---------------------------------------------------------- Reviews / proof */
.reviews { padding-block: clamp(3rem, 6vw, 5rem); background: var(--surface-2); }
.reviews-inner { display: grid; grid-template-columns: minmax(180px, 260px) 1fr; gap: clamp(1.6rem, 4vw, 3.2rem); align-items: center; }
.reviews-score { text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg, 20px); padding: 1.8rem 1.4rem; box-shadow: var(--shadow); }
.reviews-big { font-family: 'Fraunces', Georgia, serif; font-size: clamp(3.2rem, 8vw, 4.4rem); font-weight: 700; color: var(--blue); line-height: 1; }
.reviews-stars { color: #f5a623; font-size: 1.5rem; letter-spacing: .12em; margin: .4rem 0 .5rem; }
.reviews-count { font-weight: 600; color: var(--muted); font-size: .95rem; }
.reviews-copy h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
.reviews-copy p { font-size: 1.08rem; margin: .8rem 0 1.4rem; max-width: 60ch; color: var(--muted); }
.reviews-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
@media (max-width: 720px) {
  .reviews-inner { grid-template-columns: 1fr; text-align: center; }
  .reviews-copy p { margin-inline: auto; }
  .reviews-actions { justify-content: center; }
}

/* ------------------------------------------------- Location landing page */
.loc-svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.loc-svc { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 1.5rem 1.4rem; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: .9rem; }
.loc-svc .svc-blurb { color: var(--muted); flex: 1; }
.loc-svc .btn { align-self: flex-start; }
@media (max-width: 720px) { .loc-svc-grid { grid-template-columns: 1fr; } }
