/* ============================================================
   VEILLANCE SECURITY & ELECTRONICS LLC — Global Stylesheet
   Shared across all pages. Hand-tweak freely; sections are
   labeled. Brand palette lives in :root below.
   ============================================================ */

/* ---------- 1. BRAND TOKENS (colors, type, spacing) ---------- */
:root {
  /* Primary palette */
  --navy:          #0F1726;  /* main dark background, footer */
  --navy-2:        #1F4E79;  /* navy variant for headings */
  --chameleon:     #3FCAB6;  /* hero accents, buttons, links */
  --deep-blue:     #1B3B6F;  /* secondary headers */
  --circuit-glow:  #3FE5C5;  /* hover, active states, callouts */
  --white:         #FFFFFF;

  /* Supporting */
  --body-grey:     #555555;
  --panel-grey:    #F5F5F5;
  --info-bg-blue:  #E8F0F9;
  --highlight-teal:#D4F0E9;

  /* Derived shades for depth */
  --navy-deep:     #0A0F1A;  /* darker than navy, hero base */
  --navy-panel:    #16203A;  /* raised cards on dark */
  --line-dark:     rgba(255,255,255,0.10);
  --line-light:    #E4E8EF;
  --text-muted:    #9AA7BD;  /* muted text on dark */
  --text-body:     #2A3242;  /* body text on light */

  /* Type */
  --font: 'Inter', 'Arial', 'Helvetica', sans-serif;

  /* Layout */
  --maxw: 1180px;
  --radius: 14px;
  --shadow: 0 10px 40px rgba(15,23,38,0.12);
  --shadow-teal: 0 8px 30px rgba(63,202,182,0.25);
}

/* ---------- 2. RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--deep-blue); text-decoration: none; }
a:hover { color: var(--chameleon); }
h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p  { margin-bottom: 1rem; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { padding: 84px 0; }

/* ---------- 3. BUTTONS ---------- */
.btn {
  display: inline-block; font-weight: 700; font-size: 1rem;
  padding: 15px 30px; border-radius: 10px; cursor: pointer;
  border: 2px solid transparent; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-align: center;
}
.btn-primary { background: var(--chameleon); color: var(--navy); }
.btn-primary:hover { background: var(--circuit-glow); color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-teal); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.35); }
.btn-ghost:hover { border-color: var(--chameleon); color: var(--chameleon); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--deep-blue); border-color: var(--deep-blue); }
.btn-outline:hover { background: var(--deep-blue); color: var(--white); }

/* ---------- 4. HEADER / NAV ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line-light);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.nav-logo img { height: 56px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-links a { color: var(--navy); font-weight: 600; font-size: 0.98rem; }
.nav-links a:hover, .nav-links a.active { color: var(--deep-blue); }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-phone { color: var(--navy); font-weight: 700; white-space: nowrap; }
.nav-phone:hover { color: var(--chameleon); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--navy); margin: 5px 0; border-radius: 3px; transition: .25s; }

/* ---------- 5. HERO ---------- */
.hero {
  background:
    radial-gradient(1200px 500px at 75% -10%, rgba(63,202,182,0.18), transparent 60%),
    radial-gradient(900px 500px at 10% 110%, rgba(27,59,111,0.55), transparent 60%),
    linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, #12203b 100%);
  color: var(--white);
  position: relative; overflow: hidden;
  padding: 110px 0 96px;
}
/* faint circuit grid texture */
.hero::before {
  content:""; position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(63,202,182,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(63,202,182,0.05) 1px, transparent 1px);
  background-size: 46px 46px; mask-image: radial-gradient(circle at 70% 30%, #000, transparent 70%);
  pointer-events:none;
}
.hero .container { position: relative; z-index: 2; max-width: 880px; }
.hero h1 { color: var(--white); }
.hero .lead { font-size: clamp(1.15rem, 2.2vw, 1.5rem); color: #DCE4F0; font-weight: 600; margin-top: 18px; }
.hero .subline { color: var(--text-muted); max-width: 620px; margin-top: 14px; font-size: 1.05rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.eyebrow { display:inline-block; color: var(--chameleon); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 18px; }

/* ---------- 6. TRUST STRIP ---------- */
.trust { background: var(--navy-panel); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); padding: 0; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 54px; padding: 22px 24px; }
.trust-item { display: flex; align-items: center; gap: 11px; color: #E7ECF4; font-weight: 600; }
.trust-item .tick { color: var(--chameleon); font-size: 1.3rem; line-height: 1; }

/* ---------- 7. GENERIC SECTION HEADINGS ---------- */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.section-head .eyebrow { color: var(--deep-blue); }
.section-head p { color: var(--body-grey); font-size: 1.1rem; }
.bg-light { background: var(--panel-grey); }

/* ---------- 8. TWO-DOOR SPLIT (business / home) ---------- */
.split { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 26px; }
.door { border-radius: var(--radius); padding: 44px 40px; color: var(--white); position: relative; overflow: hidden; min-height: 320px; display: flex; flex-direction: column; justify-content: flex-end; }
.door-biz { background: linear-gradient(150deg, var(--deep-blue), var(--navy)); box-shadow: var(--shadow); }
.door-home { background: linear-gradient(150deg, #1c6f63, #14463f); box-shadow: var(--shadow); }
.door .eyebrow { color: var(--circuit-glow); }
.door h3 { color: var(--white); font-size: 1.6rem; }
.door p { color: rgba(255,255,255,0.85); margin: 12px 0 22px; }
.door .door-link { color: var(--circuit-glow); font-weight: 700; }
.door .door-link:hover { color: var(--white); }

/* ---------- 9. SERVICE TILES ---------- */
.tile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tile {
  background: var(--white); border: 1px solid var(--line-light); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--chameleon); }
.tile .ico { width: 50px; height: 50px; border-radius: 12px; background: var(--highlight-teal); color: var(--deep-blue); display: grid; place-items: center; margin-bottom: 16px; }
.tile .ico svg { width: 26px; height: 26px; }
.tile h3 { font-size: 1.22rem; margin-bottom: 8px; }
.tile p { color: var(--body-grey); font-size: 0.98rem; margin: 0; }
.tile .badge-niche { display:inline-block; margin-top:14px; font-size:0.72rem; font-weight:700; letter-spacing:0.06em; text-transform:uppercase; color: var(--deep-blue); background: var(--info-bg-blue); padding: 4px 10px; border-radius: 20px; }

/* ---------- 10. AJAX WEDGE (feature band) ---------- */
.feature {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white); border-radius: 0;
}
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.feature h2 { color: var(--white); }
.feature .lead-line { color: var(--chameleon); font-weight: 700; font-size: 1.1rem; }
.feature p { color: #C9D3E4; }
.feature ul { list-style: none; margin: 20px 0 28px; }
.feature li { padding: 8px 0 8px 30px; position: relative; color: #DCE4F0; }
.feature li::before { content: "▹"; position: absolute; left: 0; color: var(--chameleon); font-weight: 700; }
.feature-visual { background: linear-gradient(150deg, #14233f, #0c1525); border: 1px solid var(--line-dark); border-radius: var(--radius); min-height: 320px; display: grid; place-items: center; padding: 30px; position: relative; }
.feature-visual .pill { color: var(--text-muted); font-size: 0.85rem; text-align: center; }
.no-fee-badge { font-size: clamp(1.6rem,3vw,2.3rem); font-weight: 800; color: var(--white); text-align:center; }
.no-fee-badge span { color: var(--chameleon); }

/* ---------- 11. WHY US ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why-card { padding: 28px 24px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line-light); }
.why-card h3 { font-size: 1.12rem; margin-bottom: 8px; color: var(--deep-blue); }
.why-card p { color: var(--body-grey); font-size: 0.96rem; margin: 0; }

/* ---------- 12. ON-SITE QUOTE BAND ---------- */
.onsite { background: var(--info-bg-blue); }
.onsite-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.onsite h2 { color: var(--navy); }
.onsite p { color: var(--text-body); }
.onsite .steps { display: flex; gap: 14px; margin-top: 20px; flex-wrap: wrap; }
.onsite .step { background: var(--white); border-radius: 12px; padding: 16px 18px; flex: 1; min-width: 140px; border: 1px solid var(--line-light); }
.onsite .step b { color: var(--deep-blue); display: block; font-size: 0.95rem; }
.onsite .step small { color: var(--body-grey); }

/* ---------- 13. TESTIMONIALS ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote-card { background: var(--white); border: 1px solid var(--line-light); border-radius: var(--radius); padding: 28px; }
.quote-card .stars { color: var(--chameleon); letter-spacing: 2px; margin-bottom: 10px; }
.quote-card p { font-style: italic; color: var(--text-body); }
.quote-card .who { font-weight: 700; color: var(--navy); font-style: normal; margin-top: 8px; }

/* ---------- 14. FINAL CTA ---------- */
.cta {
  background: linear-gradient(120deg, var(--deep-blue), var(--chameleon));
  color: var(--white); text-align: center;
}
.cta h2 { color: var(--white); }
.cta p { color: rgba(255,255,255,0.92); font-size: 1.1rem; max-width: 560px; margin: 10px auto 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta .btn-primary { background: var(--white); color: var(--deep-blue); }
.cta .btn-primary:hover { background: var(--navy); color: var(--white); }

/* ---------- 15. FOOTER ---------- */
.site-footer { background: var(--navy-deep); color: #B9C3D6; padding: 64px 0 28px; border-top: 1px solid var(--line-dark); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 38px; }
.footer-logo img { height: 54px; margin-bottom: 16px; }
.site-footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 14px; letter-spacing: 0.02em; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: #B9C3D6; }
.site-footer a:hover { color: var(--chameleon); }
.footer-contact p { margin-bottom: 8px; font-size: 0.96rem; }
.footer-bottom { border-top: 1px solid var(--line-dark); margin-top: 40px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.86rem; color: var(--text-muted); }
.footer-social { display: flex; gap: 14px; }
.footer-social a { color: var(--text-muted); }
.footer-social a:hover { color: var(--chameleon); }

/* ---------- 16. RESPONSIVE ---------- */
@media (max-width: 960px) {
  .feature-grid, .onsite-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .tile-grid, .quotes { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-links { display: none; position: absolute; top: 80px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 16px 24px; gap: 4px; border-bottom: 1px solid var(--line-light); box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 0; border-bottom: 1px solid var(--line-light); }
  .nav-toggle { display: block; }
  .nav-phone { display: none; }
  section { padding: 60px 0; }
  .tile-grid, .quotes, .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   17. HERO BRAND LOCKUP (centered chameleon, top-middle)
   ============================================================ */
.hero .container { text-align: center; }
.hero-brand { display: flex; flex-direction: column; align-items: center; margin: 0 auto 14px; }
.hero-brand img { width: min(500px, 84%); height: auto; margin: 0 auto; filter: drop-shadow(0 12px 44px rgba(63,202,182,0.18)); }
.hero .subline { margin-left: auto; margin-right: auto; }
.hero-actions { justify-content: center; }

/* ============================================================
   18. INNER-PAGE BANNER (Services, About, etc.)
   ============================================================ */
.page-hero {
  background:
    radial-gradient(900px 360px at 80% -20%, rgba(63,202,182,0.16), transparent 60%),
    linear-gradient(160deg, var(--navy-deep), var(--navy) 70%);
  color: var(--white); padding: 64px 0 56px; text-align: center; position: relative;
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: var(--text-muted); max-width: 640px; margin: 14px auto 0; font-size: 1.1rem; }
.breadcrumb { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; }
.breadcrumb a { color: var(--chameleon); }
.breadcrumb span { margin: 0 8px; opacity: 0.5; }

/* ============================================================
   19. SERVICES DETAIL BLOCKS (alternating)
   ============================================================ */
.svc { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 56px 0; border-bottom: 1px solid var(--line-light); }
.svc:nth-child(even) .svc-media { order: 2; }
.svc-media {
  border-radius: var(--radius); min-height: 300px; background: linear-gradient(150deg, var(--deep-blue), var(--navy));
  display: grid; place-items: center; color: var(--white); padding: 30px; box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.svc-media .svc-ico { width: 84px; height: 84px; opacity: 0.95; }
.svc-media .svc-ico svg { width: 84px; height: 84px; stroke: var(--chameleon); }
.svc-media .svc-tag { position: absolute; bottom: 18px; left: 0; right: 0; text-align: center; color: var(--text-muted); font-size: 0.82rem; }
.svc-body h2 { font-size: 1.7rem; }
.svc-body .svc-kicker { color: var(--deep-blue); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.78rem; }
.svc-body ul { list-style: none; margin: 16px 0 22px; }
.svc-body li { padding: 6px 0 6px 28px; position: relative; color: var(--text-body); }
.svc-body li::before { content: "✓"; position: absolute; left: 0; color: var(--chameleon); font-weight: 800; }
.svc-body .niche-flag { display:inline-block; margin-bottom:10px; font-size:0.72rem; font-weight:700; letter-spacing:0.06em; text-transform:uppercase; color: var(--deep-blue); background: var(--info-bg-blue); padding: 5px 12px; border-radius: 20px; }

/* ============================================================
   20. ABOUT PAGE
   ============================================================ */
.about-lead { max-width: 760px; margin: 0 auto; text-align: center; }
.about-lead p { font-size: 1.18rem; color: var(--text-body); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-top: 20px; }
.etymology { background: var(--navy); color: var(--white); border-radius: var(--radius); padding: 40px; }
.etymology h3 { color: var(--white); }
.etymology .chain { font-family: var(--font); color: var(--text-muted); line-height: 2; margin-top: 12px; }
.etymology .chain b { color: var(--chameleon); }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 10px; }
.stat { text-align: center; padding: 26px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line-light); }
.stat .num { font-size: 2.2rem; font-weight: 800; color: var(--deep-blue); }
.stat .lbl { color: var(--body-grey); font-size: 0.95rem; }
.mission { background: linear-gradient(120deg, var(--deep-blue), var(--chameleon)); color: var(--white); border-radius: var(--radius); padding: 48px; text-align: center; }
.mission h2 { color: var(--white); }
.mission p { font-size: 1.2rem; color: rgba(255,255,255,0.95); max-width: 720px; margin: 12px auto 0; }

/* ============================================================
   21. PORTFOLIO GALLERY
   ============================================================ */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gallery-item {
  aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden; position: relative;
  background: linear-gradient(150deg, var(--deep-blue), var(--navy)); display: grid; place-items: center;
  color: var(--white); border: 1px solid var(--line-dark); transition: transform .18s ease, box-shadow .18s ease;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.gallery-item .g-label { text-align: center; padding: 16px; }
.gallery-item .g-label .g-cat { color: var(--chameleon); font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; }
.gallery-item .g-label .g-title { font-weight: 700; margin-top: 6px; }
.gallery-note { text-align: center; color: var(--body-grey); margin-top: 30px; }

/* ============================================================
   22. BLOG
   ============================================================ */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card { background: var(--white); border: 1px solid var(--line-light); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--chameleon); }
.post-thumb { height: 168px; background: linear-gradient(150deg, var(--deep-blue), var(--navy)); display: grid; place-items: center; color: var(--chameleon); }
.post-thumb svg { width: 56px; height: 56px; }
.post-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.post-body .post-cat { color: var(--deep-blue); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; }
.post-body h3 { margin: 8px 0 10px; font-size: 1.22rem; }
.post-body p { color: var(--body-grey); font-size: 0.96rem; flex: 1; }
.post-body .read { color: var(--deep-blue); font-weight: 700; margin-top: 10px; }
.article { max-width: 760px; margin: 0 auto; }
.article h2 { margin: 32px 0 12px; }
.article p { color: var(--text-body); }
.article .meta { color: var(--body-grey); font-size: 0.92rem; margin-bottom: 22px; }

/* ============================================================
   23. CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-card { background: var(--white); border: 1px solid var(--line-light); border-radius: var(--radius); padding: 32px; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--line-light); }
.contact-row:last-child { border-bottom: 0; }
.contact-row .ci { width: 42px; height: 42px; border-radius: 10px; background: var(--highlight-teal); color: var(--deep-blue); display: grid; place-items: center; flex-shrink: 0; }
.contact-row .ci svg { width: 22px; height: 22px; }
.contact-row b { color: var(--navy); display: block; }
.contact-row span, .contact-row a { color: var(--body-grey); }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-light); min-height: 340px; }
.map-embed iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* ============================================================
   24. FORMS (Quote + Contact)
   ============================================================ */
.form-wrap { max-width: 760px; margin: 0 auto; background: var(--white); border: 1px solid var(--line-light); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; font-weight: 700; color: var(--navy); margin-bottom: 7px; font-size: 0.95rem; }
.field label .req { color: var(--alert-red, #A33A3A); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font); font-size: 1rem; padding: 13px 14px;
  border: 1.5px solid var(--line-light); border-radius: 10px; background: #FCFCFD; color: var(--text-body); transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--chameleon); box-shadow: 0 0 0 3px rgba(63,202,182,0.18); }
.field textarea { min-height: 130px; resize: vertical; }
.checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.check { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border: 1.5px solid var(--line-light); border-radius: 10px; cursor: pointer; transition: border-color .15s ease, background .15s ease; }
.check:hover { border-color: var(--chameleon); background: var(--highlight-teal); }
.check input { width: auto; }
.form-note { font-size: 0.88rem; color: var(--body-grey); margin-top: 8px; }
.form-submit { text-align: center; margin-top: 8px; }
.form-submit .btn { font-size: 1.05rem; padding: 16px 44px; }

/* ============================================================
   25. INNER-PAGE RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .svc, .story-grid, .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .svc:nth-child(even) .svc-media { order: 0; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .post-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .hero-brand img { height: 76px; }
  .hbw-name { font-size: 1.6rem; }
  .form-row, .checks, .stat-row { grid-template-columns: 1fr; }
  .gallery, .post-grid { grid-template-columns: 1fr; }
  .form-wrap, .contact-card, .etymology, .mission { padding: 26px; }
}

