/* ==========================================================================
   Premier Electrical & Engineering — shared stylesheet
   Extracted from the original single-page index.html (unchanged rules kept
   verbatim so the home page renders identically), then extended for the
   multi-page industrial reliability service architecture.

   Palette   ground #0a0a0a  panel #111  deep #050505  hover #161616
             bone   #f0ebe0  red #C0392B (hover #a93226)  gold #C9A96E
   Type      Oswald — headings, nav, labels (uppercase, wide tracking)
             Open Sans — body copy
   ========================================================================== */

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

body {
  font-family: 'Open Sans', sans-serif;
  background: #0a0a0a;
  color: #f0ebe0;
}

/* --------------------------------------------------------------------------
   NAV
   -------------------------------------------------------------------------- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  background: #0a0a0a;
  border-bottom: 1px solid #C0392B;
}
.nav-logo { height: 52px; width: 52px; }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaa;
  text-decoration: none;
}
.nav-links a:hover { color: #C9A96E; }
.nav-links a.current { color: #C9A96E; }
.nav-btn {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: #C0392B;
  color: #fff;
  padding: 10px 24px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.nav-btn:hover { background: #a93226; }

/* Services dropdown ------------------------------------------------------- */
.has-drop { position: relative; }
.drop-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaa;
  padding: 0;
}
.drop-toggle:hover, .drop-toggle[aria-expanded="true"] { color: #C9A96E; }
.drop-toggle .caret {
  width: 7px; height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.18s;
}
.drop-toggle[aria-expanded="true"] .caret { transform: translateY(1px) rotate(-135deg); }
.drop {
  position: absolute;
  top: calc(100% + 18px);
  left: -24px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #222;
  border: 1px solid #222;
  border-top: 2px solid #C0392B;
  min-width: 620px;
  list-style: none;
}
.drop.open { display: grid; }
.drop li { background: #0e0e0e; }
.drop a {
  display: block;
  padding: 14px 20px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: #999;
  line-height: 1.4;
}
.drop a:hover { background: #161616; color: #C9A96E; }
.drop .drop-lead a { color: #C9A96E; }
.drop .drop-note {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0;
  text-transform: none;
  color: #5a5a5a;
  margin-top: 4px;
}

/* Mobile drawer ----------------------------------------------------------- */
.nav-toggle {
  display: none;
  width: 42px; height: 38px;
  background: none;
  border: 1px solid #2a2a2a;
  cursor: pointer;
  padding: 10px 9px;
  flex-direction: column;
  justify-content: space-between;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #C9A96E;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   HERO (home)
   -------------------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 60px;
  background: #0a0a0a;
}
.hero-logo {
  width: 180px;
  height: 180px;
  object-fit: contain;
  margin-bottom: 32px;
}
.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  color: #f0ebe0;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.hero h1 span { color: #C9A96E; }
.hero-line {
  width: 60px;
  height: 2px;
  background: #C0392B;
  margin: 20px auto;
}
.hero p {
  font-size: 16px;
  font-weight: 300;
  color: #888;
  margin-bottom: 36px;
  letter-spacing: 1px;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-red {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: #C0392B;
  color: #fff;
  padding: 14px 32px;
  text-decoration: none;
  display: inline-block;
}
.btn-red:hover { background: #a93226; }
.btn-outline {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: transparent;
  color: #C9A96E;
  border: 1px solid #C9A96E;
  padding: 14px 32px;
  text-decoration: none;
  display: inline-block;
}
.btn-outline:hover { background: rgba(201,169,110,0.1); }

/* --------------------------------------------------------------------------
   TICKER
   -------------------------------------------------------------------------- */
.ticker {
  background: #C0392B;
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-block;
  animation: ticker 25s linear infinite;
}
.ticker-inner span {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin: 0 32px;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-inner { animation: none; }
}

/* --------------------------------------------------------------------------
   SECTIONS — shared shell
   -------------------------------------------------------------------------- */
#services, .sec { padding: 80px 40px; background: #111; }
.sec-dark { background: #0a0a0a; }
#services .inner, .sec .inner { max-width: 1100px; margin: 0 auto; }
.inner-narrow { max-width: 820px; margin: 0 auto; }

.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #C0392B;
  margin-bottom: 8px;
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #f0ebe0;
  margin-bottom: 48px;
  text-transform: uppercase;
}
.section-title span { color: #C9A96E; }
.section-title.tight { margin-bottom: 20px; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  /* Separator lines are drawn on the cards themselves rather than by letting a
     container background show through the gaps. Same look, but a grid whose
     last row is short no longer renders its empty cells as lighter blocks. */
  background: transparent;
}
.card {
  background: #111;
  box-shadow: 0 0 0 1px #222;
  padding: 36px 28px;
  border-left: 3px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.card:hover {
  border-left-color: #C0392B;
  background: #161616;
}
.card-num {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(192,57,43,0.5);
  margin-bottom: 12px;
}
.card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #C9A96E;
  margin-bottom: 12px;
}
.card p {
  font-size: 14px;
  font-weight: 300;
  color: #777;
  line-height: 1.7;
}
/* Card as a link — same shell, whole tile clickable */
a.card { display: block; text-decoration: none; }
a.card .card-more {
  display: inline-block;
  margin-top: 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C0392B;
}
a.card:hover .card-more { color: #C9A96E; }
.grid.on-dark .card { background: #0d0d0d; box-shadow: 0 0 0 1px #1c1c1c; }
.grid.on-dark .card:hover { background: #141414; }

/* --------------------------------------------------------------------------
   ABOUT
   -------------------------------------------------------------------------- */
#about { padding: 80px 40px; background: #0a0a0a; }
#about .inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text .section-title { margin-bottom: 24px; }
.about-text p {
  font-size: 15px;
  font-weight: 300;
  color: #777;
  line-height: 1.8;
  margin-bottom: 16px;
}
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: #222;
}
.stat {
  background: #111;
  padding: 32px;
  text-align: center;
}
.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: #C9A96E;
  line-height: 1;
}
.stat-label {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #555;
  margin-top: 8px;
}

/* --------------------------------------------------------------------------
   CONTACT / FORMS
   -------------------------------------------------------------------------- */
#contact { padding: 80px 40px; background: #111; }
#contact .inner { max-width: 1100px; margin: 0 auto; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  margin-top: 48px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.ci { display: flex; align-items: flex-start; gap: 16px; }
.ci-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(192,57,43,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.ci-label {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C0392B;
  margin-bottom: 4px;
}
.ci-val { font-size: 15px; color: #f0ebe0; }
.ci-val a { color: #f0ebe0; text-decoration: none; }
.ci-val a:hover { color: #C9A96E; }
.form { display: flex; flex-direction: column; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fg { display: flex; flex-direction: column; gap: 6px; }
.fg label {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #555;
}
.fg input, .fg textarea, .fg select {
  background: #0a0a0a;
  border: 1px solid #2a2a2a;
  color: #f0ebe0;
  padding: 12px 16px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  outline: none;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: #C9A96E; }
.fg textarea { min-height: 110px; resize: vertical; }
.fg select option { background: #111; }
.fg-hint {
  font-size: 11px;
  color: #4a4a4a;
  font-weight: 300;
}
.form-status {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 16px;
  border: 1px solid #2a2a2a;
  color: #888;
}
.form-status.ok { border-color: #C9A96E; color: #C9A96E; }
.form-status.err { border-color: #C0392B; color: #d9705f; }
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}
.btn-submit {
  width: fit-content;
  padding: 14px 32px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: #C0392B;
  color: #fff;
  border: none;
  cursor: pointer;
}
.btn-submit:hover { background: #a93226; }
.btn-submit[disabled] { opacity: 0.5; cursor: default; }

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
footer {
  background: #050505;
  border-top: 1px solid #1a1a1a;
  padding: 56px 40px 40px;
  text-align: center;
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto 44px;
  text-align: left;
  padding-bottom: 40px;
  border-bottom: 1px solid #141414;
}
.footer-col h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C0392B;
  margin-bottom: 14px;
  font-weight: 600;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a, .footer-col span {
  font-size: 13px;
  font-weight: 300;
  color: #666;
  text-decoration: none;
  line-height: 1.5;
}
.footer-col a:hover { color: #C9A96E; }
.footer-logo { height: 60px; margin-bottom: 16px; opacity: 0.7; }
.footer-name {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  color: #C9A96E;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.footer-sub { font-size: 12px; color: #444; margin-bottom: 8px; }
.footer-disc {
  font-size: 11px;
  color: #333;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ==========================================================================
   NEW — industrial reliability components
   ========================================================================== */

/* Skip link --------------------------------------------------------------- */
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: #C0392B;
  color: #fff;
  padding: 12px 20px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.skip:focus { left: 0; }
:focus-visible { outline: 2px solid #C9A96E; outline-offset: 2px; }

/* Interior page hero ------------------------------------------------------ */
.page-hero {
  padding: 150px 40px 70px;
  background: #0a0a0a;
  border-bottom: 1px solid #1a1a1a;
}
.page-hero .inner { max-width: 1100px; margin: 0 auto; }
.page-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f0ebe0;
  max-width: 900px;
}
.page-hero h1 span { color: #C9A96E; }
.page-hero .lede {
  font-size: 17px;
  font-weight: 300;
  color: #8a8a8a;
  line-height: 1.75;
  max-width: 720px;
  margin-top: 22px;
}
.page-hero .hero-btns { justify-content: flex-start; margin-top: 34px; }

.crumbs {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 18px;
}
.crumbs a { color: #666; text-decoration: none; }
.crumbs a:hover { color: #C9A96E; }
.crumbs .sep { color: #2e2e2e; margin: 0 8px; }

/* Prose ------------------------------------------------------------------- */
.prose h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f0ebe0;
  margin-bottom: 18px;
}
.prose h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #C9A96E;
  margin: 30px 0 12px;
}
.prose p {
  font-size: 15px;
  font-weight: 300;
  color: #8a8a8a;
  line-height: 1.85;
  margin-bottom: 16px;
}
.prose p strong { color: #b9b2a4; font-weight: 600; }
.prose a { color: #C9A96E; }

/* Split layout ------------------------------------------------------------ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.split-narrow { grid-template-columns: 1.25fr 1fr; }

/* Bullet lists ------------------------------------------------------------ */
.ticks { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.ticks li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  font-weight: 300;
  color: #8a8a8a;
  line-height: 1.65;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-right: 2px solid #C0392B;
  border-bottom: 2px solid #C0392B;
  transform: rotate(45deg);
}
.ticks li strong { color: #cfc8b8; font-weight: 600; }

/* Equipment / coverage chips --------------------------------------------- */
.chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.chips li {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #9a9a9a;
  background: #0d0d0d;
  border: 1px solid #242424;
  padding: 9px 15px;
}
.sec-dark .chips li { background: #131313; }

/* Numbered process steps -------------------------------------------------- */
.steps { display: flex; flex-direction: column; gap: 2px; background: #222; }
.steps.on-dark { background: #1c1c1c; }
.step {
  background: #111;
  padding: 26px 30px;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 24px;
  align-items: start;
}
.steps.on-dark .step { background: #0d0d0d; }
.step-num {
  font-family: 'Oswald', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: rgba(192,57,43,0.55);
  line-height: 1;
}
.step h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #C9A96E;
  margin-bottom: 9px;
}
.step p {
  font-size: 14px;
  font-weight: 300;
  color: #7d7d7d;
  line-height: 1.7;
}

/* Reliability program cycle ----------------------------------------------- */
.cycle {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 2px;
  background: transparent;
}
.cycle-item {
  background: #111;
  box-shadow: 0 0 0 1px #222;
  padding: 28px 24px;
  border-top: 3px solid #C0392B;
}
.cycle.on-dark .cycle-item { background: #0d0d0d; box-shadow: 0 0 0 1px #1c1c1c; }
.cycle-item h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #C9A96E;
  margin-bottom: 10px;
}
.cycle-item p {
  font-size: 13px;
  font-weight: 300;
  color: #777;
  line-height: 1.65;
}

/* Callout ----------------------------------------------------------------- */
.callout {
  border-left: 3px solid #C0392B;
  background: #0d0d0d;
  padding: 26px 30px;
  margin: 30px 0;
}
.sec-dark .callout { background: #131313; }
.callout p {
  font-size: 15px;
  font-weight: 300;
  color: #a29a8b;
  line-height: 1.8;
  margin: 0;
}
.callout p + p { margin-top: 12px; }
.callout-label {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C0392B;
  margin-bottom: 10px;
}

/* Deliverable table ------------------------------------------------------- */
.table-wrap { overflow-x: auto; }
table.spec {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
table.spec th, table.spec td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid #1e1e1e;
  font-size: 14px;
  font-weight: 300;
  color: #8a8a8a;
  line-height: 1.6;
  vertical-align: top;
}
table.spec th {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C0392B;
  font-weight: 600;
  border-bottom-color: #2a2a2a;
}
table.spec td:first-child { color: #cfc8b8; }

/* CTA band ---------------------------------------------------------------- */
.cta-band {
  background: #0d0d0d;
  border-top: 2px solid #C0392B;
  padding: 66px 40px;
  text-align: center;
}
.cta-band h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f0ebe0;
  margin-bottom: 14px;
}
.cta-band h2 span { color: #C9A96E; }
.cta-band p {
  font-size: 15px;
  font-weight: 300;
  color: #7d7d7d;
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto 30px;
}
.cta-band .hero-btns { justify-content: center; }

/* Home reliability band --------------------------------------------------- */
.band-reliability {
  background: #0d0d0d;
  border-top: 2px solid #C0392B;
  border-bottom: 1px solid #1a1a1a;
  padding: 80px 40px;
}
.band-reliability .inner { max-width: 1100px; margin: 0 auto; }
.band-head { max-width: 780px; margin-bottom: 44px; }
.band-head h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f0ebe0;
  line-height: 1.12;
  margin-bottom: 18px;
}
.band-head h2 span { color: #C9A96E; }
.band-head p {
  font-size: 16px;
  font-weight: 300;
  color: #8a8a8a;
  line-height: 1.8;
}

/* Positioning strip ------------------------------------------------------- */
.position {
  background: #111;
  padding: 76px 40px;
  border-top: 1px solid #1a1a1a;
}
.position .inner { max-width: 900px; margin: 0 auto; text-align: center; }
.position blockquote {
  font-family: 'Oswald', sans-serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.5;
  color: #f0ebe0;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.position blockquote span { color: #C9A96E; }
.position .attrib {
  font-size: 14px;
  font-weight: 300;
  color: #6d6d6d;
  line-height: 1.8;
  margin-top: 26px;
}

/* Related services -------------------------------------------------------- */
.related { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2px; background: transparent; }
.related a {
  background: #111;
  box-shadow: 0 0 0 1px #222;
  padding: 26px 26px;
  text-decoration: none;
  display: block;
  border-left: 3px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.related.on-dark a { background: #0d0d0d; box-shadow: 0 0 0 1px #1c1c1c; }
.related a:hover { border-left-color: #C0392B; background: #161616; }
.related h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #C9A96E;
  margin-bottom: 9px;
}
.related p { font-size: 13px; font-weight: 300; color: #6f6f6f; line-height: 1.65; }

/* Resources / FAQ --------------------------------------------------------- */
.qa { border-top: 1px solid #1e1e1e; }
.qa-item { border-bottom: 1px solid #1e1e1e; padding: 30px 0; }
.qa-item h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 21px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #C9A96E;
  margin-bottom: 14px;
  line-height: 1.35;
}
.qa-item p {
  font-size: 15px;
  font-weight: 300;
  color: #8a8a8a;
  line-height: 1.85;
  margin-bottom: 14px;
}
.qa-item p:last-child { margin-bottom: 0; }
.qa-item ul { margin: 0 0 14px; }

/* Service-area list ------------------------------------------------------- */
.areas { display: flex; flex-wrap: wrap; gap: 10px 26px; list-style: none; }
.areas li {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #7d7d7d;
}
.areas li::after { content: ""; }

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1000px) {
  .split, .split-narrow { grid-template-columns: 1fr; gap: 42px; }
  .page-hero h1 { font-size: 40px; }
}

@media (max-width: 860px) {
  nav { padding: 12px 20px; flex-wrap: wrap; }
  .nav-toggle { display: flex; }
  .nav > .nav-btn, nav > .nav-btn { display: none; }
  .nav-links {
    display: none;
    order: 3;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
    max-height: calc(100vh - 78px);
    overflow-y: auto;
    padding: 8px 0 16px;
    border-top: 1px solid #1e1e1e;
    margin-top: 12px;
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a, .drop-toggle {
    display: block;
    width: 100%;
    padding: 14px 4px;
    border-bottom: 1px solid #161616;
    text-align: left;
  }
  .drop-toggle { justify-content: space-between; }
  .drop {
    position: static;
    display: none;
    grid-template-columns: 1fr;
    min-width: 0;
    border: none;
    border-top: none;
    background: transparent;
    gap: 0;
  }
  .drop.open { display: grid; }
  .drop li { background: transparent; }
  .drop a { padding: 12px 4px 12px 18px; border-bottom: 1px solid #131313; }
  .nav-links .nav-btn-mobile {
    display: block;
    margin-top: 14px;
    text-align: center;
    background: #C0392B;
    color: #fff;
    padding: 14px 24px;
    border-bottom: none;
  }
  .nav-links .nav-btn-mobile:hover { color: #fff; background: #a93226; }
}

@media (min-width: 861px) {
  .nav-links .nav-btn-mobile { display: none; }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 36px; }
  #services, #about, #contact, .sec, .band-reliability, .position { padding: 60px 20px; }
  .page-hero { padding: 130px 20px 56px; }
  .page-hero h1 { font-size: 32px; }
  .cta-band { padding: 54px 20px; }
  footer { padding: 48px 20px 36px; }
  #about .inner, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .section-title { font-size: 32px; margin-bottom: 34px; }
  .band-head h2 { font-size: 30px; }
  .cta-band h2 { font-size: 26px; }
  .position blockquote { font-size: 20px; }
  .step { grid-template-columns: 46px 1fr; gap: 16px; padding: 22px 20px; }
  .step-num { font-size: 24px; }
  .prose h2 { font-size: 23px; }
}
