:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f8f9fb;
  --surface-strong: #f3f4f6;
  --ink: #111111;
  --ink-soft: #4b5563;
  --ink-strong: #1c1f24;
  --line: #e5e7eb;
  --red: #c51f2e;
  --red-dark: #a01723;
  --green: #1d9a6c;
  --shadow-sm: 0 16px 40px rgba(17, 17, 17, 0.06);
  --shadow-md: 0 28px 70px rgba(17, 17, 17, 0.1);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1200px;
  --header-height: 86px;
  --font-heading: "Geist", "Inter", sans-serif;
  --font-body: "Inter", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(197, 31, 46, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
}

body.thank-you-page {
  background:
    radial-gradient(circle at top left, rgba(29, 154, 108, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
}

body.nav-open {
  overflow: hidden;
}

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

iframe {
  width: 100%;
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.9rem;
  color: var(--ink);
  font-family: var(--font-heading);
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.65rem, 5vw, 4.95rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.05;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.2;
}

p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

ul {
  margin: 0;
  padding: 0;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.skip-link,
.sr-only {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 999;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
}

.eyebrow,
.card-eyebrow {
  margin: 0 0 1rem;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section {
  padding: 5.5rem 0;
}

.section-soft {
  background: var(--surface-soft);
}

.section-dark {
  background:
    linear-gradient(180deg, #1c1f24 0%, #111111 100%);
}

.section-dark h2,
.section-dark h3,
.section-dark p,
.section-dark blockquote,
.section-dark strong {
  color: #ffffff;
}

.section-trust {
  padding-top: 0;
}

.section-cta {
  padding-top: 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(229, 231, 235, 0.95);
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.06);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(0, 220px) 1fr auto auto;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-height);
}

.brand img {
  width: min(100%, 182px);
  height: auto;
}

.site-nav {
  justify-self: center;
}

.site-nav ul,
.footer-links,
.panel-list {
  list-style: none;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a:hover,
.text-link:hover,
.footer-links a:hover {
  color: var(--red);
}

.header-phone,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.header-phone {
  padding: 0 1.2rem;
  background: var(--ink-strong);
  color: #ffffff;
}

.header-phone:hover,
.btn:hover {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  padding: 0;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--ink);
}

.hero {
  padding: 2rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-copy {
  padding: 2rem 0;
}

.hero-intro {
  max-width: 58ch;
  font-size: 1.1rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.btn {
  padding: 0.95rem 1.45rem;
  border: 1px solid transparent;
  font-size: 0.98rem;
}

.btn-primary {
  background: var(--red);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(197, 31, 46, 0.22);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-secondary {
  border-color: var(--line);
  background: #ffffff;
  color: var(--ink);
}

.btn-secondary:hover {
  border-color: var(--red);
  color: var(--red);
}

.btn-block {
  width: 100%;
}

.hero-media {
  position: relative;
}

.hero-media img {
  aspect-ratio: 1.24 / 1;
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.hero-panel {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  background: rgba(28, 31, 36, 0.84);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.hero-panel h2,
.hero-panel p,
.hero-panel li {
  color: #ffffff;
}

.hero-list {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-list li {
  position: relative;
  padding-left: 1rem;
  color: #ffffff;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.78;
}

.trust-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 44px;
  padding: 0.7rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
}

.trust-chip span {
  color: var(--green);
  font-weight: 800;
}

.panel-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.bullet-card,
.area-card,
.feature-card,
.process-card,
.review-card,
.service-card,
.info-card,
.faq-item,
.form-shell,
.cta-banner,
.map-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.panel-list li {
  position: relative;
  padding-left: 1rem;
}

.panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.78;
}

.content-grid,
.service-area-grid,
.contact-grid,
.footer-grid,
.thank-you-panel {
  display: grid;
  gap: 1.5rem;
}

.content-grid,
.service-area-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  align-items: start;
}

.content-column,
.contact-sidebar {
  display: grid;
  gap: 1.25rem;
}

.info-card {
  padding: 1.5rem;
}

.card-grid,
.service-grid,
.reviews-grid,
.process-grid,
.bullet-card-grid,
.area-card-grid {
  display: grid;
  gap: 1.25rem;
}

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

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

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

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

.bullet-card-grid,
.area-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.process-card,
.bullet-card,
.review-card,
.area-card {
  padding: 1.5rem;
}

.feature-card h3 {
  margin-bottom: 0.65rem;
}

.service-card {
  overflow: hidden;
}

.service-card img {
  aspect-ratio: 1.45 / 1;
  width: 100%;
  object-fit: cover;
}

.service-card-body {
  padding: 1.35rem;
}

.text-link {
  color: var(--red);
  font-family: var(--font-heading);
  font-weight: 700;
}

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(197, 31, 46, 0.08);
  color: var(--red);
  font-family: var(--font-heading);
  font-weight: 800;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.review-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.review-card blockquote {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.75;
}

.map-card {
  overflow: hidden;
  min-height: 100%;
}

.map-card iframe {
  min-height: 100%;
  height: 100%;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 1.1rem 1.25rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-heading);
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] summary {
  margin-bottom: 0.8rem;
}

.contact-grid {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  align-items: start;
}

.form-shell {
  padding: 1.5rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field-grid label {
  display: grid;
  gap: 0.45rem;
}

.field-span-2 {
  grid-column: 1 / -1;
}

.field-grid span {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
}

.field-grid input,
.field-grid textarea,
.field-grid select {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  color: var(--ink);
}

.field-grid input:focus,
.field-grid textarea:focus,
.field-grid select:focus {
  outline: 2px solid rgba(197, 31, 46, 0.18);
  border-color: rgba(197, 31, 46, 0.5);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.75rem;
}

.site-footer {
  padding: 4.5rem 0 6.5rem;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
  align-items: start;
}

.footer-brand img {
  width: 230px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-links {
  display: grid;
  gap: 0.7rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.mobile-callbar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 45;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border-radius: 999px;
  background: var(--red);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(197, 31, 46, 0.26);
}

@media (max-width: 1080px) {
  .hero-grid,
  .content-grid,
  .service-area-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .card-grid-4,
  .service-grid,
  .reviews-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  body {
    padding-bottom: 5rem;
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
  }

  .site-nav li {
    width: 100%;
  }

  .site-nav a {
    display: block;
    width: 100%;
    padding: 0.85rem 0;
  }

  .header-phone {
    display: none;
  }

  .hero {
    padding-top: 1rem;
  }

  .hero-panel {
    position: static;
    margin-top: 1rem;
    background: var(--ink-strong);
  }

  .bullet-card-grid,
  .area-card-grid,
  .field-grid,
  .cta-banner,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .cta-banner,
  .footer-bottom {
    display: grid;
  }

  .mobile-callbar {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4.25rem 0;
  }

  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  h1 {
    font-size: clamp(2.25rem, 9vw, 3.6rem);
  }

  h2 {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .button-row,
  .trust-chip-row {
    flex-direction: column;
  }

  .btn,
  .header-phone {
    width: 100%;
  }

  .card-grid-4,
  .service-grid,
  .reviews-grid,
  .process-grid,
  .bullet-card-grid,
  .area-card-grid {
    grid-template-columns: 1fr;
  }

  .form-shell,
  .info-card,
  .feature-card,
  .process-card,
  .bullet-card,
  .review-card,
  .area-card {
    padding: 1.2rem;
  }

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

  .field-span-2 {
    grid-column: auto;
  }
}
