/* Karyaide Nuisible — brand + layout */
:root {
  --bg: #fff5f2;
  --bg-card: #ffece6;
  --ink: #1a1528;
  --muted: #5c5668;
  --navy: #2e3192;
  --purple: #31274f;
  --copper: #b3713d;
  --orange: #d97706;
  --blue-grey: #7a97b8;
  --white: #ffffff;
  --footer: #0d0d12;
  --radius: 1.25rem;
  --radius-arch: 45% 45% 40% 40% / 55% 55% 45% 45%;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Source Sans 3", system-ui, sans-serif;
  --shadow: 0 18px 50px rgba(46, 49, 146, 0.12);
  --shadow-hover: 0 24px 60px rgba(46, 49, 146, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

body.has-mobile-cta {
  padding-bottom: 84px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--navy);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* Floating blobs */
.blobs {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: float-blob 22s ease-in-out infinite;
}

.blob--1 {
  width: min(420px, 60vw);
  height: min(420px, 60vw);
  background: radial-gradient(circle, #fde68a 0%, transparent 70%);
  top: -8%;
  left: -10%;
  animation-delay: 0s;
}

.blob--2 {
  width: min(380px, 55vw);
  height: min(380px, 55vw);
  background: radial-gradient(circle, #fdba74 0%, transparent 70%);
  top: 35%;
  right: -12%;
  animation-delay: -7s;
  animation-duration: 26s;
}

.blob--3 {
  width: min(360px, 50vw);
  height: min(360px, 50vw);
  background: radial-gradient(circle, #86efac 0%, transparent 70%);
  bottom: 5%;
  left: 15%;
  animation-delay: -12s;
  animation-duration: 24s;
}

@keyframes float-blob {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(3%, 4%) scale(1.05);
  }
  66% {
    transform: translate(-2%, 2%) scale(0.98);
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 245, 242, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(49, 39, 79, 0.08);
  transition: box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(13, 13, 18, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  flex-wrap: wrap;
}

.header__cert {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__cert-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(46, 49, 146, 0.1));
}

.brand__logo {
  height: clamp(72px, 10vw, 110px);
  width: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav a {
  color: var(--ink);
}

.nav a:hover {
  color: var(--copper);
  text-decoration: none;
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

@media (min-width: 961px) {
  .header__inner {
    flex-wrap: nowrap;
  }

  .header__cta {
    flex-wrap: nowrap;
  }

  .header__cert-img {
    height: 46px;
  }
}

.header__region {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--muted);
}

.icon-pin {
  flex-shrink: 0;
  color: var(--copper);
}

/* Lucide icon styling */
.service-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(49, 39, 79, 0.08);
}

.service-card__media {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 40px rgba(46, 49, 146, 0.16);
  background: rgba(255, 255, 255, 0.55);
}

.service-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.18);
}

.lucide {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2.2;
}

.lucide--pin {
  width: 18px;
  height: 18px;
  color: var(--copper);
}

.lucide--service {
  width: 26px;
  height: 26px;
  color: var(--purple);
}

.lucide--social {
  width: 18px;
  height: 18px;
  color: currentColor;
}

.header__phone {
  font-weight: 700;
  color: var(--navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-family: inherit;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--orange) 0%, #c2410c 100%);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(217, 119, 6, 0.35);
}

.btn--primary:hover {
  filter: brightness(1.05);
}

.btn--outline {
  background: var(--white);
  color: var(--navy);
  border-color: var(--navy);
}

.btn--outline:hover {
  background: rgba(46, 49, 146, 0.06);
}

.btn--dark {
  background: var(--purple);
  color: var(--white);
}

.btn--dark:hover {
  background: #251f3d;
}

.btn--sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
}

.btn--submit {
  width: 100%;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1rem;
  margin-top: 0.5rem;
}

.btn--submit:hover {
  background: #2a2438;
}

.btn--mist {
  position: relative;
  overflow: visible;
}

.mist {
  position: absolute;
  inset: auto 10% -12px;
  height: 14px;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.55) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  animation: mist-pulse 2.5s ease-in-out infinite;
}

.btn--mist:hover .mist {
  opacity: 1;
}

@keyframes mist-pulse {
  0%,
  100% {
    transform: scaleX(1) translateY(0);
    opacity: 0.4;
  }
  50% {
    transform: scaleX(1.1) translateY(-2px);
    opacity: 0.75;
  }
}

/* Mobile menu removed */

/* Hero */
.hero {
  padding: clamp(2rem, 6vw, 4rem) 0 4rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--copper);
  margin: 0 0 1rem;
}

.bee-wrap {
  display: inline-flex;
  animation: bee-hover 2.8s ease-in-out infinite;
}

.lucide--eyebrow {
  width: 22px;
  height: 22px;
  color: var(--copper);
}

@keyframes bee-hover {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-6px) rotate(2deg);
  }
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4.5vw, 3.35rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1.25rem;
  color: var(--navy);
}

.hero__title .brush {
  font-style: normal;
  position: relative;
  display: inline-block;
}

.hero__title .brush::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0.08em;
  height: 0.35em;
  background: linear-gradient(
    90deg,
    transparent,
    var(--orange),
    var(--orange),
    transparent
  );
  opacity: 0.55;
  border-radius: 4px;
  transform: skewX(-8deg);
  animation: line-grow 1s ease 0.4s both;
}

@keyframes line-grow {
  from {
    transform: scaleX(0) skewX(-8deg);
    transform-origin: left;
  }
  to {
    transform: scaleX(1) skewX(-8deg);
    transform-origin: left;
  }
}

.hero__lead {
  color: var(--muted);
  max-width: 55ch;
  text-align: justify;
  margin: 0 0 2rem;
}

.hero__warning {
  max-width: 60ch;
  margin: -0.35rem 0 1.5rem;
  padding: 1rem 1.1rem 1rem 1.2rem;
  border-radius: 1rem;
  border: 1px solid rgba(217, 119, 6, 0.32);
  border-left: 5px solid var(--orange);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.96),
    rgba(255, 236, 230, 0.95)
  );
  color: #3b2d22;
  font-size: 1rem;
  line-height: 1.62;
  box-shadow: 0 12px 34px rgba(217, 119, 6, 0.12);
}

.hero__warning-tag {
  display: inline-flex;
  align-items: center;
  margin: 0 0 0.5rem;
  padding: 0.2rem 0.58rem;
  border-radius: 999px;
  background: rgba(217, 119, 6, 0.16);
  color: #8a4f16;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__warning-tag::before {
  content: "!";
  width: 1rem;
  height: 1rem;
  margin-right: 0.35rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
}

.cert-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.4rem;
  margin: -0.4rem 0 2rem;
  padding: 1.2rem 1.35rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(179, 113, 61, 0.25);
  box-shadow: 0 18px 55px rgba(46, 49, 146, 0.12);
  position: relative;
  max-width: min(560px, 100%);
}

.cert-badge::before {
  content: "";
  position: absolute;
  left: 0.65rem;
  top: 0.65rem;
  bottom: 0.65rem;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--orange), rgba(179, 113, 61, 0.35));
  opacity: 0.9;
}

.cert-badge > * {
  position: relative;
  padding-left: 0.65rem;
}

.cert-badge__label {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple);
}

.cert-badge img {
  display: block;
  height: 156px;
  width: auto;
  object-fit: contain;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0 0 1.25rem;
  padding: 0;
}

.hero__badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--purple);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(49, 39, 79, 0.12);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__visual {
  position: relative;
}

.hero-collage {
  position: relative;
  padding-top: 8px;
}

.hero-collage > * {
  position: relative;
}

.hero-collage__shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hero-collage__shape--sun {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 35%,
    #fde68a 0%,
    rgba(253, 230, 138, 0.35) 55%,
    transparent 72%
  );
  top: -38px;
  right: -38px;
  filter: blur(0.2px);
}

.hero-collage__shape--soft {
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(
    circle at 30% 40%,
    rgba(46, 49, 146, 0.18),
    transparent 65%
  );
  bottom: 38px;
  left: -28px;
  filter: blur(2px);
}

.hero__arch {
  border-radius: var(--radius-arch);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid rgba(255, 255, 255, 0.96);
  z-index: 1;
}

.hero__arch::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 20%,
    rgba(255, 255, 255, 0.22),
    transparent 45%
  );
  pointer-events: none;
}

.hero__arch {
  position: relative;
}

.hero__arch::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 13, 18, 0.05),
    rgba(13, 13, 18, 0) 45%
  );
  pointer-events: none;
}

.hero__arch img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 95% 50%;
}

.hero-bubble {
  position: absolute;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 55px rgba(46, 49, 146, 0.22);
  background: rgba(255, 255, 255, 0.7);
  z-index: 3;
  transform: translateZ(0);
  animation: bubble-float 6.2s ease-in-out infinite;
}

.hero-bubble::after {
  content: "";
  position: absolute;
  inset: -10px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.55),
    transparent 55%
  );
  pointer-events: none;
}

.hero-bubble img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bubble--pest1 {
  top: 34px;
  left: -6px;
  animation-delay: -1.4s;
}

.hero-bubble--pest2 {
  top: 118px;
  right: -8px;
  width: 88px;
  height: 88px;
  animation-delay: -2.6s;
}

@keyframes bubble-float {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

.float-card {
  position: absolute;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  box-shadow: var(--shadow);
  animation: card-float 5s ease-in-out infinite;
  z-index: 4;
}

.float-card--pink {
  background: #ffe4e6;
  bottom: 12%;
  left: -4%;
  max-width: 200px;
}

.float-card--pink strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
}

.float-card--pink span {
  color: var(--muted);
  font-size: 0.85rem;
}

.float-card--seal {
  top: 8%;
  right: -2%;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--navy), #1e2060);
  color: var(--white);
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 0.7rem;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  animation-delay: -2s;
  z-index: 5;
  box-shadow: 0 20px 55px rgba(13, 13, 18, 0.22);
  border: 4px solid rgba(255, 255, 255, 0.96);
}

.seal {
  padding: 0.25rem;
}

@keyframes card-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Sections */
.section {
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.section__head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section__head h2,
.section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  color: var(--navy);
  margin: 0 0 0.5rem;
}

.section__subtitle {
  color: var(--muted);
  font-size: 1.1rem;
  margin: 0;
}

/* Services */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.services__grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  border: 1px solid rgba(179, 113, 61, 0.15);
}

.service-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--purple);
  margin: 0.75rem 0 0.5rem;
}

.service-card p {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.service-card ul {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  color: var(--ink);
  font-size: 0.92rem;
}

.service-card__link {
  margin-top: auto;
  font-weight: 600;
  color: var(--copper);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

@media (max-width: 1120px) {
  .services__grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.service-card__link:hover {
  text-decoration: none;
  gap: 0.55rem;
}

/* Engagement */
.engagement {
  background: linear-gradient(
    135deg,
    var(--navy) 0%,
    #1a1c5c 50%,
    var(--purple) 100%
  );
  color: var(--white);
  padding: clamp(3.5rem, 10vw, 6rem) 0;
}

.engagement h2 {
  color: var(--white);
  margin-bottom: 2rem;
}

.engagement__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.steps li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.steps__num {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid var(--blue-grey);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-family: var(--font-serif);
  font-size: 1.15rem;
}

.steps strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.steps p {
  margin: 0;
  opacity: 0.9;
  font-size: 0.95rem;
}

.engagement__img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.engagement__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* Checks + urgent CTA */
.checks {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checks li {
  position: relative;
  padding-left: 2rem;
  opacity: 0.95;
}

.checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  border: 2px solid rgba(122, 151, 184, 0.9);
  color: var(--white);
  font-weight: 800;
  font-size: 0.85rem;
}

.urgent {
  margin-top: 1.75rem;
  padding: clamp(1.2rem, 2.5vw, 1.6rem) clamp(1.1rem, 2.4vw, 1.75rem);
  border-radius: 1.85rem;
  background: linear-gradient(
    145deg,
    rgba(100, 103, 190, 0.34) 0%,
    rgba(67, 72, 164, 0.28) 42%,
    rgba(52, 57, 143, 0.3) 100%
  );
  border: 1px solid rgba(197, 205, 255, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 16px 36px rgba(11, 14, 56, 0.34);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  position: relative;
  overflow: hidden;
}

.urgent::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    120% 85% at 0% 0%,
    rgba(255, 255, 255, 0.16) 0%,
    rgba(255, 255, 255, 0) 55%
  );
}

.urgent > * {
  position: relative;
}

.urgent h3 {
  margin: 0 0 0.7rem;
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.18;
  letter-spacing: 0.01em;
  color: var(--white);
  text-wrap: balance;
}

.urgent p {
  margin: 0;
  font-size: clamp(1.03rem, 1.6vw, 1.15rem);
  line-height: 1.6;
  color: rgba(244, 246, 255, 0.92);
  max-width: 44ch;
  text-wrap: pretty;
}

.urgent p strong {
  color: var(--white);
  font-weight: 800;
}

/* Pricing + form */
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.price-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 10px 40px rgba(49, 39, 79, 0.08);
  border: 1px solid rgba(49, 39, 79, 0.08);
}

.price-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  color: var(--navy);
}

.price-card__from {
  margin: 0;
  font-size: 1rem;
  color: var(--muted);
}

.price-card__from strong {
  font-size: 1.75rem;
  color: var(--copper);
}

.price-card__note {
  margin: 0.5rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(49, 39, 79, 0.08);
}

.form-wrap__title {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  color: var(--navy);
  margin: 0 0 1.5rem;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  font: inherit;
  padding: 0.65rem 0;
  border: none;
  border-bottom: 2px solid rgba(49, 39, 79, 0.2);
  border-radius: 0;
  background: transparent;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--copper);
  box-shadow: 0 4px 0 -2px rgba(179, 113, 61, 0.35);
}

.field textarea {
  resize: vertical;
  min-height: 100px;
  border: 2px solid rgba(49, 39, 79, 0.15);
  border-radius: 0.5rem;
  padding: 0.65rem 0.75rem;
}

.field textarea:focus {
  border-color: var(--copper);
  box-shadow: none;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.file-dropzone {
  border: 2px dashed rgba(49, 39, 79, 0.2);
  border-radius: 0.8rem;
  padding: 1rem;
  background: rgba(255, 245, 242, 0.45);
  text-align: center;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.file-dropzone.is-dragover {
  border-color: var(--copper);
  background: rgba(255, 236, 230, 0.9);
  box-shadow: 0 0 0 3px rgba(179, 113, 61, 0.15);
}

.file-input {
  display: none;
}

.file-dropzone__text {
  margin: 0;
  color: var(--purple);
}

.file-dropzone__hint {
  margin: 0.35rem 0 0;
  font-size: 0.86rem;
  color: var(--muted);
}

.file-dropzone__list {
  list-style: none;
  margin: 0.8rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.file-dropzone__list li {
  background: var(--white);
  border: 1px solid rgba(49, 39, 79, 0.1);
  border-radius: 0.45rem;
  padding: 0.45rem 0.5rem;
  font-size: 0.87rem;
  color: var(--muted);
}

.file-dropzone__item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 0.55rem;
}

.file-dropzone__preview {
  width: 48px;
  height: 48px;
  border-radius: 0.45rem;
  overflow: hidden;
  background: rgba(49, 39, 79, 0.06);
  color: var(--muted);
  font-size: 0.72rem;
  display: grid;
  place-items: center;
}

.file-dropzone__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.file-dropzone__meta {
  min-width: 0;
  text-align: left;
}

.file-dropzone__name,
.file-dropzone__size {
  margin: 0;
}

.file-dropzone__name {
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-dropzone__size {
  margin-top: 0.15rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.file-dropzone__remove {
  border: 1px solid rgba(49, 39, 79, 0.14);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  padding: 0.26rem 0.58rem;
  font-size: 0.76rem;
  font-weight: 600;
  cursor: pointer;
}

.file-dropzone__remove:hover {
  color: #b42318;
  border-color: rgba(180, 35, 24, 0.28);
}

.form-status {
  margin: -0.15rem 0 0;
  min-height: 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.form-status.is-error {
  color: #b42318;
}

.form-status.is-success {
  color: #067647;
}

/* Footer */
.site-footer {
  background: var(--footer);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer__logo {
  height: 76px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: brightness(1.05);
}

.footer__brand p {
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 32ch;
}

.social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.social a:hover {
  background: var(--copper);
  text-decoration: none;
}

.footer__heading {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin: 0 0 0.75rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.9);
}

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__links li {
  margin-bottom: 0.4rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer__bottom p {
  margin: 0;
}

/* GSAP initial state */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .blob,
  .bee-wrap,
  .float-card,
  .mist,
  .hero__title .brush::after {
    animation: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Sticky mobile CTA bar */
.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  padding: 0.75rem 0.9rem;
  background: rgba(255, 245, 242, 0.9);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(49, 39, 79, 0.1);
  display: none;
}

.mobile-cta__btn {
  flex: 1;
  padding: 0.9rem 1rem;
  font-size: 0.98rem;
}

.mobile-cta > .mobile-cta__btn + .mobile-cta__btn {
  margin-left: 0.75rem;
}

/* Responsive */
@media (max-width: 960px) {
  .header__cert {
    display: flex;
  }

  .header__cta .header__region {
    display: none;
  }

  .header__cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .header__cta > :not(.header__cert) {
    display: none;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    order: 10;
    padding: 1rem 0;
  }

  .site-header.is-open .nav {
    display: none;
    gap: 0.75rem;
    padding: 0.9rem 0 1.15rem;
    margin-top: 0.35rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(49, 39, 79, 0.08);
    border-radius: 1rem;
  }

  .site-header.is-open .nav a {
    padding: 0.85rem 1rem;
    border-radius: 0.85rem;
    background: rgba(255, 245, 242, 0.8);
    border: 1px solid rgba(49, 39, 79, 0.08);
  }

  .site-header.is-open .nav a:hover {
    background: rgba(255, 245, 242, 1);
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .cert-badge {
    align-items: center;
    text-align: center;
    margin-inline: auto;
  }

  .hero__warning {
    margin: 0 0 1.35rem;
    padding: 0.92rem 1rem;
  }

  .cert-badge::before {
    left: 0.95rem;
  }

  .cert-badge > * {
    padding-left: 0;
  }

  .hero__visual {
    max-width: 420px;
    margin-inline: auto;
  }

  .hero-bubble--pest1 {
    left: -6px;
    top: 26px;
    width: 76px;
    height: 76px;
  }

  .hero-bubble--pest2 {
    right: -8px;
    top: 70px;
    width: 84px;
    height: 84px;
  }

  .hero-collage__shape--sun {
    width: 170px;
    height: 170px;
    top: -28px;
    right: -28px;
  }

  .hero__arch img {
    max-height: 460px;
    object-position: 62% 35%;
  }

  .mobile-cta {
    display: flex;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .engagement__grid {
    grid-template-columns: 1fr;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .header__inner {
    flex-wrap: nowrap;
    gap: 0.75rem;
  }

  .brand__logo {
    height: 72px;
  }

  .header__cta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .header__cta > :not(.header__cert) {
    display: none;
  }

  .site-header.is-open {
    box-shadow: 0 12px 40px rgba(13, 13, 18, 0.14);
  }

  .site-header.is-open .nav {
    display: none;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 0.9rem 0 1.15rem;
    margin-top: 0.35rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(49, 39, 79, 0.08);
    border-radius: 1rem;
  }

  .site-header.is-open .nav a {
    padding: 0.85rem 1rem;
    border-radius: 0.85rem;
    background: rgba(255, 245, 242, 0.8);
    border: 1px solid rgba(49, 39, 79, 0.08);
  }

  .site-header.is-open .nav a:hover {
    background: rgba(255, 245, 242, 1);
  }

  .float-card--pink {
    display: none;
  }

  .float-card--seal {
    display: none;
  }

  .cert-badge {
    padding: 1.05rem 1.15rem;
  }

  .hero__warning {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .cert-badge img {
    height: 132px;
  }
}
