/* ==========================================================================
   Bridger Construction Cleaning — Stylesheet
   Design system: navy / gold / ivory, mountain-modern, mobile-first
   ========================================================================== */

:root {
  --navy: #0B2242;
  --navy-deep: #071831;
  --navy-mid: #13355C;
  --gold: #B5924F;
  --gold-light: #D6BC8A;
  --sage: #4F5E4B;
  --ivory: #F7F6F2;
  --white: #FFFFFF;
  --ink: #1C2126;
  --gray: #5B6470;
  --gray-light: #8A93A0;
  --border: #E3E0D8;
  --success: #2F6B45;

  --font-head: 'Outfit', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;

  --container: 1180px;
  --radius: 6px;
  --shadow-sm: 0 1px 3px rgba(11,34,66,0.08);
  --shadow-md: 0 8px 24px rgba(11,34,66,0.12);
  --shadow-lg: 0 20px 50px rgba(11,34,66,0.18);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { padding-left: 1.2rem; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.32;
  margin: 0 0 0.5em;
  font-weight: 600;
  letter-spacing: normal;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 0.6em; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); margin-bottom: 0.55em; }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; color: var(--gray); }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 72px 0; }
.section-tight { padding: 48px 0; }
.bg-ivory { background: var(--ivory); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-navy p { color: rgba(255,255,255,0.78); }
.text-center { text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--gold); display: inline-block; }
.lede { font-size: 1.15rem; max-width: 640px; margin-top: 4px; line-height: 1.65; }
.lede.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--navy-deep); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-navy-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-navy-outline:hover { background: var(--navy); color: var(--white); }
.btn-block { width: 100%; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* Header / Nav */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 50px; width: 50px; }
.brand-text { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 1.15rem; line-height: 1.15; }
.brand-text span { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-top: 2px; }

nav.main-nav { display: none; }
nav.main-nav ul { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
nav.main-nav a { font-family: var(--font-head); font-weight: 500; font-size: 0.95rem; color: var(--navy-mid); position: relative; padding: 6px 0; }
nav.main-nav a:hover, nav.main-nav a.active { color: var(--gold); }

.header-cta { display: none; align-items: center; gap: 14px; }
.header-phone { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 1.02rem; display: flex; align-items: center; gap: 6px; }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: var(--radius);
  background: var(--navy); border: none; cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--white); position: relative; transition: 0.2s;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 10px 24px 26px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-head); font-weight: 500; color: var(--navy);
  padding: 13px 0; border-bottom: 1px solid var(--border); font-size: 1.02rem;
}
.mobile-menu .btn { margin-top: 16px; }

@media (min-width: 960px) {
  nav.main-nav { display: block; }
  .header-cta { display: flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none !important; }
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-mid) 100%);
  color: var(--white);
  overflow: hidden;
  padding: 48px 0 56px;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(181,146,79,0.16), transparent 55%);
  pointer-events: none;
}
.hero::before {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 320px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 300' preserveAspectRatio='none'%3E%3Cpolygon points='0,300 0,200 120,140 260,190 400,120 560,185 700,130 860,195 1000,125 1140,180 1300,120 1440,160 1440,300' fill='%2313355C' fill-opacity='0.55'/%3E%3Cpolygon points='0,300 0,230 100,170 240,220 380,150 520,215 660,155 800,220 950,150 1100,210 1250,155 1440,190 1440,300' fill='%230B2242' fill-opacity='0.8'/%3E%3Cpolygon points='0,300 0,260 90,200 200,250 320,180 460,245 580,190 720,250 860,185 990,240 1130,195 1270,235 1440,215 1440,300' fill='%23071831' fill-opacity='0.97'/%3E%3Cpolyline points='0,260 90,200 200,250 320,180 460,245 580,190 720,250 860,185 990,240 1130,195 1270,235 1440,215' fill='none' stroke='%23D6BC8A' stroke-opacity='0.4' stroke-width='3'/%3E%3C/svg%3E");
  background-size: 100% 100%; background-position: bottom; background-repeat: no-repeat; pointer-events: none;
}
/* Hero text always needs to win over the base h1/h2/h3/p color rules below */
.hero h1, .hero h2, .hero h3, .hero h4 { color: var(--white); }
.hero p { color: rgba(255,255,255,0.8); }
.hero-inner { position: relative; z-index: 1; max-width: 820px; }
.hero-inner .lede { max-width: 100%; }
.hero-tagline {
  font-family: var(--font-head); font-weight: 700; font-size: 1.2rem;
  color: var(--gold-light); margin-top: -6px; margin-bottom: 26px;
}
.hero-strip {
  font-family: var(--font-head); font-size: 0.82rem; font-weight: 500;
  color: rgba(255,255,255,0.6); margin-top: 22px; margin-bottom: 0;
  letter-spacing: 0.01em;
}
.hero-badges { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 34px; }
.hero-badge { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.85); }
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex: none; }
.page-hero { padding: 44px 0 48px; }
.page-hero .lede { color: rgba(255,255,255,0.8); }

/* Shared header block for eyebrow + heading + lede, keeps long headlines and their
   supporting paragraph the same width instead of the heading spanning the full container */
.section-head { max-width: 720px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Breadcrumb */
.breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: var(--gold); }

/* Trust strip */
.trust-strip { background: var(--ivory); border-bottom: 1px solid var(--border); padding: 26px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; text-align: center; }
.trust-item { font-family: var(--font-head); font-weight: 600; color: var(--navy-mid); font-size: 0.88rem; }
.trust-item strong { display: block; font-size: 1.5rem; color: var(--navy); font-weight: 700; }
@media (min-width: 720px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }

/* Cards / Grids */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 700px) { .grid-2 { grid-template-columns: 1fr 1fr; } .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-icon {
  width: 52px; height: 52px; border-radius: 10px;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; font-size: 1.4rem;
}
.card h3 { margin-bottom: 10px; }
.card ul { margin: 14px 0 0; padding-left: 18px; color: var(--gray); font-size: 0.94rem; }
.card ul li { margin-bottom: 6px; }
.card-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-head); font-weight: 600; color: var(--gold); margin-top: 16px; font-size: 0.9rem; }

/* Process steps */
.steps { display: grid; gap: 30px; grid-template-columns: 1fr; counter-reset: step; }
@media (min-width: 780px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { position: relative; padding-top: 8px; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--ivory); border: 2px solid var(--gold);
  font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: var(--navy);
  margin-bottom: 16px;
}

/* Service area list */
.area-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.area-chip {
  font-family: var(--font-head); font-size: 0.88rem; font-weight: 500;
  padding: 8px 16px; border-radius: 999px; background: var(--white);
  border: 1px solid var(--border); color: var(--navy-mid);
}

/* Testimonial */
.testimonial-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; position: relative;
}
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; font-size: 1rem; }
.testimonial-name { font-family: var(--font-head); font-weight: 600; color: var(--navy); margin-top: 14px; font-size: 0.95rem; }
.testimonial-role { font-size: 0.82rem; color: var(--gray-light); }

/* CTA band */
.cta-band {
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
  padding: 48px 36px;
  display: flex; flex-direction: column; gap: 22px; align-items: flex-start;
}
@media (min-width: 820px) {
  .cta-band { flex-direction: row; align-items: center; justify-content: space-between; }
}
.cta-band h2 { color: var(--white); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.78); margin-bottom: 0; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-item summary {
  cursor: pointer; font-family: var(--font-head); font-weight: 600; color: var(--navy);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--gold); flex: none; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { margin-top: 14px; }

/* Forms */
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; gap: 18px; grid-template-columns: 1fr; margin-bottom: 18px; }
@media (min-width: 640px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 0.86rem; color: var(--navy); margin-bottom: 6px; }
input, select, textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.96rem; color: var(--ink); background: var(--white);
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; border-color: var(--gold); }
textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.82rem; color: var(--gray-light); margin-top: 10px; }

/* Contact info blocks */
.contact-block { display: flex; gap: 16px; margin-bottom: 26px; }
.contact-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--ivory); color: var(--navy); display: flex; align-items: center; justify-content: center; flex: none; font-size: 1.1rem; }
.contact-block h4 { margin-bottom: 4px; font-size: 1rem; }
.contact-block p { margin-bottom: 0; }
.contact-block a:hover { color: var(--gold); }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 720px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-item {
  aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; position: relative;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6);
  font-family: var(--font-head); font-size: 0.85rem; text-align: center; padding: 14px;
  border: 1px solid var(--border);
}

/* Footer */
footer.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.75); padding: 64px 0 28px; }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1fr; margin-bottom: 40px; }
@media (min-width: 780px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.footer-brand img { height: 44px; margin-bottom: 14px; }
.footer-grid h4 { color: var(--white); font-size: 0.92rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; font-size: 0.92rem; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px; display: flex; flex-direction: column; gap: 10px; font-size: 0.82rem; }
@media (min-width: 720px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }

/* Article / resource pages */
.article-body { max-width: 760px; margin: 0 auto; }
.article-body h2 { margin-top: 2em; }
.article-body h3 { margin-top: 1.6em; }
.article-body ul, .article-body ol { color: var(--gray); }
.article-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-top: 18px; }
.callout {
  background: var(--ivory); border-left: 4px solid var(--gold); border-radius: 4px;
  padding: 20px 24px; margin: 28px 0;
}
.callout p:last-child { margin-bottom: 0; }
.article-card-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .article-card-grid { grid-template-columns: 1fr 1fr; } }
.article-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--white); transition: box-shadow 0.2s, transform 0.2s; }
.article-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.article-card-body { padding: 24px; }
.article-tag { font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); }
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--gold); color: var(--navy-deep);
  padding: 10px 16px; font-weight: 700; z-index: 200;
}
.skip-link:focus { left: 10px; top: 10px; }

/* Utility */
.mt-0 { margin-top: 0; }
.center-col { display: flex; flex-direction: column; align-items: center; text-align: center; }
