:root {
  --charcoal: #1f1f1f;
  --coal: #2c2c2c;
  --stone: #f4f1ee;
  --sand: #efe7df;
  --accent: #d9412d;
  --accent-dark: #b63727;
  --ink: #0f0f0f;
  --mist: #f8f7f5;
  --shadow: 0 24px 60px rgba(15, 15, 15, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Archivo", sans-serif;
  color: var(--charcoal);
  background: var(--mist);
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 110px;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(217, 65, 45, 0.7);
  outline-offset: 3px;
}


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

.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(248, 247, 245, 0.95);
  backdrop-filter: blur(12px);
  z-index: 10;
  border-bottom: 1px solid rgba(44, 44, 44, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-logo {
  width: auto;
  height: auto;
  display: block;
  clip-path: inset(20% 0 20% 0);
}

.brand-title {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.brand-subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.primary-nav {
  display: flex;
  gap: 18px;
  font-weight: 600;
  font-size: 1rem;
}

.primary-nav a {
  padding: 6px 4px;
  position: relative;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.primary-nav a:hover::after {
  width: 100%;
}

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

.phone {
  font-weight: 700;
  color: var(--accent-dark);
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  background: var(--coal);
  color: #fff;
  padding: 10px 16px;
  border: none;
  border-radius: 999px;
  font-weight: 600;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 10px 0 18px;
  border-top: 1px solid rgba(44, 44, 44, 0.1);
}

.mobile-nav.open {
  display: flex;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 30px rgba(217, 65, 45, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(217, 65, 45, 0.35);
}

.btn-outline {
  border: 2px solid var(--accent);
  color: var(--accent);
}

.btn-secondary {
  background: var(--coal);
  color: #fff;
}

.hero {
  position: relative;
  background: url("images/personworkingonroof1.jpeg") center/cover no-repeat;
  color: #fff;
  padding: 120px 0 90px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 15, 15, 0.85), rgba(15, 15, 15, 0.4));
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: center;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 3vw + 2rem, 4rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.lead {
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  margin-bottom: 18px;
  color: #f8e7d5;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 22px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-weight: 600;
}

.trust-strip span {
  background: rgba(255, 255, 255, 0.12);
  padding: 8px 16px;
  border-radius: 999px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.hero-card ul {
  margin: 16px 0 22px;
  padding-left: 18px;
}

.intro {
  padding: 80px 0;
  background: var(--stone);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
}

.intro-cards {
  display: grid;
  gap: 20px;
}

.stat-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(15, 15, 15, 0.08);
}

.services {
  padding: 90px 0;
}

.section-header {
  max-width: 700px;
  margin-bottom: 40px;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 2vw + 1.5rem, 3rem);
  margin-bottom: 12px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.service-card {
  background: #fff;
  padding: 26px;
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(15, 15, 15, 0.08);
}

.service-card .icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.about {
  padding: 90px 0;
  background: var(--sand);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: center;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0;
}

.badge-row span {
  background: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(15, 15, 15, 0.08);
}

.about-highlights {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.team-grid {
  display: grid;
  gap: 20px;
}

.team-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.team-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.team-card figcaption {
  padding: 16px;
  display: grid;
  gap: 6px;
}

.testimonials {
  padding: 90px 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.review-panel {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.stars {
  color: #f6b93b;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.review-embeds {
  display: grid;
  gap: 18px;
}

.embed-card {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(15, 15, 15, 0.08);
}

.embed-card iframe {
  border-radius: 14px;
}

.embed-placeholder {
  height: 120px;
  margin-top: 12px;
  border-radius: 14px;
  background: repeating-linear-gradient(
    135deg,
    rgba(217, 65, 45, 0.15),
    rgba(217, 65, 45, 0.15) 12px,
    rgba(217, 65, 45, 0.05) 12px,
    rgba(217, 65, 45, 0.05) 24px
  );
  display: grid;
  place-items: center;
  font-weight: 600;
  color: var(--coal);
}

.cta-banner {
  background: var(--coal);
  color: #fff;
  padding: 70px 0;
}

.cta-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.contact {
  padding: 90px 0 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
}

.contact-form {
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid rgba(44, 44, 44, 0.2);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: inherit;
}

.form-note {
  font-size: 0.9rem;
  color: rgba(44, 44, 44, 0.7);
}

.map-panel {
  margin-top: 70px;
  padding-bottom: 90px;
}

.map-card {
  background: var(--sand);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.map-card iframe {
  border-radius: 18px;
  margin-top: 16px;
}

.site-footer {
  background: var(--ink);
  color: #fff;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.site-footer a {
  display: block;
  margin-top: 6px;
}

.footer-bottom {
  text-align: center;
  opacity: 0.7;
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .site-header {
    position: relative !important;
    top: auto;
    z-index: auto;
  }

  .primary-nav,
  .header-actions {
    display: none;
  }

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

  .header-inner {
    padding: 12px 0;
  }

  .brand-logo {
    max-width: 120px;
    height: auto;
  }

  .brand-title {
    font-size: 1rem;
  }

  .brand-subtitle {
    font-size: 0.75rem;
  }
}

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

@media (max-width: 720px) {
  .hero {
    padding: 90px 0 70px;
  }

  .hero-card {
    padding: 24px;
  }
}
