:root {
  --slate: #1e293b;
  --slate-2: #334155;
  --amber: #f59e0b;
  --amber-dark: #b45309;
  --white: #ffffff;
  --mist: #f8fafc;
  --line: #dbe3ec;
  --ink: #0f172a;
  --muted: #64748b;
  --shadow: 0 16px 44px rgba(15, 23, 42, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(219, 227, 236, 0.9);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1160px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 850;
  color: var(--slate);
  letter-spacing: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--slate);
  color: var(--amber);
  font-weight: 900;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text span:last-child {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.93rem;
  font-weight: 720;
}

.nav-links a {
  text-decoration: none;
  color: var(--slate-2);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--amber-dark);
}

.button {
  display: inline-flex;
  max-width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 6px;
  padding: 13px 18px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: 0;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
}

.button.primary {
  background: var(--amber);
  color: #111827;
  box-shadow: 0 10px 26px rgba(245, 158, 11, 0.25);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.12);
}

.button.dark {
  background: var(--slate);
  color: var(--white);
}

.header-call {
  white-space: nowrap;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 680px;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.7) 46%, rgba(15, 23, 42, 0.28)),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1800&q=82&fm=webp") center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: var(--amber);
}

.hero-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, 0.62fr);
  gap: 42px;
  align-items: center;
}

.hero-inner > *,
.estimate-panel {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: #fde68a;
  font-size: 0.84rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.55rem, 6vw, 4.85rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 28px;
  color: #e2e8f0;
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.estimate-panel {
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.estimate-panel h2 {
  margin-bottom: 6px;
  font-size: 1.45rem;
  color: var(--slate);
}

.estimate-panel p {
  color: var(--muted);
  font-size: 0.94rem;
}

.form-grid {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--slate);
  font-size: 0.86rem;
  font-weight: 780;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

textarea {
  min-height: 112px;
  resize: vertical;
}

.section {
  padding: 74px 0;
}

.section.alt {
  background: var(--mist);
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.kicker {
  margin-bottom: 8px;
  color: var(--amber-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h2 {
  color: var(--slate);
  font-size: clamp(2rem, 4vw, 3.05rem);
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.section-head p,
.lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.service-grid,
.trust-grid,
.page-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card,
.trust-card,
.content-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
}

.card {
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 14px;
}

.service-photo {
  overflow: hidden;
  border-radius: 7px;
  aspect-ratio: 16 / 9;
  background: #e2e8f0;
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card h3,
.trust-card h3,
.content-card h3 {
  margin-bottom: 8px;
  color: var(--slate);
  font-size: 1.18rem;
  line-height: 1.2;
}

.card p,
.trust-card p,
.content-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.area-band {
  background: var(--slate);
  color: var(--white);
}

.area-band h2 {
  color: var(--white);
}

.area-band .lead {
  color: #cbd5e1;
}

.trust-card {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}

.trust-card h3,
.trust-card p {
  color: inherit;
}

.cta-band {
  background: linear-gradient(135deg, var(--amber), #fbbf24);
  color: #111827;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.cta-inner h2 {
  margin-bottom: 8px;
  color: #111827;
}

.footer {
  padding: 34px 0 88px;
  background: #0f172a;
  color: #cbd5e1;
}

.footer-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

.footer a {
  color: var(--white);
}

.mobile-call {
  position: fixed;
  z-index: 30;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: var(--amber);
  color: #111827;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 950;
  box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.22);
}

.page-hero {
  padding: 90px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.93), rgba(15, 23, 42, 0.6)),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1800&q=82&fm=webp") center / cover;
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  max-width: 720px;
  color: #e2e8f0;
  font-size: 1.13rem;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--slate-2);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.43em;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--amber);
  box-shadow: inset 0 0 0 4px #fde68a;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1fr);
  gap: 32px;
  align-items: start;
}

.notice {
  border-left: 5px solid var(--amber);
  background: #fffbeb;
  padding: 16px 18px;
  color: #78350f;
  border-radius: 6px;
}

@media (max-width: 930px) {
  .nav,
  .hero-inner,
  .container,
  .footer-inner {
    width: auto;
    margin-left: 16px;
    margin-right: 16px;
  }

  .nav {
    min-height: 64px;
  }

  .nav-links {
    display: none;
  }

  .header-call {
    min-height: 48px;
    padding: 10px 12px;
    font-size: 0.82rem;
    line-height: 1.15;
    white-space: normal;
  }

  .hero {
    min-height: auto;
    padding: 68px 0 56px;
  }

  .hero-inner,
  .contact-layout,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .estimate-panel {
    padding: 18px;
  }

  .service-grid,
  .trust-grid,
  .page-grid {
    grid-template-columns: 1fr;
  }

  .mobile-call {
    display: none;
  }
}

@media (max-width: 560px) {
  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-text span:first-child {
    font-size: 0.85rem;
  }

  .brand-text span:last-child {
    font-size: 0.64rem;
  }

  h1 {
    max-width: 10.8em;
    font-size: 1.82rem;
    overflow-wrap: anywhere;
  }

  .hero .button {
    max-width: 358px;
    font-size: 0.88rem;
    line-height: 1.25;
  }

  .hero-copy,
  .estimate-panel {
    max-width: 358px;
  }

  .hero-copy,
  .page-hero p {
    font-size: 1rem;
  }

  .button {
    width: 100%;
    padding-inline: 12px;
  }

  .section {
    padding: 56px 0;
  }
}
