
*, *::before, *::after { box-sizing: border-box; }
:root {
  --c-slate: #1e293b;
  --c-orange: #f97316;
  --c-grey: #64748b;
  --c-text: #0f172a;
  --c-light: #f1f5f9;
  --c-white: #ffffff;
}
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Lato', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 1rem; line-height: 1.7; color: var(--c-text); background: var(--c-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-slate); text-decoration: none; }
a:hover { color: var(--c-orange); }

h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
}

/* HEADER */
.site-header {
  background: var(--c-slate);
  color: var(--c-white);
  border-bottom: 4px solid var(--c-orange);
}
.header-inner {
  display: flex; align-items: stretch; justify-content: space-between;
  gap: 24px; padding: 0 24px; flex-wrap: wrap;
  max-width: 1280px; margin: 0 auto;
}
.logo {
  display: inline-flex; align-items: center;
  padding: 12px 0;
}
.logo img {
  display: block; max-height: 60px; width: auto; height: auto;
  background: #fff; padding: 4px 8px;
}
.site-nav {
  display: flex; gap: 28px; flex-wrap: wrap; align-items: center;
  flex: 1; justify-content: center;
}
.site-nav a {
  color: #e2e8f0;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 0;
  border-bottom: 3px solid transparent;
}
.site-nav a:hover, .site-nav a.active {
  color: var(--c-orange);
  border-bottom-color: var(--c-orange);
}
.phone-link {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--c-orange);
  color: var(--c-white) !important;
  padding: 14px 20px;
  border-radius: 0;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  align-self: center;
  border: 0;
  text-decoration: none !important;
}
.phone-link:hover {
  background: #ea580c;
  color: var(--c-white) !important;
}

/* HERO — FULL BLEED */
.hero {
  background-image: linear-gradient(rgba(15,23,42,0.65), rgba(15,23,42,0.85)), url("assets/images/best-electrician-metairie-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--c-white);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  border-bottom: 4px solid var(--c-orange);
}
.hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 22px;
  color: var(--c-white);
  letter-spacing: 0.03em;
}
.hero .lead {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.7;
  margin: 0 auto;
  color: #e2e8f0;
  max-width: 820px;
}

/* ARTICLE */
.article {
  background: var(--c-white);
  padding: 64px 0 56px;
}
.article-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  border-left: 3px solid var(--c-orange);
  border-right: 3px solid var(--c-orange);
}
.article h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.2;
  margin: 44px 0 18px;
  color: var(--c-slate);
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.article h2::before {
  content: "▶";
  color: var(--c-orange);
  margin-right: 4px;
  font-size: 0.85em;
}
.article h3 {
  font-size: 1.3rem;
  margin: 32px 0 14px;
  color: var(--c-slate);
}
.article p {
  font-size: 1.04rem;
  line-height: 1.8;
  margin: 0 0 18px;
  color: var(--c-text);
}
.article p a {
  color: var(--c-orange);
  font-weight: 700;
  border-bottom: 1px solid var(--c-orange);
}
.article p a:hover {
  color: var(--c-slate);
  border-bottom-color: var(--c-slate);
}

.article ul {
  list-style: none;
  background: var(--c-light);
  padding: 22px 26px 22px 44px;
  margin: 24px 0 32px;
  border-left: 6px solid var(--c-orange);
}
.article ul li {
  position: relative;
  padding: 8px 0;
  line-height: 1.6;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 1.04rem;
  letter-spacing: 0.01em;
}
.article ul li::before {
  content: "→";
  position: absolute;
  left: -26px;
  color: var(--c-orange);
  font-weight: 700;
  font-size: 1.15rem;
}

.inline-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border: 2px solid var(--c-orange);
  box-shadow: 8px 8px 0 var(--c-slate);
  margin: 32px 0 40px;
  border-radius: 0;
}

.closing {
  background: var(--c-slate);
  color: var(--c-white);
  padding: 32px 34px;
  margin: 44px 0 12px;
  border-left: 6px solid var(--c-orange);
  border-radius: 0;
}
.closing h2 {
  margin-top: 0;
  color: var(--c-white);
}
.closing h2::before {
  color: var(--c-orange);
}
.closing p {
  margin-bottom: 0;
  color: #e2e8f0;
}
.closing p a {
  color: var(--c-orange);
}

/* MAP */
.map-section {
  background: var(--c-light);
  padding: 48px 24px 56px;
}
.map-frame {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  border: 4px solid var(--c-slate);
  background: var(--c-white);
}
.map-frame::before,
.map-frame::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  background: var(--c-orange);
  z-index: 2;
}
.map-frame::before {
  top: -4px;
  left: -4px;
}
.map-frame::after {
  bottom: -4px;
  right: -4px;
}
.map-frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* FOOTER */
.site-footer {
  background: var(--c-slate);
  color: #cbd5e1;
  padding: 48px 0 20px;
  border-top: 4px solid var(--c-orange);
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
}
.footer-col {
  border-top: 1px solid var(--c-orange);
  padding-top: 18px;
}
.footer-col h3 {
  color: var(--c-white);
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  margin: 0 0 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-col p {
  margin: 6px 0;
  line-height: 1.65;
  font-size: 0.95rem;
}
.footer-col a {
  color: var(--c-orange);
}
.footer-col a:hover {
  color: var(--c-white);
}
.footer-bottom {
  max-width: 1140px;
  margin: 32px auto 0;
  padding: 18px 24px 0;
  border-top: 1px solid rgba(249, 115, 22, 0.4);
  text-align: center;
  font-size: 0.85rem;
  color: #94a3b8;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .header-inner { gap: 12px; padding: 10px 16px; }
  .logo img { max-height: 48px; }
  .site-nav { width: 100%; order: 3; gap: 16px; justify-content: flex-start; }
  .site-nav a { font-size: 0.82rem; padding: 6px 0; }
  .phone-link { padding: 10px 14px; font-size: 0.95rem; }
  .hero { min-height: 50vh; padding: 56px 18px; }
  .article { padding: 44px 0 36px; }
  .article-inner { padding: 0 22px; border-left-width: 2px; border-right-width: 2px; }
  .article h2 { margin: 30px 0 14px; }
  .article ul { padding: 18px 18px 18px 36px; }
  .inline-img { box-shadow: 5px 5px 0 var(--c-slate); margin: 24px 0 30px; }
  .closing { padding: 24px 22px; }
  .map-frame iframe { height: 320px; }
  .footer-inner { grid-template-columns: 1fr; gap: 26px; padding: 0 18px; }
  .footer-bottom { padding: 16px 18px 0; }
}
