:root{
  --charcoal:#1c1f24;
  --charcoal-soft:#2a2e35;
  --orange:#ff6d3f;
  --paper:#f4f2ee;
  --ink:#1c1f24;
  --muted:#6b6f76;
  --white:#ffffff;
}

*{ box-sizing:border-box; margin:0; padding:0; }

html{ scroll-behavior:smooth; }

body{
  font-family:'Segoe UI', Roboto, Arial, sans-serif;
  color:var(--ink);
  background:var(--paper);
  line-height:1.6;
}

.container{
  max-width:1120px;
  margin:0 auto;
  padding:0 24px;
}

.container.narrow{ max-width:760px; }

/* Header */
.site-header{
  background:var(--charcoal);
  position:sticky;
  top:0;
  z-index:10;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 24px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--white);
  text-decoration:none;
  font-weight:800;
  font-size:1.15rem;
  letter-spacing:0.02em;
}

.brand-mark{ width:28px; height:28px; }

.brand em{ color:var(--orange); font-style:normal; }

nav a{
  color:#d8d8d8;
  text-decoration:none;
  margin-left:28px;
  font-size:0.95rem;
  transition:color 0.15s ease;
}

nav a:hover{ color:var(--white); }

/* Hero */
.hero{
  background-color:var(--charcoal);
  background-image:
    linear-gradient(100deg, rgba(28,31,36,0.96) 0%, rgba(28,31,36,0.88) 32%, rgba(28,31,36,0.55) 65%, rgba(28,31,36,0.30) 100%),
    url('../images/hero-drill-splash.jpg');
  background-size:cover;
  background-position:right center;
  color:var(--white);
  padding:110px 0 100px;
}

.eyebrow{
  color:var(--orange);
  text-transform:uppercase;
  letter-spacing:0.16em;
  font-size:0.78rem;
  font-weight:700;
  margin-bottom:16px;
}

.hero h1{
  font-size:2.6rem;
  line-height:1.2;
  max-width:720px;
  margin-bottom:22px;
}

.hero .lead{
  max-width:600px;
  color:#c9cbce;
  font-size:1.08rem;
  margin-bottom:34px;
}

.btn{
  display:inline-block;
  background:var(--orange);
  color:var(--white);
  text-decoration:none;
  font-weight:700;
  padding:14px 30px;
  border:none;
  border-radius:4px;
  font-size:1rem;
  cursor:pointer;
  transition:opacity 0.15s ease;
}

.btn:hover{ opacity:0.88; }

/* Sections */
.section{ padding:90px 0; }

.section.alt{ background:#ece9e3; }

.section h2{
  font-size:1.9rem;
  line-height:1.3;
  margin-bottom:22px;
  max-width:640px;
}

.section p{
  color:var(--muted);
  margin-bottom:16px;
  max-width:640px;
}

/* About */
.about-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:56px;
  align-items:center;
}

.about-grid p{ max-width:520px; }

.about-image{
  display:flex;
  justify-content:center;
}

.about-image img{
  width:100%;
  max-width:460px;
  height:auto;
  filter:drop-shadow(0 18px 28px rgba(0,0,0,0.18));
}

@media (max-width: 800px){
  .about-grid{
    grid-template-columns:1fr;
    gap:32px;
  }
  .about-image{ order:-1; }
  .about-image img{ max-width:80%; }
}

/* Services */
.card-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:28px;
  margin-top:40px;
}

.service-card{
  background:var(--white);
  border-radius:8px;
  padding:32px 26px;
  box-shadow:0 2px 10px rgba(0,0,0,0.06);
}

.card-number{
  color:var(--orange);
  font-weight:800;
  font-size:1.1rem;
  margin-bottom:14px;
}

.service-card h3{
  font-size:1.15rem;
  margin-bottom:12px;
}

.service-card p{
  color:var(--muted);
  font-size:0.95rem;
  margin-bottom:0;
}

/* Blog cards */
.blog-card .post-date{
  color:var(--muted);
  font-size:0.8rem;
  margin-bottom:10px;
}

.blog-card h3{ margin-bottom:10px; }

.blog-card h3 a{
  color:inherit;
  text-decoration:none;
}

.blog-card h3 a:hover{ color:var(--orange); }

.blog-card p{ margin-bottom:16px; }

.blog-card .read-more{
  color:var(--orange);
  font-weight:700;
  font-size:0.9rem;
  text-decoration:none;
}

.blog-card .read-more:hover{ text-decoration:underline; }

/* Why list */
.why-list{
  list-style:none;
  margin-top:30px;
}

.why-list li{
  padding:18px 0;
  border-top:1px solid #ddd;
  color:var(--muted);
}

.why-list li:last-child{ border-bottom:1px solid #ddd; }

.why-list strong{ color:var(--ink); }

/* Contact form */
.contact-form{
  margin-top:36px;
  background:var(--white);
  padding:32px;
  border-radius:8px;
  box-shadow:0 2px 10px rgba(0,0,0,0.06);
}

.hours{
  color:var(--muted);
  font-size:0.9rem;
  margin-top:-10px;
  margin-bottom:16px;
}

.form-row{ margin-bottom:20px; }

.form-row label{
  display:block;
  font-weight:600;
  font-size:0.9rem;
  margin-bottom:6px;
}

.form-row input,
.form-row textarea{
  width:100%;
  padding:12px 14px;
  border:1px solid #ccc;
  border-radius:4px;
  font-family:inherit;
  font-size:0.95rem;
}

.form-row input:focus,
.form-row textarea:focus{
  outline:none;
  border-color:var(--orange);
}

.form-error{
  color:#c94a2c;
  font-size:0.9rem;
  margin-top:16px;
  margin-bottom:0;
}

.form-success{
  margin-top:36px;
  background:var(--white);
  padding:40px 32px;
  border-radius:8px;
  box-shadow:0 2px 10px rgba(0,0,0,0.06);
  text-align:center;
}

.form-success h3{
  font-size:1.4rem;
  margin-bottom:12px;
}

.form-success p:last-child{
  color:var(--muted);
  max-width:440px;
  margin:0 auto;
}

/* Cookie consent banner (floating, bottom-right) */
.cookie-banner{
  position:fixed;
  right:24px;
  bottom:24px;
  left:auto;
  max-width:360px;
  background:var(--charcoal);
  padding:24px;
  border-radius:10px;
  z-index:50;
  box-shadow:0 12px 32px rgba(0,0,0,0.28);
}

@media (max-width: 640px){
  .cookie-banner{
    left:16px;
    right:16px;
    bottom:16px;
    max-width:none;
    padding:20px;
  }
}

.cookie-banner-inner{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:18px;
}

.cookie-banner p{
  margin:0;
  font-size:0.88rem;
  color:#c9cbce;
}

.cookie-banner a{ color:#fff; }

.cookie-actions{
  display:flex;
  align-items:center;
  gap:20px;
  flex-shrink:0;
}

.cookie-banner .btn{
  padding:10px 22px;
  font-size:0.9rem;
}

.cookie-decline{
  color:#c9cbce;
  font-size:0.88rem;
  text-decoration:underline;
  background:none;
  border:none;
  cursor:pointer;
  font-family:inherit;
}

.cookie-decline:hover{ color:#fff; }

/* Footer links */
.footer-links a{
  color:#9a9da3;
  text-decoration:underline;
}

.footer-links a:hover{ color:#fff; }

/* Legal / policy pages */
.legal-content .updated{
  color:var(--muted);
  font-size:0.85rem;
  margin-bottom:32px;
}

.legal-content h1{
  font-size:2rem;
  line-height:1.3;
  margin-bottom:8px;
  color:var(--ink);
}

.legal-content h2{
  font-size:1.2rem;
  margin-top:36px;
  margin-bottom:12px;
  color:var(--ink);
}

.legal-content p{ margin-bottom:16px; }

/* Social links */
.social-links{
  display:flex;
  align-items:center;
  gap:14px;
}

.social-links a{
  color:#9a9da3;
  display:inline-flex;
  transition:color 0.15s ease;
}

.social-links a:hover{ color:var(--orange); }

.social-links svg{ display:block; }

/* Footer */
.site-footer{
  background:var(--charcoal);
  color:#9a9da3;
  padding:26px 0;
  font-size:0.85rem;
}

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

/* Responsive */
@media (max-width: 640px){
  nav a{ margin-left:16px; font-size:0.85rem; }
  .hero{ padding:80px 0 70px; }
  .hero h1{ font-size:1.9rem; }
  .section{ padding:60px 0; }
}
