:root {
  /* Rugged Premium Palette */
  --bg: #0b0f0c;
  /* Deepest Forest Black */
  --bg-alt: #161e18;
  /* Dark Forest */
  --bg-panel: #1c2620;
  /* Panel Green/Gray */

  --accent: #f58e17;
  /* Safety Orange / Golden Amber */
  --accent-hover: #ff9d2e;
  --accent-soft: #c97210;

  --text: #e8ece9;
  /* Off-white smoke */
  --muted: #8fa096;
  /* Mossy Gray */

  --border: #2c3a32;
  /* Dark Green/Brown Border */
  --border-light: #3e5046;

  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.6);
  --shadow-warm: 0 10px 30px rgba(20, 15, 10, 0.4);

  --radius: 8px;
  --radius-pill: 999px;
  --max-width: 1100px;

  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-heading: "Georgia", "Times New Roman", Times, serif;
  /* Classic, sturdy feel */
}

/* Global reset-ish */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;

  /* Subtle dark woodgrain/noise background */
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0, transparent 60%),
    repeating-linear-gradient(90deg,
      #161e18,
      #161e18 4px,
      #111612 4px,
      #111612 8px);
}

/* Utility containers */
.section-inner,
.header-inner,
.footer-inner,
.cta-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: #fff;
  margin-top: 0;
  font-weight: 700;
  letter-spacing: 0.02em;
}

h1 {
  font-size: 1.7rem;
}

h2 {
  font-size: 1.9rem;
  margin-bottom: 0.75rem;
  color: var(--accent);
  /* Accent headers */
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 65ch;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary {
  background: var(--accent);
  color: #1a110a;
  box-shadow: 0 4px 15px rgba(245, 142, 23, 0.3);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 142, 23, 0.4);
}

.btn-accent {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.btn-accent:hover {
  background: var(--accent);
  color: #1a110a;
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--muted);
}

.btn-ghost:hover {
  border-color: var(--text);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.btn-block {
  width: 100%;
  display: flex;
}

/* Header */
.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(11, 15, 12, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-logo {
  height: 150px;
  width: auto;
  border-radius: 0;      /* let it breathe */
  background: transparent;
  padding: 0;
  border: none;
}

.brand-text h1 {
  margin: 0;
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
}

.tagline {
  margin: 0;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.header-cta {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.license-line {
  margin: 0.3rem 0 0;
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 500;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  align-items: center;
  gap: 2rem;
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}

/* Green gradient overlay for hero area */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(23, 44, 30, 0.8), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-left: auto;
  max-width: 600px;
}

.hero-content h2 {
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: #fff;
  /* White title for impact */
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  margin: 0 0 1.5rem;
  font-size: 1.25rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Sections */
section {
  padding: 3rem 0;
}

.winter-callout {
  background: linear-gradient(to right, #131a16, #0d1210);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.winter-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.winter-text ul {
  padding-left: 1.2rem;
  margin: 1rem 0;
  list-style: none;
}

.winter-text li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
  color: var(--text);
}

.winter-text li::before {
  content: "✓";
  color: var(--accent);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.winter-cta-card {
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  background: linear-gradient(135deg, var(--bg-panel), #141b16);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.winter-cta-title {
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  margin: 0 0 0.5rem;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-point {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 1.5rem;
  transition: transform 0.2s;
}

.about-point:hover {
  transform: translateY(-3px);
  border-color: var(--border-light);
}

.about-point h3 {
  color: var(--accent);
}

/* Services */
.services {
  background: #0e1210;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card {
  border-radius: var(--radius);
  background: var(--bg-panel);
  border: 1px solid var(--border);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
}

.service-card h3 {
  border-bottom: 2px solid var(--border);
  padding-bottom: 0.5rem;
  display: inline-block;
  margin-bottom: 0.8rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
  margin: 0;
  position: relative;

}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  opacity: 0.9;
}

.gallery-item:hover img {
  transform: scale(1.05);
  opacity: 1;
}

.gallery-item figcaption {
  padding: 0.8rem;
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

/* CTA strip */
.cta-strip {
  background: var(--accent);
  /* Full accent strip for visibility */
  color: #1a110a;
  padding: 3rem 0;
}

.cta-strip h2 {
  color: #1a110a;
  /* Dark text on orange */
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-strip p {
  color: #3d2817;
  font-weight: 500;
  font-size: 1.1rem;
  margin: 0;
}

.cta-strip .btn-primary {
  background: #1a110a;
  color: #fff;
  border-color: #1a110a;
}

.cta-strip .btn-primary:hover {
  background: #000;
  transform: translateY(-2px);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  font-size: 1.15rem;
}

.contact-list li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-list a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

.contact-list a:hover {
  text-decoration: underline;
}

.contact-note {
  border-radius: var(--radius);
  border: 2px solid var(--border);
  /* Stronger border */
  background: var(--bg-frame);
  padding: 1.5rem;
  position: relative;
  background-clip: padding-box;
}

.contact-note::before {
  /* Dotted border effect or something rugged */
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 10px;
  border: 1px dashed var(--border-light);
  z-index: -1;
}

.contact-note h3 {
  color: var(--accent);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: #050706;
  /* Almost black */
  padding: 2rem 0;
  margin-top: 4rem;
}

.footer-inner {
  text-align: center;
}

.footer-subtext {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 2rem;
    text-align: center;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-image {
    order: -1;
    margin: 0 auto;
    max-width: 500px;
  }

  .about-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.4rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .header-inner {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .header-cta {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .winter-grid {
    grid-template-columns: 1fr;
  }

  .cta-strip-inner {
    flex-direction: column;
    text-align: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Estimator Section */
.estimator {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.estimator-card {
  max-width: 700px;
  margin: 2rem auto 0;
  background: var(--bg-panel);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #fff;
}

.form-control {
  width: 100%;
  padding: 0.8rem;
  background: #0d1210;
  color: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 1rem;
  font-family: var(--font-body);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
}

.form-checks {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.check-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.result-box {
  background: #141b16;
  border: 1px dashed var(--accent);
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  margin-top: 2rem;
}

.price-display {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0.5rem 0;
  font-family: var(--font-heading);
}

.disclaimer {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

@media (max-width: 600px) {
  .estimator-card {
    padding: 1.25rem;
  }

  .price-display {
    font-size: 2rem;
  }
}
