:root {
  --card-bg: rgba(8, 18, 34, 0.72);
  --card-border: rgba(255, 255, 255, 0.2);
  --text: #f5f7fb;
  --muted: #d8dfeb;
  --accent: #2f79ff;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.38);
}

@font-face {
  font-family: "Saira";
  src: url("fonts/Saira/static/Saira-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PT Sans";
  src: url("fonts/PT_Sans/PTSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PT Sans";
  src: url("fonts/PT_Sans/PTSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "PT Sans", Arial, sans-serif;
  color: var(--text);
  background-image: linear-gradient(rgba(4, 8, 18, 0.35), rgba(4, 8, 18, 0.68)),
    url("background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page {
  min-height: 100vh;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: clamp(1rem, 2.8vw, 2.5rem);
}

.card {
  width: min(100%, 680px);
  margin-left: clamp(0rem, 2vw, 2rem);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(6px);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: clamp(1.1rem, 2.2vw, 2rem);
}

.brand-box {
  width: fit-content;
  background: #f4f8ff;
  border: 1px solid rgba(9, 25, 50, 0.18);
  border-radius: 12px;
  padding: 0.35rem 0.55rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  margin-bottom: 1.1rem;
}

.company-logo {
  width: min(210px, 55vw);
  height: auto;
  display: block;
  margin-bottom: 0;
}

h1,
h2 {
  font-family: "Saira", "PT Sans", Arial, sans-serif;
  margin: 0 0 0.35rem;
  line-height: 1.12;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
}

h2 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

p {
  margin: 0 0 0.95rem;
  line-height: 1.5;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.4vw, 1.06rem);
}

.intro {
  color: var(--text);
}

.contact-block,
.hours {
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

a {
  color: #d7e6ff;
  text-decoration: none;
}

a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.contact-list {
  list-style: none;
  margin: 0.4rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--muted);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  min-width: 1.15rem;
  margin-top: 0.12rem;
  color: #9fc0ff;
}

.icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.hours-line {
  white-space: nowrap;
}

.badges {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.badges img {
  height: 44px;
  width: auto;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.93);
  padding: 2px 3px;
}

@media (max-width: 920px) {
  body {
    background-position: 58% center;
  }

  .page {
    justify-content: center;
    align-items: center;
  }

  .card {
    margin-left: 0;
    width: min(100%, 720px);
  }
}

@media (max-width: 560px) {
  body {
    background-position: 62% center;
  }

  .card {
    border-radius: 16px;
    padding: 1rem;
  }

  .badges img {
    height: 36px;
  }

  .hours-line {
    white-space: normal;
  }
}
