/* ===========================
   BEE ELECTRIC'S - Main Styles
   Colors: Gold #FFB800, Black #1A1A1A, Blue #1E6FD9
   =========================== */

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

:root {
  --gold: #FFB800;
  --gold-dark: #E5A600;
  --gold-light: #FFC933;
  --black: #1A1A1A;
  --dark: #111111;
  --blue: #1E6FD9;
  --white: #FFFFFF;
  --gray-100: #F8F8F8;
  --gray-200: #EBEBEB;
  --gray-600: #666666;
  --gray-800: #333333;
  --radius: 6px;
  --shadow: 0 2px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ---- UTILITY ---- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-blue { color: var(--blue); }
.bg-dark { background: var(--dark); color: var(--white); }
.bg-gray { background: var(--gray-100); }
.bg-gold { background: var(--gold); }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; }

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-bottom: 48px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--black);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255,184,0,0.35);
}
.btn-black {
  background: var(--black);
  color: var(--white);
}
.btn-black:hover {
  background: var(--gray-800);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  text-decoration: none;
}
.btn-lg { padding: 18px 36px; font-size: 1.15rem; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

/* ---- HEADER ---- */
.site-header {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.header-top {
  background: var(--gold);
  padding: 6px 0;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--black);
}
.header-top a { color: var(--black); }

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1180px;
  margin: 0 auto;
  gap: 20px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo img { width: 54px; height: 54px; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.5px;
}
.logo-tagline {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  color: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.main-nav a:hover { background: rgba(255,255,255,0.12); text-decoration: none; }
.main-nav a.active { color: var(--gold); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.8rem; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  min-width: 240px;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  padding: 8px 0;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  border-radius: 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem;
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: rgba(255,184,0,0.15); color: var(--gold); }

.header-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header-phone {
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-phone:hover { text-decoration: none; color: var(--gold-light); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--black) 0%, #222222 60%, #1A2940 100%);
  color: var(--white);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-pattern.svg') center/cover;
  opacity: 0.04;
}
.hero-content { position: relative; max-width: 720px; }
.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--gold); }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,0.85); margin-bottom: 32px; max-width: 560px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 40px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}
.trust-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,184,0,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ---- CALL STRIP ---- */
.call-strip {
  background: var(--gold);
  padding: 24px 0;
}
.call-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.call-strip-text h3 { font-size: 1.3rem; color: var(--black); margin-bottom: 4px; }
.call-strip-text p { color: rgba(0,0,0,0.7); margin: 0; font-size: 0.95rem; }
.call-strip-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---- LOCATIONS GRID ---- */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.location-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: transform 0.2s, box-shadow 0.2s;
}
.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.location-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.location-card-body { padding: 20px; }
.location-card-state {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-dark);
  margin-bottom: 6px;
}
.location-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.location-card-address {
  font-size: 0.88rem;
  color: var(--gray-600);
  margin-bottom: 12px;
  display: flex;
  gap: 6px;
}
.location-card-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--black);
  text-decoration: none;
  margin-bottom: 16px;
}
.location-card-phone:hover { color: var(--blue); text-decoration: none; }
.location-card-links { display: flex; gap: 10px; }

/* ---- SERVICES GRID ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--gold);
  transition: transform 0.2s;
}
.service-card:hover { transform: translateY(-4px); }
.service-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 16px; }

/* ---- LOCATION PAGE ---- */
.page-hero {
  background: linear-gradient(135deg, var(--black) 0%, #1a2130 100%);
  color: var(--white);
  padding: 60px 0 52px;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero h1 span { color: var(--gold); }
.page-hero p { color: rgba(255,255,255,0.82); font-size: 1.1rem; max-width: 640px; margin-bottom: 28px; }

.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { opacity: 0.5; }

/* Service area pills */
.service-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}
.area-pill {
  background: rgba(255,184,0,0.15);
  color: var(--gold-light);
  border: 1px solid rgba(255,184,0,0.3);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Content sections */
.content-section { padding: 48px 0; }
.content-section + .content-section { border-top: 1px solid var(--gray-200); }

.content-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 768px) { .content-cols { grid-template-columns: 1fr; } }

.content-box {
  background: var(--gray-100);
  border-radius: 10px;
  padding: 28px;
  border-left: 4px solid var(--gold);
}
.content-box h3 { margin-bottom: 12px; }

/* ---- FAQ ---- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  gap: 12px;
  user-select: none;
  background: var(--white);
}
.faq-q:hover { background: var(--gray-100); }
.faq-chevron {
  flex-shrink: 0;
  font-size: 1.1rem;
  transition: transform 0.25s;
  color: var(--gold-dark);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 22px 18px;
  color: var(--gray-800);
  border-top: 1px solid var(--gray-200);
  padding-top: 16px;
}
.faq-item.open .faq-a { display: block; }

/* ---- MAP EMBED ---- */
.map-section { padding: 48px 0; }
.map-embed-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--gold);
}
.map-embed-wrap iframe { display: block; width: 100%; height: 420px; border: none; }

/* ---- CITATIONS ---- */
.citations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.citation-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: border-color 0.2s;
}
.citation-item:hover { border-color: var(--gold); text-decoration: none; }
.citation-icon { font-size: 1.4rem; }

/* ---- BLOG ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--black) 0%, #2a2a2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 22px; }
.blog-tag {
  display: inline-block;
  background: rgba(255,184,0,0.15);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.blog-card h3 { font-size: 1.1rem; margin-bottom: 10px; line-height: 1.35; }
.blog-card h3 a { color: var(--black); text-decoration: none; }
.blog-card h3 a:hover { color: var(--blue); }
.blog-card p { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 16px; }
.blog-meta { font-size: 0.82rem; color: var(--gray-600); display: flex; gap: 14px; }

/* Blog article */
.blog-article {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 20px 80px;
}
.blog-article h1 { margin-bottom: 16px; }
.blog-article h2 { font-size: 1.5rem; margin: 36px 0 14px; color: var(--black); padding-bottom: 8px; border-bottom: 2px solid var(--gold); }
.blog-article h3 { font-size: 1.15rem; margin: 24px 0 10px; color: var(--gray-800); }
.blog-article p { margin-bottom: 1.1rem; line-height: 1.8; }
.blog-article a { color: var(--blue); }
.blog-article ul { margin: 12px 0 20px 24px; }
.blog-article ul li { margin-bottom: 8px; list-style: disc; }
.blog-img { width: 100%; border-radius: 10px; margin: 28px 0; object-fit: cover; max-height: 420px; }
.blog-meta-bar {
  display: flex;
  gap: 16px;
  font-size: 0.88rem;
  color: var(--gray-600);
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
  flex-wrap: wrap;
  align-items: center;
}
.blog-cta-box {
  background: var(--gold);
  border-radius: 10px;
  padding: 28px;
  margin: 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.blog-cta-box h4 { font-size: 1.2rem; margin-bottom: 4px; }
.blog-cta-box p { margin: 0; font-size: 0.95rem; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand img { width: 60px; margin-bottom: 14px; }
.footer-brand p { font-size: 0.9rem; max-width: 280px; margin-bottom: 20px; color: rgba(255,255,255,0.65); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  transition: background 0.2s;
  text-decoration: none;
}
.footer-social a:hover { background: var(--gold); color: var(--black); }

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ---- ABOUT / STATS ---- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-num { font-size: 2.6rem; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.88rem; color: var(--gray-600); margin-top: 6px; }

/* ---- SERVICE AREAS PAGE ---- */
.areas-map-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.area-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 24px;
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow);
}
.area-card-state {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.area-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.area-card p { font-size: 0.88rem; color: var(--gray-600); margin-bottom: 12px; }
.area-card-nearby { font-size: 0.82rem; color: var(--gray-600); margin-bottom: 14px; }
.area-card-nearby strong { color: var(--black); }
.area-card-phone {
  font-weight: 700;
  font-size: 1rem;
  color: var(--black);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}
.area-card-phone:hover { color: var(--blue); text-decoration: none; }

/* ---- MOBILE ---- */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 80vw;
    max-width: 320px;
    height: 100vh;
    background: var(--black);
    padding: 70px 20px 30px;
    z-index: 2000;
    overflow-y: auto;
    gap: 4px;
    box-shadow: -4px 0 40px rgba(0,0,0,0.5);
  }
  .main-nav.open .dropdown-menu {
    display: block;
    position: static;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--gold);
    margin-left: 12px;
    padding: 0;
  }
  .header-main { padding: 10px 16px; }
  .hero-trust { gap: 16px; }
  .call-strip-inner { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .hero { padding: 48px 0 44px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .section { padding: 44px 0; }
  .locations-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .citations-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1999;
}
.nav-overlay.active { display: block; }

/* ---- CLOSE BTN ---- */
.nav-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
  display: none;
}
.main-nav.open .nav-close { display: block; }

/* ---- INTERNAL LINKS BOX ---- */
.internal-links {
  background: var(--gray-100);
  border-radius: 10px;
  padding: 24px 28px;
  margin: 32px 0;
}
.internal-links h4 { margin-bottom: 14px; font-size: 1rem; }
.internal-links-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.internal-links-list a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-800);
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}
.internal-links-list a:hover { border-color: var(--gold); color: var(--black); text-decoration: none; }

/* Notice / warning box */
.notice-box {
  background: #FFF8E1;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.9rem;
  color: #5C4500;
  margin-bottom: 24px;
}

/* Highlight box */
.highlight-box {
  background: var(--black);
  color: var(--white);
  border-radius: 10px;
  padding: 28px;
  margin: 24px 0;
}
.highlight-box h3 { color: var(--gold); margin-bottom: 10px; }
.highlight-box p { color: rgba(255,255,255,0.82); margin: 0; }

/* Print */
@media print {
  .site-header, .call-strip, .site-footer { display: none; }
}
