*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background: #0d0d10;
  color: #f0f0f4;
}

img {
  display: block;
  max-width: 100%;
}

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

/* Full-bleed background with a centered contact card */
.hero-banner {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url('/images/stock/nightdrill.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (prefers-color-scheme: light) {
  .hero-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
      url('/images/stock/daydrill.jpg');
  }
}

.contact-card {
  background: #1a1a20;
  border: 1px solid #352a2a;
  border-radius: 16px;
  box-shadow: 0 0 0 1px rgba(255, 96, 94, 0.25), 0 8px 40px rgba(0, 0, 0, 0.6);
  width: 100%;
  max-width: 360px;
  overflow: hidden;
}

.contact-card-header {
  padding: 1.5rem;
}

.contact-card-header h1 {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ff8685;
}

.contact-card-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid #352a2a;
  background: #16161a;
}

.contact-card-footer a {
  font-size: 1.375rem;
  font-weight: 700;
  color: #f0f0f4;
}

.contact-card-footer a:hover {
  color: #ff8685;
}
