:root {
	--primary-color: #0A6EFA;
	--primary-hover: #0858C8;
	--secondary-color: #436489;
	--primary60: #0A6EFA;
	--primary70: #0858C8;
	--secondary60: #436489;
}

/* Meyer's Companies, Inc. — Careers page
   Accent red #c8102e | Accent dark #9e0c22 | Accent soft #fae3e6
   Dark navy #15202e | Body #33404f | Muted #5c6b7a
   No CSS custom properties (ATS mangles ""). All colors literal hex. */

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #33404f;
  background-color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 90%;
  max-width: 1040px;
  margin: 0 auto;
}

/*  Topbar  */
.topbar {
  background-color: #ffffff;
  border-bottom: 1px solid #e3e8ee;
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  line-height: 1;
}
.logo-word {
  font-family: Georgia, "Times New Roman", "Roboto Slab", serif;
  font-weight: 800;
  font-size: 30px;
  letter-spacing: 0.5px;
  color: #15202e;
  text-transform: uppercase;
}
.logo-apos { color: #ea2629; }
.logo-since {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #ea2629;
  margin-top: 5px;
  align-self: stretch;
  text-align: center;
}

.topbar-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.topbar-link {
  color: #33404f;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}
.topbar-link:hover { color: #c8102e; }
.topbar-phone {
  color: #15202e;
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
}
.topbar-phone:hover { color: #c8102e; }

/*  Buttons  */
.btn {
  display: inline-block;
  background-color: #c8102e;
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 17px;
  padding: 16px 38px;
  border-radius: 6px;
  letter-spacing: 0.3px;
  transition: background-color 0.18s ease, transform 0.18s ease;
}
.btn:link,
.btn:visited,
.btn:hover,
.btn:active {
  color: #ffffff !important;
  text-decoration: none !important;
}
.btn:hover {
  background-color: #9e0c22;
  transform: translateY(-2px);
}

/*  Hero  */
.hero {
  padding: 96px 0 88px;
  background-color: #ffffff;
  text-align: center;
}
.hero .container { text-align: center; }

.badge {
  display: inline-block;
  background-color: #fae3e6;
  color: #9e0c22;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  padding: 8px 16px;
  border-radius: 40px;
  margin: 0 auto 22px;
}
.hero-location {
  color: #5c6b7a;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  margin: 0 auto 18px;
  text-align: center !important;
  display: block;
}
.hero h1 {
  font-size: 52px;
  line-height: 1.1;
  font-weight: 800;
  color: #15202e;
  max-width: 760px;
  margin: 0 auto !important;
  text-align: center !important;
  display: block;
  letter-spacing: -0.5px;
}
.hero h1 .accent { color: #c8102e; }

.hero-subhead {
  font-size: 20px;
  color: #5c6b7a;
  max-width: 620px;
  margin: 22px auto 36px !important;
  text-align: center !important;
  display: block;
}

/*  Sections  */
section { padding: 84px 0; }
.section-alt {
  background-color: #f6f8fa;
  border-top: 1px solid #eef1f5;
  border-bottom: 1px solid #eef1f5;
}
section .container { text-align: center; }

.section-label {
  color: #9e0c22;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin: 0 auto 14px !important;
  text-align: center !important;
  display: block;
}
.section-title {
  font-size: 38px;
  font-weight: 800;
  color: #15202e;
  max-width: 700px;
  margin: 0 auto !important;
  text-align: center !important;
  display: block;
  letter-spacing: -0.4px;
}
.section-subtitle {
  font-size: 18px;
  color: #5c6b7a;
  max-width: 720px;
  margin: 22px auto 0 !important;
  text-align: center !important;
  display: block;
}

/*  Values grid (2x2)  */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 48px;
  text-align: left;
}
.value-item {
  background-color: #ffffff;
  border: 1px solid #e3e8ee;
  border-radius: 10px;
  padding: 30px 30px 28px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.value-item:hover {
  border-color: #c8102e;
  box-shadow: 0 10px 28px rgba(21, 32, 46, 0.08);
  transform: translateY(-3px);
}
.value-item h3 {
  font-size: 20px;
  font-weight: 800;
  color: #15202e;
  margin-bottom: 10px;
}
.value-item p {
  font-size: 16px;
  color: #5c6b7a;
}

/*  Perks (numbered)  */
.perks-list {
  list-style: none;
  max-width: 760px;
  margin: 48px auto 0;
  text-align: left;
}
.perk {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid #e9edf2;
}
.perk:last-child { border-bottom: none; }
.perk-num {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background-color: #c8102e;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
}
.perk-content h3 {
  font-size: 20px;
  font-weight: 800;
  color: #15202e;
  margin-bottom: 6px;
}
.perk-content p {
  font-size: 16px;
  color: #5c6b7a;
}

/*  CTA  */
.cta {
  background-color: #15202e;
  text-align: center;
}
.cta .container { text-align: center; }
.cta-title {
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  max-width: 700px;
  margin: 0 auto !important;
  text-align: center !important;
  display: block;
  letter-spacing: -0.4px;
}
.cta-text {
  font-size: 19px;
  color: #c3cdd8;
  max-width: 560px;
  margin: 18px auto 34px !important;
  text-align: center !important;
  display: block;
}

/*  Footer  */
footer {
  background-color: #15202e;
  border-top: 1px solid #243446;
  padding: 44px 0;
  text-align: center;
}
footer .container { text-align: center; }
.footer-name {
  color: #ffffff;
  font-weight: 800;
  font-size: 19px;
  margin-bottom: 8px;
}
.footer-line {
  color: #aeb9c5;
  font-size: 15px;
  margin-bottom: 6px;
}
.footer-line a {
  color: #aeb9c5;
  text-decoration: none;
  font-weight: 700;
}
.footer-line a:hover { color: #c8102e; }
.footer-tagline {
  color: #7d8a98;
  font-size: 14px;
}

/*  Responsive  */
@media (max-width: 720px) {
  .hero { padding: 64px 0 56px; }
  .hero h1 { font-size: 36px; }
  .hero-subhead { font-size: 18px; }
  .section-title, .cta-title { font-size: 28px; }
  section { padding: 60px 0; }
  .values-grid { grid-template-columns: 1fr; }
  .topbar-nav { gap: 18px; }
}
