:root {
  --background: #fbfaf7;
  --foreground: #17201d;
  --muted: #5e6864;
  --line: #d8ddd8;
  --green: #244b3f;
  --green-dark: #16362d;
  --copper: #a85e3b;
  --cream: #f3efe6;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Arial, Helvetica, sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 14px 36px;
  border-bottom: 1px solid rgba(23, 32, 29, 0.12);
  background: rgba(251, 250, 247, 0.93);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 285px;
}

.brand-logo {
  width: 285px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

nav a,
.header-call {
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

nav a {
  padding: 10px 12px;
}

nav a:hover,
.header-call:hover {
  color: var(--green);
}

.header-call {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: white;
  color: var(--green);
}

.hero {
  position: relative;
  min-height: 66vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(15, 28, 24, 0.88) 0%, rgba(15, 28, 24, 0.72) 46%, rgba(15, 28, 24, 0.2) 100%),
    url("assets/dfw-hero.webp");
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 54, 45, 0.08), rgba(22, 54, 45, 0.45));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 64px 0 74px;
  color: white;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f2c7a7;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 3.55rem;
  line-height: 1.02;
  font-weight: 800;
}

h2 {
  font-size: 2.35rem;
  line-height: 1.12;
  font-weight: 800;
}

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

p {
  color: var(--muted);
  line-height: 1.72;
  overflow-wrap: break-word;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.13rem;
}

.action-row,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  max-width: 100%;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.button.primary {
  background: var(--copper);
  color: white;
}

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

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.contact-section .button.secondary {
  border-color: var(--line);
  background: white;
  color: var(--green);
}

.quick-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1120px, calc(100% - 48px));
  margin: -42px auto 0;
  position: relative;
  z-index: 5;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 18px 50px rgba(23, 32, 29, 0.11);
}

.quick-contact div {
  min-height: 112px;
  padding: 22px;
  background: white;
}

.quick-contact span {
  display: block;
  margin-bottom: 8px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-contact strong {
  color: var(--foreground);
  font-size: 1rem;
  line-height: 1.45;
  overflow-wrap: break-word;
}

.section,
.profile-section,
.faq-section,
.contact-section {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0;
}

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

.section-heading p:last-child {
  font-size: 1.05rem;
}

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

.service-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.service-card h3 {
  margin-bottom: 16px;
  color: var(--green);
}

.profile-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: stretch;
  gap: 38px;
}

.profile-image {
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--cream);
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.profile-copy p {
  font-size: 1.03rem;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.trust-list div {
  min-height: 116px;
  padding: 18px;
  border-left: 4px solid var(--copper);
  border-radius: 8px;
  background: #f5f7f4;
}

.trust-list strong,
.trust-list span {
  display: block;
}

.trust-list strong {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 1.35rem;
}

.trust-list span {
  color: var(--muted);
  line-height: 1.45;
}

.area-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.county-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.county-list span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--green-dark);
  font-weight: 800;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 48px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--green);
  font-weight: 800;
}

details p {
  padding: 0 22px 22px;
}

.contact-section {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: stretch;
  padding: 58px;
  border-radius: 8px;
  background: var(--green-dark);
  color: white;
}

.contact-section p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-section .eyebrow {
  color: #f2c7a7;
}

.contact-content h2 {
  max-width: 620px;
}

address {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
}

address strong {
  color: white;
  font-size: 1.15rem;
}

address a {
  width: fit-content;
  margin-top: 8px;
  color: #f2c7a7;
  font-weight: 800;
}

footer {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0 42px;
  color: var(--muted);
  font-size: 0.88rem;
}

footer p {
  margin-bottom: 8px;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 22px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: min(282px, 100%);
    max-height: 58px;
  }

  nav {
    justify-content: flex-start;
  }

  .header-call {
    width: fit-content;
  }

  h1 {
    font-size: 2.85rem;
  }

  h2 {
    font-size: 2rem;
  }

  .quick-contact,
  .service-grid,
  .trust-list {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .profile-section,
  .faq-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .profile-image {
    min-height: 420px;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: auto;
    background-position: 64% center;
  }

  .hero-inner,
  .section,
  .profile-section,
  .faq-section,
  footer {
    width: min(100% - 32px, 1120px);
  }

  .hero-inner {
    padding: 46px 0 64px;
  }

  h1 {
    font-size: 1.9rem;
    line-height: 1.08;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero .eyebrow {
    max-width: 280px;
    font-size: 0.68rem;
    line-height: 1.35;
  }

  h2 {
    font-size: 1.72rem;
  }

  .quick-contact {
    width: min(100% - 32px, 1120px);
    margin-top: -26px;
  }

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

  .contact-section {
    width: min(100% - 32px, 1120px);
    padding: 30px 22px;
  }
}
