/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:  #f97316;
  --orange-dark: #c2410c;
  --yellow:  #fbbf24;
  --black:   #111111;
  --dark:    #1a1a1a;
  --gray:    #4b5563;
  --light:   #f9fafb;
  --white:   #ffffff;
  --border:  #e5e7eb;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── NAV ── */
header { position: sticky; top: 0; z-index: 100; background: var(--black); box-shadow: 0 2px 8px rgba(0,0,0,.4); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo { display: flex; flex-direction: column; line-height: 1.1; cursor: pointer; }
.logo-main { font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 700; color: var(--orange); letter-spacing: 1px; }
.logo-sub  { font-family: 'Oswald', sans-serif; font-size: 11px; color: #aaa; letter-spacing: 2px; }

.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 600; color: #ccc; text-transform: uppercase; letter-spacing: .5px; transition: color .2s; }
.nav-links a:hover { color: var(--orange); }

.nav-cta {
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 4px;
  transition: background .2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--orange-dark); }

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--dark);
  padding: 8px 0 16px;
  border-top: 1px solid #333;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 14px 24px;
  color: #ccc;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid #2a2a2a;
  min-height: 48px;
  display: flex;
  align-items: center;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile .mobile-call {
  color: var(--white);
  background: var(--orange);
  margin: 12px 20px 0;
  border-radius: 6px;
  justify-content: center;
  font-size: 17px;
  border-bottom: none;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255,255,255,.015) 2px, rgba(255,255,255,.015) 4px),
    repeating-linear-gradient(-45deg, transparent, transparent 2px, rgba(255,255,255,.01) 2px, rgba(255,255,255,.01) 4px);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,.3) 100%);
}

.hero::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: var(--orange);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 56px 24px;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(38px, 9vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.hero-sub {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 28px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 28px;
  border-radius: 6px;
  transition: background .2s;
  display: inline-block;
  text-align: center;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-primary:hover { background: var(--orange-dark); }

.btn-outline {
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 24px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 6px;
  transition: border-color .2s, background .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  text-align: center;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #aaa;
}
.hero-badges span { display: flex; align-items: center; gap: 4px; }

/* ── PHONE BAR ── */
.phone-bar {
  background: var(--orange);
  text-align: center;
  padding: 14px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  flex-wrap: wrap;
}
.phone-bar a {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--white);
  border-bottom: 2px solid rgba(255,255,255,.4);
}

/* ── SECTIONS ── */
.section { padding: 72px 0; }
.section-dark { background: var(--dark); }
.section-yellow { background: var(--yellow); }

.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(26px, 5vw, 42px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 14px;
  line-height: 1.1;
}
.section-title.light { color: var(--white); }

.section-sub {
  font-size: 15px;
  color: var(--gray);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-label,
.text-center .section-title,
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  border-top: 4px solid var(--orange);
  transition: box-shadow .2s;
}
.service-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.1); }

.service-icon { font-size: 30px; margin-bottom: 12px; }

.service-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 19px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 8px;
  color: var(--black);
}
.service-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.why-item { padding: 4px 0; }

.why-num {
  font-family: 'Oswald', sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--orange);
  opacity: .5;
  line-height: 1;
  margin-bottom: 6px;
}

.why-item h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 19px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: .5px;
}
.why-item p { font-size: 14px; color: #aaa; line-height: 1.7; }

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.gallery-placeholder {
  aspect-ratio: 4/3;
  background: var(--light);
  border: 2px dashed var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-inner { text-align: center; color: #aaa; }
.gallery-icon { font-size: 32px; display: block; margin-bottom: 6px; }
.gallery-inner p { font-size: 13px; font-weight: 600; color: var(--gray); }
.gallery-inner small { font-size: 12px; color: #aaa; }

.gallery-note {
  text-align: center;
  font-size: 14px;
  color: var(--gray);
  background: var(--light);
  padding: 14px 20px;
  border-radius: 6px;
  border-left: 4px solid var(--orange);
}

/* ── SERVICE AREA ── */
.section-yellow .section-title { color: var(--black); }
.section-yellow .section-label { color: #92400e; }

.area-towns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
}

.area-towns span {
  background: rgba(0,0,0,.1);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}

/* ── CONTACT ── */
.contact-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 600px;
  margin: 0 auto;
}

.contact-card-big {
  background: var(--black);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  width: 100%;
  border-top: 5px solid var(--orange);
}

.contact-icon-big { font-size: 40px; margin-bottom: 12px; }
.contact-card-label { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: #888; margin-bottom: 10px; font-weight: 600; }

.contact-phone-big {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(36px, 8vw, 52px);
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 2px;
  margin-bottom: 10px;
  transition: color .2s;
}
.contact-phone-big:hover { color: var(--white); }

.contact-card-sub { font-size: 14px; color: #777; }

.contact-row {
  display: flex;
  gap: 20px;
  width: 100%;
}

.contact-card {
  flex: 1;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.contact-card div { display: flex; flex-direction: column; gap: 3px; }
.contact-card strong { font-size: 11px; text-transform: uppercase; letter-spacing: .5px; color: var(--gray); }
.contact-card span { font-size: 15px; font-weight: 600; color: var(--black); }
.contact-card small { font-size: 12px; color: #aaa; }

/* ── FOOTER ── */
.footer { background: var(--black); color: #aaa; padding: 48px 0 0; }

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #333;
}

.footer-brand .logo-main { font-size: 18px; margin-bottom: 10px; }
.footer-brand p { font-size: 13px; line-height: 1.8; color: #666; }

.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-links a, .footer-contact a { font-size: 14px; color: #888; transition: color .2s; }
.footer-links a:hover, .footer-contact a:hover { color: var(--orange); }

.footer-bottom {
  padding: 16px 24px;
  text-align: center;
  font-size: 12px;
  color: #444;
}

/* ── STICKY MOBILE CALL BUTTON ── */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--orange);
  color: var(--white);
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 16px 20px;
  padding-bottom: max(16px, env(safe-area-inset-bottom));
  text-transform: uppercase;
}

/* ── TABLET (768px) ── */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content { padding: 48px 20px; }
  .hero-sub { font-size: 15px; }

  .contact-row { flex-direction: column; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }

  .section { padding: 56px 0; }

  .sticky-call { display: block; }

  /* Push footer up so sticky button doesn't cover it */
  .footer { padding-bottom: 70px; }
}

/* ── PHONE (480px) ── */
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; }

  .phone-bar { flex-direction: column; gap: 4px; font-size: 14px; }
  .phone-bar a { font-size: 24px; }

  .contact-form { padding: 20px 16px; }

  .footer-inner { grid-template-columns: 1fr; gap: 24px; }

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