:root {
  --espresso: #15100d;
  --espresso-2: #241811;
  --saddle: #8b4a25;
  --copper: #b96532;
  --copper-2: #cf7a41;
  --parchment: #f4e8d6;
  --cream: #fff8ed;
  --sand: #d3b28c;
  --text: #2b211b;
  --muted: #6f5d50;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(43, 33, 27, .18);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .12;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(139,74,37,.22), transparent 24%),
    radial-gradient(circle at 85% 5%, rgba(185,101,50,.16), transparent 28%),
    linear-gradient(135deg, rgba(139,74,37,.07) 25%, transparent 25%),
    linear-gradient(225deg, rgba(139,74,37,.05) 25%, transparent 25%);
  background-size: auto, auto, 28px 28px, 28px 28px;
  z-index: -2;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.skip-link { position:absolute; left:-999px; top: 8px; background:#fff; padding: 10px; z-index: 10; }
.skip-link:focus { left: 8px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(21, 16, 13, .96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(211, 178, 140, .24);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { width: 310px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 22px; color: rgba(255,248,237,.88); font-weight: 700; font-size: .94rem; }
.main-nav a { text-decoration: none; }
.main-nav a:hover { color: #fff; }
.nav-cta { background: var(--copper); color: #fff !important; padding: 12px 16px; border-radius: 999px; box-shadow: 0 12px 22px rgba(0,0,0,.2); }
.nav-toggle { display: none; background: transparent; border: 0; width: 44px; height: 44px; padding: 10px; }
.nav-toggle span { display:block; height:2px; background: #fff8ed; margin:6px 0; }

.section-dark, .dark-band { position: relative; isolation: isolate; background: radial-gradient(circle at 74% 36%, rgba(185,101,50,.24), transparent 32%), linear-gradient(135deg, #15100d, #241811 52%, #15100d); color: var(--white); overflow: hidden; }
.circuit-layer { position:absolute; inset:0; opacity:.16; background-image: linear-gradient(rgba(211,178,140,.34) 1px, transparent 1px), linear-gradient(90deg, rgba(211,178,140,.34) 1px, transparent 1px), radial-gradient(circle, rgba(211,178,140,.55) 2px, transparent 3px); background-size: 56px 56px, 56px 56px, 112px 112px; mask-image: linear-gradient(90deg, transparent, #000 18%, #000 80%, transparent); z-index:-1; }
.hero { padding: 96px 0 86px; }
.hero-grid { display:grid; grid-template-columns: 1.08fr .92fr; gap: 50px; align-items: center; }
.eyebrow { margin: 0 0 12px; text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 900; color: var(--copper-2); }
.eyebrow.dark { color: var(--saddle); }
h1, h2, h3 { font-family: "Roboto Slab", Georgia, serif; line-height: 1.1; margin: 0; }
h1 { font-size: clamp(2.7rem, 7vw, 5.9rem); letter-spacing: -.045em; max-width: 780px; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -.035em; }
h3 { font-size: 1.35rem; }
.hero-text { font-size: clamp(1.08rem, 2vw, 1.28rem); color: rgba(255,248,237,.84); max-width: 720px; margin: 24px 0 0; }
.hero-actions, .trust-strip { display:flex; flex-wrap:wrap; gap: 12px; align-items:center; margin-top: 28px; }
.btn { display:inline-flex; align-items:center; justify-content:center; min-height: 48px; padding: 13px 21px; border-radius: 999px; font-weight: 900; text-decoration:none; border: 1px solid transparent; cursor: pointer; font-family: inherit; font-size: 1rem; }
.btn-primary { background: linear-gradient(135deg, var(--copper), var(--saddle)); color: #fff; box-shadow: 0 16px 34px rgba(0,0,0,.28); }
.btn-secondary { border-color: rgba(244,232,214,.35); color: var(--cream); background: rgba(255,255,255,.06); }
.btn-tertiary { background: var(--espresso); color: #fff; }
.trust-strip span { border: 1px solid rgba(211,178,140,.35); color: rgba(255,248,237,.86); padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.05); font-weight:700; font-size:.9rem; }
.hero-art { position: relative; display:grid; place-items:center; min-height: 440px; }
.hero-art img { width: min(520px, 100%); filter: drop-shadow(0 24px 42px rgba(0,0,0,.34)); }
.badge-glow { position:absolute; width: 76%; aspect-ratio:1; border-radius:999px; background: radial-gradient(circle, rgba(244,232,214,.18), rgba(185,101,50,.10) 42%, transparent 67%); }

.problem-picker, .services, .why, .contact { padding: 82px 0; }
.section-intro { max-width: 780px; margin: 0 auto 38px; text-align:center; }
.section-intro p:last-child { color: var(--muted); font-size: 1.08rem; margin-bottom: 0; }
.problem-grid { display:grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.problem-grid button { border: 1px solid rgba(139,74,37,.25); background: #fff; border-radius: 16px; padding: 18px 14px; font-weight: 900; color: var(--text); box-shadow: 0 12px 26px rgba(43,33,27,.08); cursor:pointer; min-height: 86px; }
.problem-grid button:hover { transform: translateY(-2px); border-color: var(--copper); color: var(--saddle); }

.cards-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card, .why-card, .feature-panel, .request-form, .contact-box { background: rgba(255,248,237,.92); border: 1px solid rgba(211,178,140,.82); border-radius: var(--radius); box-shadow: var(--shadow); }
.service-card { padding: 28px; min-height: 245px; position:relative; overflow:hidden; }
.service-card::after { content:""; position:absolute; right:-35px; bottom:-35px; width:130px; height:130px; border-radius:50%; border:1px solid rgba(139,74,37,.12); }
.service-card .icon { width: 48px; height: 48px; display:grid; place-items:center; border-radius: 14px; color:#fff; background: linear-gradient(135deg, var(--copper), var(--saddle)); margin-bottom: 20px; font-size: 1.4rem; font-weight:900; }
.service-card p, .why-card p { color: var(--muted); margin-bottom: 0; }

.parchment { background: linear-gradient(180deg, var(--parchment), #fff4e4); }
.split-section { padding: 90px 0; }
.split-grid { display:grid; grid-template-columns: 1fr .82fr; gap: 48px; align-items:center; }
.split-grid.reverse { grid-template-columns: .88fr 1fr; }
.split-copy p { color: var(--muted); font-size: 1.06rem; }
.feature-panel { padding: 34px; }
.check-list { list-style:none; padding:0; margin:22px 0 0; display:grid; gap: 11px; }
.check-list li { position:relative; padding-left: 30px; font-weight: 700; }
.check-list li::before { content:"✓"; position:absolute; left:0; top:0; color: var(--saddle); font-weight: 900; }
.dark-band { padding: 92px 0; }
.light-copy h2, .light-copy p { color: #fff8ed; }
.light-copy p { color: rgba(255,248,237,.80); }
.dark-panel { background: rgba(255,248,237,.08); border-color: rgba(211,178,140,.28); color: #fff8ed; box-shadow: 0 22px 60px rgba(0,0,0,.25); }
.check-list.light li::before { color: var(--copper-2); }

.why { position:relative; overflow:hidden; }
.why::before { content:""; position:absolute; inset:0; background: url('assets/logo-badge-optimized.png') center/520px no-repeat; opacity:.035; pointer-events:none; }
.why-grid { position:relative; display:grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.why-card { padding: 26px; min-height: 210px; }

.service-area { padding: 80px 0; }
.area-grid { display:grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items:center; }
.area-grid p { color: var(--muted); font-size: 1.08rem; }
.town-list { display:flex; flex-wrap:wrap; gap: 10px; }
.town-list span { background:#fff; border:1px solid rgba(139,74,37,.2); border-radius:999px; padding: 10px 14px; font-weight: 900; color: var(--saddle); box-shadow: 0 8px 18px rgba(43,33,27,.06); }

.contact-grid { display:grid; grid-template-columns: .82fr 1.18fr; gap: 42px; align-items:start; }
.contact-copy p { color: var(--muted); font-size: 1.08rem; }
.contact-box { padding: 22px; display:grid; gap: 6px; margin-top: 24px; }
.contact-box a { color: var(--saddle); font-weight:900; }
.request-form { display:grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 28px; }
.request-form label { display:grid; gap: 7px; font-weight: 900; }
.request-form input, .request-form select, .request-form textarea { width:100%; border: 1px solid rgba(139,74,37,.25); border-radius: 12px; padding: 13px 14px; font: inherit; background: #fff; color: var(--text); }
.request-form input:focus, .request-form select:focus, .request-form textarea:focus { outline: 3px solid rgba(185,101,50,.22); border-color: var(--copper); }
.full { grid-column: 1 / -1; }
.form-note { color: var(--muted); font-size: .9rem; margin: 0; }

.site-footer { background: var(--espresso); color: rgba(255,248,237,.78); padding: 46px 0 22px; }
.footer-grid { display:grid; grid-template-columns: 1.4fr .7fr .7fr; gap: 38px; padding-bottom: 34px; border-bottom: 1px solid rgba(211,178,140,.22); }
.footer-logo { width: 330px; margin-bottom: 16px; }
.site-footer h2 { color: #fff8ed; font-size: 1rem; margin-bottom: 14px; }
.site-footer a { display:block; color: rgba(255,248,237,.78); text-decoration:none; margin: 8px 0; }
.site-footer a:hover { color:#fff; }
.footer-bottom { display:flex; justify-content:space-between; gap: 20px; padding-top: 20px; font-size: .92rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1060px) {
  .brand img { width: 250px; }
  .main-nav { gap: 14px; font-size: .88rem; }
  .problem-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .header-inner { min-height: 72px; }
  .brand img { width: 225px; }
  .nav-toggle { display:block; }
  .main-nav { position:absolute; left:0; right:0; top:72px; display:none; flex-direction:column; align-items:stretch; background: rgba(21,16,13,.98); padding: 14px 20px 22px; border-bottom: 1px solid rgba(211,178,140,.22); }
  .main-nav.open { display:flex; }
  .main-nav a { padding: 10px 0; }
  .nav-cta { text-align:center; padding: 13px 16px !important; }
  .hero { padding: 70px 0 60px; }
  .hero-grid, .split-grid, .split-grid.reverse, .area-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-art { min-height: 320px; order: -1; }
  .hero-art img { width: min(360px, 88%); }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--max)); }
  .brand img { width: 190px; }
  h1 { font-size: clamp(2.4rem, 15vw, 4.2rem); }
  .problem-grid, .cards-grid, .why-grid, .request-form { grid-template-columns: 1fr; }
  .request-form .full { grid-column: auto; }
  .hero-actions .btn { width:100%; }
  .trust-strip span { flex: 1 1 calc(50% - 12px); text-align:center; }
  .problem-picker, .services, .why, .contact, .split-section, .service-area, .dark-band { padding: 62px 0; }
  .service-card { min-height: auto; }
  .footer-bottom { flex-direction:column; }
}

/* Hidden spam-trap field for the contact form */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 1rem;
}

.thank-you-card {
  position: relative;
  z-index: 1;
  max-width: 760px;
  text-align: center;
  background: rgba(21, 16, 13, .72);
  border: 1px solid rgba(211, 178, 140, .28);
  border-radius: 28px;
  padding: 3rem 2rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .32);
}

.thank-you-card img {
  width: min(420px, 82vw);
  height: auto;
  margin: 0 auto 1.75rem;
}

.thank-you-card h1 {
  color: #fff8ed;
  margin-bottom: .75rem;
}

.thank-you-card p {
  color: rgba(255, 248, 237, .82);
}

.thank-you-card .hero-actions {
  justify-content: center;
}

/* Hero: old brown saloon wood plank background */
.hero.section-dark {
  background:
    radial-gradient(circle at 76% 36%, rgba(255, 205, 151, .18), transparent 34%),
    linear-gradient(90deg, rgba(21, 16, 13, .92), rgba(21, 16, 13, .58) 44%, rgba(21, 16, 13, .88)),
    repeating-linear-gradient(
      to bottom,
      #7b3f1f 0px,
      #8b4a25 18px,
      #6f351a 42px,
      #9a542a 70px,
      #3a2013 73px,
      #1c110b 79px
    );
}

.hero.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .55;
  background:
    repeating-linear-gradient(90deg, transparent 0 205px, rgba(22, 12, 7, .62) 206px 211px, rgba(203, 118, 61, .16) 212px 216px),
    repeating-linear-gradient(17deg, rgba(255,255,255,.035) 0 2px, transparent 2px 18px),
    repeating-linear-gradient(103deg, transparent 0 28px, rgba(36, 20, 12, .24) 29px 32px, transparent 33px 64px);
  mix-blend-mode: soft-light;
}

.hero.section-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.28), transparent 18%, transparent 74%, rgba(0,0,0,.38)),
    radial-gradient(circle at 50% 50%, transparent 0 48%, rgba(0,0,0,.42) 100%);
}

.hero.section-dark .circuit-layer {
  opacity: .075;
}


/* 2026-07 professional polish: white header + refined saloon hero */
.site-header {
  background: rgba(255, 248, 237, .97);
  border-bottom: 1px solid rgba(139, 74, 37, .22);
  box-shadow: 0 10px 30px rgba(43, 33, 27, .10);
}
.header-inner { min-height: 86px; }
.brand img {
  width: 300px;
  filter: drop-shadow(0 3px 8px rgba(43, 33, 27, .12));
}
.main-nav {
  color: var(--text);
}
.main-nav a {
  color: var(--text);
  border-radius: 999px;
  padding: 9px 10px;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}
.main-nav a:hover {
  color: var(--saddle);
  background: rgba(139, 74, 37, .08);
}
.nav-cta {
  background: linear-gradient(135deg, var(--saddle), #6f351a);
  color: #fff !important;
  padding: 12px 18px !important;
  box-shadow: 0 12px 24px rgba(139, 74, 37, .25);
}
.nav-cta:hover {
  color: #fff !important;
  background: linear-gradient(135deg, #9a542a, var(--saddle)) !important;
  transform: translateY(-1px);
}
.nav-toggle span { background: var(--saddle); }

.hero.section-dark {
  padding: 110px 0 100px;
  background:
    radial-gradient(circle at 74% 36%, rgba(244, 232, 214, .24), transparent 28%),
    radial-gradient(circle at 18% 22%, rgba(185, 101, 50, .18), transparent 34%),
    linear-gradient(90deg, rgba(21, 16, 13, .86), rgba(21, 16, 13, .62) 46%, rgba(21, 16, 13, .90)),
    repeating-linear-gradient(
      to bottom,
      #5e2f17 0px,
      #7a3e1e 18px,
      #8b4a25 42px,
      #6d351a 67px,
      #2a170d 70px,
      #120b07 78px
    );
  border-bottom: 1px solid rgba(139, 74, 37, .35);
}
.hero.section-dark::before {
  opacity: .48;
  background:
    repeating-linear-gradient(90deg, transparent 0 190px, rgba(18, 10, 6, .72) 191px 197px, rgba(219, 143, 89, .16) 198px 201px),
    repeating-linear-gradient(14deg, rgba(255,255,255,.045) 0 1px, transparent 2px 16px),
    repeating-linear-gradient(104deg, transparent 0 26px, rgba(33, 18, 11, .30) 27px 31px, transparent 32px 62px),
    radial-gradient(circle at 28% 45%, rgba(255, 248, 237, .06), transparent 18%);
  mix-blend-mode: soft-light;
}
.hero.section-dark::after {
  background:
    linear-gradient(to bottom, rgba(0,0,0,.18), transparent 20%, transparent 72%, rgba(0,0,0,.38)),
    radial-gradient(circle at 48% 46%, transparent 0 42%, rgba(0,0,0,.46) 100%);
}
.hero-grid {
  grid-template-columns: .95fr 1.05fr;
  gap: 64px;
}
.hero-copy {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(244, 232, 214, .20);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(21, 16, 13, .78), rgba(36, 24, 17, .58));
  box-shadow: 0 28px 80px rgba(0,0,0,.32);
  backdrop-filter: blur(5px);
}
.hero-copy::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(211, 178, 140, .16);
  border-radius: 22px;
  pointer-events: none;
}
.hero .eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(244, 232, 214, .10);
  border: 1px solid rgba(244, 232, 214, .20);
  color: #f0b47c;
}
.hero h1 {
  font-size: clamp(2.35rem, 4.4vw, 4.15rem);
  letter-spacing: -.045em;
  line-height: 1.06;
  text-wrap: balance;
  max-width: 650px;
}
.hero-text {
  color: rgba(255, 248, 237, .89);
  max-width: 650px;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
}
.hero-actions .btn-primary {
  background: linear-gradient(135deg, #c7753f, var(--saddle));
  box-shadow: 0 18px 38px rgba(0,0,0,.34);
}
.hero-actions .btn-secondary {
  background: rgba(255, 248, 237, .12);
  border-color: rgba(244, 232, 214, .42);
  color: #fff8ed;
}
.trust-strip span {
  background: rgba(255, 248, 237, .10);
  border-color: rgba(244, 232, 214, .22);
}
.hero-art {
  min-height: 500px;
  padding: 28px;
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 248, 237, .16), rgba(255, 248, 237, .045)),
    radial-gradient(circle at 50% 45%, rgba(244, 232, 214, .22), transparent 58%);
  border: 1px solid rgba(244, 232, 214, .22);
  box-shadow: 0 30px 90px rgba(0,0,0,.30), inset 0 1px 0 rgba(255,255,255,.12);
  backdrop-filter: blur(4px);
}
.hero-art::after {
  content: "Local • Reliable • Plain-English";
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 9px 14px;
  border-radius: 999px;
  color: #fff8ed;
  background: rgba(21, 16, 13, .56);
  border: 1px solid rgba(244, 232, 214, .20);
  font-weight: 900;
  font-size: .88rem;
  letter-spacing: .02em;
}
.hero-art img {
  width: min(470px, 92%);
  filter: drop-shadow(0 28px 44px rgba(0,0,0,.38));
}
.badge-glow {
  width: 82%;
  background: radial-gradient(circle, rgba(244,232,214,.26), rgba(185,101,50,.13) 42%, transparent 70%);
}

@media (max-width: 860px) {
  .site-header { background: rgba(255, 248, 237, .98); }
  .header-inner { min-height: 74px; }
  .brand img { width: 220px; }
  .main-nav {
    top: 74px;
    background: rgba(255, 248, 237, .99);
    border-bottom: 1px solid rgba(139, 74, 37, .22);
    box-shadow: 0 18px 32px rgba(43, 33, 27, .12);
  }
  .main-nav a { color: var(--text); padding: 11px 12px; }
  .hero.section-dark { padding: 64px 0 64px; }
  .hero-copy { padding: 26px; }
  .hero h1 { font-size: clamp(2.25rem, 8.5vw, 3.85rem); max-width: 100%; }
  .hero-art { min-height: 340px; order: -1; padding: 22px; }
  .hero-art::after { bottom: 15px; font-size: .78rem; }
}

@media (max-width: 640px) {
  .brand img { width: 188px; }
  .hero-copy { padding: 22px; border-radius: 22px; }
  .hero-copy::before { display: none; }
  .hero-art::after { content: "Adair, Iowa Tech Support"; }
}

/* Expanded positioning: impossible problems and broad capability focus */
.problem-grid { grid-template-columns: repeat(7, 1fr); }
.impossible-section { padding: 92px 0; position: relative; overflow: hidden; }
.impossible-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(185,101,50,.16), transparent 26%),
    radial-gradient(circle at 88% 72%, rgba(139,74,37,.12), transparent 28%);
  pointer-events: none;
}
.impossible-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
}
.impossible-copy p {
  color: var(--muted);
  font-size: 1.07rem;
}
.capability-panel {
  background: rgba(255,248,237,.94);
  border: 1px solid rgba(211,178,140,.82);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 34px;
}
.capability-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.capability-tags span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(139,74,37,.22);
  background: #fff;
  color: var(--saddle);
  border-radius: 999px;
  padding: 10px 13px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(43,33,27,.06);
}
.cards-grid { grid-template-columns: repeat(4, 1fr); }
.why-grid { grid-template-columns: repeat(5, 1fr); }
.why-card { min-height: 230px; }

@media (max-width: 1180px) {
  .problem-grid { grid-template-columns: repeat(4, 1fr); }
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .impossible-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .problem-grid, .cards-grid, .why-grid { grid-template-columns: 1fr; }
  .impossible-section { padding: 62px 0; }
}

/* AI expertise feature section */
.ai-section {
  padding: 86px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(185,101,50,.12), transparent 30%),
    radial-gradient(circle at 86% 82%, rgba(139,74,37,.10), transparent 32%),
    linear-gradient(180deg, #fff8ed, #f4e8d6);
  border-bottom: 1px solid rgba(139, 74, 37, .14);
}
.ai-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
}
.ai-copy {
  position: relative;
  padding: 36px;
  border-radius: 28px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(211,178,140,.72);
  box-shadow: var(--shadow);
}
.ai-copy::before {
  content: "AI";
  position: absolute;
  right: 24px;
  top: 18px;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 4.8rem;
  line-height: 1;
  color: rgba(139,74,37,.08);
  font-weight: 900;
}
.ai-copy p {
  color: var(--muted);
  font-size: 1.07rem;
}
.ai-panel {
  position: relative;
  padding: 34px;
  border-radius: 28px;
  color: #fff8ed;
  background:
    linear-gradient(135deg, rgba(21,16,13,.96), rgba(36,24,17,.92)),
    repeating-linear-gradient(45deg, rgba(211,178,140,.16) 0 1px, transparent 1px 18px);
  border: 1px solid rgba(211,178,140,.32);
  box-shadow: 0 26px 70px rgba(43,33,27,.24);
  overflow: hidden;
}
.ai-panel::after {
  content: "";
  position: absolute;
  inset: auto -80px -110px auto;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(185,101,50,.30), transparent 64%);
}
.ai-panel h3 { position: relative; z-index: 1; }
.ai-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.ai-list span {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 13px 14px;
  border-radius: 16px;
  font-weight: 900;
  background: rgba(255,248,237,.09);
  border: 1px solid rgba(244,232,214,.18);
}
.ai-list span::before {
  content: "✦";
  color: #f0b47c;
  margin-right: 9px;
}

@media (max-width: 860px) {
  .ai-grid { grid-template-columns: 1fr; }
  .ai-section { padding: 64px 0; }
}
@media (max-width: 640px) {
  .ai-copy { padding: 26px; }
  .ai-list { grid-template-columns: 1fr; }
}

/* Surveillance cameras and security consulting section */
.security-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 88px 0;
  color: #fff8ed;
  background:
    radial-gradient(circle at 16% 22%, rgba(185,101,50,.26), transparent 30%),
    radial-gradient(circle at 84% 70%, rgba(211,178,140,.16), transparent 32%),
    linear-gradient(135deg, #15100d, #241811 54%, #15100d);
  border-top: 1px solid rgba(139, 74, 37, .24);
  border-bottom: 1px solid rgba(139, 74, 37, .28);
}
.security-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .13;
  background-image:
    linear-gradient(rgba(211,178,140,.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(211,178,140,.45) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(244,232,214,.8) 2px, transparent 3px);
  background-size: 58px 58px, 58px 58px, 116px 116px;
}
.security-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
}
.security-panel {
  padding: 38px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,248,237,.13), rgba(255,248,237,.055));
  border: 1px solid rgba(244,232,214,.22);
  box-shadow: 0 28px 76px rgba(0,0,0,.26);
  backdrop-filter: blur(4px);
}
.security-panel p {
  color: rgba(255,248,237,.82);
  font-size: 1.07rem;
}
.security-list {
  padding: 34px;
  border-radius: 28px;
  background: rgba(255,248,237,.08);
  border: 1px solid rgba(244,232,214,.20);
  box-shadow: 0 24px 70px rgba(0,0,0,.24);
}
.security-list h3 { color: #fff8ed; }

.camera-diagram-card {
  position: relative;
  z-index: 1;
  margin: 24px 0 0;
  padding: 12px;
  border-radius: 22px;
  background: rgba(255, 248, 237, .10);
  border: 1px solid rgba(244,232,214,.22);
  box-shadow: 0 18px 44px rgba(0,0,0,.26);
}
.camera-diagram-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}
.camera-diagram-card figcaption {
  margin: 10px 8px 2px;
  color: rgba(255,248,237,.78);
  font-size: .93rem;
  line-height: 1.45;
  font-weight: 700;
}

/* Keep expanded navigation usable after adding security services */
@media (min-width: 861px) {
  .brand img { width: 260px; }
  .main-nav { gap: 8px; font-size: .86rem; }
  .main-nav a { padding: 8px 8px; }
  .nav-cta { padding: 10px 14px !important; }
}

@media (max-width: 860px) {
  .security-grid { grid-template-columns: 1fr; }
  .security-section { padding: 64px 0; }
  .security-panel { padding: 28px; }
}

/* Mesh Wi-Fi networking and transmission assessment section */
.mesh-section {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(185,101,50,.13), transparent 30%),
    radial-gradient(circle at 82% 78%, rgba(139,74,37,.11), transparent 32%),
    linear-gradient(180deg, #fffaf2, #f4e8d6);
  border-top: 1px solid rgba(139, 74, 37, .14);
  border-bottom: 1px solid rgba(139, 74, 37, .14);
}
.mesh-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(139,74,37,.65) 0 2px, transparent 3px) 0 0 / 92px 92px,
    radial-gradient(circle, rgba(185,101,50,.45) 0 2px, transparent 3px) 46px 46px / 92px 92px,
    linear-gradient(90deg, transparent 0 45px, rgba(139,74,37,.35) 46px 47px, transparent 48px 92px),
    linear-gradient(0deg, transparent 0 45px, rgba(139,74,37,.25) 46px 47px, transparent 48px 92px);
}
.mesh-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
}
.mesh-copy {
  position: relative;
  padding: 36px;
  border-radius: 28px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(211,178,140,.76);
  box-shadow: var(--shadow);
}
.mesh-copy::before {
  content: "Wi‑Fi";
  position: absolute;
  right: 24px;
  top: 18px;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 3.2rem;
  line-height: 1;
  color: rgba(139,74,37,.08);
  font-weight: 900;
}
.mesh-copy p {
  color: var(--muted);
  font-size: 1.07rem;
}
.mesh-panel {
  position: relative;
  padding: 34px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255,248,237,.96), rgba(255,244,228,.90));
  border: 1px solid rgba(211,178,140,.82);
  box-shadow: 0 24px 70px rgba(43,33,27,.16);
  overflow: hidden;
}
.mesh-panel::after {
  content: "";
  position: absolute;
  right: -85px;
  bottom: -95px;
  width: 245px;
  height: 245px;
  border-radius: 999px;
  border: 26px solid rgba(139,74,37,.08);
  box-shadow: 0 0 0 26px rgba(185,101,50,.045), 0 0 0 52px rgba(139,74,37,.032);
}
.mesh-panel h3,
.mesh-panel ul {
  position: relative;
  z-index: 1;
}

.mesh-diagram-card {
  position: relative;
  z-index: 1;
  margin: 24px 0 0;
  padding: 12px;
  border-radius: 22px;
  background: rgba(255, 250, 242, .82);
  border: 1px solid rgba(211,178,140,.82);
  box-shadow: 0 16px 36px rgba(43,33,27,.12);
}
.mesh-diagram-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}
.mesh-diagram-card figcaption {
  margin: 10px 8px 2px;
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.45;
  font-weight: 700;
}

@media (max-width: 860px) {
  .mesh-grid { grid-template-columns: 1fr; }
  .mesh-section { padding: 64px 0; }
}
@media (max-width: 640px) {
  .mesh-copy, .mesh-panel { padding: 26px; }
}

/* 2026-07 alignment polish: center button/menu text and card headings */
.main-nav a,
.nav-cta,
.btn,
.problem-grid button,
.town-list span,
.tag,
.capability-tag {
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.main-nav a {
  line-height: 1.15;
  white-space: nowrap;
}

.problem-grid button {
  line-height: 1.22;
}

.service-card,
.why-card,
.feature-panel,
.ai-panel,
.mesh-panel,
.security-list {
  text-align: center;
}

.service-card .icon {
  margin-left: auto;
  margin-right: auto;
}

.service-card h3,
.why-card h3,
.feature-panel h3,
.ai-panel h3,
.mesh-panel h3,
.security-list h3,
.contact-box strong,
.card-headline {
  text-align: center;
}

.check-list li {
  text-align: left;
}

.mesh-panel .check-list,
.security-list .check-list,
.feature-panel .check-list {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 860px) {
  .main-nav a {
    width: 100%;
  }
}

/* 2026-07 headline fit polish: keep major section headlines on one line when possible */
main h2.fit-one-line {
  max-width: 100%;
  white-space: nowrap;
  text-wrap: nowrap;
}

main h2.balanced-headline {
  white-space: normal;
  text-wrap: balance;
}

.section-intro h2,
.impossible-copy h2,
.ai-copy h2,
.security-panel h2,
.mesh-copy h2,
.split-copy h2,
.area-grid h2,
.contact-copy h2 {
  max-width: 100%;
}

/* SEO/mobile pass: prevent overflow, improve tap targets, and restore the white branded header */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.hero-grid > *,
.ai-grid > *,
.security-grid > *,
.mesh-grid > *,
.impossible-grid > *,
.split-grid > *,
.area-grid > *,
.contact-grid > *,
.footer-grid > * {
  min-width: 0;
}

.site-header {
  background: rgba(255, 248, 237, .97);
  border-bottom: 1px solid rgba(139, 74, 37, .22);
  box-shadow: 0 12px 28px rgba(43, 33, 27, .10);
}

.main-nav {
  color: var(--saddle);
}

.main-nav a:not(.nav-cta) {
  color: var(--saddle);
  background: rgba(255, 255, 255, .62);
  border: 1px solid rgba(139, 74, 37, .14);
  border-radius: 999px;
}

.main-nav a:not(.nav-cta):hover {
  color: var(--espresso);
  border-color: rgba(139, 74, 37, .36);
  background: #fff;
}

.nav-toggle span {
  background: var(--saddle);
}

.brand img,
.footer-logo {
  max-width: 100%;
  height: auto;
}

.request-form input,
.request-form select,
.request-form textarea {
  font-size: 16px;
}

.camera-diagram-card,
.mesh-diagram-card {
  max-width: 100%;
  overflow: hidden;
}

@media (min-width: 861px) {
  .main-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    row-gap: 8px;
  }
}

@media (max-width: 860px) {
  .site-header {
    background: rgba(255, 248, 237, .985);
  }

  .main-nav {
    top: 74px;
    max-height: calc(100dvh - 74px);
    overflow-y: auto;
    gap: 8px;
    background: rgba(255, 248, 237, .99);
  }

  .main-nav a:not(.nav-cta),
  .main-nav .nav-cta {
    min-height: 46px;
    width: 100%;
    padding: 12px 14px !important;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-copy,
  .ai-panel,
  .security-panel,
  .security-list,
  .mesh-copy,
  .mesh-panel,
  .capability-panel,
  .feature-panel,
  .request-form,
  .contact-box {
    border-radius: 22px;
  }

  .security-panel h2,
  .mesh-copy h2,
  .ai-copy h2,
  .impossible-copy h2,
  .section-intro h2,
  .split-copy h2,
  .area-grid h2,
  .contact-copy h2 {
    font-size: clamp(1.85rem, 8vw, 2.75rem);
    line-height: 1.12;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .header-inner {
    gap: 12px;
  }

  .brand img {
    width: min(184px, 68vw);
  }

  .hero.section-dark {
    padding-top: 44px;
  }

  h1 {
    font-size: clamp(2.1rem, 12vw, 3.55rem);
    line-height: 1.05;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 10.5vw, 3.15rem);
    line-height: 1.06;
  }

  h2 {
    font-size: clamp(1.8rem, 8.5vw, 2.45rem);
  }

  .hero-text,
  .mesh-copy p,
  .security-panel p,
  .ai-copy p,
  .impossible-copy p,
  .split-copy p,
  .area-grid p,
  .contact-copy p {
    font-size: 1rem;
  }

  .hero-actions,
  .trust-strip {
    align-items: stretch;
  }

  .trust-strip span {
    flex: 1 1 100%;
  }

  .problem-grid button,
  .btn {
    min-height: 50px;
  }

  .ai-section,
  .security-section,
  .mesh-section,
  .impossible-section,
  .problem-picker,
  .services,
  .why,
  .contact,
  .split-section,
  .service-area,
  .dark-band {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .ai-panel,
  .security-panel,
  .security-list,
  .mesh-copy,
  .mesh-panel,
  .capability-panel,
  .feature-panel,
  .request-form,
  .contact-box,
  .service-card,
  .why-card {
    padding: 22px;
  }

  .mesh-copy::before {
    display: none;
  }

  .contact-box,
  .site-footer,
  .form-note {
    overflow-wrap: anywhere;
  }

  .footer-logo {
    width: min(290px, 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* v18: image-aspect safety rules - never stretch brand/logos/graphics */
img,
svg {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.brand img,
.hero-art img,
.footer-logo,
.mesh-diagram-card img,
.camera-diagram-card img,
.thank-you-card img {
  height: auto !important;
  object-fit: contain !important;
  aspect-ratio: auto !important;
}

.hero-art {
  overflow: hidden;
}

.hero-art img {
  width: min(470px, 92%);
  max-height: 360px;
}

@media (max-width: 860px) {
  .hero-art img {
    width: min(360px, 88%);
    max-height: 300px;
  }
}

/* v21: make the hero logo fill the glass panel without distortion */
.hero-art {
  min-height: 520px;
  padding: 34px 34px 72px;
}
.hero-art img {
  width: min(620px, 96%);
  max-height: 410px;
  height: auto !important;
  object-fit: contain !important;
}
@media (max-width: 860px) {
  .hero-art {
    min-height: 380px;
    padding: 26px 24px 64px;
  }
  .hero-art img {
    width: min(430px, 96%);
    max-height: 300px;
  }
}
@media (max-width: 520px) {
  .hero-art {
    min-height: 330px;
  }
  .hero-art img {
    width: 96%;
    max-height: 250px;
  }
}


/* v22: Remote help on demand section and page */
.remote-section {
  position: relative;
  overflow: hidden;
  padding: 86px 0;
  background:
    radial-gradient(circle at 14% 20%, rgba(185,101,50,.13), transparent 30%),
    radial-gradient(circle at 86% 76%, rgba(139,74,37,.10), transparent 34%),
    linear-gradient(180deg, #fffaf2, #f4e8d6);
  border-top: 1px solid rgba(139, 74, 37, .14);
  border-bottom: 1px solid rgba(139, 74, 37, .14);
}
.remote-section::before {
  content: "SOS";
  position: absolute;
  right: 8%;
  top: 24px;
  font-family: "Roboto Slab", Georgia, serif;
  font-weight: 900;
  font-size: clamp(4rem, 11vw, 9rem);
  color: rgba(139,74,37,.055);
  pointer-events: none;
}
.remote-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
}
.remote-copy {
  padding: 36px;
  border-radius: 28px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(211,178,140,.76);
  box-shadow: var(--shadow);
}
.remote-copy p {
  color: var(--muted);
  font-size: 1.07rem;
}
.remote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.remote-panel {
  padding: 34px;
  border-radius: 28px;
  color: #fff8ed;
  background:
    linear-gradient(135deg, rgba(21,16,13,.96), rgba(36,24,17,.92)),
    repeating-linear-gradient(45deg, rgba(211,178,140,.16) 0 1px, transparent 1px 18px);
  border: 1px solid rgba(211,178,140,.32);
  box-shadow: 0 26px 70px rgba(43,33,27,.24);
}
.remote-steps {
  list-style: none;
  counter-reset: remoteStep;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}
.remote-steps li {
  counter-increment: remoteStep;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,248,237,.08);
  border: 1px solid rgba(244,232,214,.16);
}
.remote-steps li::before {
  content: counter(remoteStep);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--copper), var(--saddle));
  color: #fff;
  font-weight: 900;
}
.remote-steps strong,
.remote-steps span {
  display: block;
}
.remote-steps span {
  color: rgba(255,248,237,.76);
  margin-top: 3px;
}
.remote-page-hero {
  padding: 84px 0;
}
.remote-page-card {
  padding: 36px;
  border-radius: 28px;
  background: rgba(21,16,13,.78);
  border: 1px solid rgba(211,178,140,.28);
  box-shadow: 0 26px 76px rgba(0,0,0,.28);
}
.remote-launch-box {
  margin-top: 26px;
  padding: 24px;
  border-radius: 22px;
  background: rgba(255,248,237,.08);
  border: 1px solid rgba(244,232,214,.20);
}
.remote-warning {
  color: #fff8ed;
  font-weight: 900;
  margin: 0 0 10px;
}
.remote-help-detail {
  padding: 82px 0;
}
.remote-detail-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 38px;
  align-items: start;
}
.remote-detail-card {
  background: rgba(255,248,237,.94);
  border: 1px solid rgba(211,178,140,.82);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 30px;
}
.remote-detail-card p { color: var(--muted); }
.remote-detail-card .check-list { margin-top: 18px; }

@media (max-width: 860px) {
  .remote-grid,
  .remote-detail-grid { grid-template-columns: 1fr; }
  .remote-section,
  .remote-help-detail { padding: 64px 0; }
  .remote-page-hero { padding: 64px 0; }
}
@media (max-width: 640px) {
  .remote-section,
  .remote-help-detail { padding: 54px 0; }
  .remote-copy,
  .remote-panel,
  .remote-page-card,
  .remote-detail-card { padding: 22px; }
  .remote-actions .btn { width: 100%; }
  .remote-steps li { grid-template-columns: 36px 1fr; padding: 14px; }
  .remote-steps li::before { width: 36px; height: 36px; }
}

/* v23: keep Remote Help step descriptions in the main text column */
.remote-steps strong,
.remote-steps span {
  grid-column: 2;
  min-width: 0;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
  text-align: left;
}

.remote-steps li::before {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.remote-steps li {
  align-items: start;
}

.remote-steps span {
  max-width: 100%;
  line-height: 1.5;
}


/* v24: remote help step icons */
.remote-steps li {
  grid-template-columns: 42px minmax(0, 1fr) 72px;
  align-items: center;
}

.remote-step-icon {
  grid-column: 3;
  grid-row: 1 / span 2;
  width: 72px;
  height: 72px !important;
  object-fit: contain;
  align-self: center;
  justify-self: end;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.22));
}

@media (max-width: 640px) {
  .remote-steps li {
    grid-template-columns: 36px minmax(0, 1fr) 52px;
    gap: 10px;
  }
  .remote-step-icon {
    width: 52px;
    height: 52px !important;
  }
}

/* v25: QuickDraw SOS remote help branding */
.quickdraw-logo {
  display: block;
  width: min(100%, 430px);
  height: auto !important;
  object-fit: contain;
  margin: 0 0 20px;
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(43,33,27,.16);
}
.remote-copy .quickdraw-logo {
  background: rgba(255,248,237,.72);
}
.quickdraw-logo-dark {
  width: min(100%, 520px);
  margin-bottom: 24px;
}
.remote-copy strong {
  color: var(--ink);
  font-weight: 900;
}
@media (max-width: 860px) {
  .quickdraw-logo,
  .quickdraw-logo-dark {
    margin-left: auto;
    margin-right: auto;
  }
}

/* v31: Remote support hero graphic stack */
.remote-hero-art {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 34px 34px 76px;
}
.remote-hero-art::after {
  bottom: 24px;
}
.remote-hero-art .badge-glow {
  position: absolute;
  inset: 10% 8% auto 8%;
  height: 62%;
  pointer-events: none;
}
.remote-hero-art img.remote-hero-quickdraw,
.remote-hero-art img.remote-hero-wiredwest {
  width: min(520px, 92%);
  height: auto !important;
  max-height: none;
  object-fit: contain !important;
  aspect-ratio: auto !important;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.28));
  position: relative;
  z-index: 1;
}
.remote-hero-art img.remote-hero-quickdraw {
  margin-top: 4px;
}
.remote-hero-art img.remote-hero-wiredwest {
  width: min(520px, 92%);
  max-height: 230px;
}
@media (max-width: 860px) {
  .remote-hero-art {
    gap: 14px;
    padding: 24px 20px 64px;
  }
  .remote-hero-art img.remote-hero-quickdraw,
  .remote-hero-art img.remote-hero-wiredwest {
    width: min(430px, 96%);
  }
  .remote-hero-art img.remote-hero-wiredwest {
    max-height: 190px;
  }
}
@media (max-width: 520px) {
  .remote-hero-art img.remote-hero-quickdraw,
  .remote-hero-art img.remote-hero-wiredwest {
    width: 96%;
  }
  .remote-hero-art img.remote-hero-wiredwest {
    max-height: 160px;
  }
}


/* v32: Remote help card alignment and clickable QuickDraw badge */
.remote-grid {
  align-items: stretch;
}
.remote-copy,
.remote-panel {
  height: 100%;
}
.remote-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.remote-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quickdraw-logo-link {
  display: block;
  width: min(100%, 430px);
  margin: 0 0 20px;
  border-radius: 22px;
  text-decoration: none;
  line-height: 0;
  transition: transform .18s ease, filter .18s ease;
}
.quickdraw-logo-link:hover,
.quickdraw-logo-link:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.02);
  outline: none;
}
.quickdraw-logo-link:focus-visible {
  box-shadow: 0 0 0 4px rgba(185,101,50,.22);
}
.quickdraw-logo-link .quickdraw-logo {
  width: 100%;
  margin: 0;
}
@media (max-width: 860px) {
  .remote-grid {
    align-items: start;
  }
  .remote-copy,
  .remote-panel {
    height: auto;
  }
  .quickdraw-logo-link {
    margin-left: auto;
    margin-right: auto;
  }
}


/* v33: QuickDraw SOS branding in the remote process panel */
.remote-panel {
  justify-content: flex-start;
}

.remote-panel-brand {
  align-self: center;
  text-align: center;
  margin: 0 0 26px;
  padding: 10px 26px 12px;
  border-radius: 999px;
  background: rgba(255, 248, 237, .08);
  border: 1px solid rgba(211, 178, 140, .28);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.035), 0 14px 32px rgba(0,0,0,.18);
  color: #fff8ed;
  line-height: 1;
}

.remote-panel-brand span,
.remote-panel-brand strong {
  display: inline-block;
  font-family: "Roboto Slab", Georgia, serif;
  letter-spacing: -.02em;
}

.remote-panel-brand span {
  font-size: clamp(1.55rem, 2.5vw, 2.4rem);
  font-weight: 900;
}

.remote-panel-brand strong {
  margin-left: 8px;
  font-size: clamp(1.75rem, 2.8vw, 2.75rem);
  font-weight: 1000;
  color: var(--copper-light);
}

.remote-panel h3 {
  margin-top: 0;
}

@media (max-width: 640px) {
  .remote-panel-brand {
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }
  .remote-panel-brand span,
  .remote-panel-brand strong {
    display: block;
    margin-left: 0;
  }
}

/* v34: Center QuickDraw SOS intro elements within the left card */
.remote-copy .quickdraw-logo-link,
.remote-copy .quickdraw-logo {
  margin-left: auto;
  margin-right: auto;
}

.remote-copy .eyebrow,
.remote-copy h2 {
  text-align: center;
}

.remote-copy .remote-actions {
  justify-content: center;
}

.remote-copy .btn {
  text-align: center;
}

.quickdraw-downloads {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.quickdraw-download-card,
.quickdraw-platform-row a {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  text-align: center;
  text-decoration: none;
  color: var(--cream);
  font-weight: 900;
  border-radius: 18px;
  border: 1px solid rgba(211,178,140,.28);
  background: rgba(255,248,237,.08);
  padding: 14px 10px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.quickdraw-download-card:hover,
.quickdraw-platform-row a:hover,
.quickdraw-download-card:focus-visible,
.quickdraw-platform-row a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(207,122,65,.72);
  background: rgba(255,248,237,.13);
  outline: none;
}
.quickdraw-download-card img,
.quickdraw-platform-row img {
  width: min(82px, 100%);
  height: auto !important;
  object-fit: contain;
}
.quickdraw-platform-row {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.quickdraw-platform-row a {
  color: var(--text);
  background: rgba(255,255,255,.52);
  border-color: rgba(211,178,140,.72);
}
.quickdraw-platform-row a:hover,
.quickdraw-platform-row a:focus-visible {
  background: #fff;
}
@media (max-width: 640px) {
  .quickdraw-downloads,
  .quickdraw-platform-row { grid-template-columns: 1fr; }
  .quickdraw-download-card,
  .quickdraw-platform-row a { grid-template-columns: 72px 1fr; justify-items: start; text-align: left; padding: 12px 14px; }
  .quickdraw-download-card img,
  .quickdraw-platform-row img { width: 72px; }
}

/* v37: Move QuickDraw launch/download box into the right support hero panel */
.remote-hero-art::after {
  display: none;
}
.remote-hero-art {
  justify-content: flex-start;
  padding-bottom: 34px;
}
.remote-hero-art .hero-trust-pill {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: -2px auto 12px;
  white-space: nowrap;
  padding: 9px 16px;
  border-radius: 999px;
  color: #fff8ed;
  background: rgba(21, 16, 13, .62);
  border: 1px solid rgba(244, 232, 214, .22);
  font-weight: 900;
  font-size: .9rem;
  letter-spacing: .02em;
}
.remote-hero-launch {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  text-align: left;
}
.remote-hero-launch .btn {
  width: fit-content;
  max-width: 100%;
}
.remote-hero-launch .quickdraw-downloads {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.remote-hero-launch .quickdraw-download-card {
  min-width: 0;
}
.remote-hero-launch .quickdraw-download-card img {
  width: 76px !important;
  height: 76px !important;
  max-height: none;
  filter: none;
}
.remote-hero-launch .quickdraw-download-card span {
  font-size: .95rem;
}
@media (max-width: 980px) {
  .remote-hero-launch .quickdraw-downloads {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .remote-hero-launch .quickdraw-downloads {
    grid-template-columns: 1fr;
  }
  .remote-hero-launch .btn {
    width: 100%;
  }
}


/* v38: Move QuickDraw launch/download box under the call/email buttons in the left remote support card */
.remote-left-launch {
  width: 100%;
  margin-top: 26px;
  text-align: left;
}
.remote-left-launch .btn {
  width: fit-content;
  max-width: 100%;
}
.remote-left-launch .quickdraw-downloads {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.remote-left-launch .quickdraw-download-card {
  min-width: 0;
}
.remote-left-launch .quickdraw-download-card img {
  width: 76px !important;
  height: 76px !important;
  max-height: none;
  filter: none;
}
.remote-left-launch .quickdraw-download-card span {
  font-size: .95rem;
}
.remote-hero-art {
  justify-content: center;
}
@media (max-width: 620px) {
  .remote-left-launch .quickdraw-downloads {
    grid-template-columns: 1fr;
  }
  .remote-left-launch .btn {
    width: 100%;
  }
}


/* v39: Move QuickDraw SOS badge from the right hero art into the left card under call/email */
.remote-left-quickdraw {
  display: block;
  width: min(100%, 540px);
  margin: 24px auto 0;
  border-radius: 22px;
  line-height: 0;
  text-decoration: none;
  transition: transform .2s ease, filter .2s ease;
}
.remote-left-quickdraw:hover,
.remote-left-quickdraw:focus-visible {
  transform: translateY(-2px);
  filter: drop-shadow(0 14px 24px rgba(43,33,27,.18));
  outline: none;
}
.remote-left-quickdraw:focus-visible {
  box-shadow: 0 0 0 4px rgba(198, 106, 46, .22);
}
.remote-left-quickdraw img {
  display: block;
  width: 100%;
  height: auto !important;
  object-fit: contain !important;
  aspect-ratio: auto !important;
}
.remote-hero-art img.remote-hero-wiredwest {
  width: min(560px, 92%);
  max-height: 330px;
}
@media (max-width: 620px) {
  .remote-left-quickdraw {
    width: 100%;
    margin-top: 20px;
  }
}


/* v40: Move QuickDraw launch/download box back under the right-side Wired West logo */
.remote-hero-art {
  justify-content: center;
  gap: 16px;
}
.remote-hero-art .remote-hero-launch {
  width: min(100%, 560px);
  margin: 6px auto 0;
  text-align: left;
}
.remote-hero-art .remote-hero-launch .btn {
  width: fit-content;
  max-width: 100%;
}
.remote-hero-art .remote-hero-launch .quickdraw-downloads {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.remote-hero-art .remote-hero-launch .quickdraw-download-card img {
  width: 76px !important;
  height: 76px !important;
  max-height: none;
  filter: none;
}
@media (max-width: 620px) {
  .remote-hero-art .remote-hero-launch .quickdraw-downloads {
    grid-template-columns: 1fr;
  }
  .remote-hero-art .remote-hero-launch .btn {
    width: 100%;
  }
}

/* v42: Match the two main cards on the remote support hero */
.remote-page-hero .hero-grid {
  align-items: stretch;
}

.remote-page-hero .remote-page-card,
.remote-page-hero .remote-hero-art {
  height: 100%;
  min-height: 0;
}

.remote-page-hero .remote-hero-art {
  justify-content: center;
}

@media (max-width: 860px) {
  .remote-page-hero .hero-grid {
    align-items: start;
  }

  .remote-page-hero .remote-page-card,
  .remote-page-hero .remote-hero-art {
    height: auto;
  }
}

/* v45: center call/email buttons inside the remote support left hero card */
.remote-page-card .hero-actions {
  justify-content: center;
  width: 100%;
}

.remote-page-card .hero-actions .btn {
  text-align: center;
}

.form-status {
  min-height: 1.4em;
  margin: -0.25rem 0 0;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
}

.form-status.is-error {
  color: #8B2D1E;
}

.request-form button[disabled] {
  cursor: wait;
  opacity: 0.75;
}


.contact-note {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.site-footer small {
  color: rgba(255, 248, 237, 0.72);
  line-height: 1.4;
}
