/* ─── Barricade Pest Control — Main Stylesheet ───────────────────────────── */

:root {
  /* ── Brand palette — pulled straight from the Barricade logo ──
     navy box #032E7E · safety orange #F84E04 · white */
  --navy:        #032E7E;   /* primary brand — the sign box */
  --navy-dark:   #021C54;   /* footer / deepest navy */
  --navy-mid:    #0A3FA8;   /* lighter navy for gradients & hovers */
  --navy-light:  #E7EDF8;   /* tint backgrounds */
  --orange:      #F84E04;   /* accent — the barricade stripes */
  --orange-dark: #C93C00;   /* hover */
  /* Diagonal barricade caution-stripe (the logo's border motif) */
  --stripe: repeating-linear-gradient(-45deg, var(--orange) 0 16px, #ffffff 16px 32px);

  /* Legacy aliases — existing class names (.btn-green, .text-amber, …) keep working */
  --green-dark:  var(--navy);
  --green-mid:   var(--navy-mid);
  --green-light: var(--navy-light);
  --amber:       var(--orange);
  --amber-dark:  var(--orange-dark);

  --text-dark: #1f2937;
  --text-gray: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --radius: 8px;
  --max-width: 1200px;
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

/* ─── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif; color: var(--text-dark); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Typography ─────────────────────────────────────────────────────────── */
h1 { font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.02em; }
h2 { font-family: var(--font-heading); font-size: clamp(1.6rem, 3.5vw, 2.25rem); font-weight: 700; line-height: 1.22; letter-spacing: -0.01em; }
h3 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600; }
h4 { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; }
p { color: var(--text-gray); }

/* ─── Utilities ──────────────────────────────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.text-green { color: var(--green-dark); }
.text-amber { color: var(--amber-dark); }

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.875rem 2rem; border-radius: var(--radius); font-weight: 600; font-size: 1rem; cursor: pointer; transition: all 0.2s; border: 2px solid transparent; white-space: nowrap; }
.btn-primary { background: var(--amber); color: #1a1a1a; border-color: var(--amber); }
.btn-primary:hover { background: var(--amber-dark); border-color: var(--amber-dark); transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-secondary { background: transparent; color: #fff; border-color: #fff; }
.btn-secondary:hover { background: rgba(255,255,255,0.15); }
.btn-green { background: var(--green-dark); color: #fff; border-color: var(--green-dark); }
.btn-green:hover { background: var(--green-mid); border-color: var(--green-mid); transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; color: var(--green-dark); border-color: var(--green-dark); }
.btn-outline:hover { background: var(--green-dark); color: #fff; }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.1rem; }

/* ─── Header / Nav ───────────────────────────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--border); box-shadow: 0 1px 3px rgba(0,0,0,0.07); }
.header-top { background: var(--green-dark); color: #fff; padding: 0.5rem 0; font-size: 0.875rem; }
.header-top .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.header-top a { color: #fff; opacity: 0.9; transition: opacity 0.2s; }
.header-top a:hover { opacity: 1; }
.header-main .container { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; padding-bottom: 1rem; gap: 1rem; }
.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-icon { width: 48px; height: 48px; background: var(--green-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: #fff; flex-shrink: 0; }
.logo-text { font-size: 1.3rem; font-weight: 800; color: var(--green-dark); line-height: 1.1; }
.logo-text span { display: block; font-size: 0.75rem; font-weight: 400; color: var(--text-gray); }
nav { display: flex; gap: 0.25rem; align-items: center; }
nav a { padding: 0.5rem 0.875rem; border-radius: var(--radius); font-weight: 500; font-size: 0.95rem; color: var(--text-dark); transition: all 0.2s; }
nav a:hover, nav a.active { background: var(--green-light); color: var(--green-dark); }
.header-cta { display: flex; gap: 0.75rem; align-items: center; flex-shrink: 0; }
.phone-link { font-size: 1.1rem; font-weight: 700; color: var(--green-dark); display: flex; align-items: center; gap: 0.4rem; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: all 0.3s; }

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero { background: linear-gradient(135deg, rgba(2,20,60,0.92) 0%, rgba(3,46,126,0.82) 55%, rgba(3,46,126,0.86) 100%), url('../images/hero-home.jpg') center / cover no-repeat; background-color: var(--navy); color: #fff; padding: 6rem 0 5rem; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(248,78,4,0.18); border: 1px solid rgba(248,78,4,0.45); color: #FFC9A8; padding: 0.4rem 1rem; border-radius: 100px; font-size: 0.875rem; font-weight: 500; margin-bottom: 1.25rem; }
.hero h1 { color: #fff; margin-bottom: 1.25rem; }
.hero h1 em { color: var(--amber); font-style: normal; }
.hero-sub { font-size: 1.175rem; color: rgba(255,255,255,0.85); margin-bottom: 2rem; max-width: 520px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-trust { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 0.4rem; color: rgba(255,255,255,0.8); font-size: 0.875rem; }
.hero-trust-item svg { color: var(--amber); flex-shrink: 0; }
.hero-card { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); border-radius: 16px; padding: 2rem; }
.hero-card-title { color: #fff; font-size: 1.1rem; font-weight: 600; margin-bottom: 1.25rem; }
.hero-card form { display: flex; flex-direction: column; gap: 0.875rem; }
.hero-card input, .hero-card select, .hero-card textarea { padding: 0.8rem 1rem; border: 1px solid rgba(255,255,255,0.3); border-radius: var(--radius); background: rgba(255,255,255,0.15); color: #fff; font-size: 0.95rem; outline: none; transition: border-color 0.2s; }
.hero-card input::placeholder { color: rgba(255,255,255,0.6); }
.hero-card input:focus, .hero-card select:focus { border-color: var(--amber); }
.hero-card select option { color: var(--text-dark); background: #fff; }

/* ─── Trust Bar ──────────────────────────────────────────────────────────── */
.trust-bar { background: var(--green-dark); color: #fff; padding: 1.25rem 0; }
.trust-bar .container { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 1.25rem; }
.trust-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; font-weight: 500; }
.trust-icon { font-size: 1.25rem; }

/* ─── Services Section ───────────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.service-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 2rem; transition: all 0.2s; position: relative; overflow: hidden; }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); border-color: var(--green-mid); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--stripe); }
.service-icon { width: 56px; height: 56px; background: var(--green-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; margin-bottom: 1.25rem; }
.service-card h3 { margin-bottom: 0.5rem; color: var(--green-dark); }
.service-card p { font-size: 0.95rem; margin-bottom: 1.25rem; }
.service-card a { color: var(--green-dark); font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; gap: 0.3rem; transition: gap 0.2s; }
.service-card a:hover { gap: 0.6rem; }

/* ─── Why Choose Us ──────────────────────────────────────────────────────── */
.why-us { background: var(--bg-light); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; margin-top: 3rem; }
.feature-item { text-align: center; }
.feature-icon { width: 72px; height: 72px; background: var(--green-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 1.25rem; }
.feature-item h3 { margin-bottom: 0.5rem; }

/* ─── Reviews ────────────────────────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.review-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 1.75rem; }
.stars { color: var(--amber); font-size: 1.1rem; margin-bottom: 0.75rem; }
.review-text { font-style: italic; margin-bottom: 1.25rem; font-size: 0.95rem; }
.reviewer { display: flex; align-items: center; gap: 0.75rem; }
.reviewer-avatar { width: 44px; height: 44px; background: var(--green-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--green-dark); font-size: 0.9rem; flex-shrink: 0; }
.reviewer-name { font-weight: 600; font-size: 0.9rem; }
.reviewer-location { font-size: 0.8rem; color: var(--text-gray); }
.google-badge { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; color: var(--text-gray); margin-top: 0.75rem; }

/* ─── Service Areas ──────────────────────────────────────────────────────── */
.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3rem; align-items: start; }
.area-column h3 { color: var(--green-dark); margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--green-light); }
.area-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem; }
.area-list li { font-size: 0.9rem; display: flex; align-items: center; gap: 0.4rem; color: var(--text-gray); }
.area-list li::before { content: '✓'; color: var(--green-mid); font-weight: 700; flex-shrink: 0; }

/* ─── CTA Banner ─────────────────────────────────────────────────────────── */
.cta-banner { background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%); padding: 4rem 0; text-align: center; }
.cta-banner h2 { color: #1a1a1a; margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(0,0,0,0.7); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.75); border-top: 6px solid transparent; border-image: var(--stripe) 6; }
.footer-main { padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand .logo-text { color: #fff; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-col h4 { color: #fff; margin-bottom: 1rem; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a { font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--amber); }
.footer-contact { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact-item { display: flex; gap: 0.5rem; font-size: 0.9rem; }
.footer-contact-item strong { color: #fff; min-width: 20px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.5rem 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.85rem; }
.footer-badges { display: flex; gap: 1rem; align-items: center; }
.badge { background: rgba(255,255,255,0.1); border-radius: 6px; padding: 0.3rem 0.75rem; font-size: 0.8rem; }

/* ─── Page Hero (inner pages) ────────────────────────────────────────────── */
.page-hero { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); color: #fff; padding: 3.5rem 0; text-align: center; }
.page-hero h1 { color: #fff; margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; justify-content: center; margin-bottom: 1rem; font-size: 0.875rem; color: rgba(255,255,255,0.6); }
.breadcrumb a { color: rgba(255,255,255,0.8); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--amber); }

/* ─── Contact Form ───────────────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 3fr 2fr; gap: 4rem; }
.form-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 2.5rem; box-shadow: var(--shadow); }
.form-card h2 { margin-bottom: 1.75rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 500; font-size: 0.9rem; margin-bottom: 0.4rem; color: var(--text-dark); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.8rem 1rem; border: 1px solid var(--border); border-radius: var(--radius); font-size: 0.95rem; color: var(--text-dark); outline: none; transition: border-color 0.2s; font-family: inherit; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy-mid); box-shadow: 0 0 0 3px rgba(10,63,168,0.15); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; }
.contact-info-card { display: flex; flex-direction: column; gap: 1.5rem; }
.info-block { background: var(--bg-light); border-radius: 12px; padding: 1.5rem; }
.info-block h3 { color: var(--green-dark); margin-bottom: 1rem; }
.info-row { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; font-size: 0.95rem; }
.info-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem; font-size: 0.875rem; }
.hours-row { display: contents; }
.hours-day { color: var(--text-gray); }
.hours-time { font-weight: 500; color: var(--text-dark); }

/* ─── Services Page ──────────────────────────────────────────────────────── */
.service-detail { padding: 4rem 0; border-bottom: 1px solid var(--border); }
.service-detail:last-child { border-bottom: none; }
.service-detail-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.service-detail-layout.reverse { direction: rtl; }
.service-detail-layout.reverse > * { direction: ltr; }
/* Image slot beside each service. Holds a real photo when present; otherwise shows
   a clean branded icon tile (no more giant emoji). To use a photo, put an <img> inside. */
.service-detail-img { background: linear-gradient(135deg, var(--green-mid), var(--green-dark)); border-radius: 16px; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.service-detail-img svg { width: 4.5rem; height: 4.5rem; color: rgba(255,255,255,0.92); stroke-width: 1.4; }
.service-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }
.team-avatar svg { width: 2.25rem; height: 2.25rem; color: var(--green-dark); }
.service-detail h2 { color: var(--green-dark); margin-bottom: 1rem; }
.service-detail p { margin-bottom: 1rem; }
.service-includes { margin: 1.25rem 0; }
.service-includes h4 { margin-bottom: 0.75rem; }
.service-includes ul { display: flex; flex-direction: column; gap: 0.4rem; }
.service-includes li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.95rem; color: var(--text-gray); }
.service-includes li::before { content: '✓'; color: var(--green-mid); font-weight: 700; }

/* ─── About Page ─────────────────────────────────────────────────────────── */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img { background: var(--green-light); border-radius: 16px; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: 5rem; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.stat-card { text-align: center; background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; }
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--green-dark); }
.stat-label { font-size: 0.875rem; color: var(--text-gray); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.team-card { text-align: center; }
.team-avatar { width: 100px; height: 100px; border-radius: 50%; background: var(--green-light); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; margin: 0 auto 1rem; }
.team-card h3 { margin-bottom: 0.25rem; }
.team-card .role { color: var(--green-dark); font-size: 0.875rem; font-weight: 500; margin-bottom: 0.5rem; }
.certifications { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-top: 2rem; }
.cert-card { background: var(--bg-light); border-radius: 10px; padding: 1.25rem; display: flex; align-items: center; gap: 0.75rem; }
.cert-icon { font-size: 1.5rem; flex-shrink: 0; }
.cert-text h4 { font-size: 0.9rem; margin-bottom: 0.1rem; }
.cert-text p { font-size: 0.8rem; }

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .service-detail-layout { grid-template-columns: 1fr; }
  .service-detail-layout.reverse { direction: ltr; }
  .about-story { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  nav { display: none; }
  nav.open { display: flex; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: #fff; z-index: 200; justify-content: center; align-items: center; gap: 1.5rem; }
  nav.open a { font-size: 1.25rem; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-bar .container { justify-content: center; }
}

@media (max-width: 480px) {
  .header-cta .btn { display: none; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
  .about-stats { grid-template-columns: 1fr; }
}

/* ─── Tier 1: heading font, Lucide icons, hero photo ───────────────────────── */
.logo-text { font-family: var(--font-heading); }
/* Lucide swaps <i data-lucide> for an inline <svg> inside the existing colored
   icon containers; these size the rendered SVG. SVGs use currentColor. */
.logo-icon svg   { width: 1.5rem;  height: 1.5rem;  stroke-width: 2; }
.service-icon svg{ width: 1.85rem; height: 1.85rem; color: var(--green-dark); stroke-width: 1.7; }
.feature-icon svg{ width: 2rem;    height: 2rem;    color: var(--green-dark); stroke-width: 1.7; }
.trust-icon      { width: 1.25rem; height: 1.25rem; stroke-width: 2.2; }
.info-icon svg, .cert-icon svg { width: 1.3rem; height: 1.3rem; color: var(--green-dark); }
.ic { width: 1.05em; height: 1.05em; vertical-align: -0.16em; stroke-width: 2.2; flex-shrink: 0; }

@media (max-width: 768px) {
  .hero {
    background: linear-gradient(135deg, rgba(2,20,60,0.93), rgba(3,46,126,0.88)), url('../images/hero-home-mobile.jpg') center / cover no-repeat;
    background-color: var(--navy);
  }
}

/* ─── Brand: logo image + barricade-stripe accents ─────────────────────────── */
/* The logo PNG already carries the "Barricade Pest Control" wordmark, so the
   header/footer use the image instead of the old icon + text lockup. */
.logo-img { height: 50px; width: auto; display: block; }
@media (max-width: 480px) { .logo-img { height: 42px; } }

/* On the dark navy footer the logo sits on a white "sign plate" so its own navy
   box doesn't disappear into the background. */
.site-footer .logo-img { height: 46px; background: #fff; padding: 9px 13px; border-radius: 12px; box-shadow: var(--shadow); }

/* A thin caution-stripe under the sticky header echoes the logo's barricade border. */
.site-header::after { content: ''; display: block; height: 4px; background: var(--stripe); }
