:root {
  --color-ink: #111827;
  --color-ink-soft: #374151;
  --color-muted: #f3f4f6;
  --color-muted-strong: #e5e7eb;
  --color-paper: #ffffff;
  --color-accent: #c2410c;
  --color-accent-dark: #9a3412;
  --color-gold: #f59e0b;
  --color-line: rgba(17, 24, 39, 0.14);
  --shadow-soft: 0 18px 45px rgba(17, 24, 39, 0.16);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 3px;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 50;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: var(--color-paper);
  background: var(--color-ink);
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--color-line);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  color: var(--color-paper);
  background: var(--color-ink);
  border-radius: var(--radius);
  font-size: 0.8rem;
}

.brand-text {
  max-width: 230px;
  line-height: 1.15;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--color-ink-soft);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a,
.inline-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration-color: rgba(194, 65, 12, 0.45);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.site-nav a:hover,
.inline-link:hover {
  color: var(--color-accent-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-weight: 800;
  color: var(--color-ink);
  text-decoration: none;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--color-paper);
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.button-primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
}

.button-secondary {
  color: var(--color-paper);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.button-outline {
  color: var(--color-ink);
  background: var(--color-paper);
  border-color: var(--color-line);
}

.button-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent-dark);
}

.button-small {
  min-height: 42px;
  padding: 10px 14px;
  font-size: 0.92rem;
}

.button-full {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  color: var(--color-ink);
  background: var(--color-paper);
  cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: currentColor;
  content: "";
}

.menu-toggle-lines::before {
  transform: translateY(-7px);
}

.menu-toggle-lines::after {
  transform: translateY(5px);
}

.section {
  padding-block: 86px;
}

.section-muted {
  background: var(--color-muted);
}

.section-dark {
  color: var(--color-paper);
  background: var(--color-ink);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.95), rgba(17, 24, 39, 0.78) 46%, rgba(17, 24, 39, 0.22));
  content: "";
}

.hero-media {
  position: absolute;
  inset: 0;
}

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

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  gap: 46px;
  padding-block: 96px;
}

.hero-content {
  max-width: 960px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-accent);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section-dark .eyebrow {
  color: #fbbf24;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: 4rem;
}

h2 {
  margin-bottom: 16px;
  font-size: 2.45rem;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.hero-copy {
  max-width: 730px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
}

.button-row,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.review-card,
.map-card,
.quote-form {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.hero-highlights {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.highlight {
  display: flex;
  flex: 1 1 0;
  gap: 14px;
  align-items: flex-start;
  min-width: 0;
  padding: 18px;
  color: var(--color-paper);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}

.highlight-icon {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  color: var(--color-ink);
  background: #fbbf24;
  border-radius: var(--radius);
}

.highlight-icon::before {
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
}

.icon-star::before {
  content: "";
  width: 20px;
  height: 20px;
  background: currentColor;
  clip-path: polygon(50% 0%, 62% 35%, 100% 35%, 69% 56%, 81% 92%, 50% 70%, 19% 92%, 31% 56%, 0% 35%, 38% 35%);
}

.icon-pin::before {
  content: "";
  width: 13px;
  height: 13px;
  border: 4px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(45deg);
}

.icon-roof::before {
  content: "";
  width: 19px;
  height: 15px;
  border-right: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  transform: rotate(45deg) translateY(3px);
}

.highlight-title {
  margin-bottom: 2px;
  color: var(--color-paper);
  font-weight: 900;
  line-height: 1.25;
}

.highlight p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.35;
}

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

.section-heading p,
.split-grid p,
.reputation p,
.service-area-grid p,
.contact-section p {
  color: var(--color-ink-soft);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-paper);
}

.service-number {
  margin-bottom: 32px;
  color: var(--color-accent);
  font-weight: 900;
}

.service-card p {
  color: var(--color-ink-soft);
}

.service-button {
  width: 100%;
  margin-top: auto;
  padding-inline: 14px;
}

.split-grid,
.reputation-grid,
.service-area-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 54px;
  align-items: center;
}

.reputation-grid {
  grid-template-columns: minmax(0, 0.85fr) minmax(580px, 1.25fr);
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-list div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: var(--radius);
  background: var(--color-paper);
}

.process-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--color-paper);
  background: var(--color-ink);
  border-radius: var(--radius);
  font-weight: 900;
}

.process-list p {
  margin-bottom: 0;
}

.review-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.review-intro {
  display: grid;
  gap: 14px;
}

.review-heading-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.review-heading-row h2 {
  margin-bottom: 0;
}

.review-section-icon {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  color: var(--color-paper);
  background: var(--color-ink);
  border-radius: var(--radius);
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.14);
}

.review-section-icon::before {
  width: 22px;
  height: 16px;
  border: 3px solid currentColor;
  border-radius: 6px;
  content: "";
}

.review-section-icon::after {
  position: absolute;
  bottom: 12px;
  left: 18px;
  width: 8px;
  height: 8px;
  background: var(--color-ink);
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(45deg);
  content: "";
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  margin-bottom: 0;
  padding: 7px 12px;
  color: var(--color-accent-dark);
  background: rgba(194, 65, 12, 0.08);
  border: 1px solid rgba(194, 65, 12, 0.24);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 900;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 320px;
  padding: 30px;
  border: 1px solid var(--color-line);
  background: var(--color-paper);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.review-card:hover {
  transform: translateY(-2px);
  border-color: rgba(194, 65, 12, 0.26);
  box-shadow: 0 22px 48px rgba(17, 24, 39, 0.14);
}

.review-card-header {
  display: flex;
  gap: 16px;
  align-items: center;
}

.review-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  color: var(--color-paper);
  background: var(--color-ink);
  border-radius: 50%;
  font-size: 0.86rem;
  font-weight: 900;
}

.review-card-heading {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.review-card-heading h3 {
  line-height: 1.18;
  margin-bottom: 0;
  white-space: nowrap;
}

.review-verified-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 5px 9px;
  color: var(--color-accent-dark);
  background: rgba(194, 65, 12, 0.08);
  border: 1px solid rgba(194, 65, 12, 0.2);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
}

.review-stars {
  color: var(--color-gold);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.review-card-copy {
  margin-bottom: 0;
  color: var(--color-ink-soft);
}

.review-button {
  width: 100%;
  margin-top: auto;
}

.contact-section {
  background: var(--color-paper);
}

.location-grid {
  align-items: stretch;
}

.map-card {
  overflow: hidden;
  border: 1px solid var(--color-line);
  background: var(--color-paper);
}

.map-embed {
  overflow: hidden;
  background: var(--color-muted-strong);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

.map-details {
  display: grid;
  gap: 10px;
  padding: 26px;
}

.map-business {
  margin-bottom: 0;
  color: var(--color-ink);
  font-size: 1.18rem;
  font-weight: 900;
}

.map-details address {
  color: var(--color-ink-soft);
  font-style: normal;
}

.map-details a:not(.button) {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--color-accent-dark);
  font-weight: 900;
}

.privacy-note {
  max-width: 480px;
  margin-top: 22px;
  font-size: 0.94rem;
}

.quote-form {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--color-line);
  background: var(--color-paper);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  font-weight: 900;
}

.field label span {
  color: var(--color-ink-soft);
  font-weight: 700;
}

.field label .required-mark {
  color: var(--color-accent);
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--color-ink);
  background: var(--color-paper);
  border: 1px solid rgba(17, 24, 39, 0.24);
  border-radius: var(--radius);
}

.field textarea {
  resize: vertical;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(194, 65, 12, 0.14);
}

.field select.is-prefilled {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(194, 65, 12, 0.12);
}

.form-status {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  opacity: 0;
  visibility: hidden;
}

.form-status.is-visible {
  opacity: 1;
  visibility: visible;
}

.form-status-error {
  color: #7f1d1d;
  background: #fee2e2;
  border-color: rgba(127, 29, 29, 0.16);
}

.form-status-info {
  color: #1f2937;
  background: #fef3c7;
  border-color: rgba(31, 41, 55, 0.12);
}

.form-status-success {
  color: #14532d;
  background: #dcfce7;
  border: 1px solid rgba(20, 83, 45, 0.16);
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  padding-block: 46px 22px;
  color: rgba(255, 255, 255, 0.84);
  background: var(--color-ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 34px;
}

.footer-brand,
.footer-heading {
  margin-bottom: 8px;
  color: var(--color-paper);
  font-weight: 900;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--color-paper);
  font-weight: 900;
}

.site-footer address {
  margin-top: 8px;
  font-style: normal;
}

.site-footer p {
  margin-bottom: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.92rem;
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 0;
}

.mobile-call {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 35;
  display: none;
  min-height: 50px;
  padding: 13px 18px;
  color: var(--color-paper);
  background: var(--color-accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 980px) {
  .header-inner {
    min-height: 70px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    order: 3;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: var(--color-paper);
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 10px;
  }

  .header-actions {
    margin-left: auto;
  }

  .header-actions .button {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    background: rgba(17, 24, 39, 0.84);
  }

  .hero-grid,
  .split-grid,
  .reputation-grid,
  .service-area-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    align-items: start;
    padding-block: 80px;
  }

  .hero-highlights {
    flex-direction: column;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.1rem;
  }

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

  .review-card-grid {
    grid-template-columns: 1fr;
  }

  .map-embed iframe {
    height: 300px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 78px;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .brand-text {
    max-width: 170px;
    font-size: 0.94rem;
  }

  .phone-link {
    display: none;
  }

  .section {
    padding-block: 62px;
  }

  .hero-grid {
    gap: 28px;
    padding-block: 60px;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .review-heading-row {
    align-items: center;
  }

  .review-section-icon {
    width: 44px;
    height: 44px;
  }

  .review-card-heading h3 {
    white-space: normal;
  }

  .button-row,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button,
  .contact-actions .button,
  .contact-actions .inline-link {
    width: 100%;
  }

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

  .service-card,
  .review-card,
  .map-details,
  .quote-form {
    padding: 20px;
  }

  .mobile-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    left: 16px;
  }
}
