/* ============ C&C Dirt Contractors ============ */
:root {
  --black: #111111;
  --dark: #1a1a1a;
  --red: #d81f26;
  --red-dark: #b0161c;
  --yellow: #ffb400;
  --yellow-dark: #e29e00;
  --white: #ffffff;
  --gray: #f4f3f1;
  --text: #2b2b2b;
  --muted: #6b6b6b;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
h1, h2, h3 { font-family: 'Oswald', Arial, sans-serif; text-transform: uppercase; line-height: 1.15; }

.container { max-width: 1150px; margin: 0 auto; padding: 0 22px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  padding: 14px 30px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .18s, color .18s, border-color .18s;
}
.btn-red { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-yellow { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.btn-yellow:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-block { width: 100%; border: none; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--black);
  border-bottom: 3px solid var(--red);
}
.header-inner {
  max-width: 1150px; margin: 0 auto;
  display: flex; align-items: center; gap: 28px;
  padding: 10px 22px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-badge {
  height: 58px; width: auto;
  filter: drop-shadow(0 0 6px rgba(255, 180, 0, .55)) drop-shadow(0 0 18px rgba(216, 31, 38, .35));
  transition: filter .25s, transform .25s;
}
.brand:hover .brand-badge {
  filter: drop-shadow(0 0 9px rgba(255, 180, 0, .8)) drop-shadow(0 0 26px rgba(216, 31, 38, .5));
  transform: scale(1.04);
}
.brand-text {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.25rem; font-weight: 700; color: var(--white);
  letter-spacing: 1px; white-space: nowrap;
}
.brand-text em { font-style: normal; color: var(--red); }
.site-nav { display: flex; gap: 24px; margin-left: auto; }
.site-nav a {
  color: var(--white); text-decoration: none;
  font-family: 'Oswald', Arial, sans-serif; font-weight: 500;
  text-transform: uppercase; letter-spacing: 1px; font-size: .95rem;
  padding: 6px 2px; border-bottom: 2px solid transparent;
}
.site-nav a:hover { border-bottom-color: var(--red); }
.header-cta { padding: 10px 22px; font-size: .9rem; }
.nav-toggle { display: none; background: none; border: none; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--white); margin: 5px 0; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,10,10,.82) 0%, rgba(10,10,10,.55) 55%, rgba(10,10,10,.25) 100%);
}
.hero-content { position: relative; max-width: 1150px; margin: 0 auto; padding: 90px 22px; width: 100%; }
.hero-kicker {
  color: var(--yellow); font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 14px;
}
.hero h1 { color: var(--white); font-size: clamp(2.6rem, 7vw, 5rem); font-weight: 700; }
.hero h1 span { color: var(--yellow); }
.hero-sub { color: #e6e6e6; font-size: 1.2rem; max-width: 560px; margin: 22px 0 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Trust bar ---------- */
.trust-bar { background: var(--red); }
.trust-inner {
  max-width: 1150px; margin: 0 auto; padding: 14px 22px;
  display: flex; flex-wrap: wrap; gap: 10px 36px; justify-content: center;
}
.trust-item {
  color: var(--white); font-family: 'Oswald', Arial, sans-serif;
  font-weight: 500; text-transform: uppercase; letter-spacing: 1px; font-size: .95rem;
}

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section-dark { background: var(--dark); color: #e9e9e9; }
.section-kicker {
  color: var(--red); font-family: 'Oswald', Arial, sans-serif; font-weight: 600;
  text-transform: uppercase; letter-spacing: 3px; margin-bottom: 8px;
}
.section-title { font-size: clamp(1.9rem, 4.5vw, 2.9rem); margin-bottom: 14px; }
.section-dark .section-title { color: var(--white); }
.section-dark .section-kicker { color: var(--yellow); }
.section-lead { font-size: 1.12rem; max-width: 640px; margin-bottom: 42px; color: inherit; }

/* ---------- Services ---------- */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px;
}
.service-card {
  background: var(--gray); padding: 28px 26px;
  border-left: 5px solid var(--red);
  transition: transform .18s, box-shadow .18s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,.12); }
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--black); }
.service-card p { color: var(--muted); font-size: .98rem; }

/* ---------- Materials ---------- */
.materials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 22px;
}
.material-card {
  background: #242424; border-top: 5px solid var(--yellow);
  text-align: center; padding: 36px 20px;
}
.material-card h3 { color: var(--yellow); font-size: 1.6rem; margin-bottom: 6px; }
.material-card p { color: #b5b5b5; }
.materials-cta { text-align: center; margin-top: 40px; }

/* ---------- About ---------- */
.about-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 54px; align-items: center;
}
.about-text p { margin-bottom: 16px; font-size: 1.05rem; }
.about-list { list-style: none; margin-top: 22px; }
.about-list li {
  padding: 9px 0 9px 30px; position: relative;
  font-weight: 600; color: var(--black);
}
.about-list li::before {
  content: ""; position: absolute; left: 0; top: 14px;
  width: 14px; height: 14px; background: var(--yellow);
}
.about-photo img { border: 6px solid var(--black); box-shadow: 14px 14px 0 var(--yellow); }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 18px;
}
.gallery-grid figure { position: relative; overflow: hidden; }
.gallery-grid img {
  width: 100%; height: 250px; object-fit: cover;
  transition: transform .25s;
}
.gallery-grid figure:hover img { transform: scale(1.05); }
.gallery-grid figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.78));
  color: var(--white); padding: 26px 14px 10px;
  font-family: 'Oswald', Arial, sans-serif; letter-spacing: 1px; text-transform: uppercase; font-size: .9rem;
}

/* ---------- Service area ---------- */
.area-wrap { text-align: center; }
.area-wrap .section-lead { margin-left: auto; margin-right: auto; }
.towns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 760px; margin: 0 auto 26px; }
.towns span {
  background: var(--black); color: var(--yellow);
  font-family: 'Oswald', Arial, sans-serif; letter-spacing: 1px; text-transform: uppercase;
  padding: 9px 20px; font-size: .95rem;
}
.area-note { color: var(--muted); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 44px; align-items: start; }
.contact-cards { display: grid; gap: 16px; }
.contact-card {
  background: #242424; padding: 22px 24px; border-left: 5px solid var(--red);
}
.contact-role {
  color: var(--red); font-family: 'Oswald', Arial, sans-serif;
  text-transform: uppercase; letter-spacing: 2px; font-size: .8rem; margin-bottom: 4px;
}
.contact-card h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 6px; }
.contact-phone {
  color: var(--white); text-decoration: none; font-size: 1.35rem;
  font-family: 'Oswald', Arial, sans-serif; font-weight: 600; letter-spacing: 1px;
}
.contact-phone:hover { color: var(--yellow); }
.contact-hours { color: #9a9a9a; font-size: .9rem; margin-top: 4px; }
.contact-mail { color: var(--white); text-decoration: none; font-size: 1.02rem; word-break: break-all; }
.contact-mail:hover { color: var(--red); }

/* ---------- Form ---------- */
.quote-form { background: var(--white); padding: 34px 32px; color: var(--text); }
.quote-form h3 { color: var(--black); font-size: 1.5rem; margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote-form label {
  display: block; margin-bottom: 16px;
  font-family: 'Oswald', Arial, sans-serif; font-size: .85rem;
  text-transform: uppercase; letter-spacing: 1px; color: var(--black);
}
.quote-form input, .quote-form select, .quote-form textarea {
  display: block; width: 100%; margin-top: 6px;
  padding: 12px 14px; font-family: 'Barlow', Arial, sans-serif; font-size: 1rem;
  border: 2px solid #d9d9d9; background: var(--gray);
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
  outline: none; border-color: var(--red); background: var(--white);
}
.form-note { text-align: center; margin-top: 14px; color: var(--muted); font-size: .95rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); border-top: 3px solid var(--red); }
.footer-inner { max-width: 1150px; margin: 0 auto; padding: 46px 22px; text-align: center; }
.footer-badge {
  height: 96px; margin: 0 auto 16px;
  filter: drop-shadow(0 0 8px rgba(255, 180, 0, .5)) drop-shadow(0 0 24px rgba(216, 31, 38, .35));
}
.footer-name {
  color: var(--white); font-family: 'Oswald', Arial, sans-serif;
  text-transform: uppercase; letter-spacing: 2px; font-size: 1.05rem;
}
.footer-slogan {
  color: var(--yellow); font-family: 'Oswald', Arial, sans-serif;
  font-style: italic; letter-spacing: 1px; margin-top: 6px; font-size: 1.1rem;
}
.footer-line { color: #9a9a9a; margin-top: 6px; }
.footer-copy { color: #6f6f6f; font-size: .85rem; margin-top: 18px; }

/* ---------- Mobile ---------- */
@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-photo { order: -1; }
  .site-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--black); flex-direction: column; gap: 0;
    padding: 10px 22px 18px; border-bottom: 3px solid var(--red);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 0; border-bottom: 1px solid #2c2c2c; }
  .nav-toggle { display: block; margin-left: auto; }
  .header-cta { display: none; }
  .brand-text { font-size: 1.05rem; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .hero { min-height: 74vh; }
  .section { padding: 60px 0; }
  .gallery-grid img { height: 210px; }
}
