* {
  box-sizing: border-box;
}

:root {
  --charcoal: #171a1f;
  --black: #0d0f12;
  --cream: #f6f2e9;
  --white: #ffffff;
  --gold: #d79b2d;
  --gold-dark: #a96f12;
  --gray: #6a7078;
  --light-gray: #e7e7e7;
  --shadow: 0 18px 45px rgba(0,0,0,.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13, 15, 18, .97);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 210px;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--white);
  font-weight: 700;
}

.site-nav a:hover {
  color: var(--gold);
}

.nav-call {
  padding: 12px 18px;
  background: var(--gold);
  color: var(--black) !important;
  border-radius: 4px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: white;
  font-size: 30px;
}

.hero {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(rgba(0,0,0,.2), rgba(0,0,0,.2)),
    url("images/hero.svg") center/cover no-repeat;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9,10,12,.92) 0%, rgba(9,10,12,.75) 45%, rgba(9,10,12,.30) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 800;
}

.eyebrow.dark {
  color: var(--gold-dark);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: .98;
  letter-spacing: -.04em;
}

.hero-copy {
  max-width: 680px;
  margin: 28px 0;
  font-size: 1.16rem;
  color: rgba(255,255,255,.88);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 2px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  cursor: pointer;
  font-size: 1rem;
}

.button-primary {
  background: var(--gold);
  color: var(--black);
}

.button-primary:hover {
  background: #e7aa3c;
}

.button-secondary {
  border-color: rgba(255,255,255,.55);
  color: var(--white);
  background: rgba(0,0,0,.20);
}

.trust-strip {
  background: var(--gold);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid div {
  padding: 22px 18px;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,.18);
}

.trust-grid div:last-child {
  border-right: 0;
}

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

.trust-grid strong {
  font-size: 1.1rem;
}

.trust-grid span {
  font-size: .9rem;
}

.section {
  padding: 90px 0;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 42px;
}

.section h2,
.cta-section h2 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1.08;
  letter-spacing: -.03em;
}

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

.service-card {
  padding: 28px;
  border: 1px solid #dedede;
  border-radius: 8px;
  background: white;
  box-shadow: 0 7px 24px rgba(0,0,0,.05);
}

.service-card h3 {
  margin: 14px 0 8px;
  font-size: 1.35rem;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--black);
  font-size: 1.5rem;
  font-weight: 900;
  border-radius: 4px;
}

.about-section {
  background: var(--charcoal);
  color: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: center;
}

.about-grid p {
  color: rgba(255,255,255,.78);
}

.about-card {
  padding: 36px;
  background: var(--cream);
  color: var(--charcoal);
  border-left: 8px solid var(--gold);
  box-shadow: var(--shadow);
}

.about-card ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.about-card li {
  margin-bottom: 10px;
}

.text-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--gold);
  font-weight: 800;
}

.cta-section {
  padding: 60px 0;
  background: var(--gold);
}

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

.cta-section .eyebrow {
  color: rgba(0,0,0,.68);
}

.cta-section h2 {
  margin-bottom: 0;
}

.button-light {
  background: white;
  color: var(--black);
}

.button-outline-light {
  border-color: var(--black);
  color: var(--black);
}

.estimate-section {
  background: #f7f7f7;
}

.estimate-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.contact-details a {
  overflow-wrap: anywhere;
}

.estimate-form {
  background: white;
  padding: 34px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #c8c8c8;
  border-radius: 4px;
  font: inherit;
  background: white;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--gold);
  border-color: var(--gold);
}

.full-width {
  width: 100%;
  border: 0;
}

.form-note {
  margin-bottom: 0;
  color: var(--gray);
  font-size: .86rem;
}

.hidden {
  display: none;
}

.site-footer {
  padding-top: 55px;
  background: var(--black);
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .6fr;
  gap: 40px;
}

.footer-grid h3 {
  color: var(--gold);
}

.footer-grid a {
  display: block;
  margin-bottom: 9px;
  overflow-wrap: anywhere;
}

.footer-logo {
  width: 220px;
  margin-bottom: 12px;
}

.footer-grid p {
  color: rgba(255,255,255,.68);
  max-width: 440px;
}

.footer-bottom {
  margin-top: 40px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.55);
  font-size: .9rem;
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 82px;
    padding: 20px;
    background: var(--black);
    flex-direction: column;
    align-items: stretch;
  }

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

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

  .about-grid,
  .estimate-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .cta-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 600px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .brand img {
    width: 175px;
  }

  .hero {
    min-height: 600px;
  }

  .hero-content {
    padding: 76px 0;
  }

  .hero h1 {
    font-size: 3.25rem;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .trust-grid div:nth-child(2) {
    border-right: 0;
  }

  .trust-grid div:nth-child(-n+2) {
    border-bottom: 1px solid rgba(0,0,0,.18);
  }

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

  .section {
    padding: 68px 0;
  }

  .estimate-form {
    padding: 24px;
  }
}
