:root {
  --charcoal: #242122;
  --charcoal-dark: #171617;
  --orange: #f58220;
  --orange-dark: #c85e0b;
  --paper: #f3f3f3;
  --white: #ffffff;
  --text: #303030;
  --muted: #666666;
  --border: #dddddd;
  --max-width: 1180px;
  --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
.container { width: min(calc(100% - 40px), var(--max-width)); margin-inline: auto; }
.skip-link {
  position: absolute;
  top: 10px;
  left: -9999px;
  z-index: 999;
  padding: 10px 16px;
  color: #000;
  background: var(--white);
}
.skip-link:focus { left: 10px; }
.site-header { border-bottom: 1px solid #3a3738; background: var(--charcoal); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 94px;
  gap: 30px;
}
.logo img { width: 210px; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}
.header-phone strong { color: var(--orange-dark); }
.hero {
  display: flex;
  align-items: center;
  min-height: 650px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(36, 33, 34, .95), rgba(36, 33, 34, .72)),
    url("images/mouse-background.jpg") center / cover no-repeat;
}
.hero-content { padding-block: 100px; }
.error-page {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 94px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(36, 33, 34, .95), rgba(36, 33, 34, .72)),
    url("images/mouse-background.jpg") center / cover no-repeat;
}
.error-content { padding-block: 100px; }
.error-content h1 { margin: 0 0 20px; font-size: clamp(2.8rem, 6vw, 5.5rem); line-height: 1; }
.error-content > p:not(.eyebrow) { max-width: 620px; margin: 0 0 30px; color: rgba(255, 255, 255, .9); font-size: 1.2rem; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  line-height: .98;
  letter-spacing: -.055em;
}
.hero-text {
  max-width: 680px;
  margin: 30px 0;
  color: rgba(255, 255, 255, .9);
  font-size: 1.25rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 25px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--orange); }
.button-primary:hover { background: var(--orange-dark); }
.button-secondary { color: var(--white); border: 2px solid rgba(255, 255, 255, .7); }
.button-secondary:hover { color: var(--charcoal); background: var(--white); }
.button-light { color: var(--charcoal); background: var(--white); }
.button-large { min-width: 230px; font-size: 1.1rem; }
.trust { color: var(--white); background: var(--orange); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div {
  padding: 25px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .25);
}
.trust-grid > div:last-child { border-right: 0; }
.trust strong, .trust span { display: block; }
.trust span { margin-top: 3px; opacity: .85; font-size: .88rem; }
.section { padding: 100px 0; }
.section-heading { max-width: 720px; margin-bottom: 50px; }
.section h2, .event-section h2, .final-cta h2 {
  margin: 0 0 20px;
  color: var(--charcoal);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.04em;
}
.section-heading p:last-child { color: var(--muted); font-size: 1.1rem; }
.pest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pest-card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--paper);
}
.pest-card h3 { margin: 0 0 15px; color: var(--charcoal); font-size: 1.25rem; }
.pest-card ul { margin: 0; padding-left: 20px; }
.section-dark { color: var(--white); background: var(--charcoal); }
.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.service-panel {
  padding: 55px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .055);
}
.service-panel h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3.3rem); }
.service-panel p { color: rgba(255, 255, 255, .78); }
.text-link { color: var(--orange); font-weight: 800; text-decoration: none; }
.feature { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 75px; }
.feature-image img { width: 100%; max-width: 500px; border-radius: var(--radius); }
.feature-image .satisfaction-badge { width: 180px; margin: 24px auto 0; border-radius: 0; }
.feature-content p { color: var(--muted); }
.feature-points { display: grid; gap: 10px; margin-top: 25px; color: var(--charcoal); font-weight: 700; }
.event-section {
  padding: 110px 0;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(36, 33, 34, .94), rgba(200, 94, 11, .82)),
    url("images/wedding-background.jpg") center / cover no-repeat;
}
.event-section h2 { color: var(--white); }
.event-content { max-width: 900px; }
.event-content > p:not(.eyebrow) { max-width: 780px; color: rgba(255, 255, 255, .85); font-size: 1.1rem; }
.event-types { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0; }
.event-types span {
  padding: 8px 15px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
}
.area-section { display: grid; grid-template-columns: 1.4fr .6fr; align-items: center; gap: 60px; }
.area-note { padding: 35px; border-radius: var(--radius); background: var(--paper); }
.area-icon { display: block; margin-bottom: 10px; color: var(--orange); font-size: 3rem; line-height: 1; }
.area-note strong { color: var(--charcoal); font-size: 1.2rem; }
.area-note p { color: var(--muted); }
.area-note a { color: var(--orange-dark); font-size: 1.3rem; font-weight: 800; }
.final-cta { padding: 100px 0; color: var(--white); text-align: center; background: var(--orange-dark); }
.final-cta h2 { color: var(--white); }
.final-cta p:not(.eyebrow) { margin-bottom: 30px; font-size: 1.2rem; }
.site-footer { padding: 45px 0 25px; color: rgba(255, 255, 255, .72); background: var(--charcoal-dark); }
.footer-inner { display: flex; justify-content: space-between; gap: 30px; }
.footer-inner strong, .footer-inner a { color: var(--white); }
.footer-inner a { font-size: 1.2rem; font-weight: 800; text-decoration: none; }
.footer-inner p { margin: 5px 0 0; }
.copyright { margin-top: 35px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .12); font-size: .85rem; }

@media (max-width: 900px) {
  .trust-grid, .pest-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .feature, .area-section { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 650px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 28px), var(--max-width)); }
  .header-inner { min-height: 75px; }
  .logo img { width: 150px; }
  .header-phone { display: block; font-size: .85rem; text-align: right; }
  .header-phone span, .header-phone strong { display: block; }
  .hero { min-height: 620px; }
  .hero-content { padding-block: 80px; }
  .hero h1 { font-size: 3.6rem; }
  .hero-text { font-size: 1.05rem; }
  .hero-actions, .button { width: 100%; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .25); }
  .trust-grid > div:last-child { border-bottom: 0; }
  .section { padding: 70px 0; }
  .pest-grid, .two-column { grid-template-columns: 1fr; }
  .service-panel { padding: 35px; }
  .event-section { padding: 75px 0; }
  .footer-inner { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
