/* Logo clarity */
header .brand {
  background: #fff;
  border: 1px solid rgba(14, 67, 140, .12);
  border-radius: 16px;
  padding: 6px 13px 6px 8px;
  box-shadow: 0 10px 26px rgba(10, 38, 80, .08);
}

header .brand img {
  width: 58px;
  height: 58px;
  max-width: none;
}

header .brand b {
  font-size: 17px;
}

header .brand small {
  font-size: 10.5px;
}

/* Mobile polish */
@media (max-width: 700px) {
  header .wrap.nav {
    padding: 12px 18px 14px;
    justify-content: center;
  }

  header .brand {
    margin-inline: auto;
  }

  header .brand img {
    width: 52px;
    height: 52px;
  }

  header .menu {
    width: 100%;
    justify-content: center;
    text-align: center;
    gap: 14px;
    padding-inline: 0;
  }

  header .menu > a,
  header .menu > .menu-group {
    flex: 0 0 auto;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-grid {
    grid-template-areas:
      "visual"
      "copy"
      "note";
    gap: 24px;
  }

  .hero-visual {
    grid-area: visual;
  }

  .hero-copy {
    grid-area: copy;
  }

  .hero-note {
    grid-area: note;
  }

  .van-card {
    margin-inline: auto;
  }
}
@media (max-width: 700px) {
  /* Sharpen mobile logo only */
  header .brand {
    background: rgba(255, 255, 255, .98);
    padding: 7px 14px 7px 9px;
    border-radius: 18px;
  }

  header .brand img {
    width: 58px;
    height: 58px;
    max-width: none;
  }

  header .brand b {
    font-size: 17px;
    line-height: 1.05;
  }

  header .brand small {
    font-size: 10.8px;
    line-height: 1.1;
  }

  /* Mobile hero order: live/local badge first, van second */
  .hero-grid {
    grid-template-areas: none !important;
    gap: 20px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy .hello,
  .hero-copy h1,
  .hero-copy p,
  .hero-copy .ctas,
  .hero-visual,
  .hero-note {
    width: 100%;
  }

  .hero-copy .hello {
    order: 1;
    margin-bottom: 0;
  }

  .hero-visual {
    order: 2;
    grid-area: auto !important;
    margin-top: 0;
  }

  .hero-copy h1 {
    order: 3;
  }

  .hero-copy p {
    order: 4;
  }

  .hero-copy .ctas {
    order: 5;
  }

  .hero-note {
    order: 6;
    grid-area: auto !important;
  }

  .van-card {
    margin-inline: auto;
  }
}