/* ============================================
   Jagged Mountain Excavating — style.css v2
   Inspired by kwconstruction.ca layout
   ============================================ */

/* --- Custom Properties --- */
:root {
  --black:    #0a0a09;
  --offblack: #111110;
  --charcoal: #1a1a18;
  --steel:    #2a2a27;
  --mid:      #444440;
  --muted:    #888880;
  --light:    #c8c8c0;
  --cream:    #eeeae0;
  --white:    #f8f6f0;
  --gold:     #E8A820;
  --gold-lt:  #f0bc40;
  --gold-dim: #7a5808;
  --nav-h:    64px;
  --util-h:   40px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--cream);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  line-height: 1.05;
}

/* ============================================
   UTILITY BAR
   ============================================ */
.util-bar {
  background: var(--charcoal);
  border-bottom: 1px solid var(--steel);
  height: var(--util-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 0 2rem;
}
.util-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--light);
  white-space: nowrap;
}
.util-item svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
  color: var(--gold);
}
.util-item a { color: inherit; }
.util-item a:hover { color: var(--gold); }

/* ============================================
   NAVIGATION
   ============================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--offblack);
  border-bottom: 2px solid var(--steel);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
}
.nav-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1;
  display: flex;
  flex-direction: column;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0.02em;
  border-bottom: none !important;
}
.nav-logo-text span {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  font-style: normal;
  font-weight: 700;
}
.nav-logo-text:hover { color: var(--gold); }
.nav-logo-text:hover span { color: var(--gold-lt); }

.footer-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  font-size: 1.4rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
  letter-spacing: 0.02em;
}
.footer-logo-text span {
  display: block;
  font-size: 0.85rem;
  color: var(--gold);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: var(--light);
  padding: 6px 14px;
  border-bottom: 3px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); border-bottom-color: var(--gold); }

/* CTA button — outlined gold like KWC */
.btn-nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 7px 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.15s, color 0.15s;
  margin-left: 0.75rem;
}
.btn-nav-cta:hover { background: var(--gold); color: var(--black); }
.btn-nav-cta .chevrons { font-size: 1rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: transform 0.2s, opacity 0.2s;
}
body.nav-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .hamburger span:nth-child(2) { opacity: 0; }
body.nav-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: calc(var(--util-h) + var(--nav-h));
  left: 0; right: 0;
  background: var(--charcoal);
  border-bottom: 2px solid var(--steel);
  z-index: 199;
  padding: 1rem 0;
  flex-direction: column;
}
.mobile-menu a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1rem;
  color: var(--light);
  padding: 12px 2rem;
  border-bottom: 1px solid var(--steel);
}
.mobile-menu a:last-child { border-bottom: none; color: var(--gold); }
body.nav-open .mobile-menu { display: flex; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
  padding: 13px 26px;
}
.btn-gold:hover { background: var(--gold-lt); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 11px 24px;
}
.btn-outline:hover { background: var(--gold); color: var(--black); }
.btn .chevrons { font-size: 1.1rem; letter-spacing: -1px; }

/* ============================================
   HERO — full bleed, massive italic type
   ============================================ */
.hero {
  position: relative;
  height: 88vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.2) 0%,
    rgba(0,0,0,0.45) 50%,
    rgba(0,0,0,0.82) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 4rem 5rem;
}
.hero-since {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cream);
  margin-bottom: 1.25rem;
}
.hero-since::after {
  content: '';
  display: block;
  width: 140px; height: 2px;
  background: var(--gold);
}
.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(3.5rem, 9vw, 8rem);
  text-transform: uppercase;
  font-style: italic;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 1.5rem;
}
/* alternating solid / outline like KWC */
.hero-title .solid { color: var(--white); }
.hero-title .outline {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}
.hero-sub {
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 500;
  color: var(--cream);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}
.hero-btns {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ============================================
   ABOUT SECTION — left gold bar + collage
   ============================================ */
.about-section {
  background: var(--charcoal);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.about-text {
  padding: 5rem 4rem 5rem 0;
  padding-left: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.about-text::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--gold);
}
.about-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 1rem;
}
.about-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-style: italic;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.75rem;
  line-height: 1;
}
.about-text p {
  color: var(--light);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  max-width: 480px;
}
.about-links {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.about-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}
.about-link:hover { color: var(--gold); }
.about-photos {
  position: relative;
  overflow: hidden;
}
.about-photos img {
  width: 100%; height: 100%;
  object-fit: cover;
}
/* collage overlay effect */
.about-photo-stack {
  position: relative;
  height: 100%;
  min-height: 400px;
  background: var(--black);
}
.photo-card {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
}
.photo-card img { width: 100%; height: 100%; object-fit: cover; }
.photo-card:nth-child(1) { top: 8%; left: 5%; width: 55%; height: 52%; transform: rotate(-1.5deg); }
.photo-card:nth-child(2) { bottom: 10%; left: 15%; width: 48%; height: 42%; transform: rotate(1deg); }
.photo-card:nth-child(3) { top: 20%; right: 4%; width: 40%; height: 40%; transform: rotate(2deg); }

/* ============================================
   SERVICES SECTION — photo cards with overlay title
   ============================================ */
.services-section { background: var(--charcoal); padding: 5rem 0 2rem; }
.services-header {
  padding: 0 4rem 3rem;
}
.services-section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 5rem);
  text-transform: uppercase;
  font-style: italic;
  color: var(--white);
  line-height: 1;
}
.services-section-title .outline {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}
.services-filter {
  display: flex;
  gap: 0;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--steel);
}
.services-filter a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: var(--muted);
  padding: 8px 20px 10px;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  transition: color 0.15s, border-color 0.15s;
}
.services-filter a:hover,
.services-filter a.active { color: var(--gold); border-bottom-color: var(--gold); }
.services-filter span { color: var(--steel); display: flex; align-items: center; padding: 0 4px; font-size: 0.9rem; }

.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.service-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card-img { transform: scale(1.05); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.1) 60%);
}
.service-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.5rem 1.25rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.service-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 1.25rem;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  max-width: 80%;
}
.service-card-arrow {
  width: 44px; height: 44px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--black);
  transition: background 0.15s;
}
.service-card:hover .service-card-arrow { background: var(--gold-lt); }

/* Full services text grid (services page) */
.services-text-section {
  background: var(--charcoal);
  padding: 5rem 4rem;
}
.services-text-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 4rem);
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  margin-bottom: 0.5rem;
}
.services-text-title .outline {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}
.services-subhead {
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 4rem;
}
.services-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 6rem;
  max-width: 900px;
  margin: 0 auto;
}
.service-text-item h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.service-text-item p {
  color: var(--light);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================
   TESTIMONIALS — 50/50 split, photo left
   ============================================ */
.testimonial-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.testimonial-photo {
  position: relative;
  overflow: hidden;
}
.testimonial-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.testimonial-photo-divider {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 6px;
  background: var(--gold);
}
.testimonial-content {
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 5rem;
}
.testimonial-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.testimonial-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(1.6rem, 2.5vw, 2.5rem);
  text-transform: uppercase;
  color: var(--black);
  line-height: 1;
  margin-bottom: 2rem;
}
.testimonial-quote {
  font-size: 0.95rem;
  color: var(--mid);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 440px;
}
.testimonial-quote::before { content: '\201C'; }
.testimonial-quote::after { content: '\201D'; }
.testimonial-author {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--black);
  margin-bottom: 1.5rem;
}
.testimonial-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.testimonial-link:hover { color: var(--gold-dim); }

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--gold);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 2rem 1.5rem;
  border-right: 1px solid rgba(0,0,0,0.15);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--black);
  line-height: 1;
}
.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(0,0,0,0.65);
  margin-top: 4px;
}

/* ============================================
   CTA STRIP
   ============================================ */
.cta-strip {
  background: var(--offblack);
  border-top: 3px solid var(--gold);
  padding: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-strip-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  text-transform: uppercase;
  color: var(--white);
}
.cta-strip-text p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.4rem;
}
.cta-strip-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
}
.cta-phone:hover { color: var(--gold-lt); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: var(--charcoal);
  padding: 5rem 4rem 4rem;
  border-bottom: 3px solid var(--gold);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--gold);
}
.page-hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(3rem, 8vw, 7rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 1.25rem;
}
.page-hero h1 .outline {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}
.page-hero p {
  color: var(--light);
  font-size: 1rem;
  max-width: 560px;
  font-style: italic;
}

/* ============================================
   FOOTER — 4-column, bg photo
   ============================================ */
.site-footer {
  position: relative;
  background: var(--black);
  overflow: hidden;
}
.footer-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.18;
}
.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding: 4rem;
  border-top: 3px solid var(--gold);
}
.footer-col-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links-list a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.15s;
}
.footer-links-list a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.footer-contact-item svg {
  width: 15px; height: 15px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold);
}
.footer-contact-item a { color: var(--muted); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-logo-col { display: flex; flex-direction: column; }
.footer-logo-col img { height: 56px; margin-bottom: 1rem; }
.footer-logo-col p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}
.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--steel);
  padding: 1.25rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--mid);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ============================================
   PRICING TABLE
   ============================================ */
.pricing-section {
  background: var(--charcoal);
  padding: 5rem 4rem;
}
.pricing-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.pricing-section h2 .outline {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}
.pricing-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.pricing-sub {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}
.table-wrap {
  overflow-x: auto;
  margin-bottom: 3rem;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.price-table th {
  background: var(--gold);
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 16px;
  text-align: left;
}
.price-table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--steel);
  color: var(--light);
}
.price-table tr:hover td { background: rgba(255,255,255,0.03); }
.price-table tr.group-header td {
  background: var(--steel);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: var(--gold);
  padding: 8px 16px;
}
.price-tbd { color: var(--muted); font-style: italic; }

.delivery-rates {
  background: var(--steel);
  padding: 2rem;
  margin-bottom: 3rem;
  max-width: 500px;
}
.delivery-rates h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.delivery-rates table { width: 100%; border-collapse: collapse; }
.delivery-rates td {
  padding: 7px 0;
  border-bottom: 1px solid var(--mid);
  color: var(--light);
  font-size: 0.9rem;
}
.delivery-rates td:last-child { text-align: right; font-weight: 600; }
.delivery-rates .note { font-size: 0.8rem; color: var(--muted); margin-top: 1rem; }

/* ============================================
   CALCULATORS
   ============================================ */
.calc-section {
  background: var(--offblack);
  padding: 5rem 4rem;
}
.calc-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.calc-section h2 .outline {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}
.calc-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.calc-sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 2rem; }

.calc-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--steel);
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.calc-tab {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  padding: 10px 22px 12px;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color 0.15s, border-color 0.15s;
}
.calc-tab:hover,
.calc-tab.active { color: var(--gold); border-bottom-color: var(--gold); }

.calc-panel { display: none; }
.calc-panel.active { display: block; }
.calc-inputs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.calc-field label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 6px;
}
.calc-field input,
.calc-field select {
  width: 100%;
  background: var(--steel);
  border: 1px solid var(--mid);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  padding: 10px 12px;
  outline: none;
  transition: border-color 0.15s;
}
.calc-field input:focus,
.calc-field select:focus { border-color: var(--gold); }

.calc-result {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  background: var(--charcoal);
  padding: 1.75rem 2rem;
  margin-top: 1rem;
}
.calc-result-item { text-align: center; flex: 1; min-width: 120px; }
.calc-result-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}
.calc-result-unit {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 4px;
}
.calc-note { color: var(--muted); font-size: 0.8rem; margin-top: 1rem; font-style: italic; }

/* ============================================
   MATERIAL CARDS (sand-gravel page)
   ============================================ */
.materials-section {
  background: var(--charcoal);
  padding: 5rem 4rem;
}
.materials-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 2rem;
}
.material-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}
.material-card {
  background: var(--steel);
  border: 2px solid transparent;
  padding: 1.25rem 1rem;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  font-family: 'Barlow Condensed', sans-serif;
}
.material-card:hover { border-color: var(--gold); }
.material-card.selected { border-color: var(--gold); background: rgba(232,168,32,0.1); }
.material-card h4 {
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.material-card p { font-size: 0.78rem; color: var(--muted); font-family: 'Barlow', sans-serif; }
.selected-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.72rem;
  padding: 3px 8px;
  margin: 3px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
}
.contact-info {
  background: var(--charcoal);
  padding: 5rem 4rem;
  border-right: 3px solid var(--steel);
}
.contact-info h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 2rem;
}
.info-block { margin-bottom: 1.5rem; }
.info-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 4px;
}
.info-value {
  font-size: 1rem;
  color: var(--white);
  font-weight: 500;
}
.info-value a { color: var(--gold); }
.info-value a:hover { color: var(--gold-lt); }
.safe-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--gold-dim);
  padding: 8px 14px;
  margin-top: 1.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  color: var(--gold);
}
.safe-badge svg { width: 20px; height: 20px; }

.contact-form-wrap {
  background: var(--offblack);
  padding: 5rem 4rem;
}
.contact-form-wrap h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 2rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: var(--muted);
}
.form-field input,
.form-field textarea,
.form-field select {
  background: var(--steel);
  border: 1px solid var(--mid);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.15s;
  resize: none;
}
.form-field textarea { min-height: 130px; }
.form-field input:focus,
.form-field textarea:focus { border-color: var(--gold); }
.form-submit { margin-top: 1.5rem; }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 1rem; }
.form-note a { color: var(--gold); }
.form-success {
  display: none;
  margin-top: 1rem;
  background: rgba(232,168,32,0.12);
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  padding: 12px 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}
.form-error {
  display: none;
  margin-top: 1rem;
  background: rgba(180,40,40,0.12);
  border: 1px solid #7a2020;
  color: #e07070;
  padding: 12px 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}
.form-error a { color: var(--gold); }

/* ============================================
   GALLERY
   ============================================ */
.gallery-section {
  background: var(--black);
  padding: 5rem 4rem;
}
.gallery-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 2rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.gallery-img {
  aspect-ratio: 1;
  object-fit: cover;
  cursor: pointer;
  transition: opacity 0.2s;
}
.gallery-img:hover { opacity: 0.8; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 999;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: none; border: none; cursor: pointer;
  color: var(--white); font-size: 2rem; z-index: 1;
}
.lightbox-close { top: 1.5rem; right: 2rem; font-size: 2.5rem; }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-section { grid-template-columns: 1fr; }
  .about-text { padding: 4rem 3rem; }
  .about-photo-stack { min-height: 360px; }
  .testimonial-section { grid-template-columns: 1fr; }
  .testimonial-photo { min-height: 280px; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .services-cards { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .services-text-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .util-bar { display: none; }
  .site-nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 0 2rem 4rem; }
  .services-header, .pricing-section, .calc-section, .gallery-section,
  .materials-section, .contact-info, .contact-form-wrap,
  .about-text, .cta-strip, .page-hero, .services-text-section { padding-left: 1.5rem; padding-right: 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .footer-bottom { padding: 1rem 1.5rem; }
  .services-cards { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .cta-strip { flex-direction: column; align-items: flex-start; }
  .testimonial-content { padding: 3rem 1.5rem; }
  .hero-title { font-size: clamp(2.5rem, 12vw, 5rem); }
}

/* ============================================
   v3 POLISH — accessibility, focus, motion, perf
   ============================================ */

/* Focus visible — keyboard only */
:focus { outline: none; }
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
.btn:focus-visible,
.btn-nav-cta:focus-visible {
  outline-offset: 4px;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -60px;
  left: 0;
  background: var(--gold);
  color: var(--black);
  padding: 12px 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  z-index: 999;
  transition: top 0.15s;
}
.skip-link:focus { top: 0; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
}

/* Image rendering hint */
img { image-rendering: auto; }

/* Below-fold perf hint */
.why-section, .process-section, .gallery-section, .services-text-section,
.footer-inner, .cta-strip {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

/* ============================================
   WHY SECTION — 4 reasons grid
   ============================================ */
.why-section {
  background: var(--offblack);
  padding: 6rem 4rem;
  border-top: 1px solid var(--steel);
}
.why-inner { max-width: 1280px; margin: 0 auto; }
.why-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  text-transform: uppercase;
  color: var(--white);
  margin: 0.5rem 0 3rem;
  line-height: 1;
}
.why-title .outline {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.why-item {
  background: var(--charcoal);
  border-top: 3px solid var(--gold);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.2s ease, background 0.2s ease;
}
.why-item:hover { transform: translateY(-4px); background: var(--steel); }
.why-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
}
.why-item h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  text-transform: uppercase;
  font-style: italic;
  color: var(--white);
}
.why-item p {
  color: var(--light);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ============================================
   PROCESS SECTION — numbered steps
   ============================================ */
.process-section {
  background: var(--charcoal);
  padding: 6rem 4rem;
  border-top: 1px solid var(--steel);
  position: relative;
}
.process-inner { max-width: 1280px; margin: 0 auto; }
.process-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  text-transform: uppercase;
  color: var(--white);
  margin: 0.5rem 0 3rem;
  line-height: 1;
}
.process-title .outline {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}
.process-steps {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}
.process-steps li {
  background: var(--offblack);
  border-left: 4px solid var(--gold);
  padding: 2rem 1.75rem;
  position: relative;
}
.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 4rem;
  color: var(--gold-dim);
  line-height: 0.85;
  margin-bottom: 0.5rem;
  opacity: 0.85;
}
.process-steps h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  text-transform: uppercase;
  font-style: italic;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.process-steps p {
  color: var(--light);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Why/Process responsive */
@media (max-width: 1024px) {
  .why-grid, .process-steps { grid-template-columns: repeat(2, 1fr); }
  .why-section, .process-section { padding: 4.5rem 2rem; }
}
@media (max-width: 640px) {
  .why-grid, .process-steps { grid-template-columns: 1fr; }
  .why-section, .process-section { padding: 4rem 1.5rem; }
}

/* Print stylesheet — don't waste owners' ink */
@media print {
  .util-bar, .site-nav, .mobile-menu, .hamburger,
  .hero-overlay, .footer-bg, .cta-strip,
  .lightbox, .form-success, .form-error { display: none !important; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
  .hero { height: auto; min-height: 0; }
  .hero-bg { position: static; height: auto; }
  .hero-title, h1, h2, h3 { color: #000 !important; -webkit-text-stroke: 0 !important; }
  .why-section, .process-section { background: #fff; padding: 1rem 0; }
}

/* Selection */
::selection { background: var(--gold); color: var(--black); }

/* WebP <picture> wrapper — pass-through layout so absolute-positioned children
   like .hero-bg and .footer-bg still anchor to their section parent */
picture { display: contents; }

/* Footer social row */
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1.5px solid var(--steel);
  color: var(--light);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(232, 168, 32, 0.06);
}
.footer-social svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ============================================
   PARTNER PROJECTS
   ============================================ */
.partners-section {
  background: var(--charcoal);
  padding: 6rem 4rem;
  border-top: 1px solid var(--steel);
}
.partners-inner { max-width: 1280px; margin: 0 auto; }
.partners-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  text-transform: uppercase;
  color: var(--white);
  margin: 0.5rem 0 3rem;
  line-height: 1;
}
.partners-title .outline {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}
.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.partner-card {
  background: var(--offblack);
  border-top: 3px solid var(--gold);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.partner-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  text-transform: uppercase;
  font-style: italic;
  color: var(--white);
}
.partner-card p {
  color: var(--light);
  font-size: 0.92rem;
  line-height: 1.7;
  flex: 1;
}
.partner-card .btn { align-self: flex-start; margin-top: 0.5rem; }

@media (max-width: 768px) {
  .partners-section { padding: 4rem 1.5rem; }
  .partners-grid { grid-template-columns: 1fr; }
}
