* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  background: #e95b16;
  font-family: Arial, Helvetica, sans-serif;
  color: #12264a;
}

.page {
  width: 100vw;
  height: 100vh;
  max-width: 520px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 86px;
  background: #fff;
  overflow: hidden;
}

.card {
  height: 100vh;
  overflow-y: auto;
  background: #fff;
}

.hero {
  padding: 14px 14px 10px;
}

.logo {
  width: 100%;
  max-width: 270px;
  display: block;
  margin: 0 auto 12px;
}

h1 {
  margin: 0;
  font-size: 21px;
  line-height: 1.05;
  color: #0e4594;
  letter-spacing: .3px;
}

h2 {
  margin: 4px 0 10px;
  font-size: 15px;
  font-weight: 600;
  color: #e95b16;
  line-height: 1.2;
}

.intro {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.3;
  color: #333;
}

.intro.small {
  display: none;
}

.info {
  background: #f1eee9;
  padding: 12px 14px;
  display: grid;
  gap: 10px;
}

.info a {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  gap: 8px;
  color: #222;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.15;
}

.icon {
  text-align: center;
  font-size: 14px;
}

.services {
  padding: 12px 14px;
}

.services h3,
.hours h3 {
  margin: 0 0 10px;
  text-align: center;
  color: #0e4594;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .3px;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.service-grid div {
  padding: 9px;
  border: 1px solid #0e4594;
  border-radius: 10px;
  background: #fff;
}

.service-grid strong {
  display: block;
  color: #e95b16;
  font-size: 13px;
  margin-bottom: 3px;
}

.service-grid span {
  display: block;
  color: #333;
  font-size: 11.5px;
  line-height: 1.2;
}

.hours {
  padding: 0 14px 12px;
  text-align: center;
}

.hours p {
  margin: 2px 0;
  font-size: 13.5px;
  line-height: 1.2;
}

.side {
  height: 100vh;
  background: #0e4594;
  color: #fff;
  padding: 16px 8px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.side-action {
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  font-size: 8.5px;
  letter-spacing: .4px;
  line-height: 1.15;
  padding: 0;
}

.side-action .big {
  display: block;
  font-size: 25px;
  line-height: 1;
  margin-bottom: 5px;
}

.qr {
  margin-top: auto;
  text-align: center;
}

.qr img {
  width: 66px;
  height: 66px;
  background: #fff;
  padding: 3px;
}

.qr small {
  display: block;
  margin-top: 5px;
  font-size: 6.5px;
  color: #dbe7ff;
}

/* Très petits écrans */
@media (max-height: 680px) {
  .logo {
    max-width: 230px;
    margin-bottom: 8px;
  }

  .hero {
    padding: 10px 12px 8px;
  }

  h1 {
    font-size: 19px;
  }

  h2 {
    font-size: 13.5px;
    margin-bottom: 7px;
  }

  .intro {
    font-size: 12.5px;
  }

  .info {
    padding: 10px 12px;
    gap: 8px;
  }

  .info a {
    font-size: 13px;
  }

  .services {
    padding: 10px 12px;
  }

  .service-grid div {
    padding: 7px;
  }

  .service-grid span {
    font-size: 10.5px;
  }

  .side {
    gap: 13px;
  }

  .qr img {
    width: 58px;
    height: 58px;
  }
}