/* Sentry Electric – Main Stylesheet
   Industrial-modern: deep navy + brand red + white */

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

:root {
  /* Modelled on commercial contractor sites like Kudlak-Baird: blue + dark + clean */
  --navy: #1a2332;
  --navy-2: #243044;
  --navy-3: #2e3c52;
  --blue: #0078c7;
  --blue-hover: #0066a8;
  --accent: #e11d2e;
  --accent-hover: #c41222;
  --accent-soft: rgba(225, 29, 46, 0.12);
  --gold: #f2a800;
  --white: #ffffff;
  --off: #f4f6f8;
  --gray: #5a6a7a;
  --gray-light: #e5e9ee;
  --text: #1e293b;
  --radius: 12px;
  --radius-sm: 4px;
  --shadow: 0 1px 3px rgba(26,35,50,0.05), 0 4px 14px rgba(26,35,50,0.07);
  --shadow-lg: 0 10px 30px rgba(26,35,50,0.12);
  --max: 1140px;
  --header-h: 84px;
  --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 1.7rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1.2;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 2px 10px rgba(225,29,46,0.28);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(225,29,46,0.35);
}
.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  text-decoration: none;
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  text-decoration: none;
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-light);
}
.btn-outline-dark:hover {
  border-color: var(--navy);
  text-decoration: none;
}
.btn-nav {
  background: var(--accent);
  color: #ffffff !important;
  padding: 0.55rem 1.15rem;
  font-size: 0.875rem;
  border-radius: 4px;
}
.btn-nav,
.btn-nav:visited,
.btn-nav:hover,
.btn-nav:active {
  color: #ffffff !important;
}
.btn-nav:hover { background: var(--accent-hover); text-decoration: none; }
.btn-full { width: 100%; }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 18, 32, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.logo {
  display: flex;
  align-items: center;
  background: transparent;
  padding: 0;
  line-height: 0;
  text-decoration: none;
}
.logo:hover { opacity: 0.9; text-decoration: none; }
.logo-img {
  height: 52px;
  width: auto;
  max-width: 420px;
  object-fit: contain;
}
@media (max-width: 480px) {
  .logo-img {
    height: 40px;
    max-width: 260px;
  }
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.92rem;
  transition: color 0.15s;
}
.nav a:hover, .nav a.active {
  color: #fff;
  text-decoration: none;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  min-height: 78vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
/* Split layout: video left (full aspect), copy right */
.hero-split {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  min-height: 78vh;
}
.hero-media {
  position: relative;
  overflow: hidden;
  background: #0b1220;
  min-height: 520px;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* Show full original video (portrait) without cropping */
  object-fit: contain;
  object-position: center center;
  filter: brightness(1.2) contrast(1.06) saturate(1.05);
  background: #0b1220;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 3.5rem 2.5rem 3.5rem 2rem;
  background: linear-gradient(160deg, #0b1220 0%, #121a2b 55%, #0e1624 100%);
}
.hero-content-inner {
  max-width: 520px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fca5a5;
  background: rgba(225,29,46,0.15);
  border: 1px solid rgba(225,29,46,0.3);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.2rem;
}
.hero h1 {
  font-size: clamp(2.15rem, 5vw, 3.15rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1.15rem;
  text-shadow: none;
}
.hero-sub {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: 2rem;
  max-width: 540px;
  line-height: 1.6;
  text-shadow: none;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.hero-trust svg {
  width: 15px;
  height: 15px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ===== Trust Bar ===== */
.trust-bar {
  background: var(--navy-2);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 1.05rem 0;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.75rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
}
.trust-bar-inner strong { color: #fff; font-weight: 600; }
.trust-bar-inner a { color: #fff; font-weight: 600; }

/* ===== Sections ===== */
.section { padding: 5rem 0; }
.section-alt { background: var(--off); }
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.75rem;
}
.section-header h2 {
  font-size: clamp(1.85rem, 3.6vw, 2.35rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 0.7rem;
  line-height: 1.15;
}
.section-header p {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.55;
}

/* ===== Service icons strip ===== */
.services-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: -2.5rem;
  position: relative;
  z-index: 5;
}
.service-icon-card {
  background: #fff;
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  padding: 1.45rem 1rem;
  text-align: center;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  color: inherit;
}
.service-icon-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12);
  text-decoration: none;
}
.service-icon-card .icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 0.75rem;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
}
.service-icon-card .icon svg { width: 22px; height: 22px; }
.service-icon-card h3 {
  font-size: 0.9rem;
  font-weight: 650;
  color: var(--navy);
  margin: 0;
}

/* ===== Project cards (Musco-style portfolio) ===== */
.projects-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem;
}
.projects-intro p {
  color: var(--gray);
  font-size: 1.05rem;
}
.filter-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.75rem;
  text-align: center;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 960px) {
  .projects-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
@media (max-width: 600px) {
  .projects-grid { grid-template-columns: 1fr; gap: 1.15rem; }
}
.project-card {
  position: relative;
  background: #0b1220;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  display: block;
  aspect-ratio: 4/3;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.2);
  text-decoration: none;
  color: #fff;
}
.project-card-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #1a2332;
}
.project-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-card:hover .project-card-img img { transform: scale(1.06); }
.project-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 3.5rem 1.35rem 1.35rem;
  background: linear-gradient(to top, rgba(11,18,32,0.92) 0%, rgba(11,18,32,0.55) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.project-card-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 0.28rem 0.65rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}
.project-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.25rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}
.project-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  margin: 0;
  line-height: 1.45;
}
.project-card .card-link { display: none; }

/* Filter bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.25rem;
}
.filter-btn {
  padding: 0.5rem 1.1rem;
  font-size: 0.86rem;
  font-weight: 600;
  border-radius: 4px;
  border: 1.5px solid var(--gray-light);
  background: #fff;
  color: var(--text);
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: inherit;
}
.filter-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
}
.filter-btn.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.results-count {
  text-align: center;
  font-size: 0.88rem;
  color: var(--gray);
  margin: -1.25rem 0 1.75rem;
}

/* ===== Why / Trust cards ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.35rem;
}
.why-card {
  background: #fff;
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
}
.why-card h3 {
  font-size: 1.12rem;
  font-weight: 750;
  color: var(--navy);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.why-card p {
  font-size: 0.94rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.6;
}
.why-card a {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.9rem;
  font-weight: 650;
}

/* ===== About split ===== */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}
.split-content h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 750;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.split-content p {
  color: var(--gray);
  margin-bottom: 1rem;
  font-size: 1.02rem;
}
.split-content ul {
  list-style: none;
  margin: 1.25rem 0 1.75rem;
}
.split-content li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.55rem;
  font-size: 0.97rem;
}
.split-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.split-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* ===== Contact ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-info h2 {
  font-size: 1.9rem;
  font-weight: 750;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 0.7rem;
}
.contact-info > p {
  color: var(--gray);
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
}
.contact-details { list-style: none; margin-bottom: 1.5rem; }
.contact-details li { margin-bottom: 1.25rem; }
.contact-details strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  font-weight: 650;
  margin-bottom: 0.2rem;
}
.contact-details a {
  color: var(--accent);
  font-weight: 600;
  font-size: 1.08rem;
}
.contact-form {
  background: #fff;
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
  border: 1px solid var(--gray-light);
}
.form-row { margin-bottom: 1.15rem; }
.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  background: #fafbfc;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3.5px rgba(225,29,46,0.12);
}
.form-row textarea { min-height: 110px; resize: vertical; }
.form-note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--gray);
  text-align: center;
}

/* ===== CTA band ===== */
.cta-band {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(1.55rem, 3.2vw, 1.95rem);
  font-weight: 750;
  margin-bottom: 0.7rem;
  letter-spacing: -0.02em;
}
.cta-band p {
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin: 0 auto 1.75rem;
  font-size: 1.05rem;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

/* ===== Footer ===== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 3rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand .logo {
  margin-bottom: 1rem;
  display: inline-flex;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.55;
  max-width: 260px;
}
.footer h4 {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 0.45rem; }
.footer a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.footer a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.82rem;
}

/* ===== Page hero (inner pages) ===== */
.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 90% 20%, rgba(225,29,46,0.12), transparent 55%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}
.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.08rem;
  max-width: 560px;
}

/* ===== Safety badges ===== */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
}

/* ===== Mobile ===== */
html {
  -webkit-text-size-adjust: 100%;
}
body {
  overflow-x: hidden;
}
img, video {
  max-width: 100%;
  height: auto;
}
.hero-video {
  max-width: none;
  height: 100%;
}

@media (max-width: 960px) {
  .split, .contact-layout, .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .footer-grid { gap: 1.75rem; }
  .feature-band { padding: 3rem 0; }
  .band-text h2 { font-size: 1.55rem; }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 1.25rem 1.25rem 1.6rem;
    gap: 0.15rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
    z-index: 99;
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav a {
    font-size: 1.05rem;
    padding: 0.75rem 0.25rem;
    width: 100%;
  }
  .nav a.btn-nav {
    margin-top: 0.6rem;
    text-align: center;
    width: 100%;
    padding: 0.9rem;
  }
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }
  .topbar-right { display: none; }
  .hero {
    min-height: auto;
  }
  .hero-content {
    padding: 3.25rem 0 3rem;
    max-width: 100%;
  }
  .hero h1 {
    font-size: clamp(1.75rem, 7vw, 2.35rem);
  }
  .hero-sub {
    font-size: 1rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .hero-trust {
    gap: 0.5rem 1rem;
  }
  .hero-trust span {
    font-size: 0.8rem;
  }
  .section { padding: 3rem 0; }
  .section-header { margin-bottom: 2rem; }
  .services-strip {
    margin-top: 0;
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-form { padding: 1.35rem; }
  .page-hero {
    padding: 2.75rem 0 2.5rem;
  }
  .page-hero h1 {
    font-size: clamp(1.6rem, 6vw, 2.1rem);
  }
  .filter-bar {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.35rem;
    margin-bottom: 1.5rem;
  }
  .filter-btn {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0.5rem 1rem;
  }
  .project-card {
    aspect-ratio: 5/4;
  }
  .project-card h3 {
    font-size: 1.2rem;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .cta-band {
    padding: 3rem 0;
  }
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-actions .btn {
    width: 100%;
    text-align: center;
  }
  .band-media img {
    aspect-ratio: 16/10;
  }
}

@media (max-width: 480px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .container {
    width: min(100% - 1.5rem, var(--max));
  }
  .logo-img {
    height: 40px;
    max-width: 260px;
  }
  .services-strip {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .service-icon-card {
    padding: 1rem 0.65rem;
  }
  .service-icon-card h3 {
    font-size: 0.8rem;
  }
  .eyebrow {
    font-size: 0.7rem;
    padding: 0.3rem 0.7rem;
  }
  .feature-band {
    padding: 2.5rem 0;
  }
  .band-points li {
    font-size: 0.92rem;
  }
  .footer {
    padding: 2.5rem 0 1.5rem;
  }
  input, select, textarea, button {
    font-size: 16px; /* prevents iOS zoom on focus */
  }
}



/* ===== Top utility bar (Kudlak-Baird style) ===== */
.topbar {
  background: #4a5568;
  color: #fff;
  font-size: 0.875rem;
  padding: 0.55rem 0;
}
.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
}
.topbar a { color: #fff; text-decoration: none; }
.topbar a:hover { text-decoration: underline; }
.topbar-left, .topbar-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1.25rem;
}
.topbar strong { font-weight: 600; }

/* ===== Feature bands (alternating content blocks) ===== */
.feature-band {
  padding: 4rem 0;
}
.feature-band-dark {
  background: var(--navy);
  color: #fff;
}
.feature-band-dark h2,
.feature-band-dark h3 { color: #fff; }
.feature-band-dark p { color: rgba(255,255,255,0.82); }
.feature-band-light {
  background: var(--off);
}
.feature-band-white {
  background: #fff;
}
.feature-band .band-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.feature-band .band-inner.reverse {
  grid-template-columns: 1fr 1.1fr;
}
.feature-band .band-inner.reverse .band-text { order: 2; }
.feature-band .band-inner.reverse .band-media { order: 1; }
.band-text .eyebrow {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
}
.feature-band-dark .band-text .eyebrow { color: var(--gold); }
.band-text h2 {
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
  line-height: 1.25;
}
.band-text p {
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
}
.band-media {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.15);
  position: relative;
}
.band-media img,
.band-media video,
.band-video {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  background: #0b1220;
}
.band-text h2 {
  font-weight: 800;
  letter-spacing: -0.03em;
}
@media (max-width: 800px) {
  .feature-band .band-inner,
  .feature-band .band-inner.reverse {
    grid-template-columns: 1fr;
  }
  .feature-band .band-inner.reverse .band-text,
  .feature-band .band-inner.reverse .band-media { order: unset; }
  .topbar { font-size: 0.8rem; }
}

/* Links use blue */
a { color: var(--accent); }

.band-points {
  list-style: none;
  margin: 1.25rem 0 1.5rem;
  padding: 0;
}
.band-points li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.55rem;
  color: rgba(255,255,255,0.88);
  font-size: 0.98rem;
}
.band-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.feature-band-light .band-points li {
  color: var(--gray);
}


/* Hero split — stack on tablet/phone: video on top, copy below */
@media (max-width: 960px) {
  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-media {
    min-height: 42vh;
    order: 1;
  }
  .hero-content {
    order: 2;
    padding: 2.5rem 1.25rem 3rem;
  }
  .hero-content-inner {
    max-width: 100%;
  }
  .hero h1 {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
  }
}
