:root {
  --page-width: 1000px;
  --blue: #2c54a2;
  --red: #e30613;
  --grey: #8a8a8a;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html, body { margin: 0; min-height: 100%; }
body { background: #fff; }

.page {
  width: min(var(--page-width), calc(100% - 32px));
  margin: clamp(18px, 5vw, 60px) auto 0;
}

.header { width: 100%; margin: 0 0 clamp(14px, 2.8vw, 28px); }
.header-image { display: block; width: 100%; height: auto; }
.header-wrap { position: relative; width: 100%; }
.header-wrap .hotspot { position: absolute; display: block; z-index: 2; }
.header-wrap .hotspot:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
.phone-1 { left: 58.8%; top: 1.5%; width: 19.0%; height: 18%; }
.phone-2 { left: 58.8%; top: 43.5%; width: 19.0%; height: 18%; }
.phone-3 { left: 58.8%; top: 78.0%; width: 19.0%; height: 18%; }
.email { left: 79.4%; top: 1.5%; width: 19.2%; height: 18%; }
.website { left: 79.4%; top: 43.5%; width: 19.2%; height: 18%; }
.mobile-header { display: none; }

.hero { overflow: hidden; }
.hero img { width: 100%; display: block; height: auto; }

.footer {
  margin-top: clamp(12px, 2vw, 18px);
  color: var(--grey);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(12px, 1.4vw, 14px);
  text-align: center;
  line-height: 1.25;
  padding: 0 4px env(safe-area-inset-bottom);
}

@media (max-width: 760px) {
  .page { width: 100%; padding: 14px 14px 0; margin-top: 0; }
  .header-wrap { display: none; }
  .mobile-header {
    display: grid;
    grid-template-columns: minmax(180px, 1fr);
    gap: 8px;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--grey);
  }
  .mobile-logo {
    width: min(78vw, 355px);
    height: auto;
    justify-self: center;
  }
  .mobile-lines {
    position: relative;
    height: 18px;
    margin-top: -2px;
  }
  .mobile-lines::before,
  .mobile-lines::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 2px;
  }
  .mobile-lines::before { top: 4px; background: var(--blue); }
  .mobile-lines::after { bottom: 4px; background: var(--red); }
  .mobile-claim {
    color: var(--blue);
    font-weight: 800;
    letter-spacing: .5px;
    font-size: clamp(20px, 6vw, 30px);
    line-height: 1;
    text-align: center;
  }
  .mobile-claim::first-letter { color: var(--red); }
  .mobile-contact a { color: var(--grey); text-decoration: none; }
  .mobile-contact a:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
  .mobile-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 12px;
    font-style: normal;
    font-size: clamp(12px, 3.2vw, 15px);
    line-height: 1.25;
    margin-top: 4px;
  }
  .hero img {
    width: 100%;
    max-width: none;
    aspect-ratio: 999 / 407;
    object-fit: cover;
  }
  .footer { padding-top: 2px; }
}

@media (max-width: 480px) {
  .page { padding: 10px 10px 0; }
  .header { margin-bottom: 10px; }
  .mobile-contact { grid-template-columns: 1fr; gap: 5px; text-align: center; }
  .hero img { min-height: 185px; object-position: center; }
  .footer { font-size: 12px; line-height: 1.3; }
}

@media (max-width: 360px) {
  .page { padding-left: 8px; padding-right: 8px; }
  .mobile-logo { width: 92vw; }
  .mobile-claim { font-size: 18px; }
  .hero img { min-height: 170px; }
}
