* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: #29241e;
  background: #f7f2e9;
  line-height: 1.65;
}

img {
  max-width: 100%;
}

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

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

/* HEADER */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #2f241c;
  border-bottom: 1px solid #6f4b2d;
}
.nav-wrap {
  width: 94%;
  max-width: 1400px;
  min-height: 90px;
  display: flex;
  align-items: center;
  gap: 28px;
}

/* NAV LOGO */
.brand {
  display: flex;
  align-items: center;
  margin-right: auto;
}

.brand-logo {
  display: block;
  width: 180px;
  height: auto;
  object-fit: contain;
}

.nav {
  margin-left: 0;
  display: flex;
  gap: 24px;
  font-weight: 600;
  font-size: 14px;
}

.nav a {
  color: #f1e4d1;
}

.nav a:hover {
  color: #d0a06c;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: #f1e4d1;
  font-size: 26px;
}

/* BUTTONS */

.btn {
  display: inline-block;
  background: #9b6b3d;
  color: #fff;
  padding: 13px 22px;
  border: 2px solid #9b6b3d;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
}
.btn:hover {
  background: #79502c;
  border-color: #79502c;
}
.btn-small {
  padding: 9px 15px;
  font-size: 13px;
}
.btn-outline {
  background: transparent;
  border-color: #211d14;
  color: #211d14;
}
.btn-outline:hover {
  background: #211d14;
  color: #fff;
}
.header .btn-small {
  background: #9b6335;
  border-color: #9b6335;
  color: #fff;
}

.header .btn-small:hover {
  background: #b07a48;
  border-color: #b07a48;
  color: #fff;
}

/* HERO */
.hero {
  min-height: 650px;
  position: relative;
  overflow: hidden;
  background: #efe3d2;
  color: #17130e;
}
.hero-shade {
  display: none;
}
.hero-content {
  width: 100%;
  max-width: none;
  min-height: 650px;
  display: grid;
  grid-template-columns: 39% 61%;
  padding: 0;
  position: relative;
}
.hero-text {
  background: #efe3d2;
  padding: 55px 3% 55px 7%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 3;
}
.hero .eyebrow {
  margin: 0 0 18px;
  color: #9b6335;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.hero h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(58px,4.6vw,78px);
  line-height: .86;
  text-transform: uppercase;
  color: #17130e;
  margin: 0;
  max-width: 470px;
}
.hero h1 span {
  color: #9b6335;
}
.hero-line {
  width: 90px;
  height: 5px;
  background: #8c5a30;
  margin: 26px 0 16px;
}
.hero-copy {
  max-width: 430px;
  font-size: 18px;
  line-height: 1.35;
  color: #29241e;
  margin: 0;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-image {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #3b2b20;
  clip-path: polygon(18% 0,100% 0,100% 100%,18% 100%,0 57%);
  margin-left: -1px;
}
.hero-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  clip-path: polygon(20% 0,100% 0,100% 100%,20% 100%,3% 57%);
}
/* TRUST BADGE */

.trust-badge {
  position: absolute;
  right: 5%;
  bottom: 2%;
  width: 175px;
  height: 175px;
  border-radius: 50%;
  background: #efe3d2;
  border: 5px solid #3b2b20;
  outline: 3px solid #efe3d2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #211d14;
  transform: rotate(-7deg);
  z-index: 6;
}

.trust-badge::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px solid #9b6335;
  border-radius: 50%;
  z-index: 1;
}
/* BADGE TEXT */

.badge-text {
  position: absolute;
  width: 155px;
  height: 155px;
  top: 5px;
  left: 5px;
  overflow: visible;
  z-index: 2;
}

.badge-text text {
  fill: #211d14;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.trust-badge strong {
  position: relative;
  z-index: 3;
  font-family: Arial,sans-serif;
  font-size: 58px;
  font-weight: 700;
  line-height: 1;
  color: #9b6335;
  transform: rotate(7deg);
}

.hero .btn-outline {
  background: transparent;
  border-color: #211d14;
  color: #211d14;
}

.hero .btn-outline:hover {
  background: #211d14;
  color: #fff;
}

/* GENERAL TYPOGRAPHY */

.eyebrow {
  font-weight: 700;
  letter-spacing: 2px;
  color: #d0a06c;
  font-size: 13px;
}

.eyebrow.dark {
  color: #8b5e34;
}

.section h2,
.dark-section h2,
.contact h2,
.report-band h2 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  line-height: 0.95;
  margin: 0.2em 0;
  font-size: 48px;
}

/* FEATURE BAR */

.feature-bar {
  background: #15130e;
  color: #fff;
}

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

.feature-grid div {
  padding: 24px;
  text-align: center;
  border-right: 1px solid #4a4033;
}

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

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

.feature-grid strong {
  color: #d0a06c;
}

.feature-grid span {
  font-size: 13px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.feature-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 8px;
}

/* SECTIONS */

.section {
  padding: 90px 0;
}

.alt {
  background: #eee3d3;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  align-items: center;
}

/* ABOUT IMAGE */

.about-image {
  width: 100%;
  height: 430px;
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 45px;
}

/* SERVICES */

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

.service-card {
  background: #fff;
  padding: 0;
  border-top: 4px solid #9b6b3d;
  box-shadow: 0 10px 30px rgba(39,31,21,.08);
  overflow: hidden;
}

.service-image {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.service-content {
  padding: 26px 30px 30px;
}

.service-card h3 {
  font-family: "Barlow Condensed",sans-serif;
  font-size: 25px;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0 0 15px;
}

.service-card p {
  margin: 0;
}

/* WHAT WE INSPECT */

.dark-section {
  padding: 80px 0;
  background: #19160f;
  color: #fff;
}
.light h2 {
  color: #fff;
}
.inspect-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: #66523d;
}
.inspect-item {
  background: #211d14;
  min-height: 145px;
  padding: 25px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.inspect-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 12px;
}
.inspect-item span {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #e6d5c1;
}

/* PROCESS */

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

.process-grid article {
  padding: 25px;
  border-left: 2px solid #9b6b3d;
}

.process-grid span {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 40px;
  color: #b38a61;
  font-weight: 700;
}

.process-grid h3 {
  font-size: 23px;
  margin: 0;
}

/* REPORT */

.report-band {
  padding: 75px 0;
  background: #4a3522;
  color: #fff;
}

/* REPORT IMAGE */

.report-image {
  width: 100%;
  position: relative;
}
.report-image img {
  width: 100%;
  height: auto;
  display: block;
}
.report-image span {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #d0a06c;
}

.check-list {
  padding-left: 0;
  list-style: none;
}

.check-list li {
  margin: 12px 0;
}

.check-list li::before {
  content: "✓";
  color: #d0a06c;
  font-weight: 700;
  margin-right: 10px;
}

/* REVIEWS */

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

.review-grid blockquote {
  margin: 0;
  background: #fff;
  padding: 28px;
  border-bottom: 3px solid #9b6b3d;
}

.review-grid cite {
  display: block;
  margin-top: 15px;
  font-style: normal;
  font-weight: 700;
}

/* FAQ */

.narrow {
  max-width: 1120px;
}

#faq .narrow {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 22px;
}

#faq .section-head {
  grid-column: 1 / -1;
  width: 100%;
}

.narrow details {
  background: #fff;
  margin: 0;
  padding: 18px 22px;
  align-self: start;
  border-left: 3px solid #9b6335;
}

.narrow summary {
  font-weight: 700;
  cursor: pointer;
  line-height: 1.4;
}

.narrow details p {
  margin: 14px 0 4px;
}

/* =========================
   SERVICE AREA
========================= */

.service-area {
  background: #171611;
  color: #fff;
  padding: 80px 0;
}

.service-area .section-head {
  max-width: 800px;
  margin: 0 auto 45px;
  text-align: center;
}

.service-area .section-head h2 {
  color: #fff;
  margin-bottom: 15px;
}

.service-area .section-head > p:last-child {
  color: #c9c4b9;
  line-height: 1.7;
}

.service-area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.service-area-card {
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.service-area-card h3 {
  color: #be8956;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin: 0 0 18px;
}

.service-area-card p {
  color: #ddd8cf;
  font-size: 0.9rem;
  margin: 7px 0;
}

.service-area-bottom {
  max-width: 750px;
  margin: 40px auto 0;
  text-align: center;
}

.service-area-bottom p {
  color: #c9c4b9;
  line-height: 1.7;
  margin-bottom: 22px;
}

/* CONTACT */

.contact {
  padding: 90px 0;
  background: #17140e;
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
}

.phone {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 44px;
  color: #d0a06c;
  font-weight: 700;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  font-size: 13px;
  font-weight: 700;
}

.contact-form label:nth-child(4) {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 5px;
  padding: 13px;
  border: 1px solid #8d7a65;
  background: #f8f2e9;
  font: inherit;
}

.contact-form button,
.contact-form small {
  grid-column: 1 / -1;
}

.text-link {
  font-weight: 700;
  color: #8b5e34;
}

.contact-email {
  display: block;
  color: inherit;
  text-decoration: none;
  margin-top: 8px;
}

.contact-email:hover {
  text-decoration: underline;
}

/* CONTACT CERTIFICATIONS */

.contact-certifications {
  margin-top: 30px;
}

.cert-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 440px;
  align-items: center;
}

.cert-grid img {
  width: 100%;
  max-width: 90px;
  height: 70px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* =========================
   FORM SUCCESS POPUP
========================= */

.form-popup {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 12, 9, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 99999;
  transition: opacity 0.25s ease;
}

.form-popup.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.form-popup-box {
  position: relative;
  width: min(460px, 100%);
  background: #efe3d2;
  color: #29241e;
  padding: 45px 40px 40px;
  text-align: center;
  border-top: 5px solid #9b6335;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.popup-check {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border: 3px solid #9b6335;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9b6335;
  font-size: 38px;
  font-weight: 700;
}

.form-popup-box .eyebrow {
  color: #9b6335;
  margin: 0 0 8px;
}

.form-popup-box h3 {
  margin: 0 0 15px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 42px;
  line-height: 1;
  text-transform: uppercase;
  color: #17130e;
}

.form-popup-box > p:not(.eyebrow) {
  max-width: 350px;
  margin: 0 auto 25px;
  color: #4a4033;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #29241e;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.popup-close:hover {
  color: #9b6335;
}

/* FOOTER */

footer {
  background: #0d0c09;
  color: #bcb2a5;
  padding: 25px 0;
  font-size: 13px;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* TABLET */
@media(max-width:850px) {
  .nav-wrap {
    width: 92%;
    min-height: 82px;
  }
  .brand-logo {
    width: 165px;
  }
  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 82px;
    background: #2f241c;
    padding: 22px 6%;
    flex-direction: column;
    gap: 18px;
    border-top: 1px solid #49382a;
  }
  .nav.open {
    display: flex;
  }
  .nav a {
    color: #f1e4d1;
    font-size: 16px;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
    color: #f1e4d1;
  }
  .desktop-call {
    display: none;
  }
  .hero {
    min-height: auto;
  }
  .hero-content {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-text {
    padding: 60px 8%;
  }
  .hero .eyebrow {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .hero h1 {
    font-size: clamp(58px,10vw,76px);
    max-width: 580px;
  }
  .hero-copy {
    max-width: 480px;
  }
  .hero-image {
    min-height: 440px;
    margin-bottom: 24px;
    clip-path: none;
    margin-left: 0;
  }
  .hero-image img {
    clip-path: none;
    object-position: center;
  }
  .trust-badge {
    width: 145px;
    height: 145px;
    right: 5%;
    bottom: 5%;
  }
  .trust-badge::after {
    inset: 7px;
  }
  .badge-text {
    width: 127px;
    height: 127px;
    top: 4px;
    left: 4px;
  }
  .badge-text text {
    font-size: 14px;
  }
  .trust-badge strong {
    font-size: 48px;
  }
  .feature-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .feature-grid div {
    border-right: 1px solid #4a4033;
    border-bottom: 1px solid #4a4033;
  }
  .feature-grid div:nth-child(2n) {
    border-right: 0;
  }
  .feature-grid div:nth-child(3),
  .feature-grid div:nth-child(4) {
    border-bottom: 0;
  }
  .feature-icon {
    width: 46px;
    height: 46px;
  }
  .card-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .inspect-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .review-grid {
    grid-template-columns: 1fr;
  }
  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  /* SERVICE AREA */
  .service-area {
    padding: 65px 0;
  }
  .service-area .section-head {
    max-width: 680px;
    margin-bottom: 35px;
  }
  .service-area-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .service-area-card {
    padding: 25px;
  }
  .service-area-card h3 {
    font-size: 1.35rem;
  }
  .service-area-bottom {
    margin-top: 35px;
  }

  /* CERTIFICATIONS */
  .contact-certifications {
    margin-top: 28px;
  }
  .cert-grid {
    grid-template-columns: repeat(4,1fr);
    gap: 12px 16px;
    max-width: 460px;
  }
  .cert-grid img {
    width: 100%;
    max-width: 95px;
    height: 72px;
    object-fit: contain;
    margin: 0 auto;
  }

  .section {
    padding: 65px 0;
  }
}


/* MOBILE */
@media(max-width:520px) {
  .container {
    width: 90%;
  }
  .nav-wrap {
    width: 90%;
    min-height: 74px;
    gap: 15px;
  }
  .brand-logo {
    width: 145px;
  }
  .nav {
    top: 74px;
    padding: 22px 5%;
  }
  .menu-toggle {
    font-size: 25px;
  }
  .hero-text {
    padding: 48px 7% 52px;
  }
  .hero .eyebrow {
    font-size: 12px;
    letter-spacing: 2.5px;
    margin-bottom: 14px;
  }
  .hero h1 {
    font-size: clamp(48px,13vw,60px);
    line-height: .88;
    max-width: 100%;
  }
  .hero-line {
    width: 70px;
    height: 4px;
    margin: 22px 0 14px;
  }
  .hero-copy {
    font-size: 16px;
    line-height: 1.4;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 24px;
  }
  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }
  .hero-image {
    min-height: 330px;
    margin-bottom: 20px;
  }
  .hero-image img {
    object-position: 58% center;
  }
  .trust-badge {
    width: 115px;
    height: 115px;
    right: 4%;
    bottom: 4%;
    border-width: 4px;
  }
  .trust-badge::after {
    inset: 6px;
  }
  .badge-text {
    width: 99px;
    height: 99px;
    top: 4px;
    left: 4px;
  }
  .badge-text text {
    font-size: 12px;
    letter-spacing: .5px;
  }
  .trust-badge strong {
    font-size: 38px;
  }
  .feature-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .feature-grid div {
    border-right: 1px solid #4a4033;
    border-bottom: 1px solid #4a4033;
    padding: 20px 10px;
  }
  .feature-grid div:nth-child(2n) {
    border-right: 0;
  }
  .feature-grid div:nth-child(3),
  .feature-grid div:nth-child(4) {
    border-bottom: 0;
  }
  .feature-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 8px;
  }
  .feature-grid strong {
    font-size: 14px;
  }
  .feature-grid span {
    font-size: 12px;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 25px;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .inspect-grid {
    grid-template-columns: 1fr;
  }
  .review-grid {
    grid-template-columns: 1fr;
  }
  .two-col {
    gap: 30px;
  }
  #faq .narrow {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  #faq .section-head {
    grid-column: auto;
  }

  /* SERVICE AREA */
  .service-area {
    padding: 55px 0;
  }
  .service-area .section-head {
    margin-bottom: 28px;
  }
  .service-area .section-head h2 {
    font-size: 38px;
  }
  .service-area .section-head > p:last-child {
    font-size: 14px;
  }
  .service-area-grid {
    grid-template-columns: 1fr;
  }
  .service-area-card {
    padding: 22px;
  }
  .service-area-card h3 {
    font-size: 1.3rem;
    margin-bottom: 14px;
  }
  .service-area-card p {
    font-size: 14px;
    margin: 6px 0;
  }
  .service-area-bottom {
    margin-top: 28px;
  }
  .service-area-bottom p {
    font-size: 14px;
  }
  .service-area-bottom .btn {
    width: 100%;
    text-align: center;
  }

  /* CONTACT */
  .contact-grid {
    gap: 35px;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .contact-form label:nth-child(4),
  .contact-form button,
  .contact-form small {
    grid-column: auto;
  }

  /* CERTIFICATIONS */
  .contact-certifications {
    margin-top: 25px;
  }
  .cert-title {
    font-size: 11px;
    letter-spacing: 1.8px;
    margin-bottom: 14px;
  }
  .cert-grid {
    grid-template-columns: repeat(4,1fr);
    gap: 10px 8px;
    max-width: 100%;
  }
  .cert-grid img {
    width: 100%;
    max-width: 72px;
    height: 60px;
    object-fit: contain;
    margin: 0 auto;
  }

  .section {
    padding: 55px 0;
  }
  .section h2,
  .dark-section h2,
  .contact h2,
  .report-band h2 {
    font-size: 38px;
  }
  .photo-placeholder {
    min-height: 320px;
  }
  .phone {
    font-size: 36px;
  }
  .footer-wrap {
    flex-direction: column;
    text-align: center;
  }
}