:root {
  --blue: #1475ae;
  --blue-bright: #2f94c9;
  --blue-dark: #0a4c77;
  --navy: #13364e;
  --red: #df1f27;
  --red-dark: #9f1117;
  --ink: #17242d;
  --charcoal: #151a1e;
  --charcoal-2: #20272c;
  --paper: #ffffff;
  --mist: #edf2f5;
  --line: #aebbc4;
  --muted: #596872;
  --construction: #f2e4a0;
  --content: 1240px;
  --hard-shadow: 0 4px 0 rgba(9, 34, 50, .30), 0 12px 24px rgba(0,0,0,.13);
}

* { box-sizing: border-box; border-radius: 0 !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 280px;
  background: #d8e0e5;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.52;
}
a { color: #0b679d; }
a:hover { color: var(--red-dark); }
img { max-width: 100%; height: auto; }

.skip-link {
  position: absolute;
  left: -10000px;
  top: 0;
  z-index: 999;
  background: #fff;
  color: #000;
  padding: 10px;
}
.skip-link:focus { left: 8px; top: 8px; }

.content-wrap { width: min(var(--content), calc(100% - 40px)); margin: 0 auto; }

.site-header {
  background: linear-gradient(180deg, #2080b7 0%, #12669a 100%);
  color: #fff;
  border-top: 3px solid var(--red);
  box-shadow: 0 2px 8px rgba(0,0,0,.22);
}
.masthead {
  width: min(var(--content), calc(100% - 40px));
  min-height: 88px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 355px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 8px 0;
}
.brand { display: block; line-height: 0; }
.brand img {
  display: block;
  width: 355px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,.18));
}
.masthead-tagline {
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 800;
  font-size: .88rem;
  text-shadow: 0 1px 0 rgba(0,0,0,.28);
}
.masthead-contact { text-align: right; font-weight: 800; font-size: .95rem; }
.masthead-contact a { display: block; color: #fff; text-decoration: none; }

.main-nav { background: #0b4c75; border-top: 1px solid rgba(255,255,255,.20); border-bottom: 3px solid #07334f; }
.nav-links { width: min(var(--content), calc(100% - 40px)); margin: 0 auto; display: flex; }
.nav-links a {
  color: #fff;
  text-decoration: none;
  padding: 13px 19px 12px;
  border-left: 1px solid rgba(255,255,255,.14);
  border-right: 1px solid rgba(0,0,0,.22);
  font-weight: 800;
  font-size: .90rem;
  text-transform: uppercase;
  letter-spacing: .025em;
  transition: background-color .16s ease;
}
.nav-links a:hover, .nav-links a.active {
  background: #063854;
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10), inset 0 -2px 0 #03283e;
}
.nav-toggle { display: none; }

.construction-notice {
  margin: 0;
  padding: 5px 14px;
  background: var(--construction);
  color: #2b250d;
  border-bottom: 1px solid #9f872f;
  text-align: center;
  font-size: .78rem;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

main { background: #fff; }

/* HOME HERO */
.local-hero {
  background: linear-gradient(180deg, #e7eef2 0%, #d7e1e7 100%);
  border-bottom: 5px solid var(--blue-dark);
  padding: 28px 0 32px;
}
.local-hero-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  min-height: 500px;
  border: 1px solid #7d8e99;
  border-top: 5px solid var(--blue-dark);
  background: #fff;
  box-shadow: var(--hard-shadow);
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding: 38px 38px 34px;
  background: linear-gradient(150deg, #102c40 0%, #154d70 100%);
  color: #eef7fc;
  border-right: 5px solid var(--red);
}
.eyebrow {
  color: #80c8ed;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .82rem;
}
.hero-copy h1 {
  margin: 7px 0 14px;
  color: #fff;
  font-size: clamp(2.35rem, 3.1vw, 3.65rem);
  line-height: 1.02;
  letter-spacing: -.025em;
}
.hero-copy .lead { margin: 0 0 22px; color: #d7e7f0; font-size: 1.08rem; }
.hero-photo { min-width: 0; min-height: 0; background: #d7e1e7; overflow: hidden; }
.hero-photo img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 50% 48%; }

.hero-service-list {
  list-style: none;
  margin: 20px 0 26px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 20px;
}
.hero-service-list li { position: relative; padding-left: 23px; font-weight: 700; font-size: .95rem; color: #f5fbff; }
.hero-service-list li::before { content: "✓"; position: absolute; left: 0; color: #ff575d; font-weight: 900; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }

.button, button.button, input.button {
  display: inline-block;
  appearance: none;
  border: 1px solid #083b5a;
  border-bottom: 3px solid #062d45;
  background: linear-gradient(180deg, #3292c5 0%, #176ca3 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .035em;
  padding: 11px 18px 10px;
  box-shadow: 0 3px 0 #052a41, 0 7px 12px rgba(0,0,0,.18);
  cursor: pointer;
}
.button:hover, .button:focus { background: linear-gradient(180deg, #ed3c43 0%, #c8181e 100%); color:#fff; border-color:#8e0d12; box-shadow:0 3px 0 #760b0e,0 7px 12px rgba(0,0,0,.18); }
.button.secondary { background: linear-gradient(180deg, #51575c 0%, #2c3033 100%); border-color:#111; box-shadow:0 3px 0 #000,0 7px 12px rgba(0,0,0,.18); }

/* LOCAL PHOTO STRIP */
.local-strip { background: #10161a; border-bottom: 4px solid var(--red-dark); padding: 20px 0 24px; }
.local-strip-heading { display:flex; align-items:end; justify-content:space-between; gap:24px; margin-bottom:14px; color:#dce8ef; }
.local-strip-heading h2 { margin:0; color:#fff; font-size:1.35rem; }
.local-strip-heading p { margin:0; color:#9fb0bb; font-size:.88rem; }
.local-photo-grid { display:grid; grid-template-columns:1.2fr .8fr .8fr .8fr; gap:12px; }
.local-photo { height: 180px; overflow:hidden; border:1px solid #46545d; border-bottom:4px solid #0b4d77; background:#22303a; box-shadow:0 3px 0 #050708; }
.local-photo:nth-child(3) { border-bottom-color: var(--red); }
.local-photo img { display:block; width:100%; height:100%; object-fit:cover; }
.local-photo:nth-child(1) img { object-position:center 65%; }
.local-photo:nth-child(2) img { object-position:center 42%; }
.local-photo:nth-child(3) img { object-position:center 54%; }
.local-photo:nth-child(4) img { object-position:center 42%; }

/* GENERAL SECTIONS */
.section { padding: 48px 0; }
.section.gray { background: #edf1f3; }
.section.dark { background: var(--charcoal); color: #dde6eb; border-top: 1px solid #080a0b; border-bottom: 4px solid var(--red-dark); }
.section h2 { margin: 0 0 14px; font-size: 1.9rem; line-height: 1.15; color: var(--navy); }
.section.dark h2, .section.dark h3 { color: #fff; }
.section-intro { max-width: 860px; margin-bottom: 26px; }

.section-heading-row { display:grid; grid-template-columns:1.1fr .9fr; gap:48px; align-items:end; margin-bottom:27px; }
.section-heading-row h2 { margin-bottom:0; }
.section-heading-row p { margin:0; color:#55636c; }
.section.dark .section-heading-row p { color:#aebbc3; }

.support-block-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:17px; }
.support-block {
  position:relative;
  background:#fff;
  border:1px solid #aab6bd;
  border-top:5px solid var(--blue);
  padding:24px 23px 22px;
  box-shadow:0 4px 0 #8e9aa2,0 10px 18px rgba(0,0,0,.10);
}
.support-block:nth-child(2) { border-top-color:#245c7d; }
.support-block:nth-child(3) { border-top-color:var(--red); }
.support-block h3 { margin:0 0 10px; color:#154c70; font-size:1.28rem; }
.support-block p { margin:0 0 12px; color:#4d5b64; }
.support-block ul { margin:0 0 17px; padding-left:19px; }
.support-block li { margin:5px 0; }
.support-block > a { font-weight:800; text-transform:uppercase; font-size:.78rem; letter-spacing:.035em; text-decoration:none; }

.quick-support-strip { background:#eef2f4; border-top:1px solid #c0c8cd; padding:36px 0; }
.quick-support-grid { display:grid; grid-template-columns:1fr 1fr; gap:50px; align-items:center; }
.quick-support-grid h2 { margin-bottom:8px; }
.quick-support-grid p { margin:0; color:#4c5961; }
.support-methods { display:grid; grid-template-columns:1fr 1fr; gap:13px; }
.support-methods a {
  min-height:105px;
  display:grid;
  align-content:center;
  padding:17px 18px;
  text-decoration:none;
  color:#1d2c36;
  background:#fff;
  border:1px solid #9ca9b1;
  border-left:5px solid var(--blue);
  box-shadow:0 3px 0 #8c979e,0 8px 15px rgba(0,0,0,.10);
}
.support-methods a:last-child { border-left-color:var(--red); }
.support-methods strong { color:#174e73; font-size:1.05rem; }
.support-methods span { color:#56636c; font-size:.88rem; margin-top:3px; }

/* INNER PAGE BANNERS */
.page-banner { background:#e8eef2; border-bottom:4px solid var(--blue-dark); }
.page-banner .content-wrap {
  min-height: 325px;
  display:grid;
  grid-template-columns:1fr 440px;
  gap:34px;
  align-items:stretch;
  padding-top:28px;
  padding-bottom:28px;
}
.page-banner-copy { display:grid; align-content:center; }
.page-banner h1 { margin:0 0 10px; font-size:2.7rem; line-height:1.03; color:var(--navy); }
.page-banner p { margin:0; font-size:1.08rem; max-width:760px; }
.page-banner .local-banner-photo { overflow:hidden; border:1px solid #82939e; border-bottom:4px solid var(--red); box-shadow:var(--hard-shadow); background:#cfd9df; }
.page-banner .local-banner-photo img { display:block; width:100%; height:100%; object-fit:cover; }
.banner-home img { object-position:center 42%; }
.banner-business img { object-position:center 38%; }
.banner-services img { object-position:center 48%; }
.banner-remote img { object-position:center 55%; }
.banner-contact img { object-position:center 48%; }

.service-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.service-card {
  background:#fff;
  border:1px solid #adb6bd;
  border-top:5px solid var(--blue);
  box-shadow:0 3px 0 #87929a,0 8px 18px rgba(0,0,0,.12);
  padding:24px;
}
.service-card:nth-child(3n) { border-top-color:var(--red); }
.service-card h3 { margin:0 0 10px; color:var(--blue-dark); font-size:1.25rem; }
.service-card p { margin:0 0 14px; }
.service-card ul { margin:0; padding-left:20px; }

.split { display:grid; grid-template-columns:1fr 1fr; gap:34px; align-items:center; }
.image-panel { border:1px solid #aab3b9; background:#fff; padding:10px; box-shadow:var(--hard-shadow); }
.image-panel img { display:block; width:100%; }
.image-panel.local-image { padding:0; height:370px; overflow:hidden; border-bottom:4px solid var(--red); }
.image-panel.local-image img { width:100%; height:100%; object-fit:cover; }

.check-list { list-style:none; padding:0; margin:18px 0; }
.check-list li { padding:7px 0 7px 30px; position:relative; }
.check-list li::before { content:"✓"; position:absolute; left:0; top:5px; color:var(--red); font-weight:900; font-size:1.15rem; }

.feature-bullets {
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.feature-bullets li {
  background:#f4f7f8;
  border:1px solid #c0c9cf;
  border-left:5px solid var(--blue);
  padding:11px 12px 11px 34px;
  position:relative;
  box-shadow:0 2px 0 #a9b2b8;
}
.feature-bullets li::before { content:"✓"; position:absolute; left:12px; color:var(--red); font-weight:900; }

.callout { background:#dcecf5; border:1px solid #8baec2; border-left:7px solid var(--red); box-shadow:0 3px 0 #a5b7c1; padding:18px 20px; margin:24px 0; }
.callout strong { color:var(--blue-dark); }

.security-panel {
  background:#16232c;
  color:#dce7ed;
  border:1px solid #334650;
  border-top:5px solid var(--red);
  padding:26px;
  box-shadow:0 4px 0 #06090b,0 10px 20px rgba(0,0,0,.22);
}
.security-panel h3 { color:#fff; margin-top:0; }
.security-panel ul { margin-bottom:0; }

/* CONTACT */
.contact-layout { display:grid; grid-template-columns:1.25fr .75fr; gap:34px; align-items:start; }
.contact-panel {
  background:#f4f6f7;
  border:1px solid #aab4ba;
  border-top:5px solid var(--blue);
  padding:28px;
  box-shadow:var(--hard-shadow);
}
.contact-panel h2 { margin-top:4px; }
.contact-intro { max-width:780px; margin-bottom:22px; }
.contact-method-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; margin:22px 0 28px; }
.contact-method {
  display:grid;
  gap:7px;
  min-height:150px;
  align-content:center;
  padding:20px;
  border:1px solid #8798a3;
  border-top:5px solid var(--blue);
  border-bottom:4px solid #6e7b84;
  background:linear-gradient(#ffffff,#e7edf1);
  color:#182a35;
  text-decoration:none;
  box-shadow:0 4px 0 #9aa5ac,0 10px 18px rgba(0,0,0,.12);
}
.contact-method:nth-child(2) { border-top-color:var(--red); }
.contact-method:hover,.contact-method:focus-visible { background:#fff; transform:translateY(-1px); }
.contact-method-label { text-transform:uppercase; letter-spacing:.06em; font-size:.77rem; font-weight:900; color:var(--blue-dark); }
.contact-method strong { font-size:1.35rem; color:var(--navy); overflow-wrap:anywhere; }
.contact-method span:last-child { font-size:.93rem; color:#4a5962; }
.contact-details-block { border-top:1px solid #bcc5ca; padding-top:6px; }
.contact-details-block h3 { margin-bottom:4px; color:var(--blue-dark); }
.contact-sidebar { display:grid; gap:18px; }
.contact-callout { margin:0; }
.contact-callout p { margin:6px 0 0; }
.contact-photo { height:260px !important; }

/* FOOTER */
.site-footer { background:#11171b; color:#d8dfe4; border-top:5px solid var(--blue); }
.footer-grid { width:min(var(--content),calc(100% - 40px)); margin:0 auto; display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:30px; padding:32px 0 24px; }
.site-footer h2 { color:#fff; font-size:1rem; text-transform:uppercase; letter-spacing:.04em; margin:0 0 8px; }
.site-footer p { margin:0; }
.site-footer a { color:#8fd0f5; }
.footer-bottom { border-top:1px solid #343a3e; width:min(var(--content),calc(100% - 40px)); margin:0 auto; padding:14px 0 20px; font-size:.86rem; color:#adb7bd; }

@media (max-width: 1023px) {
  body { font-size:16.5px; }
  .masthead { grid-template-columns:300px 1fr; gap:16px; }
  .brand img { width:300px; }
  .masthead-tagline { display:none; }
  .nav-links a { padding:12px 11px; font-size:.78rem; }
  .construction-notice { white-space:normal; }
  .local-hero-grid { grid-template-columns:1fr; min-height:0; }
  .hero-copy { border-right:0; border-bottom:5px solid var(--red); }
  .hero-photo { height:360px; }
  .local-photo-grid { grid-template-columns:1fr 1fr; }
  .local-photo { height:190px; }
  .section-heading-row { grid-template-columns:1fr; gap:12px; }
  .support-block-grid { grid-template-columns:1fr 1fr; }
  .quick-support-grid { grid-template-columns:1fr; gap:24px; }
  .page-banner .content-wrap { grid-template-columns:1fr 300px; min-height:285px; }
  .page-banner h1 { font-size:2.3rem; }
  .service-grid { grid-template-columns:repeat(2,1fr); }
  .contact-layout { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1.25fr 1fr 1fr; gap:18px; }
}

@media (max-width: 599px) {
  body { font-size:16px; }
  .masthead { width:calc(100% - 24px); min-height:0; grid-template-columns:1fr; padding:8px 0 9px; gap:5px; text-align:center; }
  .brand { justify-self:center; }
  .brand img { width:300px; max-width:100%; }
  .masthead-contact { text-align:center; font-size:.88rem; }
  .main-nav { padding:8px 12px; }
  .nav-toggle { display:block; width:100%; padding:10px 12px; border:1px solid #061f31; border-bottom:3px solid #031725; background:linear-gradient(#3c4247,#23272a); color:#fff; font-weight:800; box-shadow:0 2px 0 #000; cursor:pointer; }
  .nav-links { width:100%; display:none; flex-direction:column; margin-top:8px; border:1px solid #061f31; }
  .nav-links.open { display:flex; }
  .nav-links a { padding:11px 13px; font-size:.86rem; border:0; border-bottom:1px solid rgba(255,255,255,.12); }
  .construction-notice { font-size:.70rem; padding:6px 8px; line-height:1.2; }
  .content-wrap { width:calc(100% - 24px); }

  .local-hero { padding:12px 0 16px; }
  .local-hero-grid { border-top-width:4px; box-shadow:0 3px 0 #8b969e,0 8px 17px rgba(0,0,0,.14); }
  .hero-copy { padding:24px 20px 22px; }
  .hero-copy h1 { font-size:2rem; }
  .hero-copy .lead { font-size:1rem; }
  .hero-service-list { grid-template-columns:1fr; gap:5px; }
  .hero-actions { display:grid; grid-template-columns:1fr; }
  .button { width:100%; text-align:center; }
  .hero-photo { height:235px; }

  .local-strip { padding:17px 0 20px; }
  .local-strip-heading { display:block; }
  .local-strip-heading p { margin-top:5px; }
  .local-photo-grid { grid-template-columns:1fr 1fr; gap:8px; }
  .local-photo { height:125px; }

  .section { padding:34px 0; }
  .section h2 { font-size:1.55rem; }
  .support-block-grid,.service-grid,.split,.footer-grid { grid-template-columns:1fr; }
  .support-block { padding:19px; }
  .quick-support-grid { grid-template-columns:1fr; }
  .support-methods { grid-template-columns:1fr; }
  .feature-bullets { grid-template-columns:1fr; }

  .page-banner .content-wrap { grid-template-columns:1fr; gap:18px; min-height:0; padding-top:24px; padding-bottom:24px; }
  .page-banner h1 { font-size:2rem; }
  .page-banner .local-banner-photo { height:215px; }
  .image-panel.local-image { height:245px; }

  .contact-layout { gap:24px; }
  .contact-panel { padding:18px; }
  .contact-method-grid { grid-template-columns:1fr; }
  .footer-grid { width:calc(100% - 24px); padding:26px 0 18px; }
  .footer-bottom { width:calc(100% - 24px); }
}

/* Tech Rescue wordmark — desktop now uses the exact same coloration,
   cross treatment and proportions as the phone version. Only the overall
   scale changes by breakpoint, so the logo remains visually consistent. */
.brand { text-decoration:none; color:inherit; }
.brand-lockup {
  --brand-scale: 1.20;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:calc(3px * var(--brand-scale));
  width:max-content;
  max-width:100%;
  white-space:nowrap;
}
.brand-word {
  display:grid;
  line-height:1;
  align-items:start;
}
.brand-main {
  display:block;
  font-family:"Arial Black", "Arial", Helvetica, sans-serif;
  font-size:calc(28px * var(--brand-scale));
  line-height:.90;
  font-weight:900;
  letter-spacing:.01em;
  color:#242d82;
  text-shadow:1px 1px 0 rgba(236,217,44,.75), 0 1px 0 rgba(255,255,255,.25);
}
.brand-sub {
  display:block;
  margin-top:calc(3px * var(--brand-scale));
  font-size:calc(9px * var(--brand-scale));
  line-height:1;
  font-weight:700;
  color:#dff4ff;
  text-shadow:0 1px 0 rgba(0,0,0,.34);
}
.brand-tech { text-align:right; }
.brand-rescue { text-align:left; }
.brand-cross {
  flex:0 0 auto;
  width:calc(43px * var(--brand-scale));
  height:calc(49px * var(--brand-scale));
  display:grid;
  place-items:center;
  background:linear-gradient(180deg,#ff4a51 0%,#e51a22 45%,#ae090f 100%);
  border:calc(2px * var(--brand-scale)) solid #a30a10;
  border-bottom-width:calc(4px * var(--brand-scale));
  box-shadow:inset 0 calc(3px * var(--brand-scale)) 0 rgba(255,255,255,.42),
             0 calc(3px * var(--brand-scale)) 0 rgba(70,0,0,.45),
             0 calc(5px * var(--brand-scale)) calc(9px * var(--brand-scale)) rgba(0,0,0,.22);
}
.brand-plus {
  color:#ecf8fd;
  font-family:Arial, Helvetica, sans-serif;
  font-weight:900;
  font-size:calc(38px * var(--brand-scale));
  line-height:.72;
  transform:translateY(calc(-1px * var(--brand-scale)));
  text-shadow:0 1px 0 #8bb6c9, 1px 0 0 #8bb6c9, -1px 0 0 #8bb6c9;
}

@media (max-width: 1023px) {
  .brand-lockup { --brand-scale: 1.07; }
}

@media (max-width: 599px) {
  .brand-lockup { --brand-scale: 1; }
}

/* V7: Put each page's primary feature boxes inside the top banner so the
   information uses the open space beside the Chattanooga photo. */
.page-banner .content-wrap {
  grid-template-columns: minmax(0, 1fr) 440px;
  min-height: 430px;
}
.page-banner-copy,
.page-banner-copy.has-banner-features {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 16px 0 6px;
  min-width: 0;
}
.page-banner-copy > p {
  margin-bottom: 0;
}
.banner-feature-bullets {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
  width: 100%;
}
.banner-feature-bullets li {
  position: relative;
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 10px 11px 10px 35px;
  background: linear-gradient(180deg, #ffffff 0%, #e7edf1 100%);
  color: #1b2a34;
  border: 1px solid #9eabb4;
  border-left: 5px solid var(--blue);
  border-bottom: 3px solid #87949d;
  box-shadow: 0 3px 0 #a3adb4, 0 6px 12px rgba(0,0,0,.08);
  font-weight: 700;
  font-size: .91rem;
  line-height: 1.25;
}
.banner-feature-bullets li:nth-child(4n),
.banner-feature-bullets li:nth-child(4n-1) {
  border-left-color: #245c7d;
}
.banner-feature-bullets li:nth-child(6n) {
  border-left-color: var(--red);
}
.banner-feature-bullets li::before {
  content: "✓";
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-52%);
  color: var(--red);
  font-weight: 900;
  font-size: 1.12rem;
}
.contact-banner-features li strong {
  color: var(--blue-dark);
}
.compact-heading-row {
  margin-bottom: 22px;
}

@media (max-width: 1023px) {
  .page-banner .content-wrap {
    grid-template-columns: minmax(0, 1fr) 300px;
    min-height: 390px;
  }
  .banner-feature-bullets {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 18px;
  }
  .banner-feature-bullets li {
    min-height: 44px;
    font-size: .86rem;
    padding-top: 8px;
    padding-bottom: 8px;
  }
}

@media (max-width: 599px) {
  .page-banner .content-wrap {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .page-banner-copy,
  .page-banner-copy.has-banner-features {
    padding: 0;
  }
  .banner-feature-bullets {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }
  .banner-feature-bullets li {
    min-height: 46px;
    font-size: .9rem;
  }
}

/* V8 — unified logo treatment and spacing refinements */
.site-header {
  background: linear-gradient(180deg, #2589bd 0%, #1879ad 100%);
}
.masthead {
  grid-template-columns: 380px 1fr auto;
  gap: 22px;
}
.brand {
  display: block;
  line-height: 0;
  width: 355px;
  max-width: 100%;
  overflow: visible;
}
/* The uploaded Logo_Small artwork is used directly so desktop gets the same
   navy lettering, yellow-green offset shadow, white locality text and red cross
   as the small-screen reference.  The wrapper crops away the source padding. */
.brand-image-window {
  position: relative;
  display: block;
  width: 355px;
  height: 81px;
  max-width: 100%;
  overflow: hidden;
}
.brand-image-window img {
  position: absolute;
  display: block;
  width: 442px;
  max-width: none;
  height: auto;
  left: -65px;
  top: -16px;
  filter: none;
}
/* Retire the prior CSS-drawn wordmark completely. */
.brand-lockup { display: none !important; }

/* Add a real typographic gap between bold labels and their values in flex boxes. */
.contact-banner-features li strong {
  display: inline-block;
  margin-right: .36em;
  flex: 0 0 auto;
}

/* Slightly roomier banner boxes on desktop for legibility. */
.banner-feature-bullets {
  column-gap: 16px;
  row-gap: 11px;
}
.banner-feature-bullets li {
  padding-right: 14px;
}

/* Better framing for the newly supplied Chattanooga panoramas. */
.banner-services img,
.banner-contact img { object-position: center 52%; }
.banner-home img { object-position: center 58%; }
.banner-business img { object-position: center 50%; }
.hero-photo img { object-position: center 53%; }

@media (max-width: 1023px) {
  .masthead { grid-template-columns: 310px 1fr; }
  .brand { width: 300px; }
  .brand-image-window { width: 300px; height: 69px; }
  .brand-image-window img { width: 374px; left: -55px; top: -14px; }
}

@media (max-width: 599px) {
  .masthead { grid-template-columns: 1fr; }
  .brand { width: 300px; justify-self: center; }
  .brand-image-window { width: 300px; height: 69px; }
  .brand-image-window img { width: 374px; left: -55px; top: -14px; }
}


/* V10 HOME HERO: Chattanooga riverfront panorama with dog. */
.local-hero .hero-photo {
  background: #0f2532;
  display: block;
  overflow: hidden;
}
.local-hero .hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 51% 52%;
}

@media (min-width: 1024px) {
  .local-hero-grid {
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
  }
}

@media (max-width: 1023px) {
  .hero-photo { height: 390px; }
  .local-hero .hero-photo img { object-position: 50% 52%; }
}

@media (max-width: 599px) {
  .hero-photo { height: 270px; }
  .local-hero .hero-photo img { object-position: 50% 52%; }
}

/* V12: On phones, show the Chattanooga home-page photo before the main
   "Computer, network and technical support" copy. Desktop/tablet order stays unchanged. */
@media (max-width: 599px) {
  .local-hero-grid .hero-photo {
    order: -1;
  }
  .local-hero-grid .hero-copy {
    order: 0;
  }
}

/* V13: On the Services page phone layout, place the requested Chattanooga
   riverfront/dog photograph directly above "Computer & Network Services".
   Desktop and tablet retain the existing services banner image and order. */
.page-banner .local-banner-photo picture {
  display: block;
  width: 100%;
  height: 100%;
}
.page-banner .local-banner-photo picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 599px) {
  .page-banner .content-wrap > .banner-services {
    order: -1;
    height: 205px;
  }
  .page-banner .banner-services picture img {
    object-position: 50% 52%;
  }
}
