:root {
  --navy: #082f66;
  --navy-dark: #051f45;
  --blue: #0c438d;
  --yellow: #ffe21a;
  --white: #ffffff;
  --offwhite: #f5f8fc;
  --text: #17263a;
  --muted: #627188;
  --border: #dbe3ed;
  --shadow: 0 18px 50px rgba(8, 47, 102, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background: var(--white);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 31, 69, .96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 10px; color: white; font-weight: 900; letter-spacing: .5px; }
.brand img { width: 56px; height: 48px; object-fit: cover; object-position: center; border-radius: 8px; }
.brand span { font-size: 1.05rem; line-height: 1.05; }
.brand small { display: block; font-size: .63rem; letter-spacing: 1.2px; text-transform: uppercase; opacity: .8; margin-top: 5px; }
.nav { margin-left: auto; display: flex; gap: 26px; color: #dbe8f8; font-weight: 700; font-size: .92rem; }
.nav a:hover { color: var(--yellow); }
.nav-call { background: var(--yellow); color: var(--navy-dark); padding: 11px 18px; border-radius: 999px; font-weight: 900; }

.hero {
  position: relative;
  min-height: 700px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(4, 27, 59, .96) 0%, rgba(4, 27, 59, .82) 48%, rgba(4, 27, 59, .2) 100%),
    url("assets/van-side.jpg") center/cover no-repeat;
}
.hero-content { position: relative; z-index: 2; padding: 90px 0; max-width: 760px; color: white; }
.eyebrow { margin: 0 0 12px; color: var(--blue); font-size: .78rem; font-weight: 900; letter-spacing: 2.4px; }
.hero .eyebrow { color: var(--yellow); }
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); line-height: .98; letter-spacing: -3px; margin: 0 0 26px; }
h1 span { color: var(--yellow); }
.hero-copy { font-size: 1.18rem; max-width: 650px; color: #e4edf9; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 32px 0 42px; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 22px; border-radius: 8px; font-weight: 900; border: 2px solid transparent; }
.btn-primary { background: var(--yellow); color: var(--navy-dark); }
.btn-light { background: rgba(255,255,255,.08); color: white; border-color: rgba(255,255,255,.55); }
.btn:hover { transform: translateY(-1px); }
.trust-row { display: flex; flex-wrap: wrap; gap: 28px; }
.trust-row div { padding-left: 14px; border-left: 2px solid var(--yellow); }
.trust-row strong, .trust-row span { display: block; }
.trust-row span { color: #b8c8de; font-size: .85rem; }

.emergency-bar { background: var(--yellow); color: var(--navy-dark); }
.emergency-inner { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.emergency-inner > div { display: flex; align-items: center; gap: 12px; }
.emergency-inner a { font-size: 1.2rem; font-weight: 950; }
.pulse { width: 10px; height: 10px; background: var(--navy); border-radius: 50%; box-shadow: 0 0 0 7px rgba(8,47,102,.12); }

.section { padding: 100px 0; }
.section-heading { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-heading h2, .about-copy h2, .photo-panel h2, .contact-section h2, .brands-section h2 { font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1.05; letter-spacing: -1.5px; margin: 0 0 14px; }
.section-heading p:last-child, .brands-copy { color: var(--muted); font-size: 1.05rem; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { padding: 30px; border: 1px solid var(--border); border-radius: 14px; background: white; transition: .2s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #c2d2e5; }
.service-icon { width: 48px; height: 48px; display: grid; place-items: center; background: var(--yellow); color: var(--navy); border-radius: 12px; font-size: 1.5rem; font-weight: 900; margin-bottom: 20px; }
.service-card h3 { margin: 0 0 8px; font-size: 1.2rem; }
.service-card p { margin: 0; color: var(--muted); }

.about-section { background: var(--offwhite); }
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.about-image img { width: 100%; height: 530px; object-fit: cover; border-radius: 18px; box-shadow: var(--shadow); }
.about-copy p:not(.eyebrow) { color: var(--muted); }
.check-list { list-style: none; padding: 0; margin: 28px 0; }
.check-list li { margin: 13px 0; font-weight: 750; }
.check-list li::before { content: "✓"; color: var(--navy); background: var(--yellow); width: 23px; height: 23px; display: inline-grid; place-items: center; border-radius: 50%; margin-right: 10px; font-size: .8rem; }
.text-link { color: var(--blue); font-weight: 900; }

.photo-section { padding: 100px 0; }
.photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; overflow: hidden; border-radius: 18px; box-shadow: var(--shadow); }
.photo-grid > img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }
.photo-panel { background: var(--navy); color: white; padding: 65px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.photo-panel .eyebrow { color: var(--yellow); }
.photo-panel p:not(.eyebrow) { color: #d0dded; }

.brands-section { background: var(--yellow); padding: 70px 0; text-align: center; }
.brands-section .eyebrow { color: var(--navy); }
.brands-copy { max-width: 700px; margin: 0 auto; color: var(--navy-dark); }

.contact-section { padding: 100px 0; background: #f8fafc; }
.contact-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 70px; align-items: center; }
.contact-section h2 { color: var(--navy); }
.contact-section > .container > div > p:not(.eyebrow) { color: var(--muted); }
.contact-actions { display: grid; gap: 12px; margin-top: 30px; }
.contact-card { background: white; border: 1px solid var(--border); border-radius: 12px; padding: 18px 20px; display: grid; gap: 2px; }
.contact-card:hover { border-color: var(--yellow); box-shadow: var(--shadow); }
.contact-label { font-size: .68rem; font-weight: 900; letter-spacing: 2px; color: var(--blue); }
.contact-card strong { font-size: 1.15rem; }
.contact-card small { color: var(--muted); }
.contact-image img { width: 100%; border-radius: 18px; box-shadow: var(--shadow); }

.footer { background: var(--navy-dark); color: #d6e1ef; padding: 28px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; font-size: .9rem; }
.footer strong, .footer span { display: block; }
.footer strong { color: white; }
.footer span { color: #91a6c0; font-size: .8rem; }
.footer a { color: var(--yellow); font-weight: 900; }

.mobile-actions { display: none; }

@media (max-width: 850px) {
  .nav { display: none; }
  .nav-call { margin-left: auto; }
  .hero { min-height: 650px; background-position: 62% center; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .photo-grid, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .about-image img { height: 420px; }
  .photo-grid > img { min-height: 360px; }
  .photo-panel { padding: 45px 30px; }
  .contact-image { max-width: 600px; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 28px, 1120px); }
  .site-header { position: relative; }
  .brand span { display: none; }
  .nav-call { padding: 10px 14px; }
  .hero { min-height: 680px; background-position: 68% center; }
  .hero-content { padding: 70px 0 105px; }
  h1 { letter-spacing: -2px; }
  .hero-copy { font-size: 1rem; }
  .trust-row { gap: 16px; }
  .trust-row div { flex: 1 1 130px; }
  .emergency-inner { padding: 15px 0 80px; align-items: flex-start; flex-direction: column; }
  .emergency-inner > div { align-items: flex-start; }
  .section { padding: 70px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .about-image img { height: 300px; }
  .photo-section { padding: 70px 0; }
  .photo-grid > img { min-height: 280px; }
  .photo-panel { padding: 36px 24px; }
  .contact-section { padding-bottom: 105px; }
  .footer-inner { flex-direction: column; align-items: flex-start; padding-bottom: 62px; }
  .mobile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 100;
    background: white;
    box-shadow: 0 -8px 25px rgba(0,0,0,.12);
  }
  .mobile-actions a {
    text-align: center;
    padding: 14px;
    font-weight: 950;
    color: white;
    background: var(--navy);
    border-right: 1px solid rgba(255,255,255,.2);
  }
  .mobile-actions a:last-child { background: var(--yellow); color: var(--navy-dark); border: 0; }
}


/* Mobile navigation */
.menu-toggle {
  display: none;
  width: 46px;
  height: 44px;
  border: 0;
  border-radius: 9px;
  background: rgba(255,255,255,.1);
  cursor: pointer;
  padding: 9px;
}
.menu-toggle span {
  display: block;
  height: 3px;
  margin: 5px 0;
  border-radius: 2px;
  background: white;
}
.mobile-menu { display: none; }

/* Google Site service artwork */
.service-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  background: #071f4b;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}
.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Samson photo as a subtle About Us background */
.about-section {
  position: relative;
  overflow: hidden;
  background: var(--offwhite);
}
.about-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg,
      rgba(245,248,252,1) 0%,
      rgba(245,248,252,.98) 38%,
      rgba(245,248,252,.88) 53%,
      rgba(245,248,252,.42) 72%,
      rgba(245,248,252,.06) 100%),
    url("assets/samson-desktop.jpg") center right / cover no-repeat;
}
.about-section .about-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 720px);
  min-height: 760px;
  align-items: center;
}
.about-copy { padding: 45px 0; }
.about-copy h2 { color: var(--navy); }
.about-copy h3 { color: var(--navy); margin: 26px 0 6px; }
.about-copy p:not(.eyebrow) { color: #52637a; }

/* Twin Cities section */
.city-section {
  position: relative;
  min-height: 440px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
  background: url("assets/minneapolis-twin-cities.svg") center / cover no-repeat;
}
.city-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,31,69,.94), rgba(5,31,69,.62) 60%, rgba(5,31,69,.25));
}
.city-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 75px 0;
}
.city-content .eyebrow { color: var(--yellow); }
.city-content h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin: 0 0 15px;
}
.city-content p:not(.eyebrow) { color: #e2ebf6; font-size: 1.05rem; }
.city-credit {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 12px;
  font-size: .66rem;
  color: rgba(255,255,255,.7);
}

@media (max-width: 850px) {
  .nav { display: none; }
  .nav-call { margin-left: auto; }
  .menu-toggle { display: block; }
  .mobile-menu {
    position: absolute;
    top: 78px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    padding: 8px;
    border-radius: 12px;
    background: var(--navy-dark);
    box-shadow: 0 18px 35px rgba(0,0,0,.22);
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    color: white;
    padding: 14px 16px;
    font-weight: 850;
    border-radius: 8px;
  }
  .mobile-menu a:hover { background: rgba(255,255,255,.08); color: var(--yellow); }
  .about-section .about-grid { min-height: 0; grid-template-columns: 1fr; }
  .about-background {
    background:
      linear-gradient(180deg, rgba(245,248,252,.98) 0%, rgba(245,248,252,.94) 55%, rgba(245,248,252,.54) 100%),
      url("assets/samson-desktop.jpg") center bottom / cover no-repeat;
  }
  .about-copy { padding: 35px 0 420px; }
}

@media (max-width: 600px) {
  .hero { min-height: 680px; background-position: 68% center; }
  .about-copy { padding-bottom: 360px; }
  .city-section { min-height: 430px; }
  .city-credit { left: 14px; right: 14px; font-size: .58rem; }
}

/* Samson About Us — final responsive crops using the REAL supplied photo */
#about {
  background-image: linear-gradient(90deg, rgba(4,27,59,.92) 0%, rgba(4,27,59,.70) 48%, rgba(4,27,59,.25) 100%),
                    url("assets/samson-desktop.jpg") !important;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 850px) {
  #about {
    background-image: linear-gradient(180deg, rgba(4,27,59,.88) 0%, rgba(4,27,59,.64) 55%, rgba(4,27,59,.30) 100%),
                      url("assets/samson-mobile.jpg") !important;
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
