* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'IBM Plex Sans', 'Segoe UI', system-ui, sans-serif;
  background: #F6F4F1;
  color: #1C1E20;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0;
}
p { margin: 0; line-height: 1.6; }
a { color: #A32333; text-decoration: none; }
a:hover { color: #D97706; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }
input, select, textarea { font-family: 'IBM Plex Sans', sans-serif; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 48px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.section-label {
  font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 30px; font-family: 'Oswald', sans-serif; font-weight: 600;
  font-size: 15px; letter-spacing: 0.05em; text-transform: uppercase;
  border-radius: 2px; transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.btn-primary { background: #A32333; color: #fff; }
.btn-primary:hover { background: #8A1F2C; }
.btn-primary:disabled { background: #C9A0A5; cursor: not-allowed; }
.btn-outline-dark { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.55); }
.btn-outline-dark:hover { border-color: #D97706; color: #D97706; }
.btn-block { width: 100%; }

.card { background: #fff; border: 1px solid #E4E0D9; }

.qpill {
  padding: 11px 18px; border-radius: 999px; border: 1.5px solid #C9C4BA;
  background: #fff; font-family: 'Oswald', sans-serif; font-size: 13px;
  font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  color: #4A4E52; display: inline-flex; align-items: center; gap: 8px;
}
.qpill-active { background: #A32333; border-color: #A32333; color: #fff; }

.field-label {
  font-family: 'Oswald', sans-serif; font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: #4A4E52;
}
.field-input {
  padding: 13px 14px; border: 1.5px solid #C9C4BA; border-radius: 3px;
  font-size: 15px; color: #1C1E20; background: #fff; width: 100%;
}
.field-input:focus { outline: none; border-color: #A32333; }

.rivet-row { display: flex; align-items: center; gap: 10px; }
.rivet { width: 6px; height: 6px; border-radius: 50%; background: #6B7075; flex: none; }

.nav-link {
  font-family: 'Oswald', sans-serif; font-size: 13.5px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase; color: #D8D6D2;
}
.nav-link:hover { color: #fff; }

.form-status {
  font-size: 14px; padding: 14px 16px; border-radius: 3px; display: none;
}
.form-status.visible { display: block; }
.form-status.success { background: #E9F3EA; color: #1E5B2A; border: 1px solid #B9DCBE; }
.form-status.error { background: #FBEAEA; color: #8A1F1F; border: 1px solid #EFC1C1; }

.honeypot-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px; overflow: hidden;
}

/* ---------- Responsive ---------- */

/* The hero's two columns need more room than the rest of the page (a wide
   logo card next to a full headline) -- stack them earlier than the general
   tablet breakpoint below so neither column ever gets squeezed. */
@media (max-width: 1240px) {
  .hero-grid { flex-direction: column; gap: 40px !important; }
  .hero-grid .hero-copy { max-width: 100% !important; }
  .hero-headline { font-size: 38px !important; }
  .hero-crest { max-width: 400px !important; height: auto !important; }
}

@media (max-width: 900px) {
  .container { padding: 0 24px; }

  header nav.main-nav { display: none; }

  .trust-grid { grid-template-columns: repeat(2, minmax(0,1fr)) !important; }
  .trust-grid > div { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.08); }

  .services-grid, .why-us-grid { grid-template-columns: 1fr !important; }
  .why-us-photo-grid { grid-template-columns: 1fr !important; }

  .service-area-grid { flex-direction: column !important; gap: 40px !important; }


  .quote-section-grid { flex-direction: column !important; }
  .quote-sidebar { position: static !important; }

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

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .hero-headline { font-size: 30px !important; }
  .hero-cta-row { flex-direction: column; align-items: stretch !important; }
  .hero-cta-row .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr !important; }
  header .header-inner { height: auto !important; padding: 14px 0; flex-wrap: wrap; gap: 12px; }
}
