/*
  Client: Balzer Computer Consulting, LLC
  Industry: Independent MSP — New London, Ohio (1994–)
  Brand personality: conscientious, local, available
  Primary persona: Ohio SMB / SNF admin. Fear = downtime + a call center.
  Journey: see the work → short proof → assessment.
  Primary conversion: Get a Free IT Assessment
  Secondary: Call 419-677-0771 only
  Metaphor: BLUE HOUR
    The hour the town goes dark and the rack stays on. A lookbook of the plant
    and the route — not a text directory, not their white SaaS page.
  Opening: Full-bleed cinema plate. Headline BELOW the photograph.
  Proof: One short letter, then two lines. Schema = 3 reviews.
  Type: Manrope — geometric, matches BALZER. Unused in prior passes.
  Palette: night #080c12 · navy #0b1c2e · cobalt #2254e8
  Signature: cinema plates + 6-image lookbook. First screenshot is a picture.
  Non-goals: no town-list ATF, no beige split, no numbered sheet, no green bar,
    no 4 glass stats, no 6 icon cards, no overlay H1 on the photo, no bakery,
    no second phone, no 7-review schema.
  Swap-test: a kennel logo on a server-rack lookbook would be nonsense.
*/

:root {
  --night: #080c12;
  --ink: #0b1c2e;
  --lift: #121a24;
  --cobalt: #2254e8;
  --cobalt-2: #3b6dff;
  --paper: #e8edf3;
  --muted: #9aa8b8;
  --rule: #243041;
  --white: #f4f7fb;
  --font-d: "Manrope", sans-serif;
  --font-b: "Manrope", sans-serif;
  --wrap: min(1140px, calc(100% - 2rem));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
body {
  margin: 0;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-b);
  font-size: 1.04rem;
  line-height: 1.55;
  color: var(--paper);
  background: var(--night);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.wrap { width: var(--wrap); margin-inline: auto; }
.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 90;
  background: var(--cobalt); color: #fff; padding: 0.5rem 0.8rem;
}
.skip-link:focus { top: 0.55rem; }

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: var(--ink);
  padding-block: 0.72rem;
  box-shadow: inset 0 -3px 0 var(--cobalt);
}
.site-header.is-stuck { box-shadow: inset 0 -3px 0 var(--cobalt), 0 10px 28px rgba(0,0,0,0.35); }
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.2rem;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { width: min(156px, 42vw); height: auto; }
.nav-desktop {
  display: none; list-style: none; margin: 0; padding: 0;
  align-items: center;
}
.nav-desktop > li { position: relative; }
.nav-desktop > li > a,
.nav-desktop > li > button {
  display: block;
  font-family: var(--font-d);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  color: #c9d3de;
  background: none; border: 0; cursor: pointer;
  padding: 0.5rem 0.62rem;
}
.nav-desktop > li > a:hover,
.nav-desktop > li > a[aria-current="page"] { color: #fff; }
.nav-cta {
  background: var(--cobalt) !important;
  color: #fff !important;
  margin-left: 0.45rem;
  padding: 0.55rem 0.95rem !important;
}
.nav-cta:hover { background: var(--cobalt-2) !important; }

.mega {
  display: none;
  position: absolute; top: calc(100% + 0.5rem); left: 0;
  min-width: 560px;
  background: #fff;
  color: var(--ink);
  border: 1px solid #d7dde6;
  padding: 1.1rem 1.2rem;
  z-index: 50;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.2rem 1.2rem;
  box-shadow: 0 18px 40px rgba(11, 28, 46, 0.28);
}
.nav-desktop > li:hover > .mega,
.nav-desktop > li:focus-within > .mega { display: grid; }
.mega strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5a6572;
  margin: 0.1rem 0 0.35rem;
}
.mega a {
  display: block;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.28rem 0;
  color: var(--ink);
}
.mega a:hover { color: var(--cobalt); }

.nav-toggle {
  width: 2.5rem; height: 2.5rem;
  background: transparent; border: 1px solid rgba(255,255,255,0.2);
  display: grid; place-items: center; cursor: pointer;
}
.nav-toggle span { display: block; width: 14px; height: 1.5px; background: #fff; margin: 2.5px 0; }
.nav-mobile {
  display: none;
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--ink);
  flex-direction: column;
  padding: 0.4rem 1.2rem 1.2rem;
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a, .nav-mobile button {
  font-family: var(--font-d);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  color: #fff;
  background: none; border: 0;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
  cursor: pointer;
}
.nav-mobile .sub { display: none; flex-direction: column; padding: 0.2rem 0 0.6rem 0.8rem; }
.nav-mobile .sub.is-open { display: flex; }
.nav-mobile .sub a { font-size: 0.86rem; color: #c9d3de; border: 0; padding: 0.32rem 0; }

@media (min-width: 980px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
  .nav-mobile, .nav-mobile.is-open { display: none !important; }
  .logo img { width: 168px; }
  .nav-desktop > li:nth-child(n+3) .mega { left: auto; right: 0; }
}

h1, h2, h3 {
  font-family: var(--font-d);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.06;
  margin: 0;
  color: #fff;
}
h1 { font-size: clamp(1.85rem, 4.4vw, 3.15rem); }
h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h3 { font-size: 1.06rem; }
.meta, .kicker {
  font-family: var(--font-d);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cobalt-2);
  margin: 0 0 0.7rem;
}
.lede { color: var(--muted); max-width: 40rem; margin: 0.8rem 0 0; }
.lede--wide { max-width: 44rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-d);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  padding: 0.88rem 1.15rem;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn--cobalt, .btn--ink { background: var(--cobalt); color: #fff; }
.btn--cobalt:hover, .btn--ink:hover { background: var(--cobalt-2); }
.btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.45);
  color: #fff;
}
.btn--ghost:hover { background: #fff; color: var(--ink); }
.btn--line {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}
.btn--line:hover { border-color: #fff; }
a.btn, a.btn:hover { color: #fff; }
a.btn--ghost { color: #fff; }
a.btn--ghost:hover { color: var(--ink); }
a.btn--line, a.btn--line:hover { color: #fff; }
.actions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.35rem; }
.page-contact #hero-ctas { display: none; }

/* ——— BLUE HOUR ——— */
.cinema { margin: 0; background: #000; }
.cinema img {
  width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: cover;
  object-position: 45% 50%;
  display: block;
}
.cinema figcaption {
  font-family: var(--font-d);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
  width: var(--wrap);
  margin: 0 auto;
  padding: 0.7rem 0 0.9rem;
}

.act { padding: 2.2rem 0 2.4rem; }
.act h1 { max-width: 16ch; }
.act .line {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0.8rem 0 0;
  color: #fff;
}
.act__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.4rem;
}
@media (max-width: 639px) {
  .act__btns { flex-direction: column; }
  .act__btns .btn { width: 100%; }
  .cinema img { max-height: 48vh; }
}
@media (min-width: 900px) {
  .act { padding: 2.8rem 0 3rem; }
}

.note {
  padding: 0.8rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  font-size: 0.92rem;
  color: var(--muted);
}
.note a { color: var(--cobalt-2); font-weight: 700; }

.quote-plate {
  padding: 3rem 0;
  background: var(--lift);
}
.quote-plate h2 { max-width: 16ch; }
.quote-plate blockquote {
  margin: 1.1rem 0 0.8rem;
  padding: 0;
  max-width: 38rem;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--paper);
}
.quote-plate cite { font-style: normal; color: var(--muted); font-size: 0.9rem; }

.look { padding: 2.6rem 0 2.2rem; }
.look h2 { margin-bottom: 1.3rem; }
.plates {
  display: grid;
  gap: 0.7rem;
}
@media (min-width: 720px) {
  .plates { grid-template-columns: 1fr 1fr; gap: 0.85rem; }
}
.plate {
  display: block;
  text-decoration: none;
  background: var(--lift);
  overflow: hidden;
}
.plate img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.plate:nth-child(3) img { object-position: 50% 30%; }
.plate:nth-child(4) img { object-position: 50% 70%; }
.plate span {
  display: block;
  padding: 0.85rem 0.95rem 1rem;
}
.plate b {
  display: block;
  font-family: var(--font-d);
  font-size: 1.05rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  color: #fff;
}
.plate span { color: var(--muted); font-size: 0.92rem; }
.plate:hover b { color: var(--cobalt-2); }
.look__more { margin: 1.1rem 0 0; }

.ohio-link { padding: 0.9rem 0 2.2rem; }

.letters-row { padding: 0 0 2.6rem; }
.letters-row .wrap {
  display: grid;
  gap: 1.2rem;
}
@media (min-width: 800px) {
  .letters-row .wrap { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
.letters-row blockquote {
  margin: 0 0 0.55rem;
  padding-left: 0.9rem;
  border-left: 3px solid var(--cobalt);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.letters-row cite { font-style: normal; color: var(--muted); font-size: 0.88rem; }

.band { padding: 2.5rem 0; border-top: 1px solid var(--rule); }
.band--paper { background: var(--lift); border-top: 0; }
.band--ink { background: #06090e; border-top: 0; }
.band--ink h2, .band--ink .meta { color: #fff; }

.mast {
  padding: 2.2rem 0 2.3rem;
  border-bottom: 1px solid var(--rule);
}
.mast h1 { max-width: 16ch; }
.mast .lede { color: var(--muted); }
@media (min-width: 900px) { .mast { padding: 2.7rem 0 2.8rem; } }

.prose { max-width: 42rem; }
.prose p { margin: 0 0 1rem; color: var(--paper); }
.prose h2 { margin: 1.8rem 0 0.6rem; }
.prose h3 { margin: 1.3rem 0 0.35rem; }
.prose ul { margin: 0 0 1rem; padding-left: 1.1rem; }
.prose a { color: var(--cobalt-2); }
.prose a.btn { color: #fff; }
.prose a.btn--ghost { color: #fff; }

.offer { margin-top: 0.8rem; }
.offer article { padding: 0.95rem 0; border-top: 1px solid var(--rule); }
.offer h3 { margin: 0 0 0.2rem; }
.offer p { margin: 0; color: var(--muted); }

.faq details { border-top: 1px solid var(--rule); padding: 0.8rem 0; }
.faq summary { font-weight: 700; cursor: pointer; }
.faq p { margin: 0.4rem 0 0; color: var(--muted); }

.related { display: grid; gap: 0.4rem; margin-top: 0.7rem; }
.related a { color: var(--cobalt-2); font-weight: 700; text-decoration: none; }
.split { display: grid; gap: 1.5rem; }
@media (min-width: 900px) {
  .split { grid-template-columns: 0.9fr 1.1fr; gap: 2.4rem; align-items: start; }
}

.dir { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.dir li { border-top: 1px solid var(--rule); }
.dir a { display: grid; gap: 0.15rem; padding: 0.95rem 0; text-decoration: none; }
.dir strong { font-size: 1.08rem; color: #fff; }
.dir a > span > span { display: block; color: var(--muted); font-size: 0.94rem; font-weight: 400; margin-top: 0.2rem; }
.dir em {
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cobalt-2);
  font-weight: 700;
}
.dir a:hover strong { color: var(--cobalt-2); }
@media (min-width: 800px) {
  .dir { grid-template-columns: 1fr 1fr; column-gap: 2.4rem; }
  .dir li { border-bottom: 1px solid var(--rule); }
}

.towns {
  columns: 2; gap: 0 2rem;
  margin: 1.1rem 0 0; padding: 0; list-style: none;
}
.towns li { border-bottom: 1px solid var(--rule); padding: 0.35rem 0; font-size: 0.95rem; }
@media (min-width: 800px) { .towns { columns: 3; } }
@media (min-width: 1100px) { .towns { columns: 4; } }

.shot { margin: 0; }
.shot img { width: 100%; object-fit: cover; }
.shot--dock img { aspect-ratio: 16/9; object-position: 50% 40%; }
.shot--cables img { aspect-ratio: 3/2; }
.shot--rack img { aspect-ratio: 4/3; object-position: 40% 50%; }
.shot figcaption { font-size: 0.78rem; color: var(--muted); margin-top: 0.45rem; }

.table-wrap { overflow-x: auto; margin-top: 1rem; }
table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
th, td { text-align: left; padding: 0.6rem 0.45rem; border-bottom: 1px solid var(--rule); vertical-align: top; }
th { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; }

.plan { display: grid; gap: 0.9rem; margin-top: 1rem; }
.plan__map {
  background: #06090e; color: #fff;
  min-height: 250px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 0.7fr 0.8fr;
  gap: 5px; padding: 7px; font-size: 0.72rem;
}
.cell { background: #163044; display: flex; align-items: flex-end; padding: 0.5rem; position: relative; }
.cell b { position: absolute; top: 0.35rem; left: 0.4rem; color: #8cb4ff; }
.plan ol { margin: 0; padding-left: 1.2rem; color: var(--muted); }

form { display: grid; gap: 0.7rem; margin-top: 1rem; }
label { display: grid; gap: 0.25rem; font-size: 0.92rem; }
label span {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
input, select, textarea {
  background: #101821;
  color: #fff;
  border: 1px solid var(--rule);
  padding: 0.7rem 0.75rem;
  width: 100%;
}
textarea { min-height: 7.2rem; resize: vertical; }
.form-row { display: grid; gap: 0.7rem; }
@media (min-width: 700px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }
form button.btn { justify-self: start; width: auto; }
.honeypot { position: absolute; left: -9999px; }
.form-ok { display: none; padding: 1rem 0; }
.form-ok.is-on { display: block; }

.contact-grid { display: grid; gap: 2rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 0.9fr 1.1fr; } }
.dial {
  display: inline-block;
  font-family: var(--font-d);
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  font-weight: 800;
  text-decoration: none;
  color: var(--cobalt-2);
  margin: 0.15rem 0 0.4rem;
}
.meta-list { list-style: none; margin: 1rem 0 0; padding: 0; }
.meta-list li { padding: 0.45rem 0; border-top: 1px solid var(--rule); }

.site-footer {
  margin-top: auto;
  background: #05080c;
  color: #b7c4d2;
  padding: 2.4rem 0 5.4rem;
}
.foot-grid { display: grid; gap: 1.5rem; }
.site-footer h2 {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.5rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer .logo img { width: 140px; margin-bottom: 0.55rem; }
@media (min-width: 800px) {
  .foot-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
  .site-footer { padding-bottom: 2.4rem; }
}

.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 35;
  display: none; background: var(--cobalt);
}
.sticky-cta a {
  display: block; text-align: center;
  padding: 0.95rem 1rem;
  font-weight: 700;
  text-decoration: none; color: #fff;
}
.sticky-cta.is-on { display: block; }
@media (min-width: 980px) {
  .sticky-cta, .sticky-cta.is-on { display: none !important; }
}

:focus-visible { outline: 2px solid var(--cobalt); outline-offset: 3px; }
.quiet { color: var(--cobalt-2); font-weight: 700; }
.pills { display: flex; flex-wrap: wrap; gap: 0.4rem; list-style: none; margin: 0.8rem 0 0; padding: 0; }
.pills li { border: 1px solid var(--rule); padding: 0.3rem 0.65rem; font-size: 0.85rem; }

.cover, .board, .emerg, .hero, .index, .paths, .feature, .work { }
