:root {
  --red: #dc2626;
  --white: #fff;
  --muted: #d5d8db;
  --panel: rgba(0, 0, 0, .58);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: #000;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
}

a { color: inherit; text-decoration: none; }

main {
  width: 100%;
  padding: 22px 16px 52px;
}

.card-area {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: min(72vh, 650px);
}

.business-card {
  width: min(1100px, 100%);
  min-height: 535px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  background: #080808;
  box-shadow: 0 16px 52px rgba(0, 0, 0, .7);
}

.card-background,
.card-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.card-background {
  object-fit: cover;
  object-position: center;
  opacity: .48;
}

.card-shade {
  background: linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .54) 60%, rgba(0, 0, 0, .72) 100%);
}

.card-content {
  position: relative;
  z-index: 1;
  min-height: 535px;
  padding: 40px 45px 35px;
  display: flex;
  justify-content: space-between;
  gap: 35px;
}

.card-heading {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  max-width: 610px;
}

.logo {
  flex: 0 0 auto;
  border-radius: 50%;
  background: #fff;
  padding: 8px;
}

.card-title {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.08;
  margin: 5px 0 8px;
}

.card-heading h1 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.25vw, 1.8rem);
  font-weight: 500;
}

.trade {
  margin: 0 0 22px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: #e8ecf1;
  font-size: .9rem;
}

.card-phone {
  display: block;
  font-size: clamp(1.55rem, 2.3vw, 2rem);
  font-weight: bold;
  margin-bottom: 9px;
}

.card-links {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: .94rem;
}

.card-back {
  align-self: end;
  width: 400px;
  display: flex;
  gap: 19px;
  align-items: center;
}

.services-panel {
  border: 3px solid var(--red);
  border-radius: 14px;
  background: var(--panel);
  padding: 15px 16px;
  flex: 1;
}

.services-panel h2 {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 1.06rem;
}

.services-panel p {
  margin: 5px 0;
  padding-left: 18px;
  position: relative;
  font-size: .88rem;
}

.services-panel p::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 9px;
  height: 9px;
  border: 1px solid var(--red);
  border-radius: 2px;
}

.qr-contact {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: .8rem;
}

.qr-contact img {
  margin: 0 auto 4px;
  border-radius: 5px;
}

.qr-contact strong { font-size: .95rem; }

.seo-content {
  width: min(900px, 100%);
  margin: 40px auto 0;
  color: #e5e7eb;
}

.seo-content h2 {
  margin: 24px 0 10px;
  font-size: 1.45rem;
  color: var(--white);
}

.seo-content p {
  line-height: 1.65;
  color: #c9cdd2;
}

.location-button {
  display: inline-block;
  margin-top: 8px;
  padding: 11px 20px;
  border: 1px solid var(--red);
  border-radius: 7px;
  color: var(--white);
}

.location-button:hover { background: var(--red); }

.faq details {
  border-top: 1px solid #282828;
  border-bottom: 1px solid #282828;
  padding: 15px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: bold;
}

.locations {
  width: min(1160px, 100%);
  margin: 35px auto 0;
}

.locations h1 { margin-bottom: 8px; }
.locations h2 { color: var(--red); margin: 34px 0 14px; }
.locations .intro { color: #c9cdd2; }

.location-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px 20px;
}

.location-links a { color: #d5d8db; }
.location-links a:hover { color: #f44; }

@media (max-width: 900px) {
  .card-content {
    display: block;
    padding: 27px 25px;
  }
  .card-back {
    width: min(440px, 100%);
    margin: 40px auto 0;
  }
  .business-card { min-height: 610px; }
  .location-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  main { padding: 10px 9px 38px; }
  .business-card { min-height: 545px; border-radius: 15px; }
  .card-background {
    object-fit: contain;
    object-position: center bottom;
    height: 64%;
    top: auto;
    opacity: .4;
  }
  .card-shade {
    background: linear-gradient(180deg, rgba(0, 0, 0, .98) 0%, rgba(0, 0, 0, .8) 44%, rgba(0, 0, 0, .47) 100%);
  }
  .card-content { min-height: 545px; padding: 18px 14px; }
  .card-heading { gap: 12px; }
  .logo { width: 52px; height: 52px; padding: 5px; }
  .card-title { font-size: 1.12rem; }
  .card-heading h1 { font-size: 1rem; }
  .trade { font-size: .63rem; letter-spacing: .13em; margin-bottom: 13px; }
  .card-phone { font-size: 1.22rem; }
  .card-links { display: block; font-size: .73rem; }
  .card-links a { display: block; }
  .card-back { gap: 12px; margin-top: 45px; }
  .services-panel { padding: 10px; border-width: 2px; }
  .services-panel h2 { font-size: .75rem; }
  .services-panel p { font-size: .67rem; padding-left: 14px; }
  .qr-contact { font-size: .63rem; }
  .qr-contact img { width: 68px; height: 68px; }
  .qr-contact strong { font-size: .73rem; }
  .location-links { grid-template-columns: 1fr; }
}
