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

/* Tim Kyle Electric, Heating & Cooling - Careers Page
   Palette: brick red #9c2024 / dark maroon #7a161a / soft #f4e6e6 / charcoal #241d1d
   NOTE: no CSS custom properties on purpose (the ATS editor mangles them). */

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

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #241d1d;
  background-color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ====== TOPBAR ====== */
.topbar {
  background-color: #ffffff;
  border-bottom: 3px solid #9c2024;
  padding: 16px 0;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #9c2024;
  text-transform: uppercase;
  line-height: 1.1;
}

.logo span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #241d1d;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar-link {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #241d1d;
}

.topbar-link:hover {
  color: #9c2024;
}

.topbar-phone {
  font-size: 16px;
  font-weight: 800;
  color: #9c2024;
}

/* ====== HERO ====== */
.hero {
  background-color: #241d1d;
  color: #ffffff;
  padding: 96px 0 104px;
}

.hero .container {
  text-align: center;
}

.badge {
  display: inline-block;
  background-color: #9c2024;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 26px;
}

.section-label {
  display: block;
  text-align: center !important;
  margin: 0 auto !important;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #7a161a;
  margin-bottom: 14px;
}

.hero-label {
  color: #d98c8e;
}

.hero h1 {
  display: block;
  text-align: center !important;
  margin: 0 auto !important;
  max-width: 760px;
  font-size: 58px;
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: #ffffff;
}

.hero h1 .accent {
  color: #e8a0a2;
}

.hero-subhead {
  display: block;
  text-align: center !important;
  margin: 24px auto 0 !important;
  max-width: 620px;
  font-size: 19px;
  line-height: 1.6;
  color: #e6dede;
}

/* ====== BUTTON ====== */
.btn {
  display: inline-block;
  background-color: #9c2024;
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 4px;
  margin-top: 34px;
  transition: background-color 0.18s ease;
}

.btn:link,
.btn:visited,
.btn:hover,
.btn:active {
  color: #ffffff !important;
}

.btn:hover {
  background-color: #7a161a;
}

/* ====== SECTIONS ====== */
section {
  padding: 88px 0;
}

.section-alt {
  background-color: #faf6f6;
}

.section-title {
  display: block;
  text-align: center !important;
  margin: 0 auto !important;
  max-width: 700px;
  font-size: 38px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: #241d1d;
}

.section-subtitle {
  display: block;
  text-align: center !important;
  margin: 22px auto 0 !important;
  max-width: 720px;
  font-size: 18px;
  line-height: 1.7;
  color: #4a4242;
}

/* ====== VALUES GRID ====== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 52px;
}

.value-item {
  background-color: #ffffff;
  border: 1px solid #ece2e2;
  border-top: 4px solid #9c2024;
  border-radius: 6px;
  padding: 30px 28px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.value-item:hover {
  border-color: #9c2024;
  box-shadow: 0 10px 30px rgba(36, 29, 29, 0.08);
}

.value-item h3 {
  font-size: 20px;
  font-weight: 800;
  color: #241d1d;
  margin-bottom: 10px;
}

.value-item p {
  font-size: 16px;
  line-height: 1.65;
  color: #4a4242;
}

/* ====== PERKS ====== */
.perks {
  list-style: none;
  max-width: 760px;
  margin: 52px auto 0;
}

.perk {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid #ece2e2;
}

.perk:last-child {
  border-bottom: none;
}

.perk-num {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  background-color: #9c2024;
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.perk-content h3 {
  font-size: 21px;
  font-weight: 800;
  color: #241d1d;
  margin-bottom: 6px;
}

.perk-content p {
  font-size: 16px;
  line-height: 1.65;
  color: #4a4242;
}

/* ====== CTA ====== */
.cta {
  background-color: #241d1d;
  color: #ffffff;
  text-align: center;
}

.cta .container {
  text-align: center;
}

.cta-title {
  color: #ffffff;
}

.cta-text {
  display: block;
  text-align: center !important;
  margin: 20px auto 0 !important;
  max-width: 560px;
  font-size: 19px;
  line-height: 1.6;
  color: #e6dede;
}

/* ====== FOOTER ====== */
footer {
  background-color: #1a1414;
  color: #cfc6c6;
  padding: 48px 0;
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
}

.footer-brand span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #d98c8e;
  margin-top: 4px;
}

.footer-line {
  font-size: 15px;
  margin-top: 18px;
}

.footer-line a {
  color: #e8a0a2;
  font-weight: 700;
}

.footer-line a:hover {
  color: #ffffff;
}

.footer-tagline {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8c8080;
  margin-top: 12px;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 720px) {
  .hero {
    padding: 64px 0 70px;
  }
  .hero h1 {
    font-size: 38px;
  }
  .hero-subhead {
    font-size: 17px;
  }
  .section-title {
    font-size: 29px;
  }
  section {
    padding: 60px 0;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
