: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-grid span {
  display: block;
  margin: 8px 0;
}

.footer-grid small {
  display: block;
  margin-top: 10px;
}
.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: stretch;
}
.ai-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  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;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 38px 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);
  grid-auto-rows: 1fr;
  gap: 16px;
  margin-top: 28px;
}
.ai-list span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 18px 18px;
  border-radius: 18px;
  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; align-items: initial; }
  .ai-copy, .ai-panel { height: auto; }
  .ai-section { padding: 64px 0; }
}
@media (max-width: 640px) {
  .ai-copy { padding: 26px; }
  .ai-panel { padding: 30px 24px; }
  .ai-list { grid-template-columns: 1fr; gap: 12px; }
  .ai-list span { min-height: 60px; }
}

/* 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;
}

/* v58: Match Mesh Wi-Fi section card heights on desktop */
@media (min-width: 861px) {
  .mesh-grid {
    align-items: stretch;
  }

  .mesh-copy,
  .mesh-panel {
    height: 100%;
  }

  .mesh-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .mesh-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* v61: Quick Start buttons aligned as two centered rows of five on desktop */
.problem-grid {
  grid-template-columns: repeat(5, minmax(145px, 1fr)) !important;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

.problem-grid button {
  min-height: 92px;
}

@media (max-width: 980px) {
  .problem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    max-width: 620px;
  }
}

@media (max-width: 640px) {
  .problem-grid {
    grid-template-columns: 1fr !important;
    max-width: 420px;
  }
}

/* v62: truly equalize Camera Systems / Security cards on desktop */
@media (min-width: 861px) {
  .security-grid {
    align-items: stretch !important;
  }

  .security-panel,
  .security-list {
    height: 100% !important;
    min-height: 100% !important;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
  }

  .security-list .check-list {
    margin-bottom: 18px;
  }

  .security-list .camera-diagram-card {
    margin-top: auto;
  }
}

/* v63: Fill out AI support panel spacing */
@media (min-width: 861px) {
  .ai-panel {
    justify-content: center;
    padding: 54px 42px;
  }

  .ai-panel h3 {
    font-size: clamp(1.45rem, 1.8vw, 1.9rem);
    margin-bottom: 8px;
  }

  .ai-list {
    width: 100%;
    gap: 22px 20px;
    margin-top: 34px;
  }

  .ai-list span {
    min-height: 96px;
    padding: 24px 22px;
    font-size: clamp(1.02rem, 1.15vw, 1.18rem);
    line-height: 1.35;
    border-radius: 20px;
  }

  .ai-list span::before {
    font-size: 1.18rem;
    margin-right: 11px;
    flex: 0 0 auto;
  }
}

/* v64: full-width QuickDraw SOS space-station graphic below remote support hero cards */
.remote-anywhere-banner {
  grid-column: 1 / -1;
  margin-top: 48px;
  padding: 28px;
  border-radius: 30px;
  background: rgba(21, 16, 13, .62);
  border: 1px solid rgba(211, 178, 140, .30);
  box-shadow: 0 28px 90px rgba(0,0,0,.30);
  text-align: center;
}

.remote-anywhere-banner h2 {
  margin: 0 0 22px;
  color: #fff8ed;
  font-family: 'Roboto Slab', serif;
  font-size: clamp(2rem, 4vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-shadow: 0 4px 24px rgba(0,0,0,.45);
}

.remote-anywhere-banner img {
  display: block;
  width: 100%;
  height: auto !important;
  border-radius: 22px;
  border: 1px solid rgba(244, 232, 214, .25);
  box-shadow: 0 18px 60px rgba(0,0,0,.38);
  object-fit: contain;
}

@media (max-width: 860px) {
  .remote-anywhere-banner {
    margin-top: 30px;
    padding: 18px;
    border-radius: 22px;
  }
  .remote-anywhere-banner h2 {
    font-size: clamp(1.8rem, 8vw, 3rem);
  }
}


/* v65: homepage full-width QuickDraw SOS space-station banner below QuickDraw cards */
.anywhere-section {
  padding: 0 0 80px;
  background: #f5ead8;
}

.anywhere-section .remote-anywhere-banner {
  margin-top: 0;
}

@media (max-width: 860px) {
  .anywhere-section {
    padding-bottom: 56px;
  }
}


/* v66: use the space-station image as the full-width remote support page background */
.remote-page-hero.section-dark {
  padding: 78px 0 92px;
  background:
    linear-gradient(180deg, rgba(21,16,13,.52) 0%, rgba(21,16,13,.34) 38%, rgba(21,16,13,.66) 100%),
    radial-gradient(circle at 18% 22%, rgba(185,101,50,.20), transparent 34%),
    url("assets/computer-help-anywhere-space-station.png") center center / cover no-repeat;
  overflow: hidden;
}

.remote-page-hero.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(21,16,13,.72) 0%, rgba(21,16,13,.36) 44%, rgba(21,16,13,.58) 100%),
    rgba(21,16,13,.18);
}

.remote-page-hero.section-dark .circuit-layer {
  opacity: .05;
}

.remote-page-background-title {
  position: relative;
  z-index: 1;
  margin-bottom: 34px;
  text-align: center;
}

.remote-page-background-title h2 {
  margin: 0 auto;
  max-width: 1180px;
  color: #fff8ed;
  font-size: clamp(2.25rem, 5vw, 5.45rem);
  line-height: 1;
  letter-spacing: -.045em;
  text-shadow: 0 8px 34px rgba(0,0,0,.72), 0 2px 0 rgba(21,16,13,.36);
}

.remote-page-hero.section-dark .hero-grid {
  position: relative;
  z-index: 1;
}

@media (max-width: 860px) {
  .remote-page-hero.section-dark {
    padding: 56px 0 68px;
    background-position: center top;
  }
  .remote-page-background-title {
    margin-bottom: 24px;
  }
}

/* v67: Square invoice and payment link sections */
.billing-section {
  padding: 64px 0;
  background: linear-gradient(180deg, rgba(255,248,237,.86), rgba(244,232,214,.96));
}
.billing-grid {
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: 36px;
  align-items: stretch;
}
.billing-copy,
.billing-panel,
.billing-hero-copy,
.billing-hero-panel,
.square-pay-card {
  border: 1px solid rgba(211,178,140,.82);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.billing-copy,
.billing-panel {
  background: rgba(255,248,237,.94);
  padding: 38px;
}
.billing-copy h2,
.billing-hero-copy h1 {
  margin-bottom: 18px;
}
.billing-actions,
.centered-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 24px;
}
.billing-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(145deg, rgba(21,16,13,.96), rgba(65,43,31,.94));
  color: #fff8ed;
}
.billing-panel h3 {
  color: #fff8ed;
  text-align: center;
  margin-bottom: 24px;
}
.billing-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.billing-mini-grid span {
  display: grid;
  place-items: center;
  min-height: 70px;
  padding: 14px;
  border: 1px solid rgba(211,178,140,.38);
  border-radius: 16px;
  background: rgba(255,248,237,.08);
  color: #fff8ed;
  font-weight: 800;
  text-align: center;
}
.billing-hero {
  position: relative;
  overflow: hidden;
  padding: 94px 0 70px;
  background:
    radial-gradient(circle at 72% 30%, rgba(185,101,50,.35), transparent 35%),
    linear-gradient(135deg, rgba(21,16,13,.98), rgba(36,24,17,.96));
}
.billing-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: stretch;
}
.billing-hero-copy,
.billing-hero-panel {
  background: rgba(21,16,13,.72);
  color: #fff8ed;
  padding: 42px;
}
.billing-hero-copy h1 {
  color: #fff8ed;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: .98;
}
.billing-hero-copy .hero-text {
  color: rgba(255,248,237,.86);
}
.billing-hero-panel {
  display: grid;
  place-items: center;
  text-align: center;
  background: rgba(255,248,237,.12);
  backdrop-filter: blur(8px);
}
.billing-hero-panel img {
  width: min(420px, 88%);
  height: auto;
  object-fit: contain;
  margin-bottom: 20px;
}
.secure-pay-pill {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(21,16,13,.86);
  border: 1px solid rgba(211,178,140,.45);
  color: #fff8ed;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
}
.billing-pay-section,
.invoice-request-section {
  padding: 70px 0;
}
.section-heading {
  max-width: 920px;
  margin: 0 auto 34px;
  text-align: center;
}
.section-heading p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}
.square-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
}
.square-pay-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 255px;
  padding: 28px;
  background: rgba(255,248,237,.96);
}
.square-pay-card h3 {
  text-align: center;
  font-size: 1.35rem;
  margin-bottom: 0;
}
.square-pay-card p {
  color: var(--muted);
  margin-bottom: auto;
}
.square-pay-card .btn {
  width: 100%;
  justify-content: center;
}
@media (max-width: 980px) {
  .billing-grid,
  .billing-hero-grid,
  .square-card-grid {
    grid-template-columns: 1fr;
  }
  .billing-hero {
    padding: 72px 0 54px;
  }
  .billing-hero-copy h1 {
    font-size: clamp(2.8rem, 14vw, 4.8rem);
  }
}
@media (max-width: 620px) {
  .billing-copy,
  .billing-panel,
  .billing-hero-copy,
  .billing-hero-panel,
  .square-pay-card {
    padding: 24px;
    border-radius: 22px;
  }
  .billing-mini-grid {
    grid-template-columns: 1fr;
  }
  .billing-actions,
  .centered-actions {
    justify-content: center;
  }
}

/* v68: simple Square payment cards */
.square-card-grid-simple {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}
.square-card-grid-simple .square-pay-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.square-card-grid-simple .square-pay-card .btn {
  margin-top: 18px;
}
@media (max-width: 900px) {
  .square-card-grid-simple {
    grid-template-columns: 1fr;
  }
}

/* v69: make Pay Invoice more visible in navigation and payment CTAs */
.main-nav a.nav-pay {
  position: relative;
  color: #fff !important;
  background: linear-gradient(135deg, #b96532 0%, #8b4a25 48%, #5f2f18 100%) !important;
  border: 1px solid rgba(255, 248, 237, .64) !important;
  box-shadow: 0 10px 24px rgba(139, 74, 37, .30), inset 0 1px 0 rgba(255,255,255,.28);
  padding: 12px 18px !important;
  font-size: .98rem;
  font-weight: 900;
  letter-spacing: .01em;
  white-space: nowrap;
  transform: translateY(0);
}
.main-nav a.nav-pay::before {
  content: "$";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 7px;
  border-radius: 999px;
  background: rgba(255,248,237,.96);
  color: #8b4a25;
  font-weight: 950;
  font-size: .88rem;
  line-height: 1;
}
.main-nav a.nav-pay:hover,
.main-nav a.nav-pay:focus-visible {
  color: #fff !important;
  background: linear-gradient(135deg, #c9783f 0%, #9a542a 45%, #6f351a 100%) !important;
  box-shadow: 0 14px 30px rgba(139, 74, 37, .38), inset 0 1px 0 rgba(255,255,255,.34);
  transform: translateY(-1px);
}
.btn-pay-highlight {
  min-height: 58px;
  padding: 17px 26px !important;
  font-size: 1.05rem;
  font-weight: 950;
  box-shadow: 0 16px 32px rgba(139, 74, 37, .32), inset 0 1px 0 rgba(255,255,255,.24) !important;
}
.billing-actions {
  justify-content: center;
}
@media (max-width: 1180px) {
  .main-nav a.nav-pay { padding: 10px 13px !important; font-size: .9rem; }
  .main-nav a.nav-pay::before { width: 19px; height: 19px; margin-right: 5px; font-size: .78rem; }
}
@media (max-width: 920px) {
  .main-nav a.nav-pay {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 14px 16px !important;
    margin: 4px 0;
    font-size: 1rem;
  }
  .btn-pay-highlight { width: 100%; justify-content: center; }
}

/* v71: enlarge header logo while preserving original proportions */
@media (min-width: 901px) {
  .header-inner {
    min-height: 104px;
  }

  .brand img {
    width: min(370px, 30vw) !important;
    height: auto !important;
    object-fit: contain !important;
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .header-inner {
    min-height: 92px;
  }

  .brand img {
    width: min(300px, 48vw) !important;
    height: auto !important;
    object-fit: contain !important;
  }
}

/* v72: align standard header pills and keep Pay Invoice as the larger final CTA */
@media (min-width: 861px) {
  .main-nav a:not(.nav-pay),
  .main-nav .nav-cta:not(.nav-pay) {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding-top: 9px !important;
    padding-bottom: 9px !important;
  }

  .main-nav a.nav-cta:not(.nav-pay) {
    min-height: 38px;
    padding: 9px 16px !important;
  }

  .main-nav a.nav-pay {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 6px;
  }
}

/* 2026-07 service area map polish */
.service-area-side {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: stretch;
}

.service-area-map-card {
  margin: 8px 0 0;
  padding: 14px;
  background: rgba(255, 248, 237, .92);
  border: 1px solid rgba(139, 74, 37, .22);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(43, 33, 27, .13);
}

.service-area-map-card img {
  width: 100%;
  height: auto !important;
  border-radius: 18px;
  border: 1px solid rgba(211, 178, 140, .68);
  object-fit: contain;
  background: var(--cream);
}

@media (max-width: 860px) {
  .service-area-side {
    gap: 18px;
  }
  .service-area-map-card {
    padding: 10px;
    border-radius: 18px;
  }
  .service-area-map-card img {
    border-radius: 14px;
  }
}


/* 2026-07 service area map lightbox */
.map-lightbox-trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
  text-align: inherit;
}

.map-lightbox-trigger img {
  display: block;
  transition: transform .24s ease, filter .24s ease;
}

.map-lightbox-trigger:hover img,
.map-lightbox-trigger:focus-visible img {
  transform: scale(1.018);
  filter: saturate(1.04) contrast(1.02);
}

.map-lightbox-trigger:focus-visible {
  outline: 4px solid rgba(198, 106, 46, .45);
  outline-offset: 4px;
}

.map-expand-hint {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(43, 33, 27, .88);
  color: var(--cream);
  font-weight: 900;
  font-size: .86rem;
  letter-spacing: .02em;
  box-shadow: 0 12px 28px rgba(43, 33, 27, .25);
  backdrop-filter: blur(7px);
}

.map-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 3vw, 38px);
  background: rgba(18, 12, 8, .88);
  backdrop-filter: blur(8px);
}

.map-lightbox.is-open {
  display: flex;
}

.map-lightbox-inner {
  width: min(96vw, 1500px);
  max-height: 88vh;
  padding: clamp(8px, 1.4vw, 18px);
  border: 1px solid rgba(211, 178, 140, .7);
  border-radius: 24px;
  background: rgba(255, 248, 237, .96);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .46);
  overflow: auto;
}

.map-lightbox-inner img {
  display: block;
  width: 100%;
  height: auto !important;
  max-height: calc(88vh - 36px);
  object-fit: contain;
  border-radius: 16px;
}

.map-lightbox-close {
  position: fixed;
  top: clamp(14px, 2vw, 24px);
  right: clamp(14px, 2vw, 24px);
  z-index: 10000;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(211, 178, 140, .8);
  border-radius: 999px;
  background: rgba(255, 248, 237, .96);
  color: var(--dark);
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .28);
}

.map-lightbox-close:hover,
.map-lightbox-close:focus-visible {
  background: var(--copper);
  color: #fff;
}

body.map-lightbox-open {
  overflow: hidden;
}

@media (max-width: 720px) {
  .map-expand-hint {
    right: 10px;
    bottom: 10px;
    min-height: 34px;
    padding: 8px 12px;
    font-size: .76rem;
  }
  .map-lightbox {
    padding: 10px;
  }
  .map-lightbox-inner {
    width: 100%;
    max-height: 86vh;
    border-radius: 18px;
  }
  .map-lightbox-close {
    width: 46px;
    height: 46px;
    font-size: 30px;
  }
}

/* v77: hard mobile layout fix for phones */
@media (max-width: 860px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
  }

  .container {
    width: min(100% - 24px, var(--max)) !important;
    max-width: 100% !important;
  }

  .hero-grid,
  .remote-page-hero.section-dark .hero-grid,
  .remote-grid,
  .split-grid,
  .split-grid.reverse,
  .area-grid,
  .contact-grid,
  .footer-grid,
  .billing-grid,
  .billing-hero-grid,
  .ai-grid,
  .security-grid,
  .mesh-grid,
  .impossible-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 24px !important;
    align-items: stretch !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-grid > *,
  .remote-page-hero.section-dark .hero-grid > *,
  .remote-grid > *,
  .split-grid > *,
  .area-grid > *,
  .contact-grid > *,
  .footer-grid > *,
  .billing-grid > *,
  .billing-hero-grid > *,
  .ai-grid > *,
  .security-grid > *,
  .mesh-grid > *,
  .impossible-grid > * {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-copy,
  .remote-page-card,
  .remote-copy,
  .remote-panel,
  .hero-art,
  .remote-hero-art,
  .billing-copy,
  .billing-panel,
  .billing-hero-copy,
  .billing-hero-panel,
  .security-panel,
  .security-list,
  .mesh-copy,
  .mesh-panel,
  .ai-copy,
  .ai-panel,
  .impossible-copy,
  .capability-panel,
  .feature-panel,
  .contact-box,
  .request-form {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero-art,
  .remote-hero-art {
    min-height: auto !important;
    padding: 22px !important;
    order: initial !important;
  }

  .hero-art img,
  .remote-hero-art img,
  .remote-hero-art img.remote-hero-wiredwest,
  .remote-left-quickdraw img,
  .quickdraw-logo,
  .quickdraw-logo-link img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }

  .hero h1,
  .remote-page-card h1 {
    font-size: clamp(2.35rem, 12vw, 3.55rem) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.04em !important;
    max-width: 100% !important;
  }

  .remote-page-background-title h2 {
    font-size: clamp(2rem, 11vw, 3.35rem) !important;
    line-height: 1.05 !important;
    padding: 0 4px;
  }

  .hero-text,
  .remote-page-card .hero-text,
  .remote-copy p,
  .remote-launch-box p {
    font-size: 1rem !important;
    line-height: 1.58 !important;
  }

  .remote-launch-box,
  .remote-hero-launch,
  .remote-hero-art .remote-hero-launch {
    width: 100% !important;
    max-width: 100% !important;
    padding: 20px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .remote-launch-box .btn,
  .remote-hero-launch .btn,
  .remote-actions .btn,
  .hero-actions .btn,
  .remote-page-card .btn {
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    text-align: center !important;
  }

  .remote-hero-launch .quickdraw-downloads,
  .remote-left-launch .quickdraw-downloads,
  .quickdraw-downloads {
    grid-template-columns: 1fr !important;
    width: 100% !important;
  }

  .quickdraw-download-card {
    grid-template-columns: 68px 1fr !important;
    justify-items: start !important;
    text-align: left !important;
    align-items: center !important;
  }

  .quickdraw-download-card img {
    width: 68px !important;
    height: 68px !important;
  }

  .trust-strip,
  .hero-actions,
  .remote-actions,
  .billing-actions,
  .centered-actions {
    width: 100% !important;
    justify-content: stretch !important;
    align-items: stretch !important;
  }

  .trust-strip span {
    flex: 1 1 100% !important;
    text-align: center !important;
  }

  .remote-page-hero.section-dark {
    padding: 42px 0 56px !important;
    background-position: center center !important;
  }
}

@media (max-width: 520px) {
  .container {
    width: calc(100% - 20px) !important;
  }

  .hero-copy,
  .remote-page-card,
  .remote-copy,
  .remote-panel,
  .hero-art,
  .remote-hero-art,
  .remote-launch-box,
  .billing-copy,
  .billing-panel {
    padding: 18px !important;
    border-radius: 22px !important;
  }

  .hero h1,
  .remote-page-card h1 {
    font-size: clamp(2.1rem, 11.5vw, 3.05rem) !important;
  }

  .remote-page-background-title h2 {
    font-size: clamp(1.85rem, 10vw, 2.75rem) !important;
  }

  .brand img {
    width: min(240px, 70vw) !important;
    height: auto !important;
  }

  .header-inner {
    min-height: 78px !important;
  }

  .main-nav {
    top: 78px !important;
    max-height: calc(100dvh - 78px) !important;
  }
}


/* v78: center service area town pills above the map */
.service-area-side {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-area-side .town-list {
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.service-area-side .town-list span {
  text-align: center;
}

.service-area-map-card {
  width: 100%;
}

@media (max-width: 760px) {
  .service-area-side .town-list {
    justify-content: center !important;
    gap: 12px;
  }
}

.required-note {
  color: var(--saddle);
  font-size: .82em;
  font-weight: 800;
  margin-left: 4px;
}


/* v82: Drone photography and thermal drone imaging section/page */
.drone-home-section {
  padding: 74px 0;
}

.drone-home-grid,
.drone-feature-grid,
.drone-hero-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 44px;
  align-items: center;
}

.drone-home-copy {
  min-height: 100%;
}

.drone-home-art,
.drone-hero-art {
  display: block;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(139,74,37,.25);
  box-shadow: var(--shadow);
  background: var(--cream);
  transition: transform .22s ease, box-shadow .22s ease;
}

.drone-home-art:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 75px rgba(43,33,27,.22);
}

.drone-home-art img,
.drone-hero-art img {
  width: 100%;
  height: auto;
}

.drone-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 76px;
}

.drone-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 25%, rgba(207,122,65,.24), transparent 36%),
    radial-gradient(circle at 12% 85%, rgba(211,178,140,.18), transparent 34%);
  pointer-events: none;
}

.drone-hero-grid {
  position: relative;
  z-index: 1;
}

.drone-hero-copy h1 {
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(2.7rem, 5vw, 5.3rem);
  line-height: .98;
  margin: 0 0 24px;
  color: var(--cream);
}

.drone-intro {
  padding: 76px 0;
}

.drone-uses {
  padding: 36px;
  border-radius: 28px;
}

.drone-uses h2 {
  text-align: center;
  margin-top: 0;
  color: var(--cream);
}

.drone-use-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.drone-use-list span {
  display: flex;
  align-items: center;
  min-height: 76px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,248,237,.16);
  background: rgba(255,248,237,.08);
  color: var(--cream);
  font-weight: 900;
  line-height: 1.25;
}

.drone-use-list span::before {
  content: "✦";
  margin-right: 10px;
  color: #f3bd82;
  font-size: 1.05rem;
}

.drone-gallery-section {
  padding: 82px 0;
}

.drone-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.drone-gallery-card {
  padding: 26px;
  min-height: 310px;
  border-radius: 24px;
  border: 1px solid rgba(139,74,37,.20);
  background: linear-gradient(145deg, rgba(255,248,237,.98), rgba(244,232,214,.82));
  box-shadow: 0 18px 45px rgba(43,33,27,.12);
}

.drone-gallery-card h3 {
  margin: 16px 0 10px;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.1;
}

.drone-gallery-card p {
  color: var(--muted);
  margin: 0;
}

.drone-card-icon {
  width: 100%;
  height: 118px;
  border-radius: 18px;
  border: 1px solid rgba(139,74,37,.18);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(139,74,37,.16), rgba(207,122,65,.18)),
    var(--cream);
  position: relative;
}

.drone-card-icon::before,
.drone-card-icon::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 16px;
}

.drone-card-icon.scenery::before {
  background:
    radial-gradient(circle at 75% 25%, rgba(255,248,237,.95) 0 14px, transparent 15px),
    linear-gradient(135deg, transparent 48%, rgba(58,125,68,.85) 49% 70%, transparent 71%),
    linear-gradient(25deg, transparent 42%, rgba(139,74,37,.65) 43% 60%, transparent 61%);
}

.drone-card-icon.storm::before {
  background:
    radial-gradient(ellipse at 45% 35%, rgba(43,33,27,.7) 0 32%, transparent 34%),
    radial-gradient(ellipse at 65% 42%, rgba(111,93,80,.72) 0 28%, transparent 30%),
    linear-gradient(115deg, transparent 38%, rgba(207,122,65,.95) 39% 48%, transparent 49%);
}

.drone-card-icon.animal::before {
  background:
    radial-gradient(circle at 35% 58%, rgba(58,125,68,.85) 0 18px, transparent 19px),
    radial-gradient(circle at 65% 48%, rgba(58,125,68,.70) 0 15px, transparent 16px),
    linear-gradient(20deg, transparent 42%, rgba(139,74,37,.7) 43% 47%, transparent 48%),
    linear-gradient(160deg, transparent 48%, rgba(139,74,37,.55) 49% 54%, transparent 55%);
}

.drone-card-icon.thermal::before {
  inset: 12px;
  background:
    radial-gradient(circle at 25% 70%, rgba(255,248,237,.65) 0 20px, transparent 22px),
    linear-gradient(25deg, #241811, #8b4a25 40%, #cf7a41 72%, #fff8ed);
}

.drone-card-icon.survey::before {
  background:
    linear-gradient(90deg, rgba(139,74,37,.22) 1px, transparent 1px),
    linear-gradient(0deg, rgba(139,74,37,.22) 1px, transparent 1px),
    linear-gradient(135deg, transparent 45%, rgba(58,125,68,.72) 46% 61%, transparent 62%);
  background-size: 24px 24px, 24px 24px, auto;
}

.drone-card-icon.custom::before {
  background:
    radial-gradient(circle at 50% 50%, rgba(207,122,65,.9) 0 18px, transparent 20px),
    radial-gradient(circle at 30% 35%, rgba(139,74,37,.7) 0 13px, transparent 15px),
    radial-gradient(circle at 70% 38%, rgba(58,125,68,.68) 0 13px, transparent 15px),
    linear-gradient(135deg, rgba(255,248,237,.55), transparent);
}

.drone-cta {
  padding: 82px 0;
}

.drone-cta-card {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  padding: 48px;
  border-radius: 30px;
  border: 1px solid rgba(211,178,140,.28);
  background: rgba(21,16,13,.78);
  box-shadow: var(--shadow);
}

.drone-cta-card h2 {
  color: var(--cream);
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 4.1rem);
  line-height: 1;
  margin: 0 0 18px;
}

.drone-cta-card p {
  color: rgba(255,248,237,.82);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.centered-actions {
  justify-content: center;
}

@media (max-width: 980px) {
  .drone-home-grid,
  .drone-feature-grid,
  .drone-hero-grid {
    grid-template-columns: 1fr;
  }

  .drone-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .drone-home-section,
  .drone-intro,
  .drone-gallery-section,
  .drone-cta {
    padding: 52px 0;
  }

  .drone-use-list,
  .drone-gallery-grid {
    grid-template-columns: 1fr;
  }

  .drone-uses,
  .drone-cta-card {
    padding: 26px;
  }

  .drone-gallery-card {
    min-height: auto;
  }

  .drone-hero {
    padding: 66px 0 54px;
  }
}


/* v83: cleaner drone graphic presentation */
.drone-home-art,
.drone-hero-art {
  background: var(--cream);
}

.drone-home-art img,
.drone-hero-art img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.drone-home-grid {
  align-items: stretch;
}

.drone-home-art,
.drone-hero-art {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 640px) {
  .drone-home-art,
  .drone-hero-art {
    border-radius: 22px;
  }
}


/* v84: featured storm chasing drone photo */
.drone-featured-photo {
  padding: 76px 0;
}

.featured-photo-card {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 34px;
  align-items: center;
  padding: 34px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255,248,237,.98), rgba(244,232,214,.88));
  border: 1px solid rgba(139,74,37,.22);
  box-shadow: var(--shadow);
}

.featured-photo-copy h2 {
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 4.25rem);
  line-height: 1;
  margin: 0 0 18px;
}

.featured-photo-copy p {
  color: var(--muted);
  font-size: 1.06rem;
  margin-bottom: 24px;
}

.featured-storm-figure {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(139,74,37,.24);
  background: var(--cream);
  box-shadow: 0 18px 50px rgba(43,33,27,.16);
}

.featured-storm-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.featured-storm-figure figcaption {
  padding: 12px 16px 14px;
  text-align: center;
  color: var(--muted);
  font-weight: 800;
  font-size: .95rem;
  background: rgba(255,248,237,.94);
}

.drone-card-icon.storm {
  background-image:
    linear-gradient(145deg, rgba(43,33,27,.25), rgba(139,74,37,.10)),
    url('assets/drone-storm-chasing-thumb.jpg');
  background-size: cover;
  background-position: center;
}

.drone-card-icon.storm::before {
  display: none;
}

.drone-card-icon.storm::after {
  content: "Storm Chasing";
  position: absolute;
  left: 14px;
  bottom: 12px;
  right: 14px;
  inset: auto 14px 12px 14px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(21,16,13,.74);
  color: var(--cream);
  font-size: .92rem;
  font-weight: 900;
  text-align: center;
}

@media (max-width: 900px) {
  .featured-photo-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .drone-featured-photo {
    padding: 52px 0;
  }

  .featured-photo-card {
    padding: 22px;
    border-radius: 24px;
  }
}


/* v85: featured scenery drone photo */
.scenery-featured-photo {
  padding-top: 76px;
  padding-bottom: 0;
}

.scenery-photo-card {
  grid-template-columns: 1.12fr .88fr;
}

.featured-scenery-figure img {
  object-position: center center;
}

.drone-card-icon.scenery {
  background-image:
    linear-gradient(145deg, rgba(43,33,27,.16), rgba(207,122,65,.06)),
    url('assets/drone-scenery-thumb.jpg');
  background-size: cover;
  background-position: center;
}

.drone-card-icon.scenery::before {
  display: none;
}

.drone-card-icon.scenery::after {
  content: "Scenery";
  position: absolute;
  left: 14px;
  bottom: 12px;
  right: 14px;
  inset: auto 14px 12px 14px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(21,16,13,.68);
  color: var(--cream);
  font-size: .92rem;
  font-weight: 900;
  text-align: center;
}

@media (max-width: 900px) {
  .scenery-photo-card {
    grid-template-columns: 1fr;
  }

  .scenery-featured-photo {
    padding-bottom: 20px;
  }
}


/* v86: additional scenery drone photo on drone page */
.featured-scenery-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.scenery-photo-card {
  align-items: stretch;
}

.scenery-photo-card .featured-photo-copy {
  align-self: center;
}

.featured-scenery-gallery .featured-storm-figure img {
  aspect-ratio: 16 / 8.5;
}

@media (min-width: 901px) {
  .featured-scenery-gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .featured-scenery-gallery {
    grid-template-columns: 1fr;
  }
}


/* v87: additional water tower scenery photo */
@media (min-width: 1100px) {
  .featured-scenery-gallery {
    gap: 16px;
  }

  .featured-scenery-gallery .featured-storm-figure img {
    aspect-ratio: 16 / 7.7;
  }
}


/* v88: additional storm chasing drone photos */
.featured-storm-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.featured-storm-gallery .featured-storm-figure img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.featured-storm-gallery .featured-storm-figure figcaption {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .featured-storm-gallery {
    grid-template-columns: 1fr;
  }
}


/* v89: drone photo lightbox */
.photo-lightbox-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  position: relative;
}

.photo-lightbox-trigger::after {
  content: "Click to enlarge";
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(21,16,13,.72);
  color: var(--cream);
  font-size: .82rem;
  font-weight: 900;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .18s ease, transform .18s ease;
  pointer-events: none;
}

.photo-lightbox-trigger:hover::after,
.photo-lightbox-trigger:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.photo-lightbox-trigger:focus-visible {
  outline: 3px solid var(--copper-2);
  outline-offset: 4px;
  border-radius: 18px;
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(21,16,13,.88);
  backdrop-filter: blur(10px);
}

.photo-lightbox.is-open {
  display: flex;
}

body.photo-lightbox-open {
  overflow: hidden;
}

.photo-lightbox-frame {
  width: min(1500px, 96vw);
  max-height: 92vh;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(211,178,140,.45);
  background: var(--cream);
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
}

.photo-lightbox-frame img {
  width: 100%;
  max-height: calc(92vh - 62px);
  object-fit: contain;
  background: #120d0a;
}

.photo-lightbox-frame figcaption {
  padding: 14px 18px;
  text-align: center;
  color: var(--text);
  font-weight: 900;
  background: var(--cream);
}

.photo-lightbox-close {
  position: fixed;
  top: 18px;
  right: 20px;
  z-index: 1001;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(211,178,140,.5);
  background: var(--cream);
  color: var(--saddle);
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(0,0,0,.25);
}

@media (max-width: 640px) {
  .photo-lightbox {
    padding: 12px;
  }

  .photo-lightbox-close {
    top: 10px;
    right: 10px;
  }

  .photo-lightbox-frame {
    width: 98vw;
    border-radius: 18px;
  }
}


/* v90: thermal animal location drone photo */
.animal-featured-photo {
  padding: 76px 0;
}

.animal-photo-card {
  grid-template-columns: .88fr 1.12fr;
}

.featured-animal-figure img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.drone-card-icon.animal {
  background-image:
    linear-gradient(145deg, rgba(43,33,27,.10), rgba(207,122,65,.05)),
    url('assets/drone-animal-location-thermal-thumb.jpg');
  background-size: cover;
  background-position: center;
}

.drone-card-icon.animal::before {
  display: none;
}

.drone-card-icon.animal::after {
  content: "Thermal Animal Location";
  position: absolute;
  left: 14px;
  bottom: 12px;
  right: 14px;
  inset: auto 14px 12px 14px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(21,16,13,.72);
  color: var(--cream);
  font-size: .86rem;
  font-weight: 900;
  text-align: center;
}

@media (max-width: 900px) {
  .animal-photo-card {
    grid-template-columns: 1fr;
  }

  .animal-featured-photo {
    padding: 52px 0;
  }
}


/* v91: additional fire station scenery drone photo */
.featured-scenery-gallery .featured-storm-figure img {
  object-position: center center;
}

@media (min-width: 1100px) {
  .featured-scenery-gallery {
    gap: 14px;
  }

  .featured-scenery-gallery .featured-storm-figure img {
    aspect-ratio: 16 / 7.4;
  }
}


/* v92: roofing heat loss thermal drone images */
.roof-thermal-featured-photo {
  padding: 76px 0;
}

.roof-thermal-card {
  grid-template-columns: .82fr 1.18fr;
}

.roof-thermal-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.roof-thermal-gallery .featured-storm-figure img {
  aspect-ratio: 16 / 8.4;
  object-fit: cover;
}

.roof-thermal-gallery .featured-storm-figure figcaption {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drone-card-icon.thermal {
  background-image:
    linear-gradient(145deg, rgba(43,33,27,.12), rgba(207,122,65,.08)),
    url('assets/drone-roof-thermal-topdown-thumb.jpg');
  background-size: cover;
  background-position: center;
}

.drone-card-icon.thermal::before {
  display: none;
}

.drone-card-icon.thermal::after {
  content: "Thermal Roof Imaging";
  position: absolute;
  left: 14px;
  bottom: 12px;
  right: 14px;
  inset: auto 14px 12px 14px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(21,16,13,.72);
  color: var(--cream);
  font-size: .86rem;
  font-weight: 900;
  text-align: center;
}

@media (max-width: 900px) {
  .roof-thermal-card {
    grid-template-columns: 1fr;
  }

  .roof-thermal-featured-photo {
    padding: 52px 0;
  }
}


/* v93: unique visual projects drone photo */
.unique-visual-featured-photo {
  padding: 76px 0;
}

.unique-visual-card {
  grid-template-columns: 1.12fr .88fr;
}

.featured-unique-figure img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.drone-card-icon.custom {
  background-image:
    linear-gradient(145deg, rgba(43,33,27,.10), rgba(207,122,65,.06)),
    url('assets/drone-unique-football-field-thumb.jpg');
  background-size: cover;
  background-position: center;
}

.drone-card-icon.custom::before {
  display: none;
}

.drone-card-icon.custom::after {
  content: "Unique Visual Projects";
  position: absolute;
  left: 14px;
  bottom: 12px;
  right: 14px;
  inset: auto 14px 12px 14px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(21,16,13,.72);
  color: var(--cream);
  font-size: .86rem;
  font-weight: 900;
  text-align: center;
}

@media (max-width: 900px) {
  .unique-visual-card {
    grid-template-columns: 1fr;
  }

  .unique-visual-featured-photo {
    padding: 52px 0;
  }
}


/* v94: land surveying reference drone photo */
.land-survey-featured-photo {
  padding: 76px 0;
}

.land-survey-card {
  grid-template-columns: .88fr 1.12fr;
}

.featured-land-survey-figure img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.drone-card-icon.survey {
  background-image:
    linear-gradient(145deg, rgba(43,33,27,.10), rgba(207,122,65,.06)),
    url('assets/drone-land-survey-neighborhood-thumb.jpg');
  background-size: cover;
  background-position: center;
}

.drone-card-icon.survey::before {
  display: none;
}

.drone-card-icon.survey::after {
  content: "Land Survey Views";
  position: absolute;
  left: 14px;
  bottom: 12px;
  right: 14px;
  inset: auto 14px 12px 14px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(21,16,13,.72);
  color: var(--cream);
  font-size: .86rem;
  font-weight: 900;
  text-align: center;
}

@media (max-width: 900px) {
  .land-survey-card {
    grid-template-columns: 1fr;
  }

  .land-survey-featured-photo {
    padding: 52px 0;
  }
}


/* v95: replace crude drone drawing with photorealistic collage */
.drone-home-art img,
.drone-hero-art img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.drone-home-art,
.drone-hero-art {
  background: linear-gradient(145deg, rgba(255,248,237,.98), rgba(244,232,214,.88));
}


/* v96: fixed drone collage text overflow and bottom-row cropping */
.drone-home-art img,
.drone-hero-art img {
  aspect-ratio: auto !important;
  object-fit: contain !important;
  max-height: none !important;
}

.drone-home-art,
.drone-hero-art {
  background: linear-gradient(145deg, rgba(255,248,237,.98), rgba(244,232,214,.88));
}


/* v98: make drone work include list readable on light background */
.drone-uses {
  background:
    linear-gradient(145deg, rgba(43,33,27,.96), rgba(91,49,28,.92)) !important;
  border: 1px solid rgba(211,178,140,.42) !important;
  box-shadow: 0 24px 70px rgba(43,33,27,.22) !important;
  color: var(--cream) !important;
}

.drone-uses h2 {
  color: var(--cream) !important;
  text-shadow: 0 2px 10px rgba(0,0,0,.22);
}

.drone-use-list span {
  background:
    linear-gradient(145deg, rgba(255,248,237,.15), rgba(255,248,237,.08)) !important;
  border: 1px solid rgba(255,248,237,.22) !important;
  color: var(--cream) !important;
  box-shadow: inset 0 1px 0 rgba(255,248,237,.08);
  text-shadow: 0 1px 3px rgba(0,0,0,.28);
}

.drone-use-list span::before {
  color: #f3bd82 !important;
  text-shadow: none;
}

@media (max-width: 980px) {
  .drone-uses {
    margin-top: 0;
  }
}


/* v99: alternate copy/photo layout on drone page featured sections */
.drone-page .featured-photo-card {
  grid-template-columns: minmax(320px, .9fr) minmax(420px, 1.1fr);
}

.drone-page .drone-layout-copy-left .featured-photo-copy {
  order: 1;
}

.drone-page .drone-layout-copy-left > figure,
.drone-page .drone-layout-copy-left > div:not(.featured-photo-copy),
.drone-page .drone-layout-copy-left .featured-scenery-gallery,
.drone-page .drone-layout-copy-left .featured-storm-gallery,
.drone-page .drone-layout-copy-left .roof-thermal-gallery {
  order: 2;
}

.drone-page .drone-layout-photo-left > figure,
.drone-page .drone-layout-photo-left > div:not(.featured-photo-copy),
.drone-page .drone-layout-photo-left .featured-scenery-gallery,
.drone-page .drone-layout-photo-left .featured-storm-gallery,
.drone-page .drone-layout-photo-left .roof-thermal-gallery {
  order: 1;
}

.drone-page .drone-layout-photo-left .featured-photo-copy {
  order: 2;
}

.drone-page .featured-photo-copy {
  align-self: center;
}

.drone-page .featured-photo-card .featured-photo-copy h2 {
  text-wrap: balance;
}

@media (max-width: 900px) {
  .drone-page .featured-photo-card {
    grid-template-columns: 1fr;
  }

  .drone-page .drone-layout-copy-left .featured-photo-copy,
  .drone-page .drone-layout-photo-left .featured-photo-copy {
    order: 1;
  }

  .drone-page .drone-layout-copy-left > figure,
  .drone-page .drone-layout-copy-left > div:not(.featured-photo-copy),
  .drone-page .drone-layout-photo-left > figure,
  .drone-page .drone-layout-photo-left > div:not(.featured-photo-copy),
  .drone-page .drone-layout-copy-left .featured-scenery-gallery,
  .drone-page .drone-layout-copy-left .featured-storm-gallery,
  .drone-page .drone-layout-copy-left .roof-thermal-gallery,
  .drone-page .drone-layout-photo-left .featured-scenery-gallery,
  .drone-page .drone-layout-photo-left .featured-storm-gallery,
  .drone-page .drone-layout-photo-left .roof-thermal-gallery {
    order: 2;
  }
}


/* v100: balance drone page feature copy and photo blocks */
.drone-page .featured-photo-card {
  align-items: stretch;
  gap: 28px;
}

.drone-page .featured-photo-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 6px 0;
}

.drone-page .featured-photo-copy h2 {
  margin-bottom: 16px;
}

.drone-page .featured-photo-copy p {
  margin-bottom: 18px;
}

.drone-page .featured-photo-copy .btn {
  align-self: flex-start;
  margin-top: 6px;
}

.feature-copy-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 2px 0 20px;
}

.feature-copy-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(139,74,37,.18);
  background: rgba(255,248,237,.78);
  color: var(--saddle);
  font-weight: 900;
  font-size: .88rem;
  line-height: 1.1;
  box-shadow: 0 8px 22px rgba(43,33,27,.06);
}

.feature-copy-chips span::before {
  content: "✦";
  color: var(--copper);
  margin-right: 7px;
  font-size: .78rem;
}

.drone-page .featured-photo-card > figure,
.drone-page .featured-photo-card > .featured-scenery-gallery,
.drone-page .featured-photo-card > .featured-storm-gallery,
.drone-page .featured-photo-card > .roof-thermal-gallery {
  align-self: stretch;
}

.drone-page .featured-storm-figure {
  height: 100%;
}

.drone-page .featured-scenery-gallery,
.drone-page .featured-storm-gallery,
.drone-page .roof-thermal-gallery {
  align-content: center;
}

.drone-page .featured-scenery-gallery .featured-storm-figure,
.drone-page .featured-storm-gallery .featured-storm-figure,
.drone-page .roof-thermal-gallery .featured-storm-figure {
  height: auto;
}

@media (min-width: 901px) {
  .drone-page .featured-photo-card {
    padding: 30px;
  }

  .drone-page .featured-photo-copy h2 {
    font-size: clamp(2rem, 3.35vw, 3.6rem);
  }

  .drone-page .featured-photo-copy p {
    font-size: 1rem;
    line-height: 1.62;
  }

  .drone-page .featured-photo-card:not(.scenery-photo-card):not(.storm-photo-card):not(.roof-thermal-card) > figure img {
    min-height: 360px;
  }

  .drone-page .scenery-photo-card,
  .drone-page .storm-photo-card,
  .drone-page .roof-thermal-card {
    grid-template-columns: minmax(360px, .84fr) minmax(520px, 1.16fr);
  }

  .drone-page .featured-scenery-gallery,
  .drone-page .featured-storm-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .drone-page .featured-scenery-gallery .featured-storm-figure img,
  .drone-page .featured-storm-gallery .featured-storm-figure img {
    aspect-ratio: 16 / 9;
  }

  .drone-page .roof-thermal-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .drone-page .roof-thermal-gallery .featured-storm-figure img {
    aspect-ratio: 4 / 3;
  }

  .drone-page .roof-thermal-gallery .featured-storm-figure figcaption,
  .drone-page .featured-storm-gallery .featured-storm-figure figcaption {
    min-height: 66px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 900px) {
  .drone-page .featured-photo-copy {
    justify-content: flex-start;
  }

  .drone-page .featured-photo-copy .btn {
    align-self: stretch;
  }

  .feature-copy-chips {
    justify-content: center;
  }
}


/* v101: storm photo hero background for drone page */
.drone-page .drone-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(21,16,13,.94) 0%, rgba(21,16,13,.84) 38%, rgba(21,16,13,.45) 68%, rgba(21,16,13,.72) 100%),
    linear-gradient(180deg, rgba(21,16,13,.45), rgba(21,16,13,.72)),
    url("assets/drone-storm-chasing-damage-path.jpg") center center / cover no-repeat !important;
}

.drone-page .drone-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 52%, rgba(198,106,46,.28), transparent 36%),
    radial-gradient(circle at 78% 24%, rgba(255,248,237,.10), transparent 32%),
    linear-gradient(180deg, rgba(21,16,13,.18), rgba(21,16,13,.74));
  pointer-events: none;
}

.drone-page .drone-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(255,248,237,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,248,237,.045) 1px, transparent 1px);
  background-size: 96px 96px;
  opacity: .55;
  pointer-events: none;
}

.drone-page .drone-hero .circuit-layer {
  opacity: .18;
}

.drone-page .drone-hero-copy {
  text-shadow: 0 3px 18px rgba(0,0,0,.42);
}

.drone-page .drone-hero-copy .hero-text {
  color: rgba(255,248,237,.88);
  text-shadow: 0 2px 10px rgba(0,0,0,.48);
}

.drone-page .drone-hero-art {
  background: rgba(255,248,237,.9);
  border: 1px solid rgba(255,248,237,.36);
  box-shadow: 0 26px 80px rgba(0,0,0,.34);
}

@media (max-width: 980px) {
  .drone-page .drone-hero {
    background:
      linear-gradient(180deg, rgba(21,16,13,.92) 0%, rgba(21,16,13,.74) 48%, rgba(21,16,13,.88) 100%),
      url("assets/drone-storm-chasing-damage-path.jpg") center center / cover no-repeat !important;
  }
}


/* v102: lighten drone hero storm background while preserving text readability */
.drone-page .drone-hero {
  background:
    linear-gradient(90deg, rgba(21,16,13,.82) 0%, rgba(21,16,13,.66) 34%, rgba(21,16,13,.24) 64%, rgba(21,16,13,.48) 100%),
    linear-gradient(180deg, rgba(21,16,13,.18), rgba(21,16,13,.46)),
    url("assets/drone-storm-chasing-damage-path.jpg") center center / cover no-repeat !important;
}

.drone-page .drone-hero::before {
  background:
    radial-gradient(circle at 18% 52%, rgba(198,106,46,.20), transparent 36%),
    radial-gradient(circle at 75% 24%, rgba(255,248,237,.18), transparent 34%),
    linear-gradient(180deg, rgba(255,248,237,.05), rgba(21,16,13,.40));
}

.drone-page .drone-hero::after {
  opacity: .34;
}

.drone-page .drone-hero-copy {
  text-shadow:
    0 4px 22px rgba(0,0,0,.62),
    0 1px 2px rgba(0,0,0,.70);
}

.drone-page .drone-hero-copy .hero-text {
  color: rgba(255,248,237,.94);
  text-shadow:
    0 3px 14px rgba(0,0,0,.74),
    0 1px 2px rgba(0,0,0,.78);
}

.drone-page .drone-hero-art {
  background: rgba(255,248,237,.94);
  box-shadow: 0 26px 80px rgba(0,0,0,.30);
}

@media (max-width: 980px) {
  .drone-page .drone-hero {
    background:
      linear-gradient(180deg, rgba(21,16,13,.82) 0%, rgba(21,16,13,.54) 48%, rgba(21,16,13,.76) 100%),
      url("assets/drone-storm-chasing-damage-path.jpg") center center / cover no-repeat !important;
  }
}


/* v103: make the strongest thermal roof photo double-width with two smaller photos underneath */
@media (min-width: 901px) {
  .drone-page .roof-thermal-gallery.roof-thermal-feature-layout {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
    align-content: center;
  }

  .drone-page .roof-thermal-gallery.roof-thermal-feature-layout .roof-thermal-main {
    grid-column: 1 / -1;
  }

  .drone-page .roof-thermal-gallery.roof-thermal-feature-layout .roof-thermal-main img {
    aspect-ratio: 16 / 6.8 !important;
    object-fit: cover;
  }

  .drone-page .roof-thermal-gallery.roof-thermal-feature-layout .featured-roof-thermal-figure:not(.roof-thermal-main) img {
    aspect-ratio: 16 / 9 !important;
    object-fit: cover;
  }

  .drone-page .roof-thermal-gallery.roof-thermal-feature-layout .featured-roof-thermal-figure figcaption {
    min-height: 54px !important;
  }
}

@media (max-width: 900px) {
  .drone-page .roof-thermal-gallery.roof-thermal-feature-layout {
    grid-template-columns: 1fr !important;
  }
}


/* v104: adjust scenery card thumbnail crop to show sunset/horizon, less pond */
.drone-gallery-card .drone-card-icon.scenery,
.drone-card-icon.scenery {
  background-position: center 28% !important;
}


/* v105: dedicated drone contact form */
.drone-contact-section {
  padding: 82px 0;
}

.drone-contact-card {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 34px;
  align-items: stretch;
  padding: 34px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255,248,237,.98), rgba(244,232,214,.88));
  border: 1px solid rgba(139,74,37,.22);
  box-shadow: var(--shadow);
}

.drone-contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.drone-contact-copy h2 {
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1;
  margin: 0 0 18px;
}

.drone-contact-copy p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.65;
}

.drone-request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
  border-radius: 24px;
  background: rgba(255,248,237,.82);
  border: 1px solid rgba(139,74,37,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45);
}

.drone-request-form label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-weight: 900;
}

.drone-request-form .full {
  grid-column: 1 / -1;
}

.drone-request-form input,
.drone-request-form select,
.drone-request-form textarea {
  width: 100%;
  border: 1px solid rgba(139,74,37,.22);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: var(--text);
  background: #fffdf8;
}

.drone-request-form textarea {
  resize: vertical;
  min-height: 135px;
}

.drone-request-form input:focus,
.drone-request-form select:focus,
.drone-request-form textarea:focus {
  outline: 3px solid rgba(198,106,46,.22);
  border-color: var(--copper);
}

.drone-request-form .form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.drone-request-form .form-status {
  margin: 0;
  color: var(--saddle);
  font-weight: 900;
}

.drone-request-form .form-status.is-error {
  color: #9e2f1f;
}

@media (max-width: 980px) {
  .drone-contact-card,
  .drone-request-form {
    grid-template-columns: 1fr;
  }

  .drone-contact-section {
    padding: 56px 0;
  }
}

@media (max-width: 640px) {
  .drone-contact-card {
    padding: 22px;
    border-radius: 24px;
  }

  .drone-request-form {
    padding: 18px;
  }

  .drone-request-form .form-actions .btn {
    width: 100%;
  }
}


/* v108: equalize drone intro card heights */
.drone-feature-grid {
  align-items: stretch !important;
}

.drone-feature-grid > .service-card,
.drone-feature-grid > .drone-uses {
  height: 100% !important;
  min-height: 100% !important;
}

.drone-feature-grid > .service-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.drone-feature-grid > .drone-uses {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.drone-feature-grid .drone-use-list {
  flex: 1;
  align-content: center;
}

@media (max-width: 980px) {
  .drone-feature-grid > .service-card,
  .drone-feature-grid > .drone-uses {
    height: auto !important;
    min-height: 0 !important;
  }
}


/* v109: QuickDraw logo cards are clickable destinations */
.quickdraw-logo-link,
.remote-left-quickdraw {
  cursor: pointer;
}

.quickdraw-logo-link:focus-visible,
.remote-left-quickdraw:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 6px;
  border-radius: 24px;
}


/* v110: Current & Recent Projects page */
.projects-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 86px 0;
  background:
    linear-gradient(90deg, rgba(21,16,13,.94), rgba(43,33,27,.86), rgba(91,49,28,.72)),
    radial-gradient(circle at 70% 18%, rgba(198,106,46,.32), transparent 36%);
}

.projects-hero-grid {
  display: grid;
  grid-template-columns: minmax(340px, .95fr) minmax(360px, 1.05fr);
  gap: 42px;
  align-items: center;
}

.projects-hero-copy h1 {
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(3.8rem, 7vw, 7rem);
  line-height: .98;
  margin: 0 0 22px;
  color: var(--cream);
  text-wrap: balance;
}

.projects-hero-panel {
  padding: 34px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255,248,237,.98), rgba(244,232,214,.88));
  border: 1px solid rgba(211,178,140,.52);
  box-shadow: 0 26px 80px rgba(0,0,0,.28);
}

.projects-hero-panel h2 {
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  line-height: 1;
  margin: 0 0 24px;
  color: var(--text);
}

.project-type-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.project-type-pills span,
.project-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 15px;
  border-radius: 999px;
  border: 1px solid rgba(139,74,37,.18);
  background: rgba(255,248,237,.86);
  color: var(--saddle);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(43,33,27,.08);
}

.projects-intro {
  padding: 82px 0;
}

.projects-intro-card {
  max-width: 900px;
  margin: 0 auto 28px;
  text-align: center;
}

.projects-intro-card h2 {
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(2.35rem, 4.5vw, 4.75rem);
  line-height: 1;
  margin: 0 0 16px;
  color: var(--text);
}

.projects-intro-card p {
  color: var(--muted);
  font-size: 1.08rem;
}

.project-filter-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 34px;
}

.project-filter {
  cursor: pointer;
}

.project-filter.is-active,
.project-filter:hover,
.project-filter:focus-visible {
  background: var(--saddle);
  color: var(--cream);
  outline: none;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.project-card,
.project-empty-card {
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,248,237,.98), rgba(244,232,214,.86));
  border: 1px solid rgba(139,74,37,.18);
  box-shadow: 0 18px 50px rgba(43,33,27,.11);
}

.project-thumb {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--cream);
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .24s ease;
}

.project-card:hover .project-thumb img {
  transform: scale(1.035);
}

.project-card-body {
  padding: 22px;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.project-meta span {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(139,74,37,.10);
  color: var(--saddle);
  font-size: .82rem;
  font-weight: 900;
}

.project-card h3,
.project-empty-card h3 {
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 1.75rem;
  line-height: 1.05;
  margin: 0 0 12px;
  color: var(--text);
}

.project-card p,
.project-empty-card p {
  color: var(--muted);
  line-height: 1.6;
}

.project-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--saddle);
  font-weight: 900;
  text-decoration: none;
}

.project-link:hover {
  text-decoration: underline;
}

.project-empty-card {
  grid-column: 1 / -1;
  text-align: center;
  padding: 46px 26px;
}

.project-empty-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--saddle);
  color: var(--cream);
  font-size: 2rem;
  box-shadow: 0 16px 38px rgba(43,33,27,.18);
}

.project-empty-card p {
  max-width: 620px;
  margin: 0 auto 22px;
}

.projects-cta {
  padding: 78px 0;
}

@media (max-width: 980px) {
  .projects-hero-grid {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .projects-hero {
    padding: 58px 0;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .projects-hero-panel,
  .project-empty-card {
    border-radius: 24px;
  }
}


/* v118: cleaned project thumbnails and prevent card text overflow */
.project-thumb img {
  object-position: center center;
}

.project-card h3 {
  overflow-wrap: anywhere;
  hyphens: auto;
}

.project-card-body {
  min-width: 0;
}

.project-meta span {
  white-space: nowrap;
}

@media (max-width: 760px) {
  .project-meta span {
    white-space: normal;
  }
}


/* v120: project page thumbnail cleanup and overflow hardening */
.projects-grid {
  align-items: stretch;
}

.project-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.project-thumb {
  background: #f5e8d6;
}

.project-thumb img {
  display: block;
  object-fit: cover;
  object-position: center center;
}

.project-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.project-card h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  line-height: 1.08;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

.project-card p {
  overflow-wrap: break-word;
}

.project-meta {
  min-width: 0;
}

.project-meta span {
  max-width: 100%;
  white-space: normal;
  line-height: 1.1;
}

.project-link {
  margin-top: auto;
  padding-top: 12px;
}


/* v121: lightweight form spam protection checkbox */
.spam-check {
  display: flex !important;
  align-items: flex-start;
  gap: 10px !important;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 248, 237, .62);
  border: 1px solid rgba(139, 74, 37, .18);
  color: var(--text);
  font-weight: 800;
  line-height: 1.35;
}

.spam-check input {
  width: auto !important;
  min-width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--saddle);
}


/* v136: standalone services section after Quick Start */
.services-section {
  padding: 82px 0;
}


/* v142: tighten homepage vertical spacing and card padding */
.home-page .hero.section-dark {
  padding-top: clamp(44px, 5vw, 72px) !important;
  padding-bottom: clamp(46px, 5vw, 74px) !important;
}

.home-page .problem-picker,
.home-page .services-section,
.home-page .why,
.home-page .service-area,
.home-page .remote-section,
.home-page .anywhere-section,
.home-page .drone-home-section,
.home-page .ai-section,
.home-page .mesh-section,
.home-page .security-section,
.home-page .impossible-section,
.home-page .split-section,
.home-page .contact,
.home-page .billing-section {
  padding-top: clamp(42px, 4.2vw, 62px) !important;
  padding-bottom: clamp(42px, 4.2vw, 62px) !important;
}

.home-page .section-intro {
  margin-bottom: clamp(22px, 2.6vw, 30px) !important;
}

.home-page .section-intro h2 {
  margin-bottom: 12px !important;
}

.home-page .section-intro p {
  margin-top: 0 !important;
}

.home-page .problem-grid,
.home-page .cards-grid,
.home-page .why-grid {
  gap: 12px !important;
}

.home-page .problem-grid button {
  min-height: 68px !important;
  padding: 13px 12px !important;
  border-radius: 14px !important;
}

.home-page .service-card,
.home-page .why-card {
  padding: 22px !important;
}

.home-page .remote-grid,
.home-page .drone-home-grid,
.home-page .ai-grid,
.home-page .mesh-grid,
.home-page .security-grid,
.home-page .impossible-grid,
.home-page .split-grid,
.home-page .area-grid,
.home-page .contact-grid,
.home-page .billing-grid {
  gap: clamp(22px, 3vw, 32px) !important;
}

.home-page .hero-copy,
.home-page .service-card,
.home-page .remote-copy,
.home-page .remote-panel,
.home-page .drone-home-copy,
.home-page .ai-panel,
.home-page .mesh-panel,
.home-page .security-panel,
.home-page .capability-panel,
.home-page .feature-panel,
.home-page .request-form,
.home-page .contact-box,
.home-page .billing-copy,
.home-page .billing-panel {
  box-shadow: 0 14px 36px rgba(43,33,27,.10);
}

.home-page .remote-anywhere-banner {
  padding-top: clamp(20px, 3vw, 28px) !important;
  padding-bottom: clamp(20px, 3vw, 28px) !important;
}

.home-page .billing-copy,
.home-page .billing-panel,
.home-page .contact-box,
.home-page .request-form,
.home-page .capability-panel,
.home-page .feature-panel,
.home-page .ai-panel,
.home-page .mesh-panel,
.home-page .security-panel {
  padding: clamp(24px, 3vw, 32px) !important;
}

@media (max-width: 980px) {
  .home-page .problem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .home-page .cards-grid,
  .home-page .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .home-page .problem-picker,
  .home-page .services-section,
  .home-page .why,
  .home-page .service-area,
  .home-page .remote-section,
  .home-page .anywhere-section,
  .home-page .drone-home-section,
  .home-page .ai-section,
  .home-page .mesh-section,
  .home-page .security-section,
  .home-page .impossible-section,
  .home-page .split-section,
  .home-page .contact,
  .home-page .billing-section {
    padding-top: 34px !important;
    padding-bottom: 34px !important;
  }

  .home-page .problem-grid,
  .home-page .cards-grid,
  .home-page .why-grid {
    grid-template-columns: 1fr !important;
  }

  .home-page .problem-grid button {
    min-height: 58px !important;
  }
}


/* v143: cut homepage body section padding roughly in half */
.home-page .hero.section-dark {
  padding-top: clamp(24px, 2.8vw, 38px) !important;
  padding-bottom: clamp(24px, 2.8vw, 40px) !important;
}

.home-page .problem-picker,
.home-page .services-section,
.home-page .why,
.home-page .service-area,
.home-page .remote-section,
.home-page .anywhere-section,
.home-page .drone-home-section,
.home-page .ai-section,
.home-page .mesh-section,
.home-page .security-section,
.home-page .impossible-section,
.home-page .split-section,
.home-page .contact,
.home-page .billing-section {
  padding-top: clamp(21px, 2.1vw, 31px) !important;
  padding-bottom: clamp(21px, 2.1vw, 31px) !important;
}

.home-page .section-intro {
  margin-bottom: clamp(12px, 1.4vw, 16px) !important;
}

.home-page .section-intro h2 {
  margin-bottom: 8px !important;
}

.home-page .problem-grid,
.home-page .cards-grid,
.home-page .why-grid {
  gap: 10px !important;
}

.home-page .problem-grid button {
  min-height: 54px !important;
  padding: 10px 10px !important;
}

.home-page .service-card,
.home-page .why-card {
  padding: 16px !important;
}

.home-page .remote-grid,
.home-page .drone-home-grid,
.home-page .ai-grid,
.home-page .mesh-grid,
.home-page .security-grid,
.home-page .impossible-grid,
.home-page .split-grid,
.home-page .area-grid,
.home-page .contact-grid,
.home-page .billing-grid {
  gap: clamp(14px, 1.8vw, 20px) !important;
}

.home-page .billing-copy,
.home-page .billing-panel,
.home-page .contact-box,
.home-page .request-form,
.home-page .capability-panel,
.home-page .feature-panel,
.home-page .ai-panel,
.home-page .mesh-panel,
.home-page .security-panel,
.home-page .hero-copy {
  padding: clamp(16px, 1.8vw, 22px) !important;
}

.home-page .remote-anywhere-banner {
  padding-top: clamp(12px, 1.5vw, 16px) !important;
  padding-bottom: clamp(12px, 1.5vw, 16px) !important;
}

.home-page .service-area-map-card {
  margin-top: 4px !important;
}

@media (max-width: 640px) {
  .home-page .problem-picker,
  .home-page .services-section,
  .home-page .why,
  .home-page .service-area,
  .home-page .remote-section,
  .home-page .anywhere-section,
  .home-page .drone-home-section,
  .home-page .ai-section,
  .home-page .mesh-section,
  .home-page .security-section,
  .home-page .impossible-section,
  .home-page .split-section,
  .home-page .contact,
  .home-page .billing-section {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
}


/* v144: aggressively tighten homepage section-to-section spacing */
.home-page .hero.section-dark {
  padding-top: clamp(22px, 2.4vw, 34px) !important;
  padding-bottom: clamp(22px, 2.4vw, 34px) !important;
}

.home-page .problem-picker,
.home-page .services-section,
.home-page .why,
.home-page .service-area,
.home-page .remote-section,
.home-page .anywhere-section,
.home-page .drone-home-section,
.home-page .ai-section,
.home-page .mesh-section,
.home-page .security-section,
.home-page .impossible-section,
.home-page .split-section,
.home-page .contact,
.home-page .billing-section {
  padding-top: clamp(12px, 1.15vw, 18px) !important;
  padding-bottom: clamp(12px, 1.15vw, 18px) !important;
}

.home-page .problem-picker {
  padding-top: clamp(16px, 1.4vw, 22px) !important;
  padding-bottom: 12px !important;
}

.home-page .services-section {
  padding-top: 12px !important;
}

.home-page .section-intro {
  margin-bottom: 10px !important;
}

.home-page .section-intro h2 {
  margin-top: 0 !important;
  margin-bottom: 6px !important;
  line-height: .98 !important;
}

.home-page .section-intro .eyebrow {
  margin-bottom: 8px !important;
}

.home-page .section-intro p {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  line-height: 1.45 !important;
}

.home-page .problem-grid {
  gap: 8px !important;
  margin-top: 0 !important;
}

.home-page .problem-grid button {
  min-height: 46px !important;
  padding: 8px 10px !important;
  border-radius: 12px !important;
}

.home-page .cards-grid,
.home-page .why-grid {
  gap: 10px !important;
}

.home-page .service-card,
.home-page .why-card {
  padding: 14px !important;
}

.home-page .remote-grid,
.home-page .drone-home-grid,
.home-page .ai-grid,
.home-page .mesh-grid,
.home-page .security-grid,
.home-page .impossible-grid,
.home-page .split-grid,
.home-page .area-grid,
.home-page .contact-grid,
.home-page .billing-grid {
  gap: clamp(12px, 1.4vw, 18px) !important;
}

.home-page .billing-copy,
.home-page .billing-panel,
.home-page .contact-box,
.home-page .request-form,
.home-page .capability-panel,
.home-page .feature-panel,
.home-page .ai-panel,
.home-page .mesh-panel,
.home-page .security-panel,
.home-page .hero-copy {
  padding: clamp(14px, 1.5vw, 20px) !important;
}

.home-page .remote-anywhere-banner {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

/* reduce accidental first/last child margins that make section seams feel padded */
.home-page section > .container:first-child > *:first-child {
  margin-top: 0 !important;
}

.home-page section > .container:last-child > *:last-child {
  margin-bottom: 0 !important;
}

@media (max-width: 640px) {
  .home-page .problem-picker,
  .home-page .services-section,
  .home-page .why,
  .home-page .service-area,
  .home-page .remote-section,
  .home-page .anywhere-section,
  .home-page .drone-home-section,
  .home-page .ai-section,
  .home-page .mesh-section,
  .home-page .security-section,
  .home-page .impossible-section,
  .home-page .split-section,
  .home-page .contact,
  .home-page .billing-section {
    padding-top: 14px !important;
    padding-bottom: 14px !important;
  }
}
