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

:root {
  --bg-dark: #0a0a0a;
  --bg-gray: #1a1a1a;
  --orange: #e8820c;
  --gold: #f5a623;
  --white: #ffffff;
  --muted: #cccccc;
  --gradient: linear-gradient(135deg, #e8820c, #f5a623);
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
  background: var(--bg-dark);
  color: var(--white);
  line-height: 1.6;
}

a { color: var(--gold); text-decoration: none; }

/* ---- HEADER ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--orange);
  padding: 0 1.5rem;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.header-brand {
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-phone {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}

.header-phone:hover { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

/* Always-visible header social icons (sit between nav and phone). */
.header-social {
  display: flex;
  gap: 0.5rem;
  margin-left: auto;
  margin-right: 1rem;
}
.header-social a {
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid #2a2a2a;
  border-radius: 50%;
  transition: color 0.2s, border-color 0.2s;
}
.header-social a:hover { color: var(--gold); border-color: var(--gold); }
.header-social svg { width: 15px; height: 15px; fill: currentColor; }

.nav-links a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---- HERO ---- */
.hero {
  background: var(--bg-dark) radial-gradient(ellipse 60% 55% at 50% 38%, rgba(232, 130, 12, 0.18) 0%, rgba(232, 130, 12, 0.06) 40%, transparent 75%);
  text-align: center;
  padding: 4rem 1.5rem 5rem;
}

.hero-logo {
  max-width: 500px;
  width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
  mix-blend-mode: lighten;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.hero .tagline {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--gradient);
  color: var(--bg-dark);
  font-weight: 800;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232, 130, 12, 0.4);
  color: var(--bg-dark);
}

/* ---- SECTIONS ---- */
.section {
  padding: 5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-alt { background: var(--bg-gray); }
.section-alt .section { padding-left: 1.5rem; padding-right: 1.5rem; }

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.section-title span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

/* ---- SERVICES ---- */
/* 6-column track so each card spans 2; lets us offset the orphan
   row of 2 cards into the middle so the bottom doesn't look ragged. */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

.service-card { grid-column: span 2; }
.service-card:nth-child(4) { grid-column: 2 / span 2; }
.service-card:nth-child(5) { grid-column: 4 / span 2; }

.service-card {
  background: var(--bg-dark);
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

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

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

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

/* ---- ABOUT ---- */
.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.about-content strong {
  color: var(--gold);
}

.highlight-bar {
  width: 60px;
  height: 4px;
  background: var(--gradient);
  margin: 0 auto 2rem;
  border-radius: 2px;
}

/* ---- SERVICE AREA ---- */
.area-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.area-content p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  list-style: none;
}

.area-list li {
  background: var(--bg-gray);
  border: 1px solid #2a2a2a;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

/* ---- FOOTER ---- */
.footer {
  background: var(--bg-dark);
  border-top: 2px solid var(--orange);
  padding: 3rem 1.5rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.footer-col p, .footer-col li {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.footer-col ul { list-style: none; }

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.social-links a {
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #2a2a2a;
  border-radius: 50%;
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
}
.social-links a:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.social-links svg { width: 18px; height: 18px; fill: currentColor; }

.footer-cta {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #2a2a2a;
}

.footer-cta p {
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #2a2a2a;
  color: #666;
  font-size: 0.85rem;
}

/* ---- MOBILE ---- */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 2px solid var(--orange);
    gap: 0;
  }

  .nav-links.open { display: flex; }

  .nav-links li { padding: 0.75rem 0; border-bottom: 1px solid #1a1a1a; }
  .nav-links li:last-child { border-bottom: none; }

  .hero h1 { font-size: 1.75rem; }
  .hero .tagline { font-size: 1rem; }
  .hero-logo { max-width: 240px; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) { grid-column: auto; }

  .section { padding: 3rem 1.25rem; }
  .section-title { font-size: 1.5rem; }

  .footer-inner { grid-template-columns: 1fr; text-align: center; }

  /* Center the footer social row when columns flatten to one. */
  .social-links { justify-content: center; }

  /* Mobile header: social on the left, phone + hamburger on the right. */
  .header-inner { justify-content: flex-start; }
  .header-social {
    margin-left: 0;     /* undo desktop right-push */
    margin-right: auto; /* shove phone+hamburger to the far right */
    gap: 0.35rem;
  }
  .header-social a { width: 28px; height: 28px; }
  .hamburger { margin-left: 1rem; } /* breathing room between phone and stack */

  .btn { width: 100%; text-align: center; padding: 1rem; }

  .area-list li { font-size: 0.85rem; padding: 0.4rem 1rem; }
}

/* ---- TOWN PAGE ADDITIONS ---- */
.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem 0;
  font-size: 0.85rem;
  color: #999;
}
.breadcrumb a { color: #999; }
.breadcrumb a:hover { color: var(--gold); }

.hero-logo-sm {
  max-width: 170px;
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
  mix-blend-mode: lighten;
}

.header-brand { text-decoration: none; }

.area-list li { padding: 0; }
.area-list li a {
  display: block;
  padding: 0.5rem 1.25rem;
  color: inherit;
}
.area-list li:hover { border-color: var(--orange); }
.area-list li:hover a { color: var(--gold); }
